@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;
}

.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: relative;
    top: 0;
    width: 100%;
    height: 214px;
    left: 0;
    z-index: 99;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
}
.top .topT {
    background: url(../images/topBg.png) center center no-repeat;
    background-size: cover;
}
.logo {
    font-size: 0;
    padding: 25px 0;
}

.logo img {
    display: block;
    height: 100px;
}



.menuDl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menuDl dd {
    position: relative;
    height: 64px;
}
.menuDl dd:nth-child(1) {
    margin-left: 0;
}
.menuDl dd:nth-child(6){
    margin-right: 0 !important;
}
.topB {
    width: 100%;
    height: 64px;
    background-color: var(--themeColor);
}
.topB .wrap {
    height: 100%;
}
.mainMenu {
    position: relative;
    z-index: 9;
    padding: 0
}

.menuDl dd:nth-child(1) .mainMenu {
    padding-left: 0;
}

.mainMenu a {
    font-size: 18px;
    color: #fff;
    display: block;
    line-height: 64px;
    height: 64px;
    text-align: center;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    /* font-family: 'phtL'; */
    position: relative;
    z-index: 6;
    white-space: nowrap;
}

.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::before {
    content: "";
    position: absolute;
    bottom: 3px; /* 根据需要微调位置 */
    left: 50%;
    transform: translateX(-50%);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 4px solid #fff;
}
.menuDl dd:hover::before {
    content: "";
    position: absolute;
    bottom: 3px; /* 根据需要微调位置 */
    left: 50%;
    transform: translateX(-50%);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 4px solid #fff;
}
.menuDl dd.hover::after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    background-color: #fff;
}
.menuDl dd:hover::after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    background-color: #fff;
}
.menuDl dd:hover .subMenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}


.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;
}
.topR .topLocation {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
}
.topR .topLocation a {
    padding: 0 14px;
    color: #333;
    font-size: 14px;
    height: 14px;
    line-height: 14px;
    border-right: 1px solid rgba(51, 51, 51, 0.2);
}
.topR .topLocation a:hover {
    color: var(--themeColor);
}
.topR .topLocation a:last-child {
    border: none;
    padding-right: 0;
}
.inputBox {
    width: 352px;
    padding: 5px 6px 5px 30px;
    height: 46px;
    box-sizing: border-box;
    border-radius: 22px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.inputBox input {
    border: none;
    color: #999;
    font-size: 16px;
}
.inputBox input::placeholder {
    border: none;
    color: #999;
    font-size: 16px;
}
.inputBox .ss {
    cursor: pointer;
    background: url(../images/topSearch.png) 22px center no-repeat, var(--themeColor);
    width: 104px;
    height: 36px;
    border-radius: 18px;
    color: #fff;
    padding: 0 22px;
    box-sizing: border-box;
    line-height: 36px;
    font-size: 16px;
    text-align: end;
}
/* 顶部 end */

/* ————— 底部 start ————— */
/* 友情链接start */
.footer{ background: #fff;}
.footerTop{background: url(../images/footerTBg.png) center center no-repeat;background-size: 1005;}
.friendLink{margin-right: -40px;display: flex; align-items: center;width: 100%;}
.friendLink .title{height: 110px; line-height: 110px; color: #666;margin-right: 90px;font-size: 22px; float: left; display: inline;}
.footerChildLink {
    flex: 1;
    column-gap: 86px;
    display: flex;
    justify-content: flex-end;
}
.footerChildLink dd {
    box-sizing: border-box;
    width: 33.3333%;
    height: 44px;
    line-height: 44px;
    border-radius: 22px;
    padding: 0 28px;
    background-color: #f5f5f5;
    position: relative;
    border: 1px solid #c1e2db;
}
.footerChildLink dd .con {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.footerChildLink dd .con span {
    flex: 1;
    font-size:16px;
    color: #333;
}
.footerChildLink dd .con i {
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: .85rem;
    background-image: url(../images/zk.png);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* 使用弹性缓动函数 */
  transform-origin: center center;
}
 .footerChildLink dd .con.active i {
    transform: rotate(180deg);
  }
  .footerChildLink dd .con.active::after {
    content: "";
    position: absolute;
    bottom: -12px; /* 根据需要微调位置 */
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--themeColor);
    z-index: 2;
  }
.childLinkUl {
    position: absolute;
    top: 54px;
    height: 132px;
    overflow-y: auto;
    box-sizing: border-box;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #c1e2db;
    padding: 0;
    z-index: 100;
    opacity: 0;
    transform: scale(0);
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease
}
.childLinkUl.active {
    opacity: 1;
    padding: 10px 0 0;
    transform: scale(1);
}
.childLinkUl li {
    margin-bottom: 10px;
}
.childLinkUl a {
    text-align: center;
    color: #666;
    font-size: 16px;
    display: block;
    line-height: 30px;
    transform: .3s;
}
.childLinkUl a:hover {
    color: var(--themeColor);
}
/* 友情链接end   */
/* 底部中间start   */
.footerB{background: url(../images/footerBBg.png) center center no-repeat;background-size: cover;}
.footerC{padding: 56px 0 25px;display: flex;justify-content: space-between;align-items: center;border-bottom: 1px solid #c1e2db;}
.footerC .footerCL{display: flex;align-items: center;}
.footerC .footerCL .phone .icon{display: flex;height: 48px;align-items: center; line-height: 48px;padding-left: 64px;position: relative;color: #fff;font-size: 16px;}
.footerC .footerCL .phone .icon:nth-child(1){margin-bottom: 16px;}
.footerC .footerCL .phone .icon span{font-size: 28px;margin-left: 14px;}
.footerC .footerCL .phone .icon::before{content: '';display: block;width: 48px;height: 48px;position: absolute;background: url(../images/address.png) center center no-repeat,rgb(255,255,255,0.1);border-radius: 50%; left: 0;top: 0;}
.footerC .footerCL .phone .icon:nth-child(1)::before{background: url(../images/phone.png) center center no-repeat,rgb(255,255,255,0.1);}
.footerC .logo img{height: 56px;margin-left: 50px;margin-bottom: 33px;}
.footerC dl{display: flex;}
.footerC dl dd{margin-left: 20px;}
.footerC dl .img{height: 110px;width: 110px;background-color: #fff;margin-bottom: 7px;}
.footerC dl .type{color: #fff;font-size: 14px;line-height: 28px;text-align: center;width: 110px;}
.footerC  dd:nth-child(2) .img {margin-bottom: 11px;}
.footerC dl dd:nth-child(2) .type{line-height: 20px;}
/* 底部中间end   */
/* 底部版权start   */
.friendCopyRight{ height: 58px; line-height: 58px; overflow: hidden; font-size: 14px; color: #fff;}
.friendCopyRight .conL{ float: left; display: inline;}
.friendCopyRight .conL span{ margin-right: 20px;}
.friendCopyRight .conL a{ color: #fff; margin-right: 12px;}
.friendCopyRight .conL a.gabeian{ padding-left: 30px;background: url(../images/beian.png) left center no-repeat;}
.friendCopyRight .conL a:hover{ color: #000;}
.friendCopyRight .conR{ float: right; display: inline;}
.friendCopyRight .conR a{color: #fff; }
.friendCopyRight .conR a:hover{ color: #000;}

/* 底部版权end   */
/* ————— 底部 end   ————— */

/* ————— 三级栏目 start ————— */
.sjMenu{font-size: 0;width: 100%;padding: 30px 30px 10px;background-color: #fff;box-sizing: border-box;}
.sjMenu .list{ display: inline-block; height: 50px; line-height: 50px; padding:0 20px; color: #333; border: 1px solid #fff; border-radius: 6px; font-size: 18px; margin: 0 34px 20px 0; background: #e2edea;}
.sjMenu .list:hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.sjMenu .list.hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.sjMenu .boxLine::before{content: '';width: 100%;display: block;border-bottom: 1px solid #f0f0f0;}
.sjMenu .inputBox{background-color: #f7f7f7;margin: 20px 0 20px;width: 420px;height: 50px;border-radius: 20px;}
.sjMenu .inputBox .ss {padding: 0 20px;box-sizing: border-box;text-align: end;background: url(../images/topSearch.png) 20px center no-repeat,var(--themeColor);border-radius: 17px;}
/* ————— 三级栏目 end ————— */
/* ————— 页码 start ————— */
.page{text-align: center;clear: both;font-size: 16px;color: #555;}
.page a{border: 1px solid #ddd; display: inline-block;font-size: 14px; overflow: hidden;width:40px;height: 40px;line-height: 40px; color:#555;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 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.prevPage div{background-image: url(../images/common/page/prevPage.png)}
.page a.nextPage div{background-image: url(../images/nextPage.png)}
.page a.prevPage:hover div{background-image: url(../images/prevPageh.png)}
.page a.nextPage:hover div{background-image: url(../images/nextPageh.png)}
.page a.prevPage.disabled{background:#E2E2E2;}
.page a.nextPage.disabled{background:#E2E2E2;}
.page a.prevPage.disabled div{background-image: url(../images/prevPage.png)}
.page a.nextPage.disabled div{background-image: url(../images/common/page/nextPage.png)}
.page a:last-child:hover{background-color: transparent;}
.page a input{border: none;width: 100%;height: 100%;}
/* ————— 页码 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: 30px;margin-bottom: 30px;background: #FFF;transition: all .4s;-webit-transition: all .4s;}
.imgText dd:last-child{margin-bottom: 0;}
.imgText dd .pic{ width: 350px; overflow: hidden; position: relative; margin-right: 30px;}
.imgText dd .pic:before{ display: block; content: ''; padding-top: 62%;}
.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: 12px 0 20px;}
.imgText dd .text .title a{ color: #333; font-size: 18px;}
.imgText dd .text .textC{ font-size:16px; color:#333; line-height:30px; height:60px; overflow:hidden; margin-bottom:23px;}
.imgText dd .text .time{ font-size: 14px; overflow:hidden; color:#999999;margin-bottom: 20px;padding-left: 24px;position: relative;}
.imgText dd .text .time::before{content: '';display: block;width: 16px;height: 16px;background: url(../images/time.png) center center no-repeat;position: absolute;left: 0;top: 50%;transform: translateY(-50%);}
.imgText dd:hover .text .time{color: var(--themeColor);}
.imgText dd:hover .text .time::before{background: url(../images/timeH.png) center center no-repeat;}
.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);}
.imgText dd .gd:hover{color: var(--themeColor);}
.imgText dd .gd:hover .line{background-color: var(--themeColor);}
.imgText dd .gd:hover .line::after{border: 1px solid var(--themeColor);}
/* 图文列表 end */
/* 全文列表 start */
.textList{display: flex;justify-content: space-between;flex-wrap: wrap;margin-bottom: 12px;}
.textList dd{padding: 24px 30px 25px; width: 48.9583%;box-sizing: border-box;}
.textList dd .text .title{margin-top: 0;height: auto;}
.textList dd .text .textC{margin: 0;font-size: 14px;line-height: 24px;height: 48px;color: #666;}
.imgText dd .text .time{margin-bottom: 11px;}
.imgText dd:last-child{margin-bottom: 30px;}
/* 全文列表 end */
/* 下载 start */
.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 30px; width: 68%; text-align: left;}
.downLoad  span.span3{ width: 16%;}
.downLoad dd{ overflow: hidden;display: flex;justify-content: space-between;align-items: center;border-radius: 5px;overflow: hidden;margin-bottom: 20px;}
.downLoad dd:last-child{margin-bottom: 12px;}
.downLoad dd span{height: 65px;line-height: 65px;color: #333333;font-size: 18px;}
.downLoad dd a{ color: #333333;}
.downLoad dd a.btn{display: inline-block;vertical-align: middle;height: 36px;line-height: 36px;padding: 0 16px 0 40px;background-position: 16px center;background-repeat: no-repeat;color:#FFF;font-size: 16px;background-image: url(../images/downLoadIcn1.png);border-radius: 5px;background-color: var(--themeColor);border: none;transition: all 200ms ease-in;-webkit-transition: all 200ms ease-in;background-size: auto 16px;}
.downLoad dd:hover span{color: var(--themeColor);}
.downLoad dd:hover .span1 a{color: var(--themeColor);}
/* 下载 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 ***********/
.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 ***********/

/* ————— 首页 start ————— */
.indexBox1 {
    padding: 60px 0 72px;
    background-color: #f1fcf9;
}
.indexBox1 .con .top {
    width: 100%;
    height: 54px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    line-height: 54px;
    background-color: #fff;
    border-radius: 12px 12px 0 0;
}
.indexBox1 .con .top .tz {
    color: var(--themeColor);
    font-size: 18px;
    margin: 0 46px 0 10px;
}
.indexBox1 .con .top .dl {
    flex: 1 !important;
    height: 100%;
    box-sizing: border-box;
}
.indexBox1 .con .top .dl .swiper-wrapper {
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    display: flex;
}
.indexBox1 .con .top .dl .swiper-wrapper .dd {
    padding: 0 45px 0 20px;
    position: relative;
    width: 33.3333%;
    box-sizing: border-box;
}
.indexBox1 .con .top .dl .swiper-wrapper .dd::before {
    content: '';
    display: block;
    height: 6px;
    width: 6px;
    background-color: #999;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.indexBox1 .con .top .dl .swiper-wrapper .dd:hover::before {
    background-color: var(--themeColor);
}
/* .indexBox1 .con .top .dl .swiper-wrapper .dd:nth-child(3n+1) {
    width: calc(28.125% - 65px)  !important;
}
.indexBox1 .con .top .dl .swiper-wrapper .dd:nth-child(3n+2) {
    width: calc(42.578125% - 65px)  !important;
}
.indexBox1 .con .top .dl .swiper-wrapper .dd:nth-child(3n+3) {
    width: calc(29.293875% - 65px)  !important;
} */
.indexBox1 .con .top .dl .swiper-wrapper .dd a {
    color: #999;
    font-size: 16px;
}
.indexBox1 .con .top .dl .swiper-wrapper .dd:hover a {
    color: var(--themeColor);
}
.indexBox1 .con .imgtext {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}
.indexBox1 .con .imgtext .img {
    display: block;
    width: 50%;
    background-color: var(--themeColor);
}
.indexBox1 .con .imgtext .pic {
    overflow: hidden;
}
.indexBox1 .con .imgtext .pic::before {
    padding-top: 65.4167%;
}
.indexBox1 .con .imgtext .title {
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    color: #fff;
    text-align: center;
}
.indexBox1 .con .imgtext dl {
    width: 47.9167%;
    padding: 20px 20px 0;
    box-sizing: border-box;
    background-color: #fff;
}
.indexBox1 .con .imgtext dl dd {
    width: 100%;
    height: 25%;
    padding-bottom: 24px;
    box-sizing: border-box;
    position: relative;
}
.indexBox1 .con .imgtext dl dd:last-child {
    padding-bottom:20px ;
}
.indexBox1 .con .imgtext dl dd a {
    display: block;
    width: 100%;
    height: 100%;
}
.indexBox1 .con .imgtext dl dd a:hover .text {
    color: var(--themeColor);
}
.indexBox1 .con .imgtext dl dd .pic {
    height: 100%;
    width: 25%;
    float: left;
}
.indexBox1 .con .imgtext dl dd .pic::before {
    padding-top: 55.5556%;
}
.indexBox1 .con .imgtext dl dd .text {
    padding-left: 20px;
    font-size: 18px;
    line-height: 32px;
    color: #333;
    box-sizing: border-box;
}
.indexBox1 .con .imgtext dl dd .text::after {
    content: '';
    display: block;
    width: calc(75% - 20px);
    border-bottom: 1px dashed #d6d6d6;
    position: absolute;
    bottom: 23.5px;
    right: 0;
}
.indexBox1 .con .imgtext dl dd:last-child .text::after {
    bottom: 19.5px;
}
.indexBox1 .con .imgtext dl dd a:hover .text::after {
    border-bottom: 1px dashed var(--themeColor);
}
.indexBox1 .con .imgtext dl dd .time {
    color: #999;
    font-size: 16px;
    position: absolute;
    bottom: 32px;
    right: 0;
}
.indexBox1 .con .imgtext dl dd a:hover .time {
    color: var(--themeColor);
}
.indexBox2 {
    background: url(../images/indexBox2Bg.png) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: nowrap;
}
.indexBox2 .con {
    width: 50%;
    box-sizing: border-box;
}
.indexBox2 .conL {
    padding: 60px 30px 60px 12.5%;
    background-color: #fff;
}
.indexBox2 .conR {
    padding: 60px 12.5% 60px 30px;
}
.indexBox2 .con .hh {
    width: 100%;
}
.moreBox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.moreBox .name {
    color: var(--themeColor);
    font-size: 22px;
}
.gd {
    width: max-content;
    color: #999;
    font-size: 15px;
    display: flex;
    align-items: center;
}
.gd .line {
    width: 30px;
    height: 1px;
    background-color: #999;
    margin: 0 10px 0 9px;
    position: relative;
}
.gd .line::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 4.5px;
    border: 1px solid #999;
    box-sizing: border-box;
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
}
.indexBox2 .con dl {
    width: 100%;
    margin-top: 26px;
}
.indexBox2 .con dl dd {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px dashed #999;
}
.indexBox2 .con dl dd:hover .text a,.indexBox2 .con dl dd:hover .date {
    color: var(--themeColor);
}
.indexBox2 .con dl dd .text {
    width: 71.9444%;
    display: flex;
    align-items: center;
}
.indexBox2 .con dl dd .text .type {
    width: 54px;
    height: 24px;
    border-radius: 9px 0 0 ;
    line-height: 24px;
    text-align: center;
    color: #fff;
    margin-right: 12px;
    background-color: #d43d39;
}
.indexBox2 .con dl dd .text a {
    display: block;
    flex: 1;
    font-size: 16px;
    color: #666;
}
.indexBox2 .con dl dd .date {
    color: #999;
    font-size: 16px;
}
.indexBox2 .conR dl dd .text .type {
    background-color: var(--themeColor);
}
.indexBox3 {
    padding: 60px 0;
    background: url(../images/indexBox3Bg.png) center center no-repeat;
    background-size: cover;
}
.indexBox3 .moreBox .name {
    color: #fff;
}
.indexBox3 .moreBox a {
    color: #fff;
}
.indexBox3 .moreBox a .line {
    background-color: #fff;
}
.indexBox3 .moreBox a .line::after {
    border: 1px solid #fff;
}
.indexBox3 dl {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
}
.indexBox3 dl dd {
    width: 15.4861%;
    background-color: rgb(255,255,255,0.5);
    border-radius: 8px;
}
.indexBox3 dl dd a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 26px 30px 25px 28px;
    box-sizing: border-box;
}
.indexBox3 dl dd .con {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indexBox3 dl dd .con .icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}
.indexBox3 dl dd .con .text {
    color: #fff;
    font-size: 18px;
}
.indexBox3 dl dd .con .text .num {
    line-height: 24px;
}
.indexBox3 dl dd .con .text .tName {
    margin-top: 12px;
}
.indexBox3 dl dd:hover {
    background-color: #fff;
}
.indexBox3 dl dd:hover .con .icon {
    background:  url(../images/icon1H.png) center center no-repeat,#e5f6f1 !important;
}
.indexBox3 dl dd:nth-child(2):hover .con .icon {
    background:  url(../images/icon2H.png) center center no-repeat,#e5f6f1 !important;
}
.indexBox3 dl dd:nth-child(3):hover .con .icon {
    background:  url(../images/icon3H.png) center center no-repeat,#e5f6f1 !important;
}
.indexBox3 dl dd:nth-child(4):hover .con .icon {
    background:  url(../images/icon4H.png) center center no-repeat,#e5f6f1 !important;
}
.indexBox3 dl dd:nth-child(5):hover .con .icon {
    background:  url(../images/icon5H.png) center center no-repeat,#e5f6f1 !important;
}
.indexBox3 dl dd:nth-child(6):hover .con .icon {
    background:  url(../images/icon6H.png) center center no-repeat,#e5f6f1 !important;
}
.indexBox3 dl dd:hover .con .text {
    color: var(--themeColor);
}
.indexBox4 {
    width: 100%;
    padding: 60px 0 72px;
    background: url(../images/indexBox4Bg.png) center center no-repeat;
    background-size: cover;
}
.indexBox4 .con {
    width: 100%;
    margin-top: 48px;
    display: flex;
    position: relative;
}
.indexBox4 .con dl {
    width: 42.3611%;
    background-color: #fff;
    padding: 23px 30px 17px;
    box-sizing: border-box;
}
.indexBox4 .con dl dd {
    padding-bottom: 20px;
    border-bottom: 1px dashed #d6d6d6;
    margin-bottom: 13px;
}
.indexBox4 .con dl dd:nth-child(1) {
    background: url(../images/ddBg.png) center right no-repeat;
}
.indexBox4 .con dl dd .text {
    line-height: 32px;
    font-size: 18px;
    width: 100%;
    color: #666;
}
.indexBox4 .con dl dd .date {
    color: #666;
    font: 16px;
    text-align: end;
}
.indexBox4 .con dl dd:hover .text,.indexBox4 .con dl dd:hover .date {
    color: var(--themeColor);
}
.indexBox4 .con dl dd:hover {
    border-bottom: 1px dashed var(--themeColor);
}
.indexBox4 .con .ys {
    width: 52.0833%;
    border-radius: 0 120px 0 0;
    background: linear-gradient(to right,#008b6f,#008b89);
}
.indexBox4 .con .pic {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 56.25%;
    overflow: hidden;
}
.indexBox4 .con .pic::before {
    padding-top: 55.9259%;
}
.indexBox5 {
    width: 100%;
    padding: 60px 0 42px;
    background: url(../images/indexBox5Bg.png) center center no-repeat;
    background-size: cover;
}
.indexBox5 dl {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 48px;
}
.indexBox5 dl dd {
    width: 48.9583%;
    background-color: #fff;
    border-bottom: 1px solid #d6d6d6;
    padding: 50px 30px 30px;
    box-sizing: border-box;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indexBox5 dl dd .date .day {
    font-size: 20px;
    color: #333;
    padding-bottom: 10px;
    position: relative;
}
.indexBox5 dl dd .date {
    margin-right: 28px;
}
.indexBox5 dl dd .date .day::after {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background-color: var(--themeColor);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.indexBox5 dl dd .date .year {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-top: 14px;
}
.indexBox5 dl dd .text {
    flex: 1;
}
.indexBox5 dl dd .text .title {
    font-size: 22px;
    color: #333;
    margin-bottom: 23px;
}
.indexBox5 dl dd .text .detail {
    font-size: 16px;
    color: #999;
    line-height: 30px;
}
.indexBox5 dl dd:hover .text .title{
    color: var(--themeColor);
}
.indexBox5 dl dd:hover {
    border-bottom: 1px solid var(--themeColor);
}
.indexBox5 dl dd:hover .date .day,.indexBox5 dl dd:hover .date .year {
    color: var(--themeColor);
}
/* ————— 首页 end ————— */
/* ————— 登录 start ————— */
.login {
    width: 100%;
    height: 100vh;
    background: url(../images/loginBg.png) center center no-repeat;
    background-size: cover;
    position: relative;
}
.login .loginBox {
    width: 64.5833%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    position: absolute;
    left: 50%;
    border-radius: 20px;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    position: relative;
}
.login .loginBox .pic {
    width: 50%;
}
.login .loginBox .pic::before{
    padding-top: 103.3333%;
}
.login .loginBox .con {
    width: 50%;

}
.login .loginBox .con .title {
    margin: 60px 0 85px;
    text-align: center;
    color: var(--themeColor);
    font-size: 36px;
    position: relative;
}
.login .loginBox .con .title::after {
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 100px;
    height: 6px;
    background: url(../images/loginIcon.png) center center no-repeat;
}
.login .loginBox .con .input {
    width: 80%;
    display: block;
    height: 54px;
    border: none;
    background-color: #d8f2ea;
    margin: 0 auto 20px;
    border-radius: 6px;
    padding-left: 54px;
    padding-right: 54px;
    font-size: 16px;
    position: relative;
    color: #999;
    box-sizing: border-box;
}
.login .loginBox .con .input input {
    height: 100%;
    width: 100%;
    border: none;
}
.login .loginBox .con input::placeholder{
    font-size: 16px;
    color: #999;
}
.login .loginBox .con .input::before {
    content: '';
    display: block;
    background: url(../images/sj.png) center center no-repeat;
    width: 16px;
    height: 18px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.login .loginBox .con .input:nth-child(3)::before {
    background: url(../images/mm.png) center center no-repeat;
    width: 14px;
}
.login .loginBox .con .input:nth-child(4)::before {
    background: url(../images/aq.png) center center no-repeat;
    width: 14px;
}
.login .loginBox .con .code {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.login .loginBox .con .code .input {
    width: 75% !important;
    margin-left: 10%;
    margin: 0;
}
.login .loginBox .con .yzm {
    width: 20.8333%;
    display: block;
    height: 53px;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--themeColor);
}
.login .loginBox .con .yzm img {
    height: 100%;
    width: 100%;
}
.login .loginBox .con .operate {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.login .loginBox .con .operate label {
    font-size: 16px;
    color: #999;
    display: flex;
    align-items: center;
}
.login .loginBox .con .operate input {
    width: 16px;
    height: 16px;
    border: 1px solid rgb(0,0,0,0.2);
    margin-right: 18px;
    background-color: transparent;
}
.login .loginBox .con .operate input:checked {
    background-color: var(--themeColor);
    border: none;
}
.login .loginBox .con .operate .radioC{
    cursor: pointer;
    font-size: 16px;
    color: #999;
}
.login .loginBox .con .submit {
    width: 80%;
    margin: 60px auto 0;
    cursor: pointer;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    background: linear-gradient(to right,#36d295,#008b6f);
}

  
.login .loginCon{width: 100%;height: 100%;position: absolute; z-index: 2;top: 0;left: 0;display: none;background-color: rgb(0,0,0,0.5);}
.login .loginCon.active{display: block;}
.login .loginC{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);padding: 28px 30px 40px 30px;background-color: #ffffff;border-radius: 15px;background-position: center center;background-size: cover;background-repeat: no-repeat;}
.login .loginC .text{display: flex;    justify-content: space-between;margin-bottom: 10px;}
.login .loginC .text .title{line-height: 50px;height: 50px;color: #333333;font-size: 22px;position: relative;padding-left: 15px;font-weight: bold;}
.login .loginC .text .title::before{position: absolute;content: '';display: block;left: 0;top: 50%;transform: translateY(-50%);width: 4px;height: 22px;background-color: #008b6f;}
.login .loginC .text .icon{line-height: 50px;height: 50px;color: #999999;font-size: 30px;position: relative;cursor: pointer;}
.login .loginC .info{line-height: 30px;height: 30px;color: #fe0000;font-size: 16px;margin-bottom: 20px;}
.login .loginC .item{margin-bottom: 25px;}
.login .loginC .item .label{line-height: 30px;height: 30px;color: #333333;font-size: 16px;margin-bottom: 5px;}
.login .loginC .item .input{border: 1px solid #008b6f;border-radius: 10px;padding: 0 15px;}
.login .loginC .item .input input{line-height: 40px;height: 40px;color: #333333;font-size: 14px;width: 100%;border: none;}
.login .loginC .ologin{width: 0;height: 0;overflow: hidden;margin: 0;}
.login .loginC .loginCButton{overflow: hidden;}
.login .loginC .loginCButton .loginCButtonC{float: right;}
.login .loginC .loginCButton .loginCButtonC .en{cursor: pointer; padding: 0 20px;border-radius: 20px; line-height: 40px;height: 40px;color: #333333;font-size: 18px;background-color: #fff;border: 1px solid #d9d9d9;display: inline-block;transition: all 0.3s linear; -webkit-transition: all 0.3s linear;}
.login .loginC .loginCButton .loginCButtonC .enC{margin-left: 20px; cursor: pointer; padding: 0 20px;border-radius: 20px; line-height: 40px;height: 40px;color: #333333;font-size: 18px;background-color: #fff;border: 1px solid #d9d9d9;display: inline-block;transition: all 0.3s linear; -webkit-transition: all 0.3s linear;}
.login .loginC .loginCButton .loginCButtonC .enC:hover{background-color: #008b6f;color: #fff;}
.login .loginC .loginCButton .loginCButtonC .en:hover{background-color: #008b6f;color: #fff;}
/* ————— 登录 end ————— */
/* ————— 个人中心 start ————— */
.message{position: relative;margin-bottom: 202px;}
.message .messageL{margin-right: 30px; float: left;display: inline;border: 1px solid #afd7cf;background-color: #ffffff;padding: 30px;border-radius: 20px;}
.message .messageL .icon{width: 90px;height: 90px;border-radius: 50%;background: #efefef url(../images/messageLIcon.png) no-repeat center center / 40px;margin: 0 auto 20px;}
.message .messageL .name{line-height: 30px;height: 30px;color: #333333;font-size: 18px;text-align: center;font-weight: bold;}
.message .messageL .name span{line-height: 30px;height: 30px;color: #008b6f;font-size: 16px;}
.message .messageL .num{line-height: 30px;height: 30px;color: #999999;font-size: 16px;text-align: center;margin-bottom: 20px;}
.message .messageL .text{padding:8px 24px;background-color: #e6f5f5;border-radius: 10px;}
.message .messageL .text .info{line-height: 30px;height: 60px;color: #008b6f;font-size: 16px;padding-left: 30px;background:url(../images/messageLIconC.png) no-repeat left center / 20px;}

.message .messageR{overflow: hidden;background-color: #ffffff;border-radius: 20px;padding: 20px 30px 25px;}
.message .messageR .con{font-weight: bold; font-size: 22px;line-height: 35px;height: 35px;color: #333333;padding-left: 15px;position: relative;margin-bottom: 24px;}
.message .messageR .con::before{position: absolute;content: '';display: block;left: 0;top: 50%;transform: translateY(-50%);width: 4px;height: 22px;background-color: #008b6f;}
.message .messageR .item{margin-bottom: 30px;float: left;}
.message .messageR .item .label{line-height: 40px;height: 40px;color: #333333;font-size: 16px;}
.message .messageR .item .itemC{display: flex;margin-right: 60px;}
.message .messageR .item .itemC .input{width: 250px;margin-right: 20px;border: 1px solid #d9d9d9;padding:  0 15px;border-radius: 10px;background-color: #f5f5f5;}
.message .messageR .item .itemC .input input{line-height: 40px;height: 40px;color: #333333;font-size: 14px;border: none;width: 100%;}
.message .messageR .item .itemC .info{overflow:hidden; transition: all 0.3s linear; -webkit-transition: all 0.3s linear; cursor: pointer; line-height: 40px;height: 40px;color: #333333;font-size: 14px;border: 1px solid #d9d9d9;padding:  0 18px;border-radius: 10px;}
.message .messageR .item .itemC .info:hover{background-color: #008b6f;color: #fff;}

.message .messageR .item .itemC .aykj_beautify_radio{height: 40px;}
.message .messageR .item .itemC .aykj_beautify_radio{line-height: 40px;}
.message .messageR .item .itemC .aykj_cssRadio_icn{width: 15px;height: 15px;top: 12px;}
.message .messageR .item .itemC .aykj_cssRadioBox{margin: 0;}
.message .messageR .item .itemC .aykj_cssRadioBox.checked .aykj_cssRadio_icn i{width: 7px;height: 6px;}
.message .messageR .item .itemC .aykj_cssRadio{height: 40px;overflow: unset;}
.message .messageR .item .itemC .aykj_cssRadio_text{line-height: 40px;}



.message .messageC{ position: absolute;top: 0;left: 50%;transform: translateX(-50%);padding: 28px 30px 40px 30px;background-color: #ffffff;border-radius: 15px;background-position: center center;background-size: cover;background-repeat: no-repeat;}
/* .message .messageC .con.active{opacity: 1;height: auto;} */
.message .messageC .text{display: flex;    justify-content: space-between;margin-bottom: 10px;}
.message .messageC .text .title{line-height: 50px;height: 50px;color: #333333;font-size: 22px;position: relative;padding-left: 15px;font-weight: bold;}
.message .messageC .text .title::before{position: absolute;content: '';display: block;left: 0;top: 50%;transform: translateY(-50%);width: 4px;height: 22px;background-color: #008b6f;}
.message .messageC .text .icon{line-height: 50px;height: 50px;color: #999999;font-size: 30px;position: relative;cursor: pointer;}
.message .messageC .item{margin-bottom: 25px;}
.message .messageC .item .label{line-height: 30px;height: 30px;color: #333333;font-size: 16px;margin-bottom: 5px;}
.message .messageC .item .input{width: 420px;border: 1px solid #008b6f;border-radius: 10px;padding: 0 15px;}
.message .messageC .item .input input{line-height: 40px;height: 40px;color: #333333;font-size: 14px;width: 100%;border: none;}

.message .messageC .messageButton{overflow: hidden;}
.message .messageC .messageButton .messageButtonC{float: right;}
.message .messageC .messageButton .messageButtonC .en{cursor: pointer; padding: 0 20px;border-radius: 20px; line-height: 40px;height: 40px;color: #333333;font-size: 18px;background-color: #fff;border: 1px solid #d9d9d9;display: inline-block;transition: all 0.3s linear; -webkit-transition: all 0.3s linear;}
.message .messageC .messageButton .messageButtonC .enC{margin-left: 20px; cursor: pointer; padding: 0 20px;border-radius: 20px; line-height: 40px;height: 40px;color: #333333;font-size: 18px;background-color: #fff;border: 1px solid #d9d9d9;display: inline-block;transition: all 0.3s linear; -webkit-transition: all 0.3s linear;}
.message .messageC .messageButton .messageButtonC .enC:hover{background-color: #008b6f;color: #fff;}
.message .messageC .messageButton .messageButtonC .en:hover{background-color: #008b6f;color: #fff;}
.messageR .operate{line-height: 40px;font-size: 14px;color: #333;}
.messageR .operate input {
    width: 7px;
    height: 7px;

    margin-right: 10px;
    border-radius: 50%;
    position: relative;
    background-color: transparent;
}
.messageR .operate input::after{position: absolute;content: "";display: block;    width: 14px;
    height: 14px;
    border: 1px solid rgb(0,0,0,0.2);
    margin-right: 10px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
}

.messageR .operate input:checked {
    background-color: var(--themeColor);
    border: none;
}
/* ————— 个人中心 end ————— */


/* 问卷调查 start*/
.whdc {
	padding: 0 50px;
	margin: 0 auto;
}

.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: 16px;
	line-height: 32px;
	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;
	clear: both;
	margin: 0 0 20px 0;
}

.questionT {
	clear: both;
	overflow: hidden;
	width: 100%;
	font-size: 16px;
	margin-bottom: 15px;
	color: #333333;
}
.questionT span{
	color: #f00;
}
.questionT em {
	font-style: normal;
	color: #cc0000;
	font-size: 13px;
	padding: 0 5px 0 0px;
}

.questionDl {
	clear: both;
	padding: 0;
	background: #fcfcfc;
	padding: 14px 27px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.questionDl dd {
	clear: both;
	overflow: hidden;
	padding: 0;
}

.questionDl dd em {
	display: block;
	width: 18px;
	height: 18px;
	float: left;
	margin: 8px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #ccc;
	position: relative;
}
.questionDl dd em:before{
	display: block;
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -4px;
	border-radius: 100%;
	background: transparent;
}
.questionDl dd:last-child {
	border-bottom: none;
}
.ChoiceBox.disabled em.disabled{
	display: block;
	width: 18px;
	height: 18px;
	float: left;
	margin: 8px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #ccc;
	position: relative;
}
.ChoiceBox.disabled em.disabled{
	background-color: #F5F7FA;
	border-color: #E4E7ED;
}
.radio .ChoiceBox.disabled em.disabled{
	border-radius: 100%;
}
.radio .ChoiceBox.disabled em.disabled.selected:before{
	display: block;
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -4px;
	border-radius: 100%;
	background: #999;
}

.checkbox .ChoiceBox.disabled em.disabled.selected:before{
	display: block;
	content: '';
	position: absolute;
	width: 4px;
	height: 10px;
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	top: 50%;
	left: 50%;
	margin: -7px 0 0 -2px;
	background: none;
	border-radius: 0;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.radio .ChoiceBox.disabled {
	cursor: not-allowed;
}
.questionDl.radio em {
	border-radius: 16px;
}
.questionDl.radio em.selected{
	border-color: var(--themeColor);
}
.questionDl.radio em.selected:before {
	background: var(--themeColor);
}

.questionDl.checkbox em::before {
	display: block;
	content: '';
	position: absolute;
	width: 4px;
	height: 10px;
	border-bottom: 2px solid transparent;
	border-right: 2px solid transparent;
	top: 50%;
	left: 50%;
	margin: -7px 0 0 -2px;
	background: none;
	border-radius: 0;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.questionDl.checkbox em.selected{
	border-color: var(--themeColor);
}

.questionDl.checkbox em.selected:before {
	border-color: var(--themeColor);
}

.ChoiceBox {
	clear: both;
	overflow: hidden;
	cursor: pointer;
	display: inline-block;
}

.ChoiceBox.float {
	float: left;
}

.ChoiceBox span {
	display: block;
	line-height: 20px;
	font-size: 16px;
	margin-left: 30px;
	padding: 6px 0;
}

.ChoiceBox i {
	margin-left: 30px;
}

.writeBox {
	display: inline-block;
	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 #e6e6e6;
}
.writeBoxText{
	padding-top: 20px;
}
.writeBoxText input{
	width: 100%;
	height: 36px;
	line-height: 36px;
	border: 1px solid #E4E7ED;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 0 15px;
	font-size: 15px;
	color: #666;
}
.writeBoxText input::-webkit-input-placeholder{
	font-size: 15px;
	color: #999;
}
.writeBoxText input[readonly]{
	background-color: #F5F7FA;
	border-color: #E4E7ED;
	color: #C0C4CC;
	cursor: not-allowed;
}
.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: 44px;
	line-height: 44px;
	font-size: 16px;
	margin: 0 15px;
	font-weight: bold;
}

.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/wjdc/kk2.png) no-repeat center center*/
/*}*/

/*.questionDl.onchoice em.selected {*/
/*	background: url(../images/wjdc/kk2h.png) no-repeat center center*/
/*}*/

.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/wjdc/tBg2.png) repeat-x left top;
}

.wjdcresult dd .title .titleL {
	padding-left: 65px;
	height: 51px;
	background: url(../images/wjdc/listT.png) no-repeat 32px center;
	font-size: 16px;
	color: #333333;
}

.wjdcresult dd .title .titleR {
	font-size: 14px;
	color: #0b5fab;
	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 textarea {
	border: none;
	outline: none;
	background: none;
	height: 150px;
	width: 100%;
	line-height: 28px;
	font-size: 15px;
	color: #666;
	resize: none;
	padding: 5px 15px;
	margin-bottom: 10px;
	border: 1px solid #E4E7ED;
	border-radius: 5px;
	box-sizing: border-box;
}
.questionArea textarea[readonly]{
	background-color: #F5F7FA;
	border-color: #E4E7ED;
	color: #C0C4CC;
	cursor: not-allowed;
}
#validateImg{
	height: 45px !important;
	display: block;
	margin: 0 10px;
	cursor: pointer;
}
#surveysForm .form-form-formBox{
	margin-left: 0;
}
.questionBox .commonYzm{
	line-height: 36px;
	font-size: 16px;
	color: #666;
    display: flex;
    align-items: center;
}
.questionBox .commonYzmBox {
    display: flex;
    align-items: center;
}
.questionBox .commonYzmBox input{
	padding: 0 10px;
	height: 45px;
	font-size: 16px;
	color: #333;
	border: 1px solid #d5d5d5;
	width: 150px;
	box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	border-radius: 3px;
}
.questionBox .commonYzmBox img{
	display: block;
	margin: 0 10px;
	height: 45px;
	border-radius: 3px;
	cursor: pointer;
}
.questionBox .commonYzmBox span:hover{
	cursor: pointer;
	color: var(--themeColor);
}
/* 问卷调查 end */
/* 问卷列表 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· */
.questionnaireListBg {
	background-color: #fff;
	padding: 30px;
}
.questionnaireList {
	box-sizing: border-box;
	width: 100%;
}
.questionnaireList thead tr {
	height: 60px;
	line-height: 60px;
	background-color: #e2edea;
	font-size: 18px;
	color: #008b6f;
}
.questionnaireList thead  th {
	text-align: center;
}
.questionnaireList  td {
	font-size: 16px;
	height: 60px;
	line-height: 60px;
	color: #333;
	text-align: center ;
	padding: 0 40px;
}
.questionnaireList  td a {
	display: block;
	font-size: 16px;
	height: 60px;
	line-height: 60px;
	color: #333;
	transition: .3s;
}
.questionnaireList  td a:hover {
	font-weight: 700;
}
.questionnaireList  td:nth-child(1) {
	text-align: left;
}
.questionnaireList  td a[data-state="调查进行中"]{
	color: #008b6f;
}
.questionnaireList  td a[data-state="调查已结束"]{
	color: #333;
}
.questionnaireList tr:nth-child(even){
	background-color: #f7f7f7;
}
/* 问卷表单 end */