@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 {
    width: 50px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    border-bottom: none;
    background: url(../images/topIcon1.png) center center no-repeat;
    cursor: pointer;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.topSearch:hover {
    background:rgba(0, 0, 0, .15) url(../images/searchW_h.png) center center no-repeat;
    border-radius: 100%;
}


.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 button {
    float: right;
    display: inline;
    width: 60px;
    height: 60px;
    background: var(--themeColor) url(../images/searchW_h.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 */
.topHead{
    height: 45px;
    background: #94070a;
}
.topHeadL{
    height: 45px;
    line-height: 45px;
    color: #fff;
    font-size: 16px;
}
.topTel{
    margin: 0 30px;
    padding-left: 26px;
    background: url(../images/topIcon2.png) left center no-repeat;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    color: #fff;
    font-family: "PingFang SC";
    font-weight: bold;
}
.topOrder a{
    display: block;
    padding-left: 30px;
    height: 45px;
    line-height: 45px;
    background: url(../images/topIcon3.png) left center no-repeat;
    font-size: 16px;
    color: #fff;
    transition: all .2s;
    -webkit-transition: all .2s;
}
.topOrder a:hover{
    opacity: .8;
}
.top {
    position: fixed;
    left: 0%;
    top: 0;
    right: 0%;
    z-index: 999;
    transition: all 0.5s ease-out 0s;
    transform: none;
    opacity: 1;
}
.indexBox2 .top{
    position: absolute;
    opacity: 0;
    transform: translateY(-100%);
}
.indexBox2.show .top{
    transition: all 0.7s ease-in-out 0.5s;
    transform: none;
    opacity: 1;
}
.indexBox2.show .top.fxd {
    position: fixed;
}
.topBody{
   background-color: #fff;
   box-shadow: 0 1px 3px rgb(0, 0, 0, 0.1);
}
.logo {
    font-size: 0;
    padding: 15px 0;
}

.logo img {
    display: block;
    height: 60px;
}
.logo img.img2{
    display: none;
} 
.indexTop .logo img.img2 {
    display: block;
    height: 60px;
}
.indexTop .logo img.img1 {
    display: none;
    height: 60px;
}

.menuDl {
    display: flex;
    float: left;
    display: inline;
    margin: 0 -8px;
}

.menuDl dd {
    float: left;
    display: inline;
    position: relative;
    height: 90px;
  
}
.mainMenu {
    position: relative;
    z-index: 9;
    padding: 0 8px;
}
.mainMenu a {
    font-size: 18px;
    color: #333;
    display: block;
    line-height: 90px;
    height:90px;
    text-align: center;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    position: relative;
    z-index: 6;
    padding: 0 10px;
}
.menuDl dd:hover .mainMenu a, 
.menuDl dd.hover .mainMenu a {
    color: var(--themeColor);
}

.indexTop .mainMenu a{
    color: #fff;
} 
.indexTop .menuDl dd:hover .mainMenu a, 
.indexTop .menuDl dd.hover .mainMenu a {
    color: #fff;
}
.menuDl dd .subMenu {
    left: -10px;
    right: -10px;
    position: absolute;
    top: 90px;
    display: none;
    z-index: 3;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    border-radius: 0 0 3px 3px;
}
.menuDl dd .subMenu a {
    display: block;
    padding: 5px;
    line-height: 25px;
    text-align: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    /* font-family: 'phtL'; */
}

.menuDl dd .subMenu a:hover,
.menuDl dd .subMenu a.hover {
    color: var(--themeColor);
}

.indexTop .topBody{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent);
    background-color: transparent !important;
    box-shadow:0 0 0 rgba(0, 0, 0, 0);
}
.indexTop .menuIcon>div{
    background: #fff !important;
}
/* 顶部 end */
/* 实现覆盖效果 start */
.indexBox1 {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.indexBox2 {
	position: fixed;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	background: #F5F5F5;
	overflow: hidden;
	overflow-y: auto;
	transition: top 0.7s cubic-bezier(0.5, 0, 0.2, 1) 0s;
	outline: none;
}

.indexBox2.show {
	top: 0;
}
.indexBox2.show .top{
    position: fixed;
}
.top1 {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9;
	opacity: 0;
	transform: translateY(-100%);
	transition: all 0.5s ease-out 0s;
	box-shadow: 0 1px 3px rgb(0, 0, 0, 0.1);
}

.top1.show {
	transition: all 0.7s ease-in-out 0.5s;
	transform: none;
	opacity: 1;
}

.top1.fxd {
	position: fixed;
}

.indexTop.hide {
	opacity: 0;
	transform: translateY(-100%);
	transition-delay: 0.5s;
}

/* 实现覆盖效果 end */

/* ————— 底部 start ————— */
/* 友情链接start */
.footer{ background: url(../images/footer.jpg) top center no-repeat ;background-size: cover; box-shadow: 0 0 10px rgba(0, 0, 0, .08);position: relative;border-top: 1px solid #c0975d;}
.footerTop{padding: 26px 0;border-bottom: 1px solid rgba(255, 255, 255, .3);}
.footerFriendLink {
	
}
.friendLinkTitle {
	float: left;
	display: inline;
    font-size: 16px;
    color: #fff;
    line-height: 60px;
}
.friendLinkCon{
    overflow: hidden;
}
.footerFriendLink .friendLinkCon a {
    float: left;
	display: inline;
	height: 36px;
	line-height: 36px;
	color: #fff;
	font-size: 16px;
	overflow: hidden;
	padding: 12px 0;
    margin-left: 30px;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.footerFriendLink .friendLinkCon a.hover,
.footerFriendLink .friendLinkCon a:hover {
	opacity: .8;
}
.footerMenu{
    overflow: hidden;
    margin: 0 -20px;
    flex: 1;
}
.footerMenu a{
    display: inline-block;
    padding: 10px 0;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    color: #fff;
    margin: 0 17px;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.footerMenu a:hover{
    opacity: .5;
}
/* 友情链接end   */
/* 底部中间start   */
.footerM{ padding: 40px 0 50px;border-bottom: 1px solid rgba(255, 255, 255, .3);}
.footerMLTitle{
    height: 36px;
    line-height: 36px;
    font-size: 19px;
    color: #fff;
    margin-bottom: 15px;
}
.footerMLTitle span{
    position: relative;
    padding-right: 20px;
    font-weight: bold;
}
.footerMLTitle span::after{
    display: block;
    content: '';
    position: absolute;
    right: 9px;
    top: 14px;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 4px;
}

.footerML{float: left; display: inline; margin-right: 50px;}
.footerLogo img{ display: block; height: 60px;margin: 0 auto;}
.footerItem{
    padding: 3px 0;
    line-height: 28px;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
}
.footerItem .title{
    float: left;
    display: inline;
}
.footerItem .text{
    overflow: hidden;
}
.footerMRTitle{
    height: 54px;
    line-height: 54px;
    font-size: 18px;
    color: #fff;
    margin-bottom: 24px;
}
.footerMC{
    overflow: hidden;
    text-align: center;
    padding-top: 35px;
}
.footerMCT{
    display: inline-block;
    font-size: 0;
}
.footerMCT .text{
    overflow: hidden;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    line-height: 56px;
    overflow: hidden;
}
.footerMCT .text em{
    width: 300px;
    height: 56px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto 56px;
}
.imgLink a{
    float: left;
    display: inline;
    margin: 0 5px;
}
.imgLink a img{
    display: block;
    height: 56px;
}
.footerMCB{line-height: 36px;font-size: 16px;color: #fff;}
.footerMR{ float: right; display: inline;margin-top: 30px;}
.footerEwm{ position: relative;margin-left: -30px   ;}
.footerEwm::after{
    display: block;
    content: '';
    clear: both;
}
.footerEwm dd{ float:left; display:inline; position:relative; margin-left:30px;}
.footerEwm dd .icon{width: 56px;height: 56px;border-radius: 56px;background: rgba(255, 255, 255, .15);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: 3px solid rgba(255, 255, 255, .1); left: 50%;margin-left: -63px;top: -156px;background: rgba(255, 255, 255, .03);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: rgb(255, 255, 255, 0.1);
    left: 50%;
    bottom: -20px;
    margin-left: -10px;
    z-index: -1;
}
.footerEwm dd:hover .footerEwmBox{
    opacity: 1;
    visibility: visible;
    top: -140px;
}
.footerEwmImg img{ display:block; width:120px; height:120px;}
.footerEwm dd .title{ height: 55px;line-height: 55px;text-align: center;font-size: 14px;color: #fff;}
.goBackTop{
    position: absolute;
    right: 2%;
    top: -58px;
    width: 100px;
    height: 100px;
    background: #cf0417;
    border-radius: 100px;
}
.goBackTop a{
    display: flex;
    width: 100px;
    height: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}
.goBackTop a i{
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/backTop.png) center center no-repeat;
    margin-bottom: 10px;
}
/* 底部中间end   */
/* 底部中间end   */
/* 底部版权start   */
.friendCopyRight{ height: 70px; line-height: 70px; overflow: hidden; font-size: 14px; color: #fff;text-align: center;}
.friendCopyRight .conL{ display: inline-block;}
.friendCopyRight .conL span{ margin-right: 5px;}
.friendCopyRight .conL a{ color: #fff; margin-right: 5px;}
.friendCopyRight .conL a.gabeian{ padding-left: 30px;background: url(../images/beian.png) left center no-repeat;}
.friendCopyRight .conL a:hover{ opacity: .8;}
.friendCopyRight .conR{ display: inline-block;}
.friendCopyRight .conR a{color: #fff; }
.friendCopyRight .conR a:hover{ opacity: .8;}
/* 底部版权end   */
/* ————— 底部 end   ————— */

/* ————— subBanner start ————— */
.subBanner{position: relative;overflow: hidden;width: 100%;}
.subBanner:before{display: block;content: '';padding-top: 31.25%;}
.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;background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);}
.subBanner .wrap{height: 100%;display: flex;align-items: center;justify-content: center;}
.subBanner .textC{position: relative;text-align: center;}
.subBanner .textC .cnTitle{display: inline-block; font-size: 40px;color: #ffffff;line-height: 60px;patext-shadow: 0px 0px 5px rgb(0 0 0 / 0.1);position: relative;padding: 0 38px;}
.subBanner .textC .cnTitle span{
    display: inline-block;
    height: 60px;
    position: relative;
    padding: 0 30px;
}
.subBanner .textC .cnTitle::before{
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 8px;
    right: 0px;
    top: 50%;
    margin-top: -4px;
    background: #fff;
    border-radius: 3px;
}
.subBanner .textC .cnTitle::after{
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 8px;
    left:0px;
    top: 50%;
    margin-top: -4px;
    background: #fff;
    border-radius: 3px;
}
.subBanner .textC .cnTitle span::before{
    display: block;
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    right: 0px;
    top: 50%;
    margin-top: -4px;
    background: #fff;
    border-radius: 3px;
}
.subBanner .textC .cnTitle span::after{
    display: block;
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    left:0px;
    top: 50%;
    margin-top: -4px;
    background: #fff;
    border-radius: 3px;
}
.subBanner .textC .enTitle{font-size:20px;color: rgb(255 255 255 / 1);line-height: 34px;text-transform: uppercase;text-shadow: 0px 0px 5px rgb(0 0 0 / 0.1);}
/* ————— subBanner end ————— */

/* ————— 当前位置 start ————— */
.locationBox{position: absolute;left: 0;bottom: 0px;width: 100%; z-index: 5; clear:both;}
.locationBox .wrap{display: block;}
.location{height: 50px;overflow: hidden;padding:15px 0 15px 33px;position: relative;width: 100%;}
.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;}
.location a{display: inline;float: left;height: 50px;line-height: 50px;padding-left: 14px;margin-right: 10px;background-position: left center;background-repeat: no-repeat;background-image: url(../images/common/icon8.png);color: #fff;font-size: 18px;}
.location a:hover{opacity: .8;}
.subMenuBox{background: #fff;border-bottom: 1px solid #e3e3e3;}
.subNavBox{margin: 0 -45px;}
.subNav{position: relative;text-align: center;}
.subNav::after{ display: block; content: ''; clear: both; visibility: hidden;}
.subNav a{display: inline-block; line-height: 70px;height:70px;color: #333;font-size: 18px;padding:0 45px;position: relative;}
.subNav a::before{display: block;content:'';position: absolute;width: 1px;height: 14px;right: 0;top: 50%;margin-top: -7px;background: #c8c8c8;}
.subNav a:last-child:before{display: none;}
.subNav a.hover{color: var(--themeColor)}
.subNav a:hover{color: var(--themeColor)}
.locationMenu{
    margin: 0 25px;
    position: relative;
    padding: 4px 0;
    background: #fff;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.locationMenu::before{
    display: block;
    content: '';
    position: absolute;
    width: 60px;
    height: 91px;
    left: -60px;
    background: url(../images/menuBg1.png) right center no-repeat;
    top: 0;
}
.locationMenu::after{
    display: block;
    content: '';
    position: absolute;
    width: 60px;
    height: 91px;
    right: -60px;
    background: url(../images/menuBg2.png) left center no-repeat;
    top: 0;
}
.locationMenuDl{
    display: flex;
    justify-content: center;
    height: 72px;
}
.locationMenuDl dd a{
    display: block;
    padding: 0 50px;
    position: relative;
    height: 72px;
    line-height: 72px;
    font-size: 20px;
    color: #333;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.locationMenuDl dd a::after{
    display: block;
    content: '';
    position: absolute;
    width: 1px;
    height: 14px;
    right: 0;
    top: 50%;
    margin-top: -7px;
    background: #c8c8c8;
}
.locationMenuDl dd:last-child a::after{
    display: none;
}
.locationMenuDl dd a:hover,
.locationMenuDl dd.hover a{
    color: var(--themeColor);
}
.locationMenu .menuIcon::before{
    display: block;
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--themeColor);
    border-radius: 12px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    left: 50%;
    margin-left: -6px;
    bottom: 0;
}
/* ————— 当前位置 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:45px;height: 45px;line-height: 45px; color:#999999;border-radius:3px; margin: 0 3px;vertical-align: middle;border: 1px solid #ccc;font-size: 14px;background: #fff;}
.page span{display: inline-block; padding: 10px 15px; position: relative; top: -15px;}
.page a:hover{background: var(--themeColor);border-color: var(--themeColor);color: #fff;}
.page a.hover{background: var(--themeColor);border-color: 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: 45px;height: 45px;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 -15px;}
.imgList dd{width: 33.3333%;float: left;display: inline;padding: 15px 0;}
.imgList dd .con{display: block;background: #FFFFFF;box-shadow: 0 0px 10px 0 rgba(0, 0, 0, .05); margin:0 15px;border-radius: 5px; overflow: hidden;transition: all .4s;-webit-transition: all .4s;}
.imgList dd .con .pic::before{padding-top: 66.6667%;}
.imgList dd .con .pic .newPic{position: absolute !important;left: 0;top: 0;}
.imgList dd .con .text{height: 76px;line-height: 76px;padding: 0 20px;font-size: 18px;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 */

/* 全图列表1 start */
.imgSwiperColumn{
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
}
.imgSwiperColumnR{
    width: 51.2821%;
    overflow: hidden;
}
.imgSwiper .pic:before{
    padding-top: 66.875%;
}
.imgSwiperColumnL{
    flex: 1;
    overflow: hidden;
    padding: 60px 5.1282% 0;
}

.imgSwiperColumnL .time{
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    color: rgba(148, 7, 10, 0.8);
}
.imgSwiperColumnL .title{
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    color: var(--themeColor);
    padding-bottom: 11px;
    border-bottom: 1px solid #f5f5f5;
    overflow: hidden;
    margin-bottom: 20px;
}
.imgSwiperColumnL .text{
    height: 108px;
    line-height: 36px;
    font-size: 18px;
    color: #333;
    overflow: hidden;
    margin-bottom: 36px;
}
.imgSwiperColumnL .more{
    width: 150px;
    height: 50px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 25px;
    transition: all .4s;
    -webkit-transition: all .4s;
    margin-bottom: 60px;
}
.imgSwiperColumnL .more a{
    display: block;
    height: 50px;
    text-align: center;
}
.imgSwiperColumnL .more a span{
    padding-right: 34px;
    height: 50px;
    line-height: 50px;
    padding-right: 34px;
    background: url(../images/imgMore.png) right center no-repeat;
    font-size: 14px;
    color: #999;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.imgSwiperColumnL .more:hover{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    transform: translateY(-1px);
    -webkit-transform: translateY(-1px);
    background-color: var(--themeColor);
    border-color: var(--themeColor);
} 
.imgSwiperColumnL .more:hover span{
    color: #fff;
    padding-right: 36px;
    background: url(../images/imgMore-h.png) right center no-repeat;
}
.imgSwiperDot span{
    width: 10px;
    height: 10px;
    border: 2px solid #ccc;
    background: transparent;
    margin-right: 32px !important;
    opacity: 1;
}
.imgSwiperDot span.swiper-pagination-bullet-active{
    border-color: var(--themeColor);
}
.imgForm{
    display: flex;
}
.imgForm .item{
    background: #fff;
    border-radius: 5px;
}
.imgForm .item.w200{
    width: 200px;
    margin-right: 50px;
}
.imgForm  .aykj_cssSelect .aykj_selectBox{
    border: none;
}
.imgForm .aykj_cssSelect .aykj_selectLt{
    min-height: 42px;
    line-height: 42px;
    font-size: 16px;
    color: #999;
}
.imgForm  .input {
    border: none;
}
.imgForm .input input{
    height: 42px;
    line-height: 42px;
    padding: 0 56px 0 10px;
    font-size: 16px;
    color: #999;
}
.imgForm .input input::-webkit-input-placeholder{
    font-size: 16px;
    color: #999;
}
.imgForm .aykj_cssSelect .aykj_selectRt{
    width: 56px;
}
.imgForm .aykj_cssSelect .aykj_selectRt:before{
    right: 15px;
}
.imgForm .itemC{
    display: flex;
}
.imgForm  .input.w240{
    width: 240px;
}
.imgForm button{
    width: 60px;
    height: 42px;
    background:#bc0002 url(../images/imgIcon.png) center center no-repeat;
    border-radius:0 5px 5px 0;
}
.imgForm .aykj_cssSelect .aykj_optionBox:hover{
    background: var(--themeColor2);
}
.imgList1{overflow: hidden;margin:0 -15px;}
.imgList1 dd{width: 33.3333%;float: left;display: inline;padding: 15px 0;}
.imgList1 dd .con{display: block;background: #FFFFFF;margin:0 15px;border-radius: 5px; overflow: hidden;transition: all .4s;-webit-transition: all .4s;}
.imgList1 dd .con .pic::before{padding-top: 60%;}
.imgList1 dd .con .pic .newPic{position: absolute !important;left: 0;top: 0;}
.imgList1 dd .con .text{padding: 20px;}
.imgList1 dd .con .text .title{height:68px;line-height: 34px; font-size: 18px;color: #333333;transition: all 0.4s;-webkit-transition: all 0.4s;margin-bottom: 7px;}
.imgList1 dd .con .text time{height: 36px;line-height: 36px;font-size: 18px;color: #999;transition: all 0.4s;-webkit-transition: all 0.4s;}
.imgList1 dd .con:hover .text time{color: var(--themeColor);}
.imgList1 dd .con:hover .text .title{color: #bc0002;}
.imgList1 dd .con:hover {transform: translateY(-2px);-webkit-transform: translateY(-2px);box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);}
.imgList1 dd .con:hover .text{color: var(--themeColor);}
/* 全图列表1 end */

/* 图文列表 start */
.imgTextColumn1{
    padding: 80px 0 60px;
    background: #fff;
    overflow: hidden;
}
.imgTextSwiper{
    overflow: hidden;
    position: relative;
}
.imgTextSwiper .swiper-slide.swiper-slide-next{
    padding-left: 6.41025%;
}
.imgTextSwiper .con{
    display: flex;
    overflow: hidden;
}
.imgTextSwiper .pic{
    width: 50.4%;
}
.imgTextSwiper .pic::before{
    padding-top: 68.2539%;
}
.imgTextColumn1L{
    flex: 1;
    overflow: hidden;
    padding-top: 30px;
}
.imgTextColumn1L .tag{
    height: 58px;
    line-height: 58px;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.imgTextColumn1L .title{
    height: 120px;
    line-height: 60px;
    margin-bottom: 50px;
}
.imgTextColumn1L .title a{
    font-size: 36px;
    color: #333;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.imgTextColumn1L .more a{
    display: inline-block;
    height: 46px;
    line-height: 46px;
    padding-right:20px;
    background: url(../images/imgTextIcon1.png) right center no-repeat;
    font-size: 18px;
    color: var(--themeColor);
    transition: all .3s;
    -webkit-transition: all .3s;
}
.imgTextSwiper .swiper-slide.swiper-slide-next .imgTextColumn1L .tag{
    color: #d3d4d5;
}
.imgTextSwiper .swiper-slide.swiper-slide-next .imgTextColumn1L .title a{
    color: #d3d4d5;
}
.imgTextSwiper .swiper-slide.swiper-slide-next .imgTextColumn1L .more a{
    opacity: .5;
}
.imgTextSwiper  .imgTextColumn1L .more a:hover{
    padding-right: 22px;
    font-weight: bold;
}
.imgTextSwiper  .imgTextColumn1L .title:hover a{
   color: var(--themeColor);
}
.imgTextBtn{
    position: absolute;
    left: 0;
    bottom: 0;
}
.imgTextBtn div {
    float: left;
    display: inline;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 0 8px rgba(202, 131, 133, 0.2); 
    box-sizing: border-box;
	transition: all .4s;
	-webkit-transition: all .4s;
    margin-right: 20px;
    position: relative;
    z-index: 9;
  }
.imgTextBtn .next {
    background-image: url(../test/images/next.png);
}
.imgTextBtn .prev {
    background-image: url(../test/images/prev.png);
}
.imgTextBtn .next:hover{
	background-color: var(--themeColor);
	background-image: url(../test/images/next-h.png);
}
.imgTextBtn .prev:hover {
	background-color: var(--themeColor);
    background-image: url(../test/images/prev-h.png);
}

.imgText dd{padding: 15px 0;}
.imgText dd a{display: flex; padding: 30px;background: #FFF;border-radius: 5px;transition: all .4s;-webit-transition: all .4s;align-items: center;position: relative;}
.imgText dd a::before{
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--themeColor);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    transform: scaleX(.5);
    -webkit-transform: scaleX(.5);
    opacity: 0;
    visibility: hidden;
}
.imgText dd a:hover:before{
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform-origin: 0 100%;
    opacity: 1;
    visibility: visible;
}
.imgText dd .pic{ width:420px; overflow: hidden; position: relative;border-radius: 10px;margin-right: 50px;}
.imgText dd .pic:before{ display: block; content: ''; padding-top: 56.25%;}
.imgText dd .pic img{ display:block; width:100%; height:100%; position:absolute; left:0px; top:0px;}
.imgText dd .text{ overflow: hidden;position: relative;padding-right: 50px;flex: 1;}
.imgText dd .text::before{display: block;content: '';position: absolute;width: 1px;height: 136px;right: 0;top: 50%;margin-top: -68px;background: #e5e5e5;}
.imgText dd .text .title{ overflow: hidden; height: 50px; line-height: 50px; font-weight: bold;margin-bottom: 8px;font-size: 22px;font-weight: bold;color: #333;margin-bottom: 20px;}
.imgText dd .text .textC{ font-size:16px; color:#666666; line-height:30px; height:90px; overflow:hidden;}
.imgText dd .time{width: 180px;text-align: center;}
.imgText dd .time span{ display:block;height: 52px;line-height: 52px;font-size: 40px;color: #999;font-family: "Apercu";}
.imgText dd .time em{display: block;height: 32px;line-height: 32px;font-size:16px;color: #999;font-family: "Apercu";font-style: normal;}
.imgText dd:hover .text .title a{ color: var(--themeColor);}
.imgText dd:hover a{ transform: translateY(-2px);-webkit-transform: translateY(-2px);box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);}
.imgText dd:hover .title,
.imgText dd:hover .time span,
.imgText dd:hover .time em{color: var(--themeColor);}
/* 图文列表 end */

/* 领导列表 start */
.leader{overflow: hidden;margin:0 -15px;}
.leader dd{width: 33.3333%;float: left;display: inline;padding: 15px 0;}
.leader dd .con{display: block;background: #FFFFFF;margin:0 15px;border-radius: 5px; overflow: hidden;transition: all .4s;-webit-transition: all .4s; box-shadow:1px 7px 20px 0px rgba(0, 0, 0, 0.04);}
.leader dd .con .pic::before{padding-top: 70%;}
.leader dd .con .pic .newPic{position: absolute !important;left: 0;top: 0;}
.leader dd .con .text{height: 112px;line-height: 112px;padding: 23px 30px 0;font-size: 16px;color: #333333;transition: all 0.4s;-webkit-transition: all 0.4s;box-sizing: border-box;-webkit-box-sizing: border-box;}
.leader dd .con .text .name{height: 38px;line-height: 38px;font-size: 24px;color:#333;transition: all .3s;-webkit-transition: all .3s;}
.leader dd .con .text .duty{height: 28px;line-height: 28px;font-size: 16px;color:#666;transition: all .3s;-webkit-transition: all .3s;}
.leader dd .con:hover {transform: translateY(-2px);-webkit-transform: translateY(-2px);box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);}
.leader dd .con:hover .text .name,
.leader dd .con:hover .text .duty{color: var(--themeColor);}
/* 领导列表 end */

/* 主题活动 start */
.commonMore {
	height: 55px;
	border: 1px solid #b2b2b2;
	width: 160px;
	box-sizing: border-box;
	border-radius: 60px;
	position: relative;
	overflow: hidden;
	transition: .4s ease;
	-webkit-transition: .4s ease;
	text-align: center;
}

.commonMore:hover {
	border-color: transparent;
	transform: translateY(-2px);
	-webkit-transform: translateY(-2px);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.commonMore::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #cf0417;
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.4, 1, 1);
	transform: scale3d(0.4, 1, 1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.commonMore:hover::before {
	z-index: 1;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.commonMore a {
	display: block;
	position: relative;
	line-height: 53px;
	z-index: 5;
	font-size: 16px;
	color: #999;
	font-family: 'Alibaba PuHuiTi 2.0 55';
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
}

.commonMore:hover a {
	color: #fff;
}

.commonMore span {
	display: inline-block;
	padding-right: 29px;
	background: url(../images/morew.png) right center no-repeat;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
}

.commonMore:hover span {
	background: url(../images/morew_h.png) right center no-repeat;
}

.imgText1 dd{padding: 15px 0;}
.imgText1 dd a{display: flex; padding: 20px;background: #FFF;transition: all .4s;-webkit-transition: all .4s;align-items: center;position: relative;border-top:1px solid #ebebeb;border-bottom: 1px solid #ebebeb; }
.imgText1 dd a:hover{
    box-shadow: 0 2px 6px 3px rgba(148, 7, 10, 0.8);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    border-radius: 10px;
    border: none;
}  
.imgText1 dd a::before{
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--themeColor);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    transform: scaleX(.5);
    -webkit-transform: scaleX(.5);
    opacity: 0;
    visibility: hidden;
}
.imgText1 dd a:hover:before{
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform-origin: 0 100%;
    opacity: 1;
    visibility: visible;
}
.imgText1 dd .pic{ width:420px; overflow: hidden; position: relative;border-radius: 10px;margin-right: 50px;}
.imgText1 dd .pic:before{ display: block; content: ''; padding-top: 56.25%;}
.imgText1 dd .pic img{ display:block; width:100%; height:100%; position:absolute; left:0px; top:0px;}
.imgText1 dd .text{ overflow: hidden;flex: 1; position: relative;padding-right: 50px;}
.imgText1 dd .text::before{display: block;content: '';position: absolute;width: 1px;height: 136px;right: 0;top: 50%;margin-top: -68px;background: #e5e5e5;}
.imgText1 dd .text .title{ overflow: hidden; height: 50px; line-height: 50px; font-weight: bold;margin-bottom: 8px;font-size: 22px;font-weight: bold;color: #333;margin-bottom: 20px;}
.imgText1 dd .text .textC{ font-size:16px; color:#666666; line-height:30px; height:90px; overflow:hidden;}
.imgText1 dd .time{width: 180px;text-align: center;}
.imgText1 dd .time span{ display:block;height: 52px;line-height: 52px;font-size: 40px;color: #999;font-family: "Apercu";}
.imgText1 dd .time em{display: block;height: 32px;line-height: 32px;font-size:16px;color: #999;font-family: "Apercu";font-style: normal;}
.imgText1 dd:hover .text .title a{ color: var(--themeColor);}
.imgText1 dd:hover a{ transform: translateY(-2px);-webkit-transform: translateY(-2px);box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);}
.imgText1 dd:hover .title,
.imgText1 dd:hover .time span,
.imgText1 dd:hover .time em{color: var(--themeColor);}
/* 主题活动 end */

/* 学生社团 start */
.imgText2 dd{padding: 15px 0;}
.imgText2 dd .con{display: flex; background: #FFF;transition: all .4s;-webkit-transition: all .4s;align-items: center;position: relative;}
.imgText2 dd .pic{width: 50%;}
.imgText2 dd .pic::before{padding-top: 61.5385%;}
.imgText2 dd .text{flex: 1;}
.imgText2 dd .text .title{height: 105px;padding: 0 7.6923%;margin-bottom: 30px;border-bottom: 1px solid #ebebeb;}
.imgText2 dd .text .title a{display: block;height: 105px;line-height: 105px;font-size: 25px;font-weight: bold;color: #333;transition: all .4s;-webkit-transition: all .4s;}
.imgText2 dd .con:hover .text .title a{color: var(--themeColor);}
.imgText2 dd .text .textC{height: 144px;line-height: 36px;font-size: 18px;color: #666;padding: 0 7.6923%;margin-bottom: 32px;} 
.imgText2 dd .text .indexMore{margin-left: 7.6923%;}
/* 学生社团 end */

/* 宣传教育 start */
.imgTextColumn3{padding: 80px 0 50px;background: #fff;overflow: hidden;}
.imgTextSwiper3{
    display: flex;
    padding: 50px;
    background: #fff;
    box-shadow: 0px 3px 19px 1px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    align-items: center;
}
.imgTextColumn3L{
    flex: 1;
    overflow: hidden;
    padding-right: 60px;
}
.imgTextColumn3L .tag{
    height: 66px;
    line-height: 66px;
    font-size: 18px;
    color: #333;
}
.imgTextColumn3L .title{
    height: 120px;
    line-height: 60px;
    font-size: 36px;
    color: var(--themeColor);
    overflow: hidden;
    margin-bottom: 15px;
}
.imgTextColumn3L .time{
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    color: var(--themeColor);
    opacity: .8;
}
.imgTextColumn3L .imgTextBtn{
    position: relative;
    padding-top: 75px;
}
.imgTextSwiper3 .bd{
    width: 68.4932%;
    overflow: hidden;
    position: relative;
}
.imgTextSwiper3 .pic::before{
    padding-top: 58.5%;
}
.imgTextSwiper3 .palyVideo {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 11;
}
.imgTextSwiper3 .palyVideo i{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5;
	border-radius: 50%;
	background:rgba(0, 0, 0, .4) url(../test/images/playvideo.png) center center no-repeat;
}
.imgTextSwiper3 .palyVideo::before {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 4s infinite;
    background: rgba(0, 0, 0,.35);
    top: 0;
    left: 0;
    z-index: 2;
}
.imgTextSwiper3 .palyVideo::after {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
    background: rgba(0, 0, 0, .1);
    top: 0;
    left: 0;
    animation-delay: 1s;
    z-index: 3
}
/* 宣传教育 end */

/* 骨干教师 start */
.teacher{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.teacher dd{
    width: 50%;
    padding: 15px 0;
}
.teacher dd a{
    display: flex;
    margin: 0 15px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .08);
    transition: all .4s;
    -webkit-transition: all .4s;
}
.teacher dd .pic{
    width: 190px;
    margin-right: 30px;
}
.teacher dd .pic::before{
    padding-top:128.94735% ;
}
.teacher dd .text{
    flex: 1;
    overflow: hidden;
    padding-top: 25px;
}
.teacher dd .name{
    height: 38px;
    line-height: 38px;
    font-size: 22px;
    color: #333;
    transition: all .3s;
    -webkit-transition: all .3s;
} 
.teacher dd .duty{
    height: 26px;
    line-height: 26px;
    font-size: 16px;
    color: #999;
    margin-bottom: 25px;
    overflow: hidden;
}
.teacher dd .infor{
    height: 84px;
    line-height: 28px;
    font-size: 16px;
    color: #666;
}
.teacher dd a:hover{
    box-shadow: 0 0px 10px 0 rgba(148, 7, 10, 0.5);
    transform: translateY(-1px);
    -webkit-transform: translateY(-1px);
}
.teacher dd a:hover .text .name{
    color: var(--themeColor);
}
/* 骨干教师 end */

/* 全文列表 start */
.textList {
    border-top: 1px solid #ebebeb;
}
.textList dd{padding: 55px 0;border-bottom: 1px solid #ebebeb;transition: 0.4s;-webkit-transition: 0.4s;border-radius: 20px 0 20px 0;}
.textList dd .con{display: flex;align-items: center;overflow: hidden;}
.textList dd:hover{background: #970d10;}
.textList dd time{
    width: 175px;
    text-align: center;
}
.textList dd time .date{
    height: 56px;
    line-height: 56px;
    font-size: 28px;
    color: #333;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.textList dd time .year{
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    color: #999;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.textList dd .text{
    flex: 1;
    overflow: hidden;
    padding: 0 50px;
    position: relative;
} 
.textList dd .text::before{
    display: block;
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(153, 153, 153, .25);
    transition: all .4s;
    -webkit-transition: all .4s;
}
.textList dd:hover .text::before{
    background: #FFF;
}
.textList dd .title{
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    color: #333;
    transition: all .4s;
    -webkit-transition: all .4s;
    margin-bottom: 7px;
}
.textList dd .infor{
    height: 64px;
    line-height: 32px;
    font-size: 16px;
    color: #666;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.textList dd .more{
    margin-right: 40px;
    width: 50px;
    height: 30px;
} 
.textList dd  .more span{
    display: block;
    width: 50px;
    height: 30px;
    background: url(../images/textIcon.png) right center no-repeat;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.textList dd .con:hover .more span{
    background: url(../images/textIcon-h.png) right center no-repeat;
}
.textList dd:hover .con time .date,
.textList dd:hover .con time .year,
.textList dd:hover .con .text .title,
.textList dd:hover .con .text .infor{color: #fff}
/* 全文列表 end */

/* 安全知识 start */
.textList1{
    padding: 30px 55px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.textList1 dd a{display: flex;align-items: center; border-bottom: 1px dashed #ebebeb;position: relative;}
.textList1 dd a::before{display: block;content: '';position: absolute;width: 100%;bottom: 0;left: 0;height: 1px;background: var(--themeColor);transition: 0.4s;-webkit-transition: 0.4s;transform: scaleX(.5);-webkit-transform: scaleX(.5);opacity: 0;visibility: hidden;}
.textList1 dd a:hover:before{transform: scaleX(1);-webkit-transform: scaleX(1);transform-origin: 0 100%;opacity: 1;visibility: visible;}
.textList1 dd a em{display: block;width: 8px;height: 8px;background: var(--themeColor);border-radius: 8px;margin-right: 40px;}
.textList1 dd a .title{flex: 1;height: 82px;line-height: 82px;font-size: 20px;color: #333;overflow: hidden;transition: all .4s;-webkit-transition: all .4s;}
.textList1 dd a time{margin-left: 15px;font-size: 20px;color: #999;transition: all .4s;-webkit-transition: all .4s;}
.textList1 dd a:hover .title,
.textList1 dd a:hover time{color: var(--themeColor);} 
/* 安全知识 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.6667%;}
.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 */
.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: rgba(255, 255, 255, .5) ;transition-duration: 0.4s;-webkit-transition-duration: 0.4s;}
.hornorList dd a .picBox {padding: 30px;}
.hornorList dd a .picBox .pic::before {padding-top: 66.6667%;}
.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: 22px;color: #333333;transition-duration: 0.4s;-webkit-transition-duration: 0.4s;height: 74px;line-height: 74px;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);background: #fff; }
.honnorColumn{padding: 65px 0 80px;overflow: hidden;}
.honnorColumn .wrap{display: flex;}
.honnorLeft{
    width: 42.3077%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding-right: 35px;
    padding-top: 45px
}
.honnorTitle{
    height: 60px;
    line-height: 60px;
    padding-left: 50px;
    font-size: 24px;
    background: url(../images/honnorIcon.png) left center no-repeat;
    color: var(--themeColor);
}
.honnorInfor{
    line-height: 56px;
    font-size: 20px;
    color: #181818;
}
.honnorRight{
    overflow: hidden;
    flex: 1;
}
.swiperScroll{
    position: relative;
    z-index: 1;
}
.swiperScroll::before{
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    bottom:0px;
    height: 75px;
    left: 0;
    background: url(../images/honnorBg.png) repeat-x center top;
    background-size: 100% auto;
}
.swiperScroll .swiper-slide{
    width: 50%;
}
.swiperScroll .swiper-slide .con{
    display: block;
    margin: 0 64px;
}
.swiperScroll .pic{
    margin-bottom: 28px;
}
.swiperScroll .pic::before{
    padding-top: 63.8436%;
}
.swiperScroll .pic img{
    object-fit: contain;
}
.swiperScroll .text{
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    color: var(--themeColor);
}
/* 资质荣誉 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%;}
/* 表单模板 start  */

/*********** 文章详细页 start ***********/
.articleC {background: #FFFFFF;padding: 50px 60px 0px;}
.articleBox {line-height: 36px;padding: 10px 0 0;color: #666666;font-size: 18px;margin-bottom: 10px;}
.articleBox img {max-width: 100%;}
/* 标题 start */
.articleTitle {clear: both;line-height: 48px;font-size: 30px;font-family: "microsoft yahei";color: #333333;text-align: center;position: relative;}
/* 标题 end */
/* 发布信息 start  */
.articleTime {display: block;clear: both;color: #666666;font-size: 16px;line-height: 30px;padding: 15px 0 27px;border-bottom: 1px solid #dddddd;overflow: hidden;text-align: center;}
.articleTime span {margin:0 15px;font-size: 16px;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;}
.articleShare .sharejs_icon{
    border: none;
    margin: 0 6px;
}
.articleShare .sharejs_icon.icon_SinaWeibo{
    color: #ff2d2d;
}
.articleShare .sharejs_icon.icon_SinaWeibo:hover{
   background-color: #ff2d2d;
}
/*  分享 end  */
/*  大图 start */
/* 文章阅读页-内容上部大图 */
#play {width: 800px;height: 450px;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: 800px;height: 450px;}
#play .img_ul li {position: relative;z-index: 1;width: 800px;height: 450px;background: #fff;margin: 0 0 5px 0;}
#play .img_ul li img {position: absolute;}
.imgMove {width: 800px;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: flex;justify-content: space-between; line-height: 34px;color: #999999;font-size: 16px;padding: 40px 0;border-top: 1px solid #f5f5f5; align-items: center;}
.pageUp a {font-size: 16px;color: #999999;position:relative;z-index: 10}
.pageUp span{
    padding-left: 30px;
}
.pageUp span.pageF{
    background: url(../images/pageL.png) left center no-repeat;
}
.pageUp .articlePageBox:hover span.pageF{
    background: url(../images/pageL-h.png) left center no-repeat;
}
.pageUp span.pageL{
    background: url(../images/pageR.png) left center no-repeat;
}
.pageUp .articlePageBox:hover span.pageL{
    background: url(../images/pageR-h.png) left center no-repeat;
}
.articlePageBox{
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #b2b2b2;
    border-radius: 25px;
}
.articlePageBox:hover,
.articlePageBox:hover a,
.pageUp a:hover {background: var(--themeColor);border-color: var(--themeColor);color: #fff;}
.backList{
    margin: 0 12.8205%;
}
.backList a{
    display: block;
    width: 160px;
    height: 50px;
    background: var(--themeColor);
    border-radius: 50px;
    text-align: center;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.backList a span{
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding-left: 30px;
    background: url(../images/back.png) left center no-repeat;
    font-size: 16px;
    color: #fff;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.backList a:hover{
    opacity: .85;
}
.backList a:hover span{
    padding-left: 35px;
}
/* ————— 上一篇/下一篇 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: 800px;height: 450px;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 ***********/