@charset "UTF-8";

/* 搜索 start */
.search {
    overflow: hidden;
    background: #f2f2f2;
}

.searchInput {
    width: 268px;
    z-index: 0;
    float: left;
    display: inline;
}

.searchInput input {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    height: 40px;
    line-height: 40px;
    background: none;
    border: none;
}

.searchInput input input::-webkit-input-placeholder {
    color: #666666;
    /* placeholder颜色  */
    font-size: 14px;
    /* placeholder字体大小  */
    text-align: left;
    /* placeholder位置  */
}

.searchBtn {
    float: left;
    display: inline;
    width: 38px;
    height: 40px;
    overflow: hidden;
    background: url(../images/common/search.png) no-repeat center center;
    position: relative;
}

.searchBtn:before {
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    margin-top: -10px;
    width: 1px;
    height: 20px;
    background-color: #d7d7d7;
}

.topSearch {
    height: 38px;
    margin-top: 16px;
    margin-right: 42px;
    padding-left: 36px;
}

.topSearch a {
    display: block;
    height: 38px;
    padding-left: 54px;
    position: relative;
    line-height: 38px;
    font-size: 16px;
    color: #333;
}

.topSearch a::before {
    display: block;
    content: '';
    position: absolute;
    width: 42px;
    height: 38px;
    left: 0;
    top: 0;
    border-radius: 19px;
    background: #f4f4f4 url(../images/searchW.png) center center no-repeat;
    transition: all 0.3s linear;
}

.topSearch:hover a:hover::before {
    background: #0085ff url(../images/searchW_h.png) center center no-repeat;
}

.topSearch:hover a {
    color: var(--themeColor);
}

.animHide {
    opacity: 0;
}

.model.show::before {
    animation: menu-animation .8s ease-out forwards;
    transform: scale(2) translateY(0);
}

.model.show {
    display: block;
}

.model {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10600;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.model span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    font-size: 72px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    z-index: 10;
    font-weight: lighter;
}

.model::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, .87);
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
    transform: scale(.04) translateY(9999px);
    overflow: hidden;
    z-index: 9;
}

.searchPWBox {
    width: 600px;
    height: 60px;
    overflow: hidden;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    margin: -30px 0 0 -300px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    ;
}

.searchPWBox input {
    display: block;
    float: left;
    width: 530px;
    height: 60px;
    background: none;
    border: none;
    line-height: 60px;
    color: #333;
    font-size: 16px;
    padding-left: 10px;
    background: #fff;
}

.searchPWBox input::placeholder {
    color: #999;
    font-size: 16px;
}

.searchPWBox input::-webkit-placeholder {
    color: #999;
    font-size: 16px;
}

.searchPWBox a {
    float: right;
    display: inline;
    width: 60px;
    height: 60px;
    background: var(--themeColor) url(../images/common/searchH.png) no-repeat center center;
    background-size: 19px 20px;
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 60px;
}

.searchPWBox a:hover {
    opacity: 0.9;
}

@keyframes menu-animation {
    0% {
        opacity: 0;
        transform: scale(.04) translateY(300%)
    }

    40% {
        transform: scale(.04) translateY(0);
        transition: ease-out
    }

    40% {
        transform: scale(.04) translateY(0)
    }

    60% {
        opacity: 1;
        transform: scale(.02) translateY(0)
    }

    61% {
        opacity: 1;
        transform: scale(.04) translateY(0)
    }

    99.9% {
        opacity: 1;
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%
    }

    100% {
        opacity: 1;
        transform: scale(2) translateY(0);
        height: 100%;
        padding-bottom: 0;
        border-radius: 0
    }
}

/* 搜索 end */

/* 顶部 start */
.top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 92px;
    left: 0;
    z-index: 99;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
}

.logo {
    font-size: 0;
    padding: 11px 0;
}

.logo img {
    display: block;
    height: 70px;
}

.topR {
    padding: 27px 0;
}
.topPhone{
    height: 36px;
    line-height: 36px;
    font-size: 18px;
    padding-left: 48px;
    background: url(../images/topIcon.png) left center no-repeat;
    font-family: 'Apercu';
    color: #fff;
}
.menuDl {
    display: flex;
    float: left;
    display: inline;
}

.menuDl dd {
    float: left;
    display: inline;
    position: relative;
    margin-right: 0;
    height: 40px;
}

.mainMenu {
    position: relative;
    z-index: 9;
    padding: 0 36px;
    margin: 0 3px;
}


.mainMenu a {
    font-size:18px;
    color: #fff;
    display: block;
    line-height: 40px;
    height: 40px;
    text-align: center;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    font-family: 'Alibaba PuHuiTi 2.0 55';
    position: relative;
    z-index: 6;
}

.menuDl dd.hover .mainMenu a,
.mainMenu a:hover {
    color: #fff;
}

.menuDl dd .subMenu {
    padding-top: 8px;
    position: absolute;
    left: 50%;
    margin-left: -70px;
    top: 72px;
    width: 140px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 10;
}

.menuDl dd .subMenu.style2 {
    width: 645px;
    margin-left: -322px;
}

.menuDl dd .subMenu:before {
    display: block;
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -8px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.menuDl dd .subMenu .subMenuItem {
    position: relative;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 8px 0 0;
    overflow: hidden;
    z-index: 3;
}

.menuDl dd .subMenu.style2 .subMenuItem {
    padding: 20px;
}

.menuDl dd .subMenu a {
    display: block;
    padding: 8px;
    line-height: 24px;
    text-align: center;
    font-size: 14px;
    color: #333;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    /* font-family: 'phtL'; */
}

.menuDl dd .subMenu .subMenuItem a:hover,
.menuDl dd .subMenu .subMenuItem a.hover {
    color: var(--themeColor);
}

.menuDl dd:hover .subMenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.topR .menuIcon div {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    border-radius: 40px;
}

.menuTabTitle {
    margin-left: 50px;
}

.menuTabTitle a {
    display: block;
    font-size: 15px;
    color: #666666;
    padding: 8px;
    line-height: 24px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.menuTabTitle a:hover,
.menuTabTitle a.hover {
    color: #0063b1;
}

.menuTabContent {
    overflow: hidden;
}

.menuTabContent .pic {
    width: 150px;
    margin-right: 20px;
    overflow: hidden;
}

.menuTabContent .pic:before {
    padding-top: 66.6666%;
}

.menuTabContent .text {
    overflow: hidden;
}

.menuTabContent .info {
    font-size: 14px;
    color: #858585;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
}

.menuTabContent .enter {
    line-height: 24px;
}

.menuDl1 dd .subMenu .enter a {
    color: #3184d7;
    text-align: left;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.menuDl1 dd .subMenu .enter a:hover {
    opacity: 0.8;
}

.languageBox {
    margin-top: 16px;
    position: relative;
    height: 38px;
    cursor: pointer;
    background:#f4f4f4;
    padding: 0 17px;
    border-radius: 36px;
}

.languageBox span {
    height: 38px;
    line-height:38px;
    font-size: 14px;
    color: #444;
    padding-right: 18px;
    background: url(../images/languageXl.png) no-repeat center right;
    z-index: 3;
    position: relative;
}

.languageBox span i {
    background: url(../images/language.png) no-repeat center left;
    height: 38px;
    width: 20px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}

.languageBox .language {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    padding-top: 46px;
    width: 100%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
}

.languageBox .language a {
    display: block;
    width: 100%;
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    text-align: center;
    color: #999;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    position: relative;
}

.languageBox .language a::before {
    display: block;
    content: '';
    width: 2px;
    height: 14px;
    background-color: var(--themeColor);
    position: absolute;
    top: 6px;
    left: 0;
    transform: scale(0);
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
}

.languageBox .language a:hover {
    color: var(--themeColor);
}

.languageBox .language a:hover::before {
    transform: scale(1);
}

.languageBox:hover .language {
    opacity: 1;
    visibility: visible;
}

.languageBox:hover span,
.languageBox.hover span {
    color: #666;
    background-image: url(../images/languageXl.png)
}

.languageBox:hover span i,
.languageBox.hover span i {
    color: #666;
    background-image: url(../images/language.png)
}

/* 顶部 end */

/* ————— 底部 start ————— */
/* 底部中间start   */
.footer{
    background: #313131;
}
.footerM{ padding: 60px 0 50px;}
.footerML{float: left; display: inline; margin-right: 50px;}
.footerLogo{ padding-top: 10px; margin-bottom: 38px;}
.footerLogo img{ display: block; height: 80px;}
.footerItem{
    height: 36px;
    line-height: 36px;
    font-size: 18px;
    color: #999;
    font-family: 'Alibaba PuHuiTi 2.0 55';
    overflow: hidden;
}
.footerItem .title{
    float: left;
    display: inline;
}
.footerItem .text{
    overflow: hidden;
}
.footerItem:nth-child(1) .text{
    color: #fff;
    font-size: 24px;
} 
.footerMR{
    padding-top: 54px;
}
.footerMRTitle{
    height: 54px;
    line-height: 54px;
    font-size: 22px;
    font-family: 'Alibaba PuHuiTi 2.0 55';
    color: #fff;
    margin-bottom: 24px;
}
.footerMR{ float: right; display: inline;}
.footerEwm{ position: relative;}
.footerEwm::after{
    display: block;
    content: '';
    clear: both;
}
.footerEwm dd{ float:left; display:inline; position:relative; margin-right:30px;}
.footerEwm dd .icon{width: 56px;height: 56px;border-radius: 56px;background: #3b3b3b;border-radius: 56px;}
.footerEwm dd .icon span{
    display: block;
    height: 56px;
    width: 56px;
    background-position: center center;
    background-repeat: no-repeat;
}
.footerEwmBox{position: absolute;width: 120px;height: 120px;border-radius: 3px;left: 50%;margin-left: -63px;top: -150px;background: #fff;z-index: 5;opacity: 0;visibility:hidden ;transition: all 0.5s ease;-webkit-transition: all 0.5s ease;}
.footerEwmBox::before {
    display: block;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #fff;
    left: 50%;
    bottom: -20px;
    margin-left: -10px;
    z-index: -1;
}
.footerEwm dd:hover .footerEwmBox{
    opacity: 1;
    visibility: visible;
    top: -135px;
}
.footerEwmImg img{ display:block; width:120px; height:120px;border-radius: 3px;}
.footerEwm dd .title{ height: 55px;line-height: 55px;text-align: center;font-size: 14px;color: #858585;}
.footerMRL{
    margin-right: 75px;
}
.footerMRR{
    margin-top: 15px;
}
.footerMRR a{
    display: block;
    width: 45px;
    height: 60px;
    background: #e9e9e9 url(../images/backTop.png) center no-repeat;
    border-radius: 40px;
}
/* 底部中间end   */
/* 底部版权start   */
.friendCopyRight{ height: 80px; line-height: 80px; overflow: hidden; font-size: 16px; color: #999;border-top: 1px solid rgba(255, 255, 255, 0.2); font-family: 'Alibaba PuHuiTi 2.0 55';}
.friendCopyRight .conL{ float: left; display: inline;}
.friendCopyRight .conL span{ margin-right: 20px;float: left;display: inline;}
.friendCopyRight .conL a{ color: #999; margin-right: 20px;float: left;display: inline;}
.friendCopyRight .conL a.gabeian{ padding-left: 30px;background: url(../images/beian.png) left center no-repeat;}
.friendCopyRight .conL a:hover{ color:#fff;}
.friendCopyRight .conR{ float: right; display: inline;}
.friendCopyRight .conR a{color: #999; }
.friendCopyRight .conR a:hover{ color:#fff;}
/* 底部版权end   */
/* ————— 底部 end   ————— */

/* ————— subBanner start ————— */
.subBanner{position: relative;overflow: hidden;width: 100%;}
.subBanner:before{display: block;content: '';padding-top: 20%;}
.subBanner img{position: absolute;width: 100%;height: 100%;left: 0;top: 0;object-fit: cover; object-position: center center;transform: scale(1.1);-webkit-transform: scale(1.1);transition: all 3s ease;-webkit-transition: all 3s ease;}
.subBanner.on  img{transform: scale(1);-webkit-transform: scale(1);}
.subBanner .text{width: 100%;height: 100%;position: absolute;top: 0;left: 0;}
.subBanner .wrap{height: 100%;}
.subBanner .textC{position: relative;text-align: center;}
.subBanner .textC .cnTitle{font-size: 30px;color: #ffffff;line-height: 30px;font-weight: bold;text-shadow: 0px 0px 5px rgb(0 0 0 / 0.1); margin-bottom: 10px;}
.subBanner .textC .enTitle{font-size: 14px;color: rgb(255 255 255 / .78);line-height: 30px;text-transform: uppercase;text-shadow: 0px 0px 5px rgb(0 0 0 / 0.1);}
/* ————— subBanner end ————— */

/* ————— 当前位置 start ————— */
.locationBox{clear:both;width: 100%;height: 60px;background: #fff;box-shadow:0 3px 5px #dcdcdc;}
.location{height: 60px;overflow: hidden;padding-left: 33px;position: relative;}
.location a.home{ position: absolute; left: 0; top: 0; width: 33px; height: 100%;background-position: left center;background-repeat: no-repeat;background-image: url(../images/common/home.png); padding-left: 0; margin-right: 0;background-size: 20px;}
.location a{display: inline;float: left;height: 60px;line-height: 60px;padding-left: 14px;margin-right: 10px;background-position: left center;background-repeat: no-repeat;background-image: url(../images/common/icon8.png);color: #a3a3a3;font-size: 14px;}
.location a:hover{color:var(--themeColor)}
.location a.hover{color:var(--themeColor)}
.subNavBox{margin-right:-15px; position: relative;}
.subNav::after{ display: block; content: ''; clear: both; visibility: hidden;}
.subNav a{display: inline;float: left;line-height: 60px;height:60px;color: #666666;font-size: 14px;padding:0 14px;}
.subNav a.hover{color: var(--themeColor)}
.subNav a:hover{color: var(--themeColor)}
/* ————— 当前位置 end ————— */
/* ————— 三级栏目 start ————— */
.sjMenu{ text-align: center; font-size: 0;}
.sjMenu a{ display: inline-block; height: 30px; line-height: 30px; padding:0 30px; color: #333; border: 1px solid #fff; border-radius: 32px; font-size: 14px; margin: 0 5px; background: #FFF;}
.sjMenu a:hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.sjMenu a.hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
/* ————— 三级栏目 end ————— */
/* ————— 页码 start ————— */
.page{text-align: center;clear: both;font-size: 14px;}
.page a{display: inline-block;overflow: hidden;width:40px;height: 40px;line-height: 40px; color:#999999;border-radius:3px;background: #fff; margin: 0 3px;vertical-align: middle;}
.page span{display: inline-block; padding: 10px 15px; position: relative; top: -15px;}
.page a:hover{background: var(--themeColor);color: #fff;}
.page a.hover{background: var(--themeColor);color: #fff;}
.page input{display: inline-block;vertical-align: middle;height: 22px;border: 1px solid #e6e6e6;position: relative; top: -2px;}
.page input.pageDetail{width: 30px; height: 30px; text-align: center; border-radius: 3px; color: #999999; position: relative; top: -13px;}
.page label{color:#999999;position: relative;top: -11px;}
.page input.page_bnt{border: none; width: 30px; height: 25px; cursor: pointer; background: none; color: #999999; position: relative; top: -13px;}
.page a div{width: 40px;height: 40px;background-position: center center;background-repeat: no-repeat;}
.page a.firstPage div{background-image: url(../images/common/page/firstPage.png)}
.page a.prevPage div{background-image: url(../images/common/page/prevPage.png)}
.page a.nextPage div{background-image: url(../images/common/page/nextPage.png)}
.page a.lastPage div{background-image: url(../images/common/page/lastPage.png)}
.page a.firstPage:hover div{background-image: url(../images/common/page/firstPageh.png)}
.page a.prevPage:hover div{background-image: url(../images/common/page/prevPageh.png)}
.page a.nextPage:hover div{background-image: url(../images/common/page/nextPageh.png)}
.page a.lastPage:hover div{background-image: url(../images/common/page/lastPageh.png)}
.page a.firstPage.disabled{background:#E2E2E2;}
.page a.prevPage.disabled{background:#E2E2E2;}
.page a.nextPage.disabled{background:#E2E2E2;}
.page a.lastPage.disabled{background:#E2E2E2;}
.page a.firstPage.disabled div{background-image: url(../images/common/page/firstPage.png)}
.page a.prevPage.disabled div{background-image: url(../images/common/page/prevPage.png)}
.page a.nextPage.disabled div{background-image: url(../images/common/page/nextPage.png)}
.page a.lastPage.disabled div{background-image: url(../images/common/page/lastPage.png)}
/* ————— 页码 end ————— */


/*********** 基础公共列表页 start ***********/
/* 全图列表 start */
.imgList{overflow: hidden;margin:0 -10px;}
.imgList dd{width: 33.3333%;float: left;display: inline;padding: 10px 0;}
.imgList dd .con{display: block;background: #FFFFFF;margin:0 10px;border-radius: 5px; overflow: hidden;transition: all .4s;-webit-transition: all .4s;}
.imgList dd .con .pic::before{padding-top: 56.563462%;}
.imgList dd .con .pic .newPic{position: absolute !important;left: 0;top: 0;}
.imgList dd .con .text{height: 60px;line-height: 60px;padding: 0 20px;font-size: 16px;color: #333333;text-align: center;transition: all 0.4s;-webkit-transition: all 0.4s;}
.imgList dd .con:hover {transform: translateY(-2px);-webkit-transform: translateY(-2px);box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);}
.imgList dd .con:hover .text{color: var(--themeColor);}
/* 全图列表 end */
/* 图文列表 start */
.imgText dd{overflow: hidden;padding: 20px;margin-bottom: 30px;background: #FFF;border-radius: 5px;transition: all .4s;-webit-transition: all .4s;}
.imgText dd .pic{ width: 240px; overflow: hidden; position: relative; margin-right: 20px;border-radius: 5px;}
.imgText dd .pic:before{ display: block; content: ''; padding-top: 70%;}
.imgText dd .pic img{ display:block; width:100%; height:100%; position:absolute; left:0px; top:0px;}
.imgText dd .text{ overflow: hidden;}
.imgText dd .text .title{ overflow: hidden; height: 30px; line-height: 30px; font-weight: bold;margin-bottom: 8px;}
.imgText dd .text .title a{ color: #666; font-size: 16px;}
.imgText dd .text .textC{ font-size:14px; color:#666666; line-height:30px; height:90px; overflow:hidden; margin-bottom:8px;}
.imgText dd .text .time{  height:25px; line-height:25px; overflow:hidden; color:#999999;}
.imgText dd .text .time span{ float:left; display: inline;}
.imgText dd .text .time em{ float:left; display: inline; font-style: normal; margin: 0 15px;}
.imgText dd:hover .text .title a{ color: var(--themeColor);}
.imgText dd:hover{ transform: translateY(-2px);-webkit-transform: translateY(-2px);box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);}
/* 图文列表 end */
/* 全文列表 start */
.textList{margin: 0 -30px 0 0;}
.textList::after{ clear:both; content: ''; visibility: hidden; display: block;}
.textList dd{width: 100%;float: left;display: inline;}
.textList dd .con{display: block;margin: 0 30px 30px 0;background: #fff;padding: 15px;overflow: hidden;transition: 0.4s;-webkit-transition: 0.4s;border-radius: 5px;}
.textList dd .con:hover{box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);-webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);transform: translateY(-2px);-webkiet-transform: translateY(-2px);}
.textList dd .timeBox{width: 106px;height: 80px;float: left;display: inline;position: relative;text-align: center;}
.textList dd .timeBox::before{content: '';display: block;width: 1px;height: 100%;background: #f5f5f5;position: absolute;top: 0;right: 1px;}
.textList dd .timeBox .time1{height: 36px;line-height: 36px;overflow: hidden;font-size: 30px;color: var(--themeColor);font-weight: bold;margin-bottom: 5px;}
.textList dd .timeBox .time2{height: 20px;line-height: 20px;overflow: hidden;font-size: 14px;color: #999999;}
.textList dd .con .text{overflow: hidden;height: 80px;box-sizing: border-box;-webkit-box-sizing: border-box;padding: 0 20px;}
.textList dd .title{display: inline-block;font-size: 16px;color: #666666;line-height: 30px;height: 30px;overflow: hidden;max-width: 100%;white-space: nowrap;text-overflow: ellipsis;transition: 0.4s;-webkit-transition: 0.4s;}
.textList dd .con:hover .title{color: var(--themeColor);}
/* 全文列表 end */
/* 下载 start */
.downLoadPage{ padding: 20px;}
.downLoad{ overflow: hidden;}
.downLoad  span{ float: left; display: inline; box-sizing: border-box;-webkit-box-sizing: border-box; text-align: center; overflow: hidden;}
.downLoad  span.span1{ padding: 0 20px; width: 68%; text-align: left;}
.downLoad  span.span2{ width: 16%;}
.downLoad  span.span3{ width: 16%;}
.downLoad dt{ overflow: hidden; background: var(--themeColor);}
.downLoad dt span{height: 60px;line-height: 60px;color: #ffffff;font-size: 16px;}
.downLoad dd{ overflow: hidden;}
.downLoad dd span{height: 60px;line-height: 60px;color: #333333;font-size: 14px;}
.downLoad dd a{ color: #333333;}
.downLoad dd a.btn{display: inline-block;vertical-align: middle;height: 35px;line-height: 35px;padding: 0 15px 0 40px;background-position: 16px center;background-repeat: no-repeat;color:var(--themeColor);font-size: 14px;background-image: url(../images/downLoadIcn1.png);border-radius: 4px;background-color: transparent;border: none;transition: all 200ms ease-in;-webkit-transition: all 200ms ease-in;background-size: auto 20px;}
.downLoad dd.even{ background: #f8f8f8;}
.downLoad dd:hover span{color: var(--themeColor);}
.downLoad dd:hover a{color: var(--themeColor);}
.downLoad dd:hover a.btn{background-color: var(--themeColor); color: #FFF; background-image: url(../images/downLoadIcn1H.png);}
/* 下载 end */
/* 视频列表 start */
.videoList {overflow: hidden;margin:0 -15px;}
.videoList dd {width: 33.33333%;float: left;display: inline;padding: 15px 0;}
.videoList dd .con {display: block;margin:0 15px;background: #fff;overflow: hidden;border-radius: 5px;transition: .4s;-webkit-transition: .4s;}
.videoList dd .pic::before{padding-top: 66.5761%;}
.videoList dd .pic .playBtn{position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: rgba(0, 0, 0, 0.3);z-index: 2;}
.videoList dd .pic span.play {width: 100%;height:60px;margin-bottom:10px;display: block;background: url(../images/common/videoIco.png) no-repeat center center;background-size: 50px;}
.videoList dd .pic span.time {width: 100%;height: 16px;line-height: 16px;display: block;font-size: 16px;color: #ffffff;text-align: center;}
.videoList dd .text{padding:20px;}
.videoList dd .con .title {height: 25px;line-height: 25px;font-size: 16px;color: #333333;overflow: hidden;transition: all 0.4s;-webkit-transition: all 0.4s; text-align: center;}
.videoList dd .con:hover .title {color: var(--themeColor);}
.videoList dd .con:hover{box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);-webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);transform: translateY(-2px);-webkiet-transform: translateY(-2px);}
/* 视频列表 end */
/* 视频弹窗 start */
.aykj-videoPop .layui-layer-setwin .layui-layer-close2{
	width:30px !important;
	height:30px !important;
	right:-40px;
    top:-40px;
}
.aykj-videoPop {
	border:10px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1)!important;
	border-radius:5px !important;
	background-color:#000 !important;
	}
/* 视频弹窗 end */

/* ————— 音频列表 start ————— */
.audioList{overflow: hidden;margin: 0 -15px;}
.audioList dd{float: left;display: inline;width: 50%;padding: 15px 0;}
.audioList dd .con{padding:20px 30px;margin: 0 15px;background: #FFFFFF;position: relative;transition: all .4s;border-radius: 5px;}
.audioList dd .title{overflow: hidden;}
.audioList dd .title span{float: left;display: inline;width: 36px;height: 36px;background: url(../images/audioList/player.png) center center no-repeat;}
.audioList dd .title .titleC{overflow: hidden;padding: 0 10px;line-height: 36px;height: 36px;font-size: 16px;color: #666;}
.audioList dd .audioInfor{height: 30px;overflow: hidden;}
.audioList dd .audioTime{height: 30px;line-height: 30px;font-size: 14px;color: #666;}
.audioList dd .audioTime span{padding-right: 5px;}
.audioList dd .audioTime em{font-style: normal;padding-left: 5px;}
.audioList dd  .audioHandle {overflow: hidden; display: none;}
.audioList dd  .audioHandle.show{ display: block;}
.audioList dd .audioPlayerBtn {width: 30px;height: 30px;margin-right: 5px;}
.audioList dd  .audioHandle a{display: block;font-size: 0;width: 30px;height: 30px;background-position: center center;background-repeat: no-repeat;background-size: auto 30px;}
.audioList dd .audioHandle a.btnPlay{background-image: url(../images/audioList/audioPlay.png);}
.audioList dd .audioHandle a.btnPause{background-image: url(../images/audioList/audioPause.png);}
.audioVoice{ float: left; display: inline;}
.audioVoiceBtn{overflow: hidden;float: left;display: inline;}
.audioVoiceBtn span{display: block;width: 30px;height: 30px;background: url(../images/audioList/voice.png) center center no-repeat;background-size: auto 28px;margin-right: 5px;cursor: pointer;}
.audioVoiceBtn.noVoice span{background-image:url(../images/audioList/noVoice.png);}
.audioVoiceNum{float: left;display: inline;width: 84px;position: relative;height: 5px;background: #f0f0f0;border-radius: 5px;margin-top: 12px;}
.audioVoiceNum em{display: block;border-radius: 5px;height: 100%;width: 50%;background: #999;position: relative;}
.audioVoiceNum em i{ position: absolute; width: 9px; height: 9px; background: #999; border-radius: 8px; right: 0; top: 50%; margin-top: -5px; cursor: pointer;}
.audioList dd .audioWavBox{width: 100%;height: 36px;background: #f5f5f5;border-radius: 5px;position: relative;}
.audioList dd .audioWav{position: relative;width: 100%;box-sizing: border-box;-webkit-box-sizing: border-box;}
.audioWavBox .loadDataTip{text-align: center;position: absolute;left: 0;top: 0;line-height: 36px;color: #999;width: 100%;}
.audioList dd .con:hover{box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);-webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);transform: translateY(-2px);-webkiet-transform: translateY(-2px);}
/* ————— 音频列表 end ————— */
/* 资质荣誉 start */
.hornorList {overflow: hidden;margin: 0 -15px;}
.hornorList dd {width: 33.33333%;float: left;display: inline;padding: 15px 0;}
.hornorList dd a {display: block;margin: 0 15px;border-radius: 10px;overflow: hidden;background: #FFFFFF;transition-duration: 0.4s;-webkit-transition-duration: 0.4s;}
.hornorList dd a .picBox {padding: 10px;}
.hornorList dd a .picBox .pic::before {padding-top: 56.563462%;}
.hornorList dd a .picBox .pic img {object-fit: contain;}
.hornorList dd a .text {box-sizing: border-box;-webkit-box-sizing: border-box;padding: 0 20px;text-align: center;border-top: 1px solid #e7e7e7;}
.hornorList dd a .text .title {font-size: 16px;color: #333333;transition-duration: 0.4s;-webkit-transition-duration: 0.4s;height: 64px;line-height: 64px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.hornorList dd a:hover .text .title {color: var(--themeColor);}
.hornorList dd a:hover {box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);-webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);transform: translateY(-2px);-webkit-transform: translateY(-2px);}
/* 资质荣誉 end */
/* 期刊杂志 start */
.magezineList{overflow: hidden;margin:0 -15px 0 0;}
.magezineList dd{width: 25%;float: left;display: inline;padding:15px 0px;}
.magezineList dd .con{display: block;background: #FFFFFF;margin:0 15px; border-radius: 5px; overflow: hidden;transition-duration: 0.4s;-webkit-transition-duration: 0.4s;}
.magezineList dd .con .pic::before{padding-top:133.333333%;}
.magezineList dd .con .pic .scan{ position: absolute; left: 0;top: 0; width: 100%;height: 100%; background: rgba(0,0,0,.5) url(../images/eyeImg.png) no-repeat center center; visibility: hidden; opacity: 0; transition: all 300ms linear;-webkit-transition: all 300ms linear;}
.magezineList dd .con .text{height: 60px;line-height: 60px;padding: 0 20px;font-size: 16px;color: #333333;text-align: center;transition: all 0.4s;-webkit-transition: all 0.4s;}
.magezineList dd a:hover {box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);-webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);transform: translateY(-2px);-webkit-transform: translateY(-2px);}
.magezineList dd .con:hover .text{color: var(--themeColor);}
.magezineList dd .con:hover  .pic .scan{visibility: visible; opacity: 1;}
/* 期刊杂志 end */
/* 数字报纸 start */
.newsPaperTime{ text-align: left; font-size: 0; margin: 0 -5px 15px;}
.newsPaperTime a{ display: inline-block; height: 30px; line-height: 30px; padding:0 30px; color: #333; border: 1px solid #fff; border-radius: 32px; font-size: 12px; margin: 0 5px; background: #FFF;}
.newsPaperTime a:hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.newsPaperTime a.hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.newsPaper{overflow: hidden;margin:0 -15px;}
.newsPaper dd{width: 25%;float: left;display: inline;padding: 15px 0;}
.newsPaper dd .con{display: block;background: #FFFFFF;margin:0 15px; border-radius: 5px; overflow: hidden;transition: .4s;-webkit-transition: .4s;}
.newsPaper dd .con .pic::before{padding-top:133.333333%;}
.newsPaper dd .con .pic .scan{ position: absolute; left: 0;top: 0; width: 100%;height: 100%; background: rgba(0,0,0,.5) url(../images/eyeImg.png) no-repeat center center; visibility: hidden; opacity: 0; transition: all 300ms linear;-webkit-transition: all 300ms linear;}
.newsPaper dd .con .text{height: 60px;line-height: 60px;padding: 0 20px;font-size: 16px;color: #333333;text-align: center;transition: all 0.4s;-webkit-transition: all 0.4s;}
.newsPaper dd .con:hover .text{color: var(--themeColor);}
.newsPaper dd .con:hover  .pic .scan{visibility: visible; opacity: 1;}
.newsPaper dd .con:hover {box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);-webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);transform: translateY(-2px);-webkit-transform: translateY(-2px);}
/* 数字报纸 end */
/* 横向瀑布流 start */
.waterFall2{opacity: 0;}
.waterFall2>div>a{ display: block; border-radius: 5px; overflow: hidden;}
.waterFall2 .caption{font-size: 16px;color: #fff;height: 50px;line-height: 50px;text-align: center;-webkit-box-sizing: border-box;box-sizing: border-box;background: rgb(0,0,0,0.4);position: absolute;bottom: 0;left: 0;width: 100%;opacity: 0;transition: all .4s linear;-webkit-transition: all .4s linear}
/* 横向瀑布流 end */
/* 纵向瀑布流 start */
.waterFall{position: relative;width: 100%;z-index: 1 !important; opacity: 0;}
.waterFall dd {width: 33.3333%;position: absolute;top: 0;left:0;padding: 15px 0;}
.waterFall dd a {display: block;margin:0 15px;background: #fff;transition: all 0.3s linear;-webkit-transition: all 0.3s linear;}
.waterFall dd a .grPic {height: auto;;box-sizing: border-box;-webkit-box-sizing: border-box;overflow: hidden; border-radius: 5px;}
.waterFall dd a .grPic img {width: 100%;height: 100%;}
.waterFall dd .con{position: relative;}
.waterFall dd a .text {font-size: 16px;color: #fff;height: 50px;line-height: 50px;text-align: center;-webkit-box-sizing: border-box;box-sizing: border-box;background: rgb(0,0,0,0.4);position: absolute;bottom: 0;left: 0;width: 100%;opacity: 0;transition: all .4s linear;-webkit-transition: all .4s linear}
.waterFall dd a:hover .text {opacity: 1;}
/* 纵向瀑布流 end */
/* 表单模板 start */
.input{ border: 1px solid #ddd; padding:0 10px}
.input input{ border: none; background: none; width: 100%; height: 38px; line-height: 38px; font-size: 14px; color: #333;}
.textarea{ border: 1px solid #ddd; padding:5px 10px}
.textarea textarea{ border: none; background: none; width: 100%; height: 120px; line-height: 25px; font-size: 14px; color: #333;}
a.formBtn{ display: inline-block; height: 40px; line-height: 40px; border: 1px solid #ddd; background: #FFF; border-radius: 3px; font-size: 14px; color: #333; padding:0 30px; margin: 0 5px;}
a.formBtn:hover{ opacity: .9;}
.commonFormBox{ background: #FFF;padding: 40px;}
.commonForm{ margin-right: -40px; font-size: 14px;}
.commonForm:after{ clear:both; content: ''; visibility: hidden; display: block;}
.commonForm .item{ width: 50%; float: left; display: inline; margin-bottom: 15px;}
.commonForm .item.w100p{ width: 100%;}
.commonForm .item .con{ margin-right: 40px;}
.commonForm .item .label{ height: 38px; line-height: 38px;}
.commonForm .item .label span{ color: #da0100;}
.commonForm .item .itemC{ clear: both; min-height: 40px;}
.recruitListTc{ padding:20px; overflow: hidden;}
.commonForm .el-cascader{width: 100%;}
.upLoadResume{ font-size: 0;}
.upLoadResume span{ display: inline-block; font-size: 14px; height: 40px; line-height: 40px;color: #aeaeae;}
.upLoadResume a.up{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.upLoadResume a.down{ background: #e9e9e9; border-color: #e9e9e9;}
.input input { border: none;background: none;width: 100%;height: 38px;line-height: 38px;font-size: 14px;color: #333;}
.input { border: 1px solid #ddd;padding: 0 10px;}
.formYzm .input {width: 50%;float: left;display: inline;}
.formYzm .yzmImg {width: 118px; height: 38px;border: 1px solid #ddd;background: #ddd;float: left;display: inline;margin-left: 20px;}
.formYzm .yzmImg img {display: block;width: 100%;height: 100%;}
.formSubBtn{ font-size: 0; text-align: left; margin: 0 -5px;}
.formSubBtn a{ padding:0 40px; border-radius: 5px;}
.formSubBtn a.submit{ background:var(--themeColor); color: #FFF;border-color: var(--themeColor);}
.formSubBtn a.reset{ background: #ddd; color: #8b8b8b;}
/* 表单模板 start  */


/* 招聘 start  */
.recruitListPage{ background: #FFF; padding:20px}
.recruitListBox{ padding:20px;}
.recruitTitle{position: relative;padding-left: 20px;margin-bottom: 20px; height: 50px; line-height: 50px; border-bottom: 1px solid #ddd;}
.recruitTitle::before{width: 4px;height: 26px;background: var(--themeColor);display: block;content: '';position: absolute;top: 50%;left: 0;margin-top: -13px;}
.recruitTitle .conL{ float: left; display: inline; font-size: 24px;color: #000000;}
.recruitTitle .conR{ float: right; display: inline;}
.recruitTitle .conR a{ color: var(--themeColor); font-size: 14px;}
.recruitTitle .conR a:hover{ color: var(--themeColor);}
/* 列表start */
.recruitListTop {
	padding: 40px 0;
}

.recruitListTopR {
	float: right;
	display: inline;
}

.recruitListTopText {
	height: 62px;
	line-height: 62px;
	overflow: hidden;
	font-size: 16px;
	color: #999999;
	overflow: hidden;
}

.recruitListTopL {
	overflow: hidden;
}

.lc_search1Box {
	overflow: hidden;
	background: #FFFFFF;
	padding: 6px;
	border-radius: 30px;
	width: 418px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.lc_search1Box .searchBtn {
	float: right;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	background: var(--themeColor);
	cursor: pointer;
	position: relative;
	color: #fff;
}

.lc_search1Box .searchBtn:before {
	display: none;
}

.searchIcon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: url(../images/searchW_h.png) center center no-repeat;
}

.lc_search1Box .searchDiv {
	overflow: hidden;
}

.lc_search1Box .searchDiv .input {
	width: 100%;
	height: 50px;
	line-height: 50px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0 22px;
	font-size: 16px;
	color: #333;
	border: none;
	background: none;
}

.recruitListTop .lc_search1Box {
	float: left;
	display: inline;
	margin-right: 42px;
}

.recruitListDl dd {
	padding: 10px 0;
}

.recruitListDl dd .con {
	background: #FFFFFF;
	border-radius: 10px;
	padding: 0 40px;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.recruitListDl dd .con:hover {
	box-shadow: 1px 3px 15px 0px rgb(30, 33, 136, 0.12);
	-webkit-box-shadow: 1px 3px 15px 0px rgb(30, 33, 136, .12);
	transform: translateY(-2px);
	-webkit-transform: translateY(-2px);
}

.recruitListDl dd .ddTop {
	overflow: hidden;
	padding: 20px 0;
}

.recruitListDl dd .jt_more2Box .a2.active .rightIcon:before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	right: 0;
	bottom: 4px;
}

.recruitListDl dd .ddTopRight {
	float: right;
	margin-left: 40px;
	padding: 26px 0 0;
}

.recruitListDl dd .ddTopLeft {
	overflow: hidden;
}

.recruitListDl dd .ddTopText1 {
	font-size: 20px;
	color: #595959;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.recruitListDl dd .ddTopText2 {
	overflow: hidden;
	font-size: 0;
}

.recruitListDl dd .ddTopText2 span {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	color: #999999;
	margin-right: 40px;
	height: 32px;
	line-height: 32px;
	overflow: hidden;
}

.recruitListDl dd .ddBottom {
	padding: 40px 0 28px;
	position: relative;
	display: none;
}

.recruitListDl dd .ddBottom:before {
	content: '';
	background-color: rgb(230, 230, 230);
	height: 1px;
	width: 100%;
	position: absolute;
	top: 8px;
	left: 0;
}

.recruitListDl dd .ddBottomTextC {
	margin-bottom: 28px;
}

.recruitListDl dd .ddBottomTextC .ddBottomText1 {
	font-size: 14px;
	color: #333;
	line-height: 40px;
	font-weight: bold;
}

.recruitListDl dd .ddBottomTextC .ddBottomText2 {
	font-size: 14px;
	color: #999;
	line-height: 40px;
	padding-left: 5px;
}

.recruitListDl dd .con:hover .ddTopText1 {
	color: var(--themeColor);
}
.jt_more2Box {
	font-size: 0;
	overflow: hidden;
}

.jt_more2Box a {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid rgb(230, 230, 230);
	width: 65px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	border-radius: 22px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	font-size: 16px;
	color: #666666;
	text-align: center;
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center center;
}

.jt_more2Box a:before {
	display: block;
	content: '';
	position: absolute;
	left: -5px;
	right: -5px;
	top: -5px;
	bottom: -5px;
	background: var(--themeColor);
	z-index: -1;
	transform: scaleX(0.4);
	-webkit-transform: scaleX(0.4);
	transition: transform 0.4s ease-in-out;
	-webkit-transition: transform 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	border: none;
}

.jt_more2Box a.hover,
.jt_more2Box a:hover {
	color: #FFFFFF;
    border-color: var(--themeColor);
}

.jt_more2Box a.hover:before,
.jt_more2Box a:hover:before {
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
	opacity: 1;
	visibility: visible
}

.jt_more2Box .a1 {
	padding: 0 15px;
	margin-right: 20px;
}

.jt_more2Box .a2.hover,
.jt_more2Box .a2:hover {
	border: 2px solid transparent;
}
.rightIcon:before {
	display: block;
	content: '';
	position: absolute;
	right: 4px;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
}
.recruitBtn{ overflow: hidden;}
.recruitBtn a{ overflow: hidden; display: block; height: 50px; line-height: 50px; float: left; display: inline; padding: 0 40px; background: var(--themeColor); color: #FFF; border-radius: 3px; transition: all .3s; -webkit-transition: all .3s; font-size: 14px;}
.recruitBtn a:hover{ opacity: 0.9}
/* 列表end */

/* 表单start */
.recruitListForm{ margin-right: -40px; font-size: 14px;}
.recruitListForm:after{ clear:both; content: ''; visibility: hidden; display: block;}
.recruitListForm .item{ width: 50%; float: left; display: inline; margin-bottom: 15px;}
.recruitListForm .item.w100p{ width: 100%;}
.recruitListForm .item .con{ margin-right: 40px;}
.recruitListForm .item .label{ height: 38px; line-height: 38px;}
.recruitListForm .item .label span{ color: #da0100;}
.recruitListForm .item .itemC{ clear: both; min-height: 40px;}
.recruitListTc{ padding:20px; overflow: hidden;}
.recruitListForm .el-cascader{width: 100%;}
.upLoadResume{ font-size: 0;}
.upLoadResume span{ display: inline-block; font-size: 14px; height: 40px; line-height: 40px;color: #aeaeae;}
.upLoadResume a.up{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.upLoadResume a.down{ background: #e9e9e9; border-color: #e9e9e9;}
/* 表单end */
/*********** 基础公共列表页 start ***********/

/*********** 特殊功能列表页 start ***********/
/* 问卷列表 start */
.collectListPage{padding: 20px; background: #fff;}
.collectList{overflow: hidden;}
.collectList dt{clear: both;height: 50px;overflow: hidden;border-radius:3px;background: var(--themeColor);}
.collectList dt span{float: right;height: 50px;line-height: 50px;text-align: center;font-size: 16px;color: #ffffff;}
.collectList span.span1{overflow: hidden;float: none;display: block;}
.collectList span.span2{width:23%}
.collectList span.span3{width:12%}
.collectList dd{clear: both;line-height: 60px;overflow: hidden;border-radius:3px;}
.collectList dd:nth-child(2n+1){background:#f3f3f3;}
.collectList dd span{float: right;overflow: hidden;}
.collectList dd span.span2{text-align:center;font-size:16px;color:#999999;}
.collectList dd span.span3{text-align:center;color: var(--themeColor);font-size: 16px;}
.collectList dd span.span3.finish{color:#999999}
.collectList dd span a{display:block;padding-left: 19px;background: url(../images/common/icon1.png) no-repeat 10px center;color: #333333;font-size: 16px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.collectList dd span a:hover{color:var(--themeColor);}
/* 问卷列表 end */
/* 问卷调查 start*/
.whdc {padding: 0 50px;margin: 0 auto;background: #fff;}
.whdcT {clear: both;text-align: center;line-height: 45px;font-size: 26px;font-family: "microsoft yahei";color: #333333;}
.whdcTime {height: 38px;line-height: 38px;color: #666;font-size: 12px;}
.whdcText {font-size: 14px;line-height: 30px;padding: 15px 0;border-bottom: 1px solid #f0f0f0;margin-bottom: 15px;}
.whdcText.noborder {border: none;}
.whdcTable {text-align: center;margin-bottom: 30px;}
.whdcTable table {border: 1px solid #efeeee;}
.whdcTable table tr {border: 1px solid #efeeee;height: 58px;}
.whdcTable table tr td {border: 1px solid #efeeee;}
.whdcTable table .w1 {width: 25%;}
.whdcTable table .w2 {width: 25%;}
.whdcTable table .w3 {width: 25%;}
.whdcTable table .w4 {width: 25%;}
.whdcTable table tr td .con {padding: 0 15px;font-size: 16px;color: #333333;}
.whdcTable table tr td .con em {color: #333;font-style: normal;}
.whdcTable table tr td .con em.red {color: var(--themeColor);}
.whdcTable table tr td .con em.green {color: #2aa516;}
.whdcTable table tr td.gray {background: #f7f7f7;}
.whdcTable table tr td.gray .con {color: #666;}
.questionBox {overflow: hidden;clear: both;padding: 20px 0;clear: both;margin: 0 0 20px 0;border-bottom: 1px solid #efefef;}
.questionT {clear: both;overflow: hidden;width: 100%;font-size: 16px;padding-bottom: 8px;color: #333333;}
.questionT span {color: #cc0000;font-size: 13px;padding: 0 0 0 10px;}
.questionDl {clear: both;padding: 0;background: #FFF;}
.questionDl dd {clear: both;overflow: hidden;padding: 0;}
.questionDl dd em {display: block;width: 16px;height: 16px;float: left;margin: 8px 0 0 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;background: url(../images/common/survey/kk1.png) no-repeat center center;}
.questionDl dd:last-child {border-bottom: none;}
.questionDl.radio em {border-radius: 16px;background: url(../images/common/survey/kk1.png) no-repeat center center;}
.questionDl.radio em.selected {background: url(../images/common/survey/kk1h.png) no-repeat center center;}
.questionDl.checkbox em.selected {background: url(../images/common/survey/kk1h.png) no-repeat center center;}
.ChoiceBox {clear: both;overflow: hidden;cursor: pointer;}
.ChoiceBox.float {float: left;}
.ChoiceBox span {display: block;line-height: 20px;font-size: 14px;margin-left: 30px;padding: 6px 0;}
.ChoiceBox i {margin-left: 30px;}
.writeBox {float: left;display: inline;overflow: hidden;}
.writeBox input {width: 120px;border: none;display: block;float: left;font-size: 12px;margin: 0 0 0 10px;line-height: 25px;font-family: "microsoft yahei";border-bottom: 1px solid #b80b0b;}
.surveyBt {clear: both;overflow: hidden;padding: 20px 0 10px 0;}
.surveyBt a {display: block;width: 100%;line-height: 30px;border-radius: 3px;text-align: center;font-size: 14px;color: #fff !important;background: #b51413;margin: 0 auto;padding: 3px 0;}
.surveyBt a:hover {background: #4189d0;}
.dcBtn {clear: both;text-align: center;}
.dcBtn div {display: inline-block;overflow: hidden;}
.dcBtn div a {float: left;display: inline;padding: 0 56px;border-radius: 3px;height: 40px;line-height: 40px;font-size: 14px;margin: 0 15px;}
.dcBtn div a.a1 {background: var(--themeColor);color: #FFF;}
.dcBtn div a.a2 {background: #f0f0f0;color: #666;}
.dcBtn div a:hover {opacity: .9;}
.wjdcT {background: #f8f8f8;padding: 5px 10px;}
.wjdcT1 {height: 33px;line-height: 33px;overflow: hidden;text-align: center;color: #333333;font-size: 24px;}
.wjdcT1Text {line-height: 31px;overflow: hidden;color: #666666;font-size: 14px;text-align: center;}
.questionTC {clear: both;}
.questionTC textarea {width: 1148px;border: 1px solid #eeeeee;height: 118px;line-height: 30px;padding: 0 10px;}
.questionDl.onchoice em {background: url(../images/common/survey/kk2.png) no-repeat center center}
.questionDl.onchoice em.selected {background: url(../images/common/survey/kk2h.png) no-repeat center center}
/* 问卷调查 end*/
/* 问卷详情 start*/
.wjdcresult {text-align: center;}
.wjdcresult dd {border-top: 2px solid var(--themeColor);margin-bottom: 20px;}
.wjdcresult dd .title {height: 51px;margin-bottom: 0px;overflow: hidden;line-height: 51px;background: url(../images/common/survey/tBg2.png) repeat-x left top;}
.wjdcresult dd .title .titleL {padding-left: 65px;height: 51px;background: url(../images/common//survey/listT.png) no-repeat 32px center;font-size: 16px;color: #333333;background-size: 20px;}
.wjdcresult dd .title .titleR {font-size: 14px;color: var(--themeColor);padding-right: 90px;}
.wjdcresult table {border: 1px solid #efeeee;}
.wjdcresult table tr {border: 1px solid #efeeee;height: 40px;}
.wjdcresult table tr.tr1 {height: 40px;background: #f7f7f7;font-size: 12px;}
.wjdcresult table tr td {border: 1px solid #efeeee;}
.wjdcresult table .w1 {width: 599px;}
.wjdcresult table .w2 {width: 120px;}
.wjdcresult table .w3 {width: 197px;}
.wjdcresult table tr td .con {padding: 0 15px;font-size: 14px;}
.wjdcresult table tr td .td1 {padding: 0 30px !important;}
.l {text-align: left;}
.r {text-align: right;}
.c {text-align: center;}
.wjdcresult table tr.tr1 td .con {padding: 0 15px;font-size: 14px;}
.whdcTable .gray {background: #f7f7f7;}
.wjdcCount {display: inline-block;overflow: hidden;}
.wjdcCount .wjdcCountL {color: var(--themeColor);margin-right: 10px;width: 50px;}
.wjdcCount .wjdcCountR {color: var(--themeColor);width: 115px;height: 15px;border: 1px solid #d1d1d1;}
.wjdcCount .wjdcCountR em {display: block;height: 15px;background: var(--themeColor);}
.questionC{padding-top: 10px;}
.questionArea{padding: 5px 10px;margin-bottom: 10px;border: 1px solid #ccc;}
.questionArea textarea{border: none;outline: none;background: none;height: 140px;width: 100%;line-height: 28px;font-size: 14px;color: #666;resize:none;}
/* 问卷详情 end*/
/*********** 特殊功能列表页 end ***********/

/*********** 文章详细页 start ***********/
.articleC {background: #FFFFFF;padding: 0 50px 50px;}
.articleBox {line-height: 36px;padding: 10px 0 0;color: #666666;font-size: 16px;margin-bottom: 10px;}
.articleBox img {max-width: 100%;}
/* 标题 start */
.articleTitle {clear: both;line-height: 43px;font-size: 24px;font-family: "microsoft yahei";color: #333333;text-align: center;position: relative;}
/* 标题 end */
/* 发布信息 start  */
.articleTime {display: block;clear: both;color: #666666;font-size: 14px;line-height: 32px;padding: 10px 0 15px;border-bottom: 1px solid #dddddd;overflow: hidden;text-align: center;}
.articleTime span {margin-right: 16px;font-size: 14px;color: #999999;vertical-align: middle;display: inline-block;}
.shareBox .sharejs_list  .sharejs_item{position:relative;z-index: 100}
/*  发布信息 end  */
/* 分享 start */
.articleShare {display: inline-block;vertical-align: middle;}
.articleShare .shareParent .shareItem{vertical-align: middle;}

/*  分享 end  */
/*  大图 start */
/* 文章阅读页-内容上部大图 */
#play {width: 600px;height: 400px;position: relative;overflow: hidden;background: #fff;border: 1px solid #e9e9e9;padding: 5px;margin: 20px auto 0 auto;}
#play .change_a {width: 40%;height: 100%;position: absolute;top: 0;z-index: 1;cursor: pointer;display: block;overflow: hidden;}
#play .prev_a {left: 0;}
#play .next_a {right: 0}
#play .change_a span {width: 24px;height: 43px;display: block;position: absolute;top: 50%;margin-top: -21px;display: none}
#play .prev_a span {background: url(../images/common/file/article_iconh.png) no-repeat 0px -50px;left: 0;}
#play .next_a span {background: url(../images/common/file/article_iconh.png) no-repeat -30px -50px;right: 0;}
#play .img_ul {position: relative;z-index: 1;width: 600px;height: 400px;}
#play .img_ul li {position: relative;z-index: 1;width: 600px;height: 400px;background: #fff;margin: 0 0 5px 0;}
#play .img_ul li img {position: absolute;}
.imgMove {width: 600px;clear: both;margin: 20px auto;position: relative;}
.img_hd {margin: 0 auto;overflow: hidden;height: 60px;position: relative;}
.img_hd ul {position: absolute;z-index: 1}
.img_hd ul li {float: left;height: 47px;width: 70px;padding: 3px;margin: 0 7px;cursor: pointer;background: #fff;border: 1px solid #d4d4d4;position: relative;}
.img_hd ul li p {height: 47px;width: 70px;display: block;background: #fff;position: relative;}
.img_hd ul li i {display: block;clear: both;line-height: 20px;padding: 0 5px;background: #000;color: #fff;position: absolute;right: 3px;bottom: 3px;z-index: 9;filter: alpha(opacity=50);-moz-opacity: 0.5;opacity: 0.5;font-family: Arial;font-size: 12px;font-style: normal;}
.img_hd ul li img {position: absolute;height: 47px;width: 70px;}
.img_hd ul li.on {border: 1px solid var(--themeColor);background: var(--themeColor);}
.imgMove .bottom_a {width: 20px;height: 25px;display: block;cursor: pointer;z-index: 10;float: left;top: 15px;position: absolute;z-index: 9;background: url(../images/common/file/article_iconh.png) no-repeat;}
.imgMove .prev_a {background-position: left top;left: 0;}
.imgMove .next_a {background-position: right top;right: 0;}
/* ————— 大图 end ————— */
/* ————— 文件 start ————— */
.articleHand {clear: both;font-size: 16px;padding: 10px 0px 20px 0;/* overflow: hidden; */}
.articleHand a {display: inline-block;line-height: 32px;padding: 0 20px 0px 30px;background: url(../images/common/file/file.png) no-repeat left center; color:#666;margin-bottom: 10px;}
.articleHand a.word {background: url(../images/common/file/word.png) no-repeat left 3px;color: #37a6ff !important;}
.articleHand a.ppt {background: url(../images/common/file/ppt.png) no-repeat left center;color: #ff7735 !important;}
.articleHand a.excel {background: url(../images/common/file/excel.png) no-repeat left center;color: #15bf44 !important;}
.articleHand a.pdf {background: url(../images/common/file/pdf.png) no-repeat left center;color: #1369c0 !important;}
.articleHand a.zip {background: url(../images/common/file/zip.png) no-repeat left 3px;color: #ff9779 !important;}
.articleHand a:hover{text-decoration: underline;}
/* ————— 文件 end ————— */
/* ————— 文章页码 start ————— */
.articlePage {clear: both;text-align: center;font-family: Arial;font-size: 0;}
.articlePage a {margin: 0 5px;background: #ccc;padding: 3px 12px;display: inline-block;font-size: 12px;height: 24px;line-height: 24px;}
.articlePage a:hover {color: #fff;background: var(--themeColor);}
.articlePage a.hover {color: #fff;background: var(--themeColor);}
/* ————— 文章页码 end ————— */
/* ————— 上一篇/下一篇 start ————— */
.pageUp {display: block;line-height: 34px;color: #999999;font-size: 16px;}
.pageUp a {font-size: 16px;color: #999999;position:relative;z-index: 10}
.articlePageBox:hover,
.pageUp a:hover {color: var(--themeColor);}
/* ————— 上一篇/下一篇 end ————— */
/* ————— 音频 start ————— */
.newsAudio .audiojs audio {position: absolute;left: -1px;opacity: 0;}
.newsAudio .audiojs {z-index: 99999;background: #fff;overflow: hidden;font-family: monospace;font-size: 12px;border-radius: 5px;box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);width: 400px;margin: 0 auto;border: 1px solid #e5e5e5;}
.newsAudio .audiojs .play-pause {width: 25px;height: 27px;padding: 4px 6px;margin: 0px;float: left;overflow: hidden;position: relative;}
.newsAudio .audiojs .play-pause:before {content: '';display: block;border-right: 1px solid #e5e5e5;position: absolute;right: 0;top: 0;height: 100%;transform: scaleX(0.3);}
.newsAudio .audiojs p {display: none;width: 25px;height: 27px;margin: 0px;cursor: pointer;}
.newsAudio .audiojs .play {display: block;}
.newsAudio .audiojs .scrubber {position: relative;float: left;width: 240px;background: #f5f5f5;height: 14px;margin: 10px;top: 1px;overflow: hidden;}
.newsAudio .audiojs .progress {position: absolute;top: 0px;left: 0px;height: 14px;width: 0px;background: #fbbc05;z-index: 1;}
.newsAudio .audiojs .loaded {position: absolute;top: 0px;left: 0px;height: 14px;width: 0px;background: #ffeebb;cursor: pointer;}
.newsAudio .audiojs .time {overflow: hidden;height: 35px;line-height: 36px;margin: 0px 0px 0px 6px;padding: 0px 6px 0px 12px;position: relative;color: #666;}
.newsAudio .audiojs .time:before {content: '';display: block;border-left: 1px solid #e5e5e5;position: absolute;left: 0;top: 0;height: 100%;transform: scaleX(0.3);}
.newsAudio .audiojs .time em {padding: 0px 2px 0px 0px;color: #666;font-style: normal;}
.newsAudio .audiojs .time strong {padding: 0px 0px 0px 2px;font-weight: normal;}
.newsAudio .audiojs .error-message {display: none;padding: 0px 10px;height: 35px;overflow: hidden;line-height: 36px;white-space: nowrap;color: #666;text-overflow: ellipsis;-o-text-overflow: ellipsis;-icab-text-overflow: ellipsis;-khtml-text-overflow: ellipsis;-moz-text-overflow: ellipsis;-webkit-text-overflow: ellipsis;}
.newsAudio .audiojs .error-message a {color: #666;text-decoration: none;padding-bottom: 1px;border-bottom: 1px solid #999;white-space: wrap;}
.newsAudio .audiojs .play {background: url(../../common/components/audio/images/play.png) center center no-repeat;background-size: 14px;}
.newsAudio .audiojs .loading {background: url(../../common/components/audio/images/loading.png) center center no-repeat;background-size: 14px;-webkit-animation: fa-rotating 2s infinite linear;animation: fa-rotating 2s infinite linear;}
.newsAudio .audiojs .loading:before {content: '';}
@keyframes fa-rotating {0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}100% {-webkit-transform: rotate(359deg);transform: rotate(359deg);}}
.newsAudio .audiojs .error {background: url(../../common/components/audio/images/error.png) center center no-repeat;background-size: 14px;}
.newsAudio .audiojs .pause {background: url(../../common/components/audio/images/pause.png) center center no-repeat;background-size: 16px;}
.newsAudio .playing .play,
.newsAudio .playing .loading,
.newsAudio .playing .error {display: none;}
.newsAudio .playing .pause {display: block;}
.newsAudio .loading .play,
.newsAudio .loading .pause,
.newsAudio .loading .error {display: none;}
.newsAudio .loading .loading {display: block;}
.newsAudio .error .time,
.newsAudio .error .play,
.newsAudio .error .pause,
.newsAudio .error .scrubber,
.newsAudio .error .loading {display: none;}
.newsAudio .error .error {display: block;}
.newsAudio .error .play-pause p {cursor: auto;}
.newsAudio .error .error-message {display: block;}
/* ————— 音频 end ————— */
/* ————— 视频 start ————— */
.newsViewVideo{width: 600px;height: 400px;margin: 0 auto;position: relative;}
.newsViewVideo #col1mui-player{height: 100% !important;cursor: pointer;}
.newsViewVideo #muiPlaybtn{position: absolute;left: 0;top: 0;background: url(../images/play.png) no-repeat center center;width: 100%;height: 100%;display: block;z-index: 999;cursor: pointer;}
/* ————— 视频 end ————— */


/* ————— 有序列表 start ————— */
.articleBox  ul,.articleBox  ol{padding-left: 20px;}
.articleBox  ul li{list-style-type: disc;}
.articleBox  ol li{list-style-type: decimal}
/* ————— 有序列表 end ————— */

/* ————— 表格 start ————— */
.articleBox table{
    margin: 0 auto;
}
.articleBox table tr td{
  padding: 5px;
  border: 1px solid #e6e6e6;
}
/* ————— 表格 end ————— */
/*********** 文章详细页 start ***********/