﻿@charset "utf-8";

/* ==========================================================================
   文章-列表页-图文式
========================================================================== */
.page-pic-intro-list{
    display: flex;
    flex-direction: column;
}
.page-pic-intro-list li{
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
}
.page-pic-intro-list li .pic{
    max-width: 40%;
    margin-right: 10px;
}
.page-pic-intro-list li .pic img{
    width: 100%;
    height: auto;
}
.page-pic-intro-list li .con{
    flex: 1;
    text-align: left;
}
.page-pic-intro-list li .title{
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.4;
}
.page-pic-intro-list li .intro{
    font-size: 14px;
    line-height: 2;
    max-height: 56px;
    overflow: hidden;
    color: #8e8e8e;
}
.page-pic-intro-list .others{
    display: none;
}
.page-pic-intro-list li .date{
    padding-left: 18px;
    font-size: 14px;
    color: #999;
    background:  url(../../base/img/icon-date.png) left center no-repeat;
}

@media (min-width: 992px) {
    .page-pic-intro-list li .pic img{
        display: block;
        width: 200px;
        height: auto;
    }
    .page-pic-intro-list li .title{
        font-size: 18px;
    }
    .page-pic-intro-list li .con{
        display: flex;
        flex-direction: column;
    }
}

/* ==========================================================================
   文章-列表页
========================================================================== */
.infoList {
    padding: 10px 0;
    overflow: hidden;
}
.infoList li {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding: 12px 0;
    line-height: 1.6;
    font-size: 16px;
}
.infoList li a {
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
}
.infoList li a::before{
    content: "";
    display: inline-block;
    margin: -2px 10px 0 5px;
    width: 5px;
    height: 5px;
    background-color: #D0E4DA;
    border-radius: 50%;
    vertical-align: middle;
}
.infoList li:hover a::before{
    background-color: var(--main-color);
}
.infoList .dateRight {
    color: #999;
    margin-right: 5px;
}
.infoList .node {
    color: #999;
    margin-right: 10px;
}
.infoList em {
    color: #f20;
}
.infoList .split {
    height: 1px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    margin: 18px 0;
    border-bottom: 1px dotted #ccc;
}
.infoList li .address {
    background: #8DB6D5;
    color: #fff;
    padding: 0 8px;
    line-height: 22px;
    font-size: 12px;
    margin: 4px 0;
    border-radius: 5px;
    float: right;
    margin-left: 15px;
}
.infoList li .address:hover {
    background: #6e9ec3;
    text-decoration: none;
}
.infoList li .disable {
    display: none !important;
}

@media (min-width: 992px) {
    .infoList li {
        padding: 13px 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .infoList li a {
        overflow: hidden;
        flex: 1;
    }
    .infoList .dateRight {
        width: 82px;
        margin-left: 15px;
    }
}


/* 图片-列表页 ----------------------------------------- */
.page-pic-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.page-pic-list li {
    margin-bottom: 20px;
    width: calc(50% - 10px);
}
.page-pic-list .pic {
    overflow: hidden;
}
.page-pic-list .pic img {
    width: 100%;
    height: auto;
}
.page-pic-list .title {
    overflow: hidden;
}
.page-pic-list .title a{
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.page-pic-list .title a:hover {
    text-decoration: none;
    color: white;
    background-color: var(--main-color);
}

@media (min-width: 992px) {
    .page-pic-list{
        justify-content: flex-start;
    }
    .page-pic-list li{
        width: calc(100% / 3 - 20px);
    }
    .page-pic-list li:nth-child(3n+2){
        margin-left: 30px;
        margin-right: 30px;
    }
    .page-pic-list .title a{
        text-overflow: clip;
        white-space: wrap;
    }
}


/* 友情链接列表页 -----------------------------------------*/
.friendLinkList {
    padding: 20px 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.friendLinkList li {
    width: calc(100% / 2 - 10px);
    margin-bottom: 8px;
}
.friendLinkList li a{
    display: block;
    line-height: 1.6;
    padding: 5px 0;
}
@media (min-width: 992px) {
    .friendLinkList{
        justify-content: flex-start;
    }
    .friendLinkList li{
        width: calc(100% / 3 - 8px);
    }
    .friendLinkList li:nth-child(3n){
        margin-left: 6px;
        margin-right: 0;
    }
    .friendLinkList li:nth-child(3n+1){
        margin-right: 6px;
        margin-left:0;
    }
    .friendLinkList li:nth-child(3n+2){
        margin-left: 6px;
        margin-right: 6px;
    }
}
@media (min-width: 1200px) {
    .friendLinkList li{
        width: calc(100% / 4 - 15px);
    }
    .friendLinkList li:nth-child(4n){
        margin-left: 10px;
        margin-right: 0;
    }
    .friendLinkList li:nth-child(4n+1){
        margin-right: 10px;
        margin-left:0;
    }
    .friendLinkList li:nth-child(4n+2),
    .friendLinkList li:nth-child(4n+3){
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* 文章内容页 -----------------------------------------*/
.subheading { font-size: 16px;}
.noSideContent .printArea .conTxt { padding: 0 30px;}
.articleCon { text-align: left; padding: 40px 0 30px;}
.printArea .title { font-size: 24px; font-weight: bold; padding: 0; line-height: 1.2; text-align: center; margin-bottom: 30px; word-wrap: break-word; color: var(--main-color);}
.printArea .text-align-left{text-align: left;}
.printArea .subTitle,
.printArea .subheading { font-size: 16px; color: #777; text-align: center; margin-bottom: 20px;}
.printArea .property { font-size: 14px; line-height: 1.4; margin-bottom: 20px; padding:12px 10px; text-align: center; color: #999; border: 1px solid #e9e9e9; border-radius: 3px;}
.printArea .property span { padding: 0 5px;}
.printArea .property a{
    color: #999;
}
.printArea .property a:hover{
    color: var(--main-color);
}
.printArea .conTxt,
.printArea .conTxt *{box-sizing:content-box}
.printArea .conTxt { color: #333; font-size: 16px; line-height: 2; text-align: left; padding: 0 0 20px 0; overflow: hidden; font-family:"Microsoft YaHei", 'PingFang SC', Arial, Helvetica, Tahoma, sans-serif; -webkit-text-size-adjust: none; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;}
.printArea .conTxt p {margin: 20px 0 0px; padding:0px; line-height: 32px;  word-wrap: break-word; border: none; border-radius: 0; white-space:normal; text-align: justify;}
.printArea .conTxt p:first-child{margin-top: 0px}
.printArea .conTxt img { max-width: 100%; height: auto !important; border: 0; vertical-align: top}
.printArea .conTxt table{background-color: transparent; border-collapse: collapse; border-spacing: 0; text-align: left; }
.printArea .conTxt table td{padding: 5px 10px; border: 1px solid #ddd;}
.printArea .conTxt table td p{padding: 0px !important; margin: 0px !important; text-indent: 0px !important;}
.printArea .conTxt table p { margin: 0px}
.printArea .conTxt a { color: blue; text-decoration: underline;}
.printArea .conTxt em { font-style: italic;}
.printArea .conTxt ul { padding-left: 2em; list-style: inherit;}
.printArea .conTxt ol { padding-left: 2em; list-style: decimal;}
.printArea .conTxt ul li { zoom: normal; list-style: inherit; text-indent: 0 !important;}
.printArea .conTxt ol li { zoom: normal; list-style: inherit; text-indent: 0 !important;}
.printArea .conTxt h1,
.printArea .conTxt h2,
.printArea .conTxt h3,
.printArea .conTxt h4,
.printArea .conTxt h5,
.printArea .conTxt h6,
.printArea .conTxt b,
.printArea .conTxt strong { font-weight: bold;}
.printArea .conTxt h1 { font-size: 28px; line-height:38px; margin: 38px 0px 19px 0px; }
.printArea .conTxt h2 { font-size: 24px; line-height:34px; margin: 34px 0px 17px 0px; }
.printArea .conTxt h3 { font-size: 20px; line-height:30px; margin: 30px 0px 15px 0px; }
.printArea .conTxt h4 { font-size: 16px; line-height:26px; margin: 26px 0px 13px 0px; }
.printArea .conTxt h5 { font-size: 14px; line-height:24px; margin: 24px 0px 12px 0px; }
.printArea .conTxt h6 { font-size: 12px; line-height:22px; margin: 22px 0px 10px 0px; }
.printArea .conTxt blockquote{margin:10px 0px; border-left:2px solid #d8dad9; padding:0 0 0 10px; line-height:1.74; color:#888; font-size:15px; }
.printArea .conTxt blockquote p{margin:0px; line-height:1.7; color:#888; font-size:15px;}
.printArea .conTxt h1:first-child,
.printArea .conTxt h2:first-child,
.printArea .conTxt h3:first-child,
.printArea .conTxt h4:first-child,
.printArea .conTxt h5:first-child,
.printArea .conTxt h6:first-child{margin-top:0px;}
.printArea .conTxt .videoPlayer{text-indent: 0;}
.printArea .videoPlayer { position: relative; z-index: 1500; text-align: center; margin: 20px auto; }
.articleCon .userControl { font-size: 14px; border-bottom: 1px solid #eaeaea; overflow: hidden; text-align: left; margin-bottom: 20px; padding-bottom: 15px; line-height: 40px;}
.articleCon .userControl .dyBtn { color: #333; float: left;}
.articleCon .userControl .bdsharebuttonbox { float: right;}
.articleCon .page { padding: 10px 0; text-align: center; overflow: hidden;}

/* 文章分页 */
.articleCon .page-title-list { border: solid 1px rgb(195, 211, 242); display: inline-block; width:100% }
.articleCon .page-title-list ul { margin: 10px; }
.articleCon .page-title-list ul li { float: left; margin-right: 50px; width: 40%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.articleCon .page-title-list ul li a { color: rgb(61, 114, 211) }
.articleCon .page-title-list ul li a.current { color: rgb(244, 108, 106) }

.articleCon .others { margin-bottom: 15px;}
.articleCon .others .prev,
.articleCon .others .next { padding: 5px 0; word-wrap: break-word}

/* 相关信息 */
#relativeInfo {
    margin-top: 20px;
}
#relativeInfo .hd{
    padding: 10px 0;
    border-bottom: 1px solid #dadada;
}
#relativeInfo .hd h3{
    font-size: 18px;
    line-height: 2;
    font-weight: bold;
}
#relativeInfo .bd {
    overflow: hidden;
}
#relativeInfo .infoList {
    overflow: hidden;
}
#relativeInfo .infoList li {
    padding: 5px 0;
}

@media (min-width: 992px) {
    #relativeInfo{
        margin-top: 40px;
    }
    #relativeInfo .infoList li{
        width: 47.9%;
        float: left;
    }
    #relativeInfo .infoList li:nth-child(odd){
        margin-right: 2%;
    }
    #relativeInfo .infoList li:nth-child(even){
        margin-left: 2%;
    }
}

/* 通用-单页 ------------------------------------------  */
.singlePage .printArea .title { line-height: 48px; padding-bottom: 20px; margin-bottom: 20px; font-size: 24px; color: var(--main-color); border-bottom: 1px solid #DEDEDE;}




/* 问卷调查-列表页 ----------------------------------------------------- */
.surveyListPage .surveyList li {
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    padding-left: 54px;
    background: url(../../base/img/icon-10.png) 25px 50% no-repeat #fff;
}
.surveyListPage .surveyList li.even {
    background-color: #f2f2f2;
}
.surveyListPage .surveyList li .view,
.surveyListPage .surveyList li .join {
    color: #f60;
    font-size: 14px;
}
.surveyListPage .surveyList li .view {
    margin: 0 0 0 10px;
}

/* 问卷调查-结果页 ----------------------------------------------------- */
.wrap .customFormResult{
	width:100%;
}
.wrap .customFormResult .row{
    display:block;
    margin: 0 0 20px;
}
.wrap .customFormResult .row *{
    width:auto;
    padding: 0;
    margin: 0;
    max-width: none;
}

/* 信息提示页 ---------------------------------------------- */
.Showms {
    background: #fff;
    padding: 3% 5%;
    overflow: hidden;
    max-width: 540px;
    margin: 30px auto;
}
.Showms .top,
.Showms .bottom,
.Showms .Shadow {
    display: none
}
.Showms .MS {
    overflow: hidden;
    zoom: 1;
}
.Showms .titWrong {
    color: #c00;
    border-bottom: 1px solid #ccc;
    padding: 5px 0;
    margin-bottom: 15px;
    font-size: 18px;
}
.Showms .BUT {
    padding: 25px 0 15px 0;
}
.Showms .BUT a {
    padding: 0 15px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 15px;
    background: #eee;
    border: 1px solid #ccc;
    font-size: 14px;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#FFFFFF), to(#eee));
    background: -moz-linear-gradient(#FFFFFF, #eee);
    background: -ms-linear-gradient(#FFFFFF, #eee);
    background: -o-linear-gradient(#FFFFFF, #eee);
    background: linear-gradient(#FFFFFF, #eee);
}
.Showms .BUT a:hover {
    color: #c00;
    border: 1px solid #aaa;
    text-decoration: none;
}
/* 投票-列表页 */
.voteListPage .voteList li {
    padding-left: 25px;
    background: url("../../base/img/iconvote.png") no-repeat 0 5px;
}
/* 投票-结果页 */
.voteResultPage .graphPater .result-title {
    color: #0068B7;
}