﻿@charset "UTF-8";
/* 本网站通用布局 */
/* Css Reset */
blockquote,body,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,img,input,li,ol,p,pre,td,textarea,th,ul { padding: 0; margin: 0}
table { border-collapse: collapse; border-spacing: 0}
fieldset,img { vertical-align: top; border: 0}
address,caption,cite,code,dfn,em,i,th,var { font-weight: 400; font-style: normal}
li,ol,ul { list-style: none}
dd,div,dl,dt,li,ol,ul { zoom: 1}
caption,th { text-align: left}
h1,h2,h3,h4,h5,h6 { font-weight: 400; font-size: 100%}
q:after,q:before { content: ''
}
abbr,acronym { border: 0}
pre { white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word; font-size: 16px; line-height: 1.8; font-family: "Microsoft YaHei", 'PingFang SC', Arial, Helvetica, Tahoma, sans-serif;}
article,aside,dialog,figure,footer,header,menu,nav,section,time { margin: 0; padding: 0; display: block; zoom: 1}

/* 主体宽度和颜色 */
:root {
    --page-width:1200px;
    --color-main:#2E73CE;
    --color-active:#BA2C1F;
    --color-linear-one:#2E64CE;
    --color-linear-two:#4CA5E5;
}
/* 自适应宽度 S */
@media (min-width: 1280px) {
    :root {
        --page-width:1200px
    }
}
@media (min-width: 1360px) {
    :root {
        --page-width:1320px
    }
}
@media (min-width: 1440px) {
    :root {
        --page-width:1400px
    }
}
@media (min-width: 1680px) {
    :root {
        --page-width:1600px
    }
}
.wrap{
    min-width: var(--page-width);
}
.siteWidth,
#content{
    width: var(--page-width);
}
/* 自适应宽度 E */

/* Public */
body { color: #4f4f4f; font-size: 14px; line-height: 30px; font-family: "Microsoft YaHei", 'PingFang SC', Arial, Helvetica, Tahoma, sans-serif; -webkit-text-size-adjust: none; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;}
a { color: #333; text-decoration: none; outline: none; -webkit-transition: 500ms; -o-transition: 500ms; -moz-transition: 500ms; transition: 500ms;}
a:hover { color: var(--color-active); text-decoration: none;}
.clearbox { border: none; border-top: 1px solid transparent !important; clear: both; font-size: 0; height: 0; line-height: 0; margin-top: -1px !important; visibility: hidden;}
.blank { display: block; height: 10px; font-size: 0px; line-height: 0; overflow: hidden; clear: both;}
.clearfix:after,
.layout::after { content: "."; display: block; height: 0; clear: both; font-size: 0; line-height: 0; visibility: hidden;}
* html .clearfix { height: 1%;}
*+html .clearfix { min-height: 1%;}
.fl { float: left !important;}
.fr { float: right !important;}
input[type=button],
input[type=submit],
input[type=file],
button { cursor: pointer; -webkit-appearance: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;}
.prev,
.next { transition: all 0.5s;}

/* frame */
.wrap {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}
.siteWidth {
    position: relative;
    margin: 0 auto;
}
#content {
    margin: 0 auto 30px;
    padding: 30px 0 0;
    position: relative;
    z-index: 1;
    text-align: left;
}
#content:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    line-height: 0;
    font-size: 0;
    visibility: hidden;
}

/* 网站顶部 */
#header{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 2;
}
#header .siteWidth{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 135px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: -1;
    top: 0;
    background: linear-gradient(180deg, rgba(0,0,0,1), rgba(0,0,0,0));
}

.header-main{
    flex: 1;
    padding: 35px 0;
}

.top-links{
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}
.top-links,
.top-links>a{
    color: white;
    font-size: 14px;
    height: 26px;
    line-height: 26px;
    vertical-align: top;
    text-decoration: none;
}
.top-links>a:hover{
    color: rgba(255, 255, 255, .7);
}
.top-links .split{
    margin: 0 10px;
    vertical-align: top;
}
.top-links>div{
    display: inline-block;
    vertical-align: top;
}

.top-links .show-pic .pic{
    display: none;
}

/* 顶部登录注册 */
.top-links .user-login .userlogininfo a{
    color: white;
    text-decoration: none;
}
.top-links .user-login .userLogged {
    float: right;
    margin: 0;
    color: #fff
}
.top-links .user-login .userLogged a {
    color: #fff
}
.top-links .user-login .userLogged .userDropdown .nickname:hover {
    color: #fff;
    text-decoration: underline
}
.top-links .user-login .userLogged .loggedin .signinSum,
.top-links .user-login .userLogged .loggedin .myMsg {
    background-image: url(../img/icons-userlogged.png);
}
.top-links .user-login .userLogged .loggedin .signinSum:hover,
.top-links .user-login .userLogged .loggedin .myMsg:hover,
.top-links .user-login .userLogged .loggedin .hasMsg {
    background-image: url(../img/icons-userlogged-on.png);
}
.top-links .user-login .userLogged .userDropdown .nickname:after {
    background: url(../img/userlogged-arrow.png) 0px 0px no-repeat;
}
.user-mainbox .hd h3 {
    color: var(--color-main) !important;
    border-bottom-color: var(--color-main) !important;
}
.user-mainbox .loginBtn {
    background-color: var(--color-main) !important;
}
.user-mainbox .loginBtn:hover {
    background-color: var(--color-main) !important;
}

/* 站群导航-公共 */
#siteLast{position: relative;}
#siteLast dt {cursor: pointer;}
#siteLast dd{display:none; width:600px; position:absolute;  background:#fff; text-align:left; color:#333; max-height:500px; overflow:auto; padding:10px}
#siteLast:hover dd{display: block;}
#siteLast dd h3{ text-align:left; margin:0 10px; position:relative; font-size:14px; font-weight:bold; line-height:34px; display:block; overflow:hidden;}
#siteLast dd h3.h i{display:none;}
#siteLast dd h3 span{float:left; height:34px; line-height:34px; padding:0 15px 0 0; background:#ffffff; position:relative; z-index:2;}
#siteLast dd h3 i{ content:""; display:block; height:1px; line-height:0; font-size:0; background:#eeeeee; top:16px; right:0; width:100%; position:absolute; z-index:1;}
#siteLast dd table{border-collapse: collapse;border-spacing: 0; font-size:12px; width:100%}
#siteLast dd table td{padding-top:10px; padding-bottom:10px; overflow:hidden}
#siteLast dd table .tdlab{width:90px; text-align:right; padding-right:20px; vertical-align:middle; line-height:26px; font-weight:bold; }
#siteLast dd ul{overflow:hidden;}
#siteLast dd ul li{width:18%; margin-left:2%; float:left; height:26px; line-height:26px; overflow:hidden}
#siteLast dd ul li a{color:#333}
#siteLast dd ul li a:hover{color:var(--color-main); text-decoration: none;}
#siteLast dd table.up{background:#f7f7f7}
/* 站群导航-个性 */
.quickLinks li.on #siteLast dd{display:block;}
#siteLast dt{color:#fff}
#siteLast a{ padding:0; margin:0;}
#siteLast dd{ font-size:12px; border: 3px solid var(--color-main); right:0; margin:0px; top: 26px;}
#siteLast dd li a{ cursor:pointer;}
#siteLast.on dt{ background-color:var(--color-main); color:#fff;}

/* ==========================================================================
   搜索弹框 S
========================================================================== */
#modal-search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: rgba(0, 0, 0, .7);
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
#modal-search .modal-backdrop {
    display: none !important;
}
#modal-search .modal-dialog {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: none;
    justify-content: center;
}
#modal-search .modal-content {
    width: 85%;
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
}
#modal-search .btn-close {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    margin: 5rem 0 0;
    transform: translateX(-50%);
    padding: 1.25rem;
    color: #fff;
    font-size: 3em;
    color: #fff;
    pointer-events: auto;
    text-align: center;
    line-height: 1;
    opacity: 1;
    font-weight: bold;
    box-shadow: none;
    background: none;
    border: none;
}
#modal-search .btn-close .iconfont {
    font-size: 32px;
    transition: all ease .4s;
    display: inline-block;
}
#modal-search .btn-close .iconfont:hover {
    transform: rotate(180deg);
}
.s-form {
    display: flex;
}

/* 搜索 */
#modal-search .modal-content {
    max-width: 600px;
}
/* 搜索站点选择 */
.s-form .select-box {
    display: none;
}
/* 搜索输入框 */
.s-form .input-box {
    position: relative;
    width: 1%;
    flex-grow: 1;
    background: #fff;
    border-radius: .3125rem 0 0 .3125rem;
}
.s-form .input-box input {
    position: relative;
    width: 100%;
    height: auto;
    vertical-align: top;
    padding: 1.1875rem 1.5em;
    line-height: 2;
    border: 0;
    outline: none;
    background: none;
    font-size: 1em;
}
.s-form .input-box .dropdown-word {
    position: absolute;
    top: 100%;
    width: auto;
    left: 0;
    right: 0;
    background: #fff;
    max-height: 11.875rem;
    overflow-y: auto
}
.s-form .input-box .dropdown-word li {
    text-align: left;
    padding: 0 0.625rem;
    font-size: 0.9375em;
    line-height: 2.5;
    cursor: pointer;
}
.s-form .input-box .dropdown-word li:hover {
    background: #f5f5f5;
    color: #00aaff;
}
.s-form .btn-box {
    background: #0773c2;
    border-radius: 0 .3125rem .3125rem 0;
}
.s-form .btn-box input {
    height: auto;
    line-height: 2;
    padding: 1.0875rem 1.5em;
    overflow: hidden;
    border: none;
    outline: none;
    color: #fff;
    background: none;
    font-size: 1.1em;
    text-align: center;
    font-weight: bold;
}
.s-form .btn-box input:focus {
    outline: none;
    box-shadow: none;
}
.s-form .link-box {
    text-align: right;
    font-size: 14px;
}
/* ==========================================================================
   搜索弹框 E
========================================================================== */


/* 主导航 */
.header-nav {
    display: flex;
    justify-content: flex-end;
}
#main-nav .li1 {
    float: left;
    display: inline;
    font-size: 16px;
    position: relative;
    z-index: 2;
}
#main-nav .li1 .h1{
    padding: 0 18px 20px;
}
#main-nav .hasUl1 .h1 {
    position: relative;
    z-index: 1;
    padding-right: 22px;
}
#main-nav .hasUl1 .h1::after{
    position: absolute;
    z-index: 1;
    right: 0;
    top: 2px;
    font-family: "iconfont";
    content: "\e600";
    font-size: 16px;
    font-weight: normal;
    color: white;
}
#main-nav .a1 {
    display: block;
    line-height: 32px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border-radius: 3px;
    text-align: center;
}
#main-nav .hasUl1 .a1{
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

#main-nav .hasUl1 .a1::after,
#main-nav .hasUl1 .a1::before{
    content: "";
    position: absolute;
    z-index: 1;
    top: 38px;
    float: left;
    overflow: hidden;
    background-color: #fff;
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    -ms-transition:all  0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
}
#main-nav .hasUl1 .a1::before{
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    margin: 0 auto;
    text-align: center;
}
#main-nav .hasUl1 .a1::after{
    width: 2px;
    height: 0;
    left: 50%;
    margin-left: -1px;
}
#main-nav .hasUl1:hover .a1::before{
    width: 100%;
}
#main-nav .hasUl1:hover .a1::after{
    height: 22px;
}
#main-nav .a1:hover {
    text-decoration: none;
}
#main-nav .ul1 {
    display: none;
    position: absolute;
    z-index: 91;
    background-color: #fff;
    text-align: center;
    width: 100%;
    padding: 8px 0;
    right: 0%;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
#main-nav .last1 .ul1 {
    right: 0;
}
#main-nav .h2{
    margin-bottom: 0;
}
#main-nav .a2 {
    display: block;
    font-size: 15px;
    padding: 10px 5px;
    line-height: 24px;
}
#main-nav .a2:hover {
    background-color: #f0f0f0;
    color: #0773c2;
    text-decoration: none;
}
#main-nav .li1:hover .ul1 {
    display: block;
}

/* 二级宽度调整 */
#main-nav #li-xy .ul1{
    width: 220%;
    left: -60%;
}
#main-nav #li-rcpy .ul1{
    width: 130%;
    left: -15%;
}
#main-nav #li-jyyxqhz .ul1{
    width: 120%;
    left: -10%;
}


@media (min-width: 1360px) {
    #main-nav .a1 {
        font-size: 20px;
    }
}

/* ==========================================================================
   展开导航
========================================================================== */
.side-nav-btn{
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    width: 60px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 30px 0 0 30px;
    background: #992825;
    text-decoration: none;
}
.side-nav-btn .iconfont{
    font-size: 16px;
    color: white;
    text-decoration: none;
}
.side-nav-btn:hover{
    background: #881e1b;
}

#modal-nav{
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: var(--color-linear-one);
    background: linear-gradient(135deg,var(--color-linear-one) 0%, var(--color-linear-one) 40%, var(--color-linear-two) 100%);
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
#modal-nav.show{
    right: 0;
}
#modal-nav::after,
#modal-nav::before{
    content: "";
    position: absolute;
    z-index: 0;
}
#modal-nav::after{
    left: 0;
    right: 0;
    bottom: 0;
    height: 186px;
    background:  url(../img/modal-bg2.png) center bottom no-repeat;
    background-size: cover;
}
#modal-nav::before{
    left: 50%;
    z-index: 1;
    bottom: 116px;
    margin-left: -500px;
    width: 1000px;
    height: 332px;
    float: left;
    overflow: hidden;
    background:  url(../img/modal-bg.png) center top no-repeat;
}
.modal-nav-header{
    padding: 2.5% 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#modal-nav .btn-close {
    font-size: 6em;
    color: #fff;
    pointer-events: auto;
    text-align: center;
    line-height: 1;
    opacity: 1;
    font-weight: bold;
    box-shadow: none;
    background: none;
    border: none;
}
#modal-nav .btn-close .iconfont {
    font-size: 32px;
    transition: all ease .4s;
    display: inline-block;
}
#modal-nav .btn-close .iconfont:hover {
    transform: rotate(180deg);
}

.modal-main-nav{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}
.modal-main-nav #li-home{
    display: none;
}
.modal-main-nav .li1{
    min-width: 120px;
}
.modal-main-nav .a1{
    position: relative;
    z-index: 1;
    padding-top: 40px;
    display: block;
    font-size: 20px;
    color: white;
    text-decoration: none;
}
.modal-main-nav .a1::after,
.modal-main-nav .a1::before{
    content: "";
    position: absolute;
    left: 0;
    float: left;
    overflow: hidden;
}
.modal-main-nav .a1::before{
    z-index: 1;
    top: 1px;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.4);
}
.modal-main-nav .a1::after{
    z-index: 2;
    top: 0;
    width: 16px;
    height: 3px;
    background-color: #fff;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -ms-transition:all  0.6s;
    -o-transition:all 0.6s;
    transition:all 0.6s;
}
.modal-main-nav .li1:hover .a1::after{
    width: 100%;
}
.modal-main-nav .a2{
    display: block;
    padding: 5px 0;
    line-height: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.modal-main-nav .ul1{
    padding-top: 28px;
}
.modal-main-nav .a2:hover{
    color: white;
}

/* 节点banner  S */
.pageBanner {
    position: relative;
    z-index: -1;
    width: 100%;
    min-width: var(--page-width);
    overflow: hidden;
}
.pageBanner img{
    display: block;
    width: 100%;
    height: auto;
}


/* ==========================================================================
   网站底部
========================================================================== */
#footer {
    position: relative;
    z-index: 1;
    margin-top: 100px;
    padding: 38px 0 50px;
    background-color: var(--color-main);
}
#footer::before{
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: -77px;
    width: 100%;
    min-width: 450px;
    height: 255px;
    float: left;
    overflow: hidden;
    background:  url(../img/footer-bg.png) center top no-repeat;
}

.footer-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-info .copyright,
.footer-info .footer-other{
    flex: 1;
}
.footer-info .footer-logo{
    width: 327px;
}

/* 底部版权 */
.copyright { font-size: 16px; line-height: 40px; text-align: left; color: #fff;}
.copyright a { color: #fff; text-decoration: none;}
.copyright a:hover{color: rgba(255, 255, 255, .7);}


.footer-links-box,
.qrcode-list {
    display: flex;
    justify-content: flex-end;
    margin: 10px auto 0;
    text-align: center;
}
.qrcode-list li{
    float: left;
    margin-left: 20px;
}
.qrcode-list li .pic{
    overflow: hidden;
    padding: 5px;
    background-color: #fff;
}
.qrcode-list li .pic img{
    display: block;
    width: 80px;
    height: 80px;
}
.qrcode-list li .tit{
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    color: white;
}

/* 友情链接模拟下拉 */
.footer-links {
    width: 270px;
    position: relative;
    text-align: left;
}
.footer-links dt {
    height: 38px;
    line-height: 36px;
    padding: 0 5px 0 30px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    position: relative;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .1);
}
.footer-links dt i {
    right: 19px;
    top: 50%;
    margin-top: -5px;
    border-width: 10px;
    position: absolute;
    border-color: transparent;
    border-style: dashed;
    border-top-color: rgba(255,255,255,0.4);
    border-top-style: solid;
    content: "";
    display: block;
    font-size: 0;
    line-height: 0;
    width: 0;
}
.footer-links dd {
    bottom: 38px;
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
}
.footer-links dd ul {
    max-height: 156px;
    border: 1px solid #ccc;
    background: #fff;
    overflow-y: scroll;
}
.footer-links dd li {
    line-height: 18px;
    padding: 6px 10px;
    border-bottom: 1px dotted #ccc;
    cursor: pointer;
}
.footer-links dd li:nth-last-child(1){
    border-bottom: 0;
}
.footer-links dd li a {
    display: block;
}
.footer-links dd li a:hover {
    text-decoration: none
}
.footer-links dd li:hover {
    color: #29343f;
    background-color: #f1f1f1
}
.footer-links dd .last {
    border-bottom: 0
}
.footer-links.on {
    z-index: 9;
}
.footer-links.on dt {
    background: rgba(0, 0, 0, .2);
}
.footer-links.on dt i {
    border-top-style: none;
    border-bottom-color: rgba(255,255,255,0.4);
    border-bottom-style: solid;
}
.footer-links.on dd {
    display: block;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}
.footer-links.on dd ul {
    border-color: #bbb;
}


/* 位置导航 */
.path {
    position: relative;
    z-index: 1;
    margin-top: -70px;
    height: 70px;
    line-height: 70px;
    color: white;
    font-size: 16px;
}
.path a,
.path span {
    padding: 0 3px;
    color: white;
}
.path a:hover{
    color: rgba(255, 255, 255, .8);
}
.path::after{
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    content: "";
    width: 50%;
    background: linear-gradient(45deg, var(--color-linear-one), var(--color-linear-two));
    -webkit-clip-path: polygon(0 0, 98% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 98% 0, 100% 100%, 0% 100%);
}

/* 页面栏目菜单 */
#sideMenu {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}
#sideMenu .hd{height: 100px;}
#sideMenu .hd h3{
    position: relative;
    z-index: 2;
    padding: 45px 0 8px 10px;
    height: 45px;
    line-height: 45px;
    font-size: 34px;
    font-weight: bold;
    color: var(--color-main);
    background: url(../../base/img/box-hd-icon.png) left 23px no-repeat;
}
#sideMenu .hd .eng{
    position: relative;
    z-index: 1;
    top: -70px;
    margin-left: 72px;
    font-size: 64px;
    font-weight: bold;
    color: rgba(46, 115, 206, 0.1);
    font-style: italic;
    text-transform: uppercase;
}
#sideMenu .bd{
    position: relative;
    z-index: 1;
    flex: 1;
    margin-left: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#sideMenu .bd::before,
#sideMenu .bd::after{
    position: absolute;
    z-index: -1;
    content: "";
    height: 1px;
    line-height: 1px;
    float: left;
    overflow: hidden;
    background-color: #D9D9D9;
}
#sideMenu .bd::before{
    right: 0;
    bottom: 50%;
    width: 100%;
}
#sideMenu .bd::after{
    width: 20px;
    left: -18px;
    top: 50%;
    margin-top: 6px;
    transform: rotate(-45deg);
}
.menuList{
    overflow: hidden;
}
.menuList li{
    width: auto;
    float: left;
    margin: 5px 0 5px 10px;
}
.menuList li a{
    display: block;
    height: 48px;
    line-height: 48px;
    padding: 0 19px;
    font-size: 18px;
    border: 1px solid #D9D9D9;
    background-color: #fff;
}
.menuList li a:hover,
.menuList li.on a{
    font-weight: bold;
    border-color: var(--color-active);
    color: var(--color-active);
}


/* mainBox */
.mainBox .mHd { position: relative; height: 42px; line-height: 42px;}
.mainBox .mHd .list { overflow: hidden;}
.mainBox .mHd .list li { float: left; padding: 0 4%;}
.mainBox .mHd .list a { font-size: 18px; color: #888;}
.mainBox .mHd .list a:hover { text-decoration: none}
.mainBox .mHd .list .on a { color: var(--color-main)}
.mainBox .mHd .list .on { position: relative; font-weight: bold; display: inline-block; *display: inline; zoom: 1; padding: 0 2.5%; border-radius: 6px 6px 0 0; color: var(--color-main); border-bottom: 0; font-size: 18px; border-bottom: 2px solid var(--color-main);}
.mainBox .mBd { margin-top: 8px; padding: 20px; background-color: #f9f9f9;}

/* 侧栏-栏目内搜索 */
#sideSearch .bd li { padding: 0 0 10px 0; overflow: hidden;}
#sideSearch .nodes,
#sideSearch input,
#sideSearch button { height: 32px; line-height: 32px; width: 100%; border: 1px solid #ddd; font-size: 14px; font-family: "Microsoft YaHei", 'PingFang SC'; outline: none}
#sideSearch .keyword { width: 60%; padding: 0 5px;}
#sideSearch button { line-height: 28px; width: 32%; float: right; background: var(--color-main); border-color: var(--color-main); color: #fff;}

/* goTop */
#goTop { position: fixed; display: none; _display: none !important; width: 50px; height: 50px; bottom: 60px; right: 5px; z-index: 99; cursor: pointer; margin: 5px; width: 40px; height: 40px; border-radius: 2px; box-shadow: 0 0 5px #9c9c9c; -webkit-box-shadow: 0 0 5px #9c9c9c; opacity: .9; background: rgba(0, 0, 0, .5);}
#goTop::after { display: block; position: absolute; left: 50%; top: 50%; margin-left: -10px; margin-top: -15px; content: ""; border-width: 10px; border-color: transparent; border-bottom-color: #fff; border-bottom-style: solid; border-style: dashed; display: block; font-size: 0; line-height: 0; width: 0;}

/* winMark */
#winMark { z-index: 1; width: 100%; display: none; height: 100%; position: fixed; background: rgba(0, 0, 0, .8); left: 0; top: 0;}

/*节点归档信息样式*/
.archived-info { float: right;}
.archived-info span { margin: 0 5px;}

/* 信件列表 */
.letterList { width: 100%; border: none;}
.letterList th,
.letterList td { text-align: center; font-size: 14px; vertical-align: middle; line-height: 26px; padding: 12px 5px}
.letterList th { background: #f1f6fa;}
.letterList th { color: var(--color-main); height: 52px; line-height: 52px; padding: 0px; font-size: 16px; border-bottom: 1px solid #d7ebf6;font-weight:bold;}
.letterList th.title { text-align: left; padding-left: 38px;}
.letterList tr:nth-child(2n) td,
.letterList .even td { background: #f4f4f2;}
.letterList .num { display: none;}
.letterList td.title { text-align: left; padding-left: 5px; white-space: normal; word-break: break-all;}
.letterList .ico { width: 30px; text-align: center; vertical-align: middle; padding: 0px}
.letterList .ico img { vertical-align: middle;}
.letterList .dep { width: 90px;}
.letterList .state { width: 90px;}
.letterList .open,
.letterList .handle { display: none}
.letterList .state .s0 { color: #333;}
.letterList .state .s1 { color: #f70;}
.letterList .state .s2 { color: #f00;}
.letterList .state .s3 { color: #390;}
.letterList .state .s4 { color: #333; text-decoration: line-through;}
.letterList .date { border-right: none; width: 90px;}
.letterList td.date { color: #999999}

/* detailTable */
.detailTable { margin-bottom: 10px; background: #fff; width: 100%;}
.detailTable,
.detailTable tr,
.detailTable tr td { border: 1px solid #e6e6e6; border-collapse: collapse;}
.detailTable thead tr { border-color: var(--color-main);}
.detailTable thead th { background: var(--color-main); height: 40px; line-height: 40px; color: #fff; font-size: 16px; text-align: center; border-color: var(--color-main);}
.detailTable tbody td { padding: 10px 15px;}
.detailTable tbody td.tdName { font-weight: bold; background: #f7f7f7; text-align: center; width: 20%; font-size: 14px;}
.detailTable .trTitle .tdCon { font-weight: bold; white-space: normal; word-break: break-all;}
.detailTable .trName td:nth-child(2),
.detailTable .trUnit td:nth-child(2) { width: 160px}
.detailTable .trName td:nth-child(3),
.detailTable .trUnit td:nth-child(3) { width: 160px}
.detailTable .preDiv { width: 670px; overflow: auto;}
.detailTable .preDiv pre { font-size: 14px; font-family: "Microsoft YaHei", 'PingFang SC', Arial, Helvetica, Tahoma, sans-serif; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;}

/*验证码*/
div.codeinp input[type=text] { width: 100px !important; float: left; margin-right: 10px;}

/* 通用底部按钮 */
.bot { text-align: center; padding: 0 0 20px 0;}
.bot a,
.bot button { cursor: pointer; display: inline-block; height: 46px; line-height: 46px; padding: 0 5%; font-size: 16px; background: var(--color-main); border: 0; color: #fff; margin: 0 2%; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;}
.bot a:hover,
.bot button:hover { text-decoration: none; background: #077BD4;}

/* 依申请、信访、咨询等通用 查询页样色 */
.queryForm { padding: 3% 0; width: 80%; margin: 30px auto; font-size: 16px;}
.queryForm td { padding: 8px 0}
.queryForm .tdlab { width: 40%; text-align: right;}
.queryForm input[type=text] { width: 56%; height: 30px; line-height: 30px; padding: 0 10px; border: 1px solid #ddd; border-radius: 3px;}
.queryForm .bot { text-align: left;}
.queryForm .bot a { margin: 0}
.queryForm .required strong { color: #f00; margin-right: 5px;}
.queryForm .errorMessage { color: #f00;}
.queryForm table { width: 100%; border: 0;}

/* 依申请、信访、咨询等通用 查询结果页样色 */
.queryResult { width: 80%; margin: 30px auto;}
.queryResult .mainBox { margin-bottom: 50px;}
.queryResult .tit h3 { text-align: center; font-size: 38px; line-height: 2; margin-bottom: 30px;}
.queryResult .tips { text-align: center; font-size: 16px; margin-bottom: 50px; border-top: 1px solid #ddd; padding: 50px 0 20px 0;}
.queryResult .number { font-weight: bold; color: #f00}