@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: 80px;
    height:42px;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    margin-top: 12px;
    margin-right: 32px;
    margin-left: 16px;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    overflow: hidden;
}

.topSearch a {
    display: block;
    height:42px;
    position: relative;
    line-height: 38px;
    font-size: 16px;
    color: #333;
    background: url(../images/topSearch.png) center center no-repeat;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

.topSearch:hover{
    border-color: var(--themeColor);
    background: var(--themeColor);
}

.topSearch:hover a:hover {
    background:url(../images/topSearch-w.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;
    z-index: 2000 !important;
    position: relative;
}

.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: fixed;
    top: 0;
    width: 100%;
    height: 110px;
    left: 0;
    z-index: 99;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    background: rgb(255, 255, 255, .6);
    box-shadow: 0 0 10px rgba(0, 0, 0, .08);
}

.logo {
    font-size: 0;
    padding: 30px 0;
}

.logo img {
    display: block;
    height: 49px;
}

.topR {
    padding: 20px 0;
}
.top {
        /* background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: relative; */
        z-index: 1000;
    }
    
    .topR {
        display: flex;
        align-items: center;
        margin-right: 80px;
    }

    /* 菜单按钮样式 */
    .menuBtn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 8px;
        position: fixed;
        top: 35px;
        right: 20px;
        z-index: 1002;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        float: right;
    }

    .menuBtn:hover {
        background: rgba(0, 123, 255, 0.1);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .menuBtn.active {
        background: rgba(0, 123, 255, 0.9);
        transform: scale(1);
    }

    .menuBtn.active:hover {
        background: rgba(0, 123, 255, 1);
    }

    .menuBtn span {
        display: block;
        width: 24px;
        height: 18px;
        position: relative;
    }

    .menuBtn .line {
        display: block;
        width: 100%;
        height: 2px;
        background: #333;
        position: absolute;
        left: 0;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-radius: 2px;
    }

    .menuBtn.active .line {
        background: #fff;
    }

    .menuBtn .line:nth-child(1) {
        top: 0;
    }

    .menuBtn .line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .menuBtn .line:nth-child(3) {
        bottom: 0;
    }

    /* 菜单按钮激活状态 */
    .menuBtn.active .line:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menuBtn.active .line:nth-child(2) {
        opacity: 0;
        transform: translateY(-50%) scale(0);
    }

    .menuBtn.active .line:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    /* 关闭状态提示 */
    .menuBtn.active::before {
        content: 'SHUT';
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        animation: showTooltip 0.3s ease 0.5s forwards;
    }

    @keyframes showTooltip {
        from {
            opacity: 0;
            transform: translateY(-50%) translateX(10px);
        }

        to {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }
    }

    /* 遮罩层 */
    .menuBg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(4px);
    }

    .menuBg.active {
        opacity: 1;
        visibility: visible;
    }

    /* 抽屉菜单主体 */
    .menuPage {
        position: fixed;
        top: 0;
        right: -700px;
        width: 700px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    .menuPage.active {
        right: 0;
    }

    .menuPageBody {
        padding: 80px 0 40px;
    }

    /* 菜单项样式 */
    .menuDl {
        list-style: none;
        width: 100%;
    }

    .menuDl dd {
        border-bottom: 1px solid #f0f0f0;
    }

    .mainMenu {
        padding: 20px 30px;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mainMenu:hover {
        background: #f8f9fa;
        padding-left: 40px;
    }

    .mainMenu a {
        color: #333;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        display: block;
        transition: color 0.3s ease;
    }

    .mainMenu:hover a {
        color: var(--themeColor);
    }

    .mainMenu::after {
        content: '';
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        border-right: 2px solid #ccc;
        border-bottom: 2px solid #ccc;
        transform: translateY(-50%) rotate(-45deg);
        transition: all 0.3s ease;
    }

    .menuDl dd .mainMenu::after {
        display: none;
    }

    .menuDl dd .mainMenu::after{
        display: block;
    }

    .menuDl dd.expanded .mainMenu::after {
        transform: translateY(-50%) rotate(45deg);
        border-color: var(--themeColor);
    }

    .mainMenu:hover::after {
        border-color: var(--themeColor);
    }
    .menuDl dd.has-submenu .arrow {
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url('arrow-down.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
}
.menuDl dd.no-submenu .arrow {
    display: none;
}

    /* 子菜单样式 */
    .subMenu {
        max-height: 0;
        overflow: hidden;
        background: #f8f9fa;
        transition: max-height 0.4s ease;
    }

    .menuDl dd.expanded .subMenu {
        max-height: 400px;
    }

    .subMenuItem {
        padding: 10px 0;
    }

    .subMenuItem a {
        display: block;
        padding: 15px 50px;
        color: #666;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #e8e8e8;
        transition: all 0.3s ease;
        position: relative;
        background: #fff;
    }

    .subMenuItem a:last-child {
        border-bottom: none;
    }

    .subMenuItem a::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
        background: #ccc;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .subMenuItem a:hover {
        background: #fff;
        color: var(--themeColor);
        padding-left: 60px;
        box-shadow: inset 4px 0 0 var(--themeColor);
    }

    .subMenuItem a:hover::before {
        background: var(--themeColor);
        transform: translateY(-50%) scale(1.5);
    }

    /* 动画优化 */
    .menuDl dd {
        opacity: 0;
        transform: translateX(30px);
        animation: none;
    }

    .menuPage.active .menuDl dd {
        animation: slideInRight 0.4s ease forwards;
    }

    .menuPage.active .menuDl dd:nth-child(1) {
        animation-delay: 0.1s;
    }

    .menuPage.active .menuDl dd:nth-child(2) {
        animation-delay: 0.15s;
    }

    .menuPage.active .menuDl dd:nth-child(3) {
        animation-delay: 0.2s;
    }

    .menuPage.active .menuDl dd:nth-child(4) {
        animation-delay: 0.25s;
    }

    .menuPage.active .menuDl dd:nth-child(5) {
        animation-delay: 0.3s;
    }

    .menuPage.active .menuDl dd:nth-child(6) {
        animation-delay: 0.35s;
    }

    .menuPage.active .menuDl dd:nth-child(7) {
        animation-delay: 0.4s;
    }

    .menuPage.active .menuDl dd:nth-child(8) {
        animation-delay: 0.45s;
    }

    .menuPage.active .menuDl dd:nth-child(9) {
        animation-delay: 0.5s;
    }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
/* .menuDl {
    display: flex;
    float: left;
    flex-wrap: wrap;
}

.menuDl dd {
    float: left;
    display: inline;
    position: relative;
    margin-right: 0;
    height: 70px;
}

.mainMenu {
    position: relative;
    z-index: 9;
    padding: 0 25px;
}


.mainMenu a {
    font-size: 16px;
    color: #666;
    display: block;
    line-height: 70px;
    height: 70px;
    text-align: center;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    position: relative;
    z-index: 6;
}

.menuDl dd.hover .mainMenu a,
.mainMenu a:hover {
    color: var(--themeColor);
}

.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;
}

.menuDl dd .subMenu .subMenuItem a:hover,
.menuDl dd .subMenu .subMenuItem a.hover {
    color: var(--themeColor);
}

.menuDl dd:hover .subMenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.topR .menuIcon div {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    border-radius: 2px;
}

.menuTabTitle {
    margin-left: 50px;
}

.menuTabTitle a {
    display: block;
    font-size: 15px;
    color: #666666;
    padding: 8px;
    line-height: 24px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.menuTabTitle a:hover,
.menuTabTitle a.hover {
    color: #0063b1;
}

.menuTabContent {
    overflow: hidden;
}

.menuTabContent .pic {
    width: 150px;
    margin-right: 20px;
    overflow: hidden;
}

.menuTabContent .pic:before {
    padding-top: 66.6666%;
}

.menuTabContent .text {
    overflow: hidden;
}

.menuTabContent .info {
    font-size: 14px;
    color: #858585;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
}

.menuTabContent .enter {
    line-height: 24px;
}

.menuDl1 dd .subMenu .enter a {
    color: #3184d7;
    text-align: left;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.menuDl1 dd .subMenu .enter a:hover {
    opacity: 0.8;
} */

.languageBox {
    margin-top: 12px;
    position: relative;
    height: 46px;
    cursor: pointer;
    background:var(--themeColor);
    padding: 0 25px;
    border-radius: 36px;
}

.languageBox span {
    height: 50px;
    line-height: 46px;
    font-size: 14px;
    color: #fff;
    padding-right: 18px;
    background: url(../images/languageXl.png) no-repeat center right;
    z-index: 3;
    position: relative;
}

.languageBox span i {
    background: url(../images/language.png) no-repeat center left;
    height: 46px;
    width: 20px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}

.languageBox .language {
    background: var(--themeColor);
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    padding-top: 46px;
    width: 100%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
}

.languageBox .language a {
    display: block;
    width: 100%;
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    position: relative;
}

.languageBox .language a::before {
    display: block;
    content: '';
    width: 2px;
    height: 14px;
    background-color: var(--themeColor);
    position: absolute;
    top: 6px;
    left: 0;
    transform: scale(0);
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
}

.languageBox .language a:hover {
    font-weight: bold;
}

.languageBox .language a:hover::before {
    transform: scale(1);
}

.languageBox:hover .language {
    opacity: 1;
    visibility: visible;
}

.languageBox:hover span,
.languageBox.hover span {
    color: #fff;
    background-image: url(../images/languageXl.png)
}

.languageBox:hover span i,
.languageBox.hover span i {
    color: #fff;
    background-image: url(../images/language.png)
}

/* 顶部 end */

/* ————— 底部 start ————— */
.footer{ background: #f6f6f6;border-top: 1px solid #e5e5e5; box-shadow: 0 0 10px rgba(0, 0, 0, .08);}

.footer .hddb a {
    width: 3.75rem;
    height: 3.75rem;
    display: block;
    background: url(../images/icon/hddb.png) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: -1.875rem;
    right: 7.5rem;
}
/* 底部中间start   */
.footerM{ padding: 60px 0 20px;border-bottom: 1px solid #e6e6e6;}
.footerML{overflow: hidden;margin-right: 70px;}
.footerLogo{ margin-bottom: 36px;}
.footerLogo img{ display: block; height: 49px;}
.footerDl{
    display: flex;
    width: 100%;
}
.footerML dd{
    margin-right: 90px;
    max-width: 386px;
}
.footerML dd .icon{
    width: 40px;
    height: 32px;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--themeColor);
    border-radius: 32px;
    margin-bottom: 32px;
}
.footerML dd .text{
    line-height: 32px;
    font-size: 16px;
    color: #666;
}
.footerMR{ float: right; display: inline;margin-top: 160px;}
.footerEwm{ position: relative;margin-left: -30px   ;}
.footerEwm::after{
    display: block;
    content: '';
    clear: both;
}
.footerEwm dd{ float:left; display:inline; position:relative; margin-left:20px;}
.footerEwm dd .icon{width: 40px;height: 40px;border-radius: 40px;background: #fff;border-radius: 56px;position: relative;}
.footerEwm dd .icon span{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 40px;
    width:40px;
    background-position: center center;
    background-repeat: no-repeat;
}
.footerEwm dd .icon span.span2{
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.footerEwm dd:hover .icon span.span1{
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.footerEwm dd:hover .icon span.span2{
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.footerEwm dd:hover .icon{
    background-color: #32b16c;
}
.footerEwmBox{position: absolute;width: 130px;height: 130px;/* border: 3px solid rgba(255, 255, 255, .1); */left: 50%;margin-left: -65px;top: -170px;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,1);
    left: 50%;
    bottom: -20px;
    margin-left: -10px;
    z-index: -1;
}
.footerEwm dd:hover .footerEwmBox{
    opacity: 1;
    visibility: visible;
    top: -150px;
}
.footerEwmImg{padding: 15px;background: #fff;border-radius: 10px;box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);}
.footerEwmImg img{ display:block; width:100px; height:100px;}
.footerEwm dd .title{ height: 55px;line-height: 55px;text-align: center;font-size: 14px;color: #fff;}
/* 底部中间end   */
/* 底部版权start   */
.friendCopyRight{ height: 82px; line-height: 82px; overflow: hidden; font-size: 16px; color: #666666;}
.friendCopyRight .conL{ float: left; display: inline;}
.friendCopyRight .conL span{ margin-right: 20px;}
.friendCopyRight .conL a{ color: #666666; margin-right: 20px;}
.friendCopyRight .conL a.gabeian{ padding-left: 30px;background: url(../images/beian.png) left center no-repeat;}
.friendCopyRight .conL a:hover{ color: var(--themeColor);}
.friendCopyRight .conR{ float: right; display: inline;}
.friendCopyRight .conR a{color: #666666; }
.friendCopyRight .conR a:hover{ color: var(--themeColor);}
/* 底部版权end   */
/* ————— 底部 end   ————— */

/* ————— subBanner start ————— */
.subBanner{position: relative;overflow: hidden;width: 100%;}
.subBanner::after{
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}
.subBanner:before{display: block;content: '';padding-top: 33.85416%;}
.subBanner img{position: absolute;width: 100%;height: 100%;left: 0;top: 0;object-fit: cover; object-position: center center;transform: scale(1.1);-webkit-transform: scale(1.1);transition: all 3s ease;-webkit-transition: all 3s ease;}
.subBanner.on  img{transform: scale(1);-webkit-transform: scale(1);}
.subBanner .text{width: 100%;height: 100%;position: absolute;top: 0;left: 0;}
.subBanner .wrap{height: 100%;}
.subBanner .textC{position: relative;text-align: center;position: relative;z-index: 2;}
.subBanner .textC .cnTitle{font-size: 2.25rem;color: #ffffff;line-height: 2.25rem;font-family: "MiSans-Regular"; margin-bottom: 1.25rem;}
.subBanner .textC .enTitle{font-size: 2.25rem; color: #fff; line-height: 2.25rem; font-family: "GothamRnd-Bold"; font-weight: bold; text-shadow: 0px 0px 5px rgb(0 0 0 / 0.1);}
/* ————— subBanner end ————— */

/* ————— 当前位置 start ————— */
.locationBox{clear:both;width: 100%;background: #fff;border-bottom: 2px solid #e8ecef; margin-bottom: 3px;}
.location{height: 6.25rem ;overflow: hidden;padding-left: 2.0625rem ;position: relative;}
.location a.home{ position: absolute; left: 0; top: 0; width: 2.0625rem; height: 100%;background-position: left center;background-repeat: no-repeat;background-image: url(../images/common/home.png); padding-left: 0; margin-right: 0;background-size: 1.25rem;}
.location a{display: inline;float: left;height: 6.25rem ;line-height: 6.25rem;padding-left: .5333rem;margin-right: .1667rem;background-position: left center;background-repeat: no-repeat;background-image: url(../images/common/icon8.png);color: #a3a3a3;font-size: 0.875rem;}
.location a:hover{color:var(--themeColor)}
.location a.hover{color:var(--themeColor)}
.subNavBox{margin-right:-15px; position: relative;}
.subNav::after{ display: block; content: ''; clear: both; visibility: hidden;}
.subNav a{display: inline;float: left;line-height: 6.25rem;height:6.25rem;color: #666666;font-size: 1.1rem;padding:0 1.5rem;}
.subNav a.hover{color: var(--themeColor)}
.subNav a:hover{color: var(--themeColor)}
/* ————— 当前位置 end ————— */
/* ————— 三级栏目 start ————— */
.sjMenu{ text-align: center; font-size: 0;}
.sjMenu a{ display: inline-block; height: 3.5rem; line-height: 3.5rem; padding:0 4.375rem; color: #666; border: 1px solid #e6e6e6; border-radius: 3.5rem; font-size: 1.0625rem; margin: 0 .9375rem; background: #FFF;}
.sjMenu a:hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.sjMenu a.hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
/* ————— 三级栏目 end ————— */
/* ————— 页码 start ————— */
.page{text-align: center;clear: both;font-size: 14px;}
.page a{display: inline-block;overflow: hidden;width:40px;height: 40px;line-height: 40px; color:#999999;border-radius:3px;background: #fff; margin: 0 3px;vertical-align: middle;border: 1px solid #eeeeee;}
.page span{display: inline-block; padding: 10px 15px; position: relative; top: -15px;}
.page a:hover{background: var(--themeColor);color: #fff;}
.page a.hover{background: var(--themeColor);color: #fff;}
.page input{display: inline-block;vertical-align: middle;height: 22px;border: 1px solid #e6e6e6;position: relative; top: -2px;}
.page input.pageDetail{width: 30px; height: 30px; text-align: center; border-radius: 3px; color: #999999; position: relative; top: -13px;}
.page label{color:#999999;position: relative;top: -11px;}
.page input.page_bnt{border: none; width: 30px; height: 25px; cursor: pointer; background: none; color: #999999; position: relative; top: -13px;}
.page a div{width: 40px;height: 40px;background-position: center center;background-repeat: no-repeat;}
.page a.firstPage div{background-image: url(../images/common/page/firstPage.png)}
.page a.prevPage div{background-image: url(../images/common/page/prevPage.png)}
.page a.nextPage div{background-image: url(../images/common/page/nextPage.png)}
.page a.lastPage div{background-image: url(../images/common/page/lastPage.png)}
.page a.firstPage:hover div{background-image: url(../images/common/page/firstPageh.png)}
.page a.prevPage:hover div{background-image: url(../images/common/page/prevPageh.png)}
.page a.nextPage:hover div{background-image: url(../images/common/page/nextPageh.png)}
.page a.lastPage:hover div{background-image: url(../images/common/page/lastPageh.png)}
.page a.firstPage.disabled{background:#E2E2E2;}
.page a.prevPage.disabled{background:#E2E2E2;}
.page a.nextPage.disabled{background:#E2E2E2;}
.page a.lastPage.disabled{background:#E2E2E2;}
.page a.firstPage.disabled div{background-image: url(../images/common/page/firstPage.png)}
.page a.prevPage.disabled div{background-image: url(../images/common/page/prevPage.png)}
.page a.nextPage.disabled div{background-image: url(../images/common/page/nextPage.png)}
.page a.lastPage.disabled div{background-image: url(../images/common/page/lastPage.png)}
/* ————— 页码 end ————— */


/*********** 基础公共列表页 start ***********/
/* 全图列表 start */
.imgList{overflow: hidden;margin:0 -10px;}
.imgList dd{width: 33.3333%;float: left;display: inline;padding: 10px 0;}
.imgList dd .con{display: block;background: #FFFFFF;margin:0 10px;border-radius: 5px; overflow: hidden;transition: all .4s;-webit-transition: all .4s;}
.imgList dd .con .pic::before{padding-top: 56.563462%;}
.imgList dd .con .pic .newPic{position: absolute !important;left: 0;top: 0;}
.imgList dd .con .text{height: 60px;line-height: 60px;padding: 0 20px;font-size: 16px;color: #333333;text-align: center;transition: all 0.4s;-webkit-transition: all 0.4s;}
.imgList dd .con:hover {transform: translateY(-2px);-webkit-transform: translateY(-2px);box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);}
.imgList dd .con:hover .text{color: var(--themeColor);}
/* 全图列表 end */
/* 图文列表 start */
.imgText dd{overflow: hidden;padding: 20px;margin-bottom: 30px;background: #FFF;border-radius: 5px;transition: all .4s;-webit-transition: all .4s;}
.imgText dd .pic{ width: 240px; overflow: hidden; position: relative; margin-right: 20px;border-radius: 5px;}
.imgText dd .pic:before{ display: block; content: ''; padding-top: 70%;}
.imgText dd .pic img{ display:block; width:100%; height:100%; position:absolute; left:0px; top:0px;}
.imgText dd .text{ overflow: hidden;}
.imgText dd .text .title{ overflow: hidden; height: 30px; line-height: 30px; font-weight: bold;margin-bottom: 8px;}
.imgText dd .text .title a{ color: #666; font-size: 16px;}
.imgText dd .text .textC{ font-size:14px; color:#666666; line-height:30px; height:90px; overflow:hidden; margin-bottom:8px;}
.imgText dd .text .time{  height:25px; line-height:25px; overflow:hidden; color:#999999;}
.imgText dd .text .time span{ float:left; display: inline;}
.imgText dd .text .time em{ float:left; display: inline; font-style: normal; margin: 0 15px;}
.imgText dd:hover .text .title a{ color: var(--themeColor);}
.imgText dd:hover{ transform: translateY(-2px);-webkit-transform: translateY(-2px);box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);}
/* 图文列表 end */
/* 全文列表 start */
.textList{margin: 0 -30px 0 0;}
.textList::after{ clear:both; content: ''; visibility: hidden; display: block;}
.textList dd{width: 100%;float: left;display: inline;}
.textList dd .con{display: block;margin: 0 30px 30px 0;background: #fff;padding: 15px;overflow: hidden;transition: 0.4s;-webkit-transition: 0.4s;border-radius: 5px;}
.textList dd .con:hover{box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);-webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);transform: translateY(-2px);-webkiet-transform: translateY(-2px);}
.textList dd .timeBox{width: 106px;height: 80px;float: left;display: inline;position: relative;text-align: center;}
.textList dd .timeBox::before{content: '';display: block;width: 1px;height: 100%;background: #f5f5f5;position: absolute;top: 0;right: 1px;}
.textList dd .timeBox .time1{height: 36px;line-height: 36px;overflow: hidden;font-size: 30px;color: var(--themeColor);font-weight: bold;margin-bottom: 5px;}
.textList dd .timeBox .time2{height: 20px;line-height: 20px;overflow: hidden;font-size: 14px;color: #999999;}
.textList dd .con .text{overflow: hidden;height: 80px;box-sizing: border-box;-webkit-box-sizing: border-box;padding: 0 20px;}
.textList dd .title{display: inline-block;font-size: 16px;color: #666666;line-height: 30px;height: 30px;overflow: hidden;max-width: 100%;white-space: nowrap;text-overflow: ellipsis;transition: 0.4s;-webkit-transition: 0.4s;}
.textList dd .con:hover .title{color: var(--themeColor);}
/* 全文列表 end */
/* 下载 start */
.downLoadPage{ padding: 20px;}
.downLoad{ overflow: hidden;}
.downLoad  span{ float: left; display: inline; box-sizing: border-box;-webkit-box-sizing: border-box; text-align: center; overflow: hidden;}
.downLoad  span.span1{ padding: 0 20px; width: 68%; text-align: left;}
.downLoad  span.span2{ width: 16%;}
.downLoad  span.span3{ width: 16%;}
.downLoad dt{ overflow: hidden; background: var(--themeColor);}
.downLoad dt span{height: 60px;line-height: 60px;color: #ffffff;font-size: 16px;}
.downLoad dd{ overflow: hidden;}
.downLoad dd span{height: 60px;line-height: 60px;color: #333333;font-size: 14px;}
.downLoad dd a{ color: #333333;}
.downLoad dd a.btn{display: inline-block;vertical-align: middle;height: 35px;line-height: 35px;padding: 0 15px 0 40px;background-position: 16px center;background-repeat: no-repeat;color:var(--themeColor);font-size: 14px;background-image: url(../images/downLoadIcn1.png);border-radius: 4px;background-color: transparent;border: none;transition: all 200ms ease-in;-webkit-transition: all 200ms ease-in;background-size: auto 20px;}
.downLoad dd.even{ background: #f8f8f8;}
.downLoad dd:hover span{color: var(--themeColor);}
.downLoad dd:hover a{color: var(--themeColor);}
.downLoad dd:hover a.btn{background-color: var(--themeColor); color: #FFF; background-image: url(../images/downLoadIcn1H.png);}
/* 下载 end */
/* 视频列表 start */
.videoList {overflow: hidden;margin:0 -15px;}
.videoList dd {width: 33.33333%;float: left;display: inline;padding: 15px 0;}
.videoList dd .con {display: block;margin:0 15px;background: #fff;overflow: hidden;border-radius: 5px;transition: .4s;-webkit-transition: .4s;}
.videoList dd .pic::before{padding-top: 66.5761%;}
.videoList dd .pic .playBtn{position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: rgba(0, 0, 0, 0.3);z-index: 2;}
.videoList dd .pic span.play {width: 100%;height:60px;margin-bottom:10px;display: block;background: url(../images/common/videoIco.png) no-repeat center center;background-size: 50px;}
.videoList dd .pic span.time {width: 100%;height: 16px;line-height: 16px;display: block;font-size: 16px;color: #ffffff;text-align: center;}
.videoList dd .text{padding:20px;}
.videoList dd .con .title {height: 25px;line-height: 25px;font-size: 16px;color: #333333;overflow: hidden;transition: all 0.4s;-webkit-transition: all 0.4s; text-align: center;}
.videoList dd .con:hover .title {color: var(--themeColor);}
.videoList dd .con:hover{box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);-webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);transform: translateY(-2px);-webkiet-transform: translateY(-2px);}
/* 视频列表 end */
/* 视频弹窗 start */
.aykj-videoPop .layui-layer-setwin .layui-layer-close2{
	width:30px !important;
	height:30px !important;
	right:-40px;
    top:-40px;
}
.aykj-videoPop {
	border:10px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1)!important;
	border-radius:5px !important;
	background-color:#000 !important;
	}
/* 视频弹窗 end */

/* ————— 音频列表 start ————— */
.audioList{overflow: hidden;margin: 0 -15px;}
.audioList dd{float: left;display: inline;width: 50%;padding: 15px 0;}
.audioList dd .con{padding:20px 30px;margin: 0 15px;background: #FFFFFF;position: relative;transition: all .4s;border-radius: 5px;}
.audioList dd .title{overflow: hidden;}
.audioList dd .title span{float: left;display: inline;width: 36px;height: 36px;background: url(../images/audioList/player.png) center center no-repeat;}
.audioList dd .title .titleC{overflow: hidden;padding: 0 10px;line-height: 36px;height: 36px;font-size: 16px;color: #666;}
.audioList dd .audioInfor{height: 30px;overflow: hidden;}
.audioList dd .audioTime{height: 30px;line-height: 30px;font-size: 14px;color: #666;}
.audioList dd .audioTime span{padding-right: 5px;}
.audioList dd .audioTime em{font-style: normal;padding-left: 5px;}
.audioList dd  .audioHandle {overflow: hidden; display: none;}
.audioList dd  .audioHandle.show{ display: block;}
.audioList dd .audioPlayerBtn {width: 30px;height: 30px;margin-right: 5px;}
.audioList dd  .audioHandle a{display: block;font-size: 0;width: 30px;height: 30px;background-position: center center;background-repeat: no-repeat;background-size: auto 30px;}
.audioList dd .audioHandle a.btnPlay{background-image: url(../images/audioList/audioPlay.png);}
.audioList dd .audioHandle a.btnPause{background-image: url(../images/audioList/audioPause.png);}
.audioVoice{ float: left; display: inline;}
.audioVoiceBtn{overflow: hidden;float: left;display: inline;}
.audioVoiceBtn span{display: block;width: 30px;height: 30px;background: url(../images/audioList/voice.png) center center no-repeat;background-size: auto 28px;margin-right: 5px;cursor: pointer;}
.audioVoiceBtn.noVoice span{background-image:url(../images/audioList/noVoice.png);}
.audioVoiceNum{float: left;display: inline;width: 84px;position: relative;height: 5px;background: #f0f0f0;border-radius: 5px;margin-top: 12px;}
.audioVoiceNum em{display: block;border-radius: 5px;height: 100%;width: 50%;background: #999;position: relative;}
.audioVoiceNum em i{ position: absolute; width: 9px; height: 9px; background: #999; border-radius: 8px; right: 0; top: 50%; margin-top: -5px; cursor: pointer;}
.audioList dd .audioWavBox{width: 100%;height: 36px;background: #f5f5f5;border-radius: 5px;position: relative;}
.audioList dd .audioWav{position: relative;width: 100%;box-sizing: border-box;-webkit-box-sizing: border-box;}
.audioWavBox .loadDataTip{text-align: center;position: absolute;left: 0;top: 0;line-height: 36px;color: #999;width: 100%;}
.audioList dd .con:hover{box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);-webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);transform: translateY(-2px);-webkiet-transform: translateY(-2px);}
/* ————— 音频列表 end ————— */
/* 期刊杂志 start */
.magezineList{overflow: hidden;margin:0 -15px 0 0;}
.magezineList dd{width: 25%;float: left;display: inline;padding:15px 0px;}
.magezineList dd .con{display: block;background: #FFFFFF;margin:0 15px; border-radius: 5px; overflow: hidden;transition-duration: 0.4s;-webkit-transition-duration: 0.4s;}
.magezineList dd .con .pic::before{padding-top:133.333333%;}
.magezineList dd .con .pic .scan{ position: absolute; left: 0;top: 0; width: 100%;height: 100%; background: rgba(0,0,0,.5) url(../images/eyeImg.png) no-repeat center center; visibility: hidden; opacity: 0; transition: all 300ms linear;-webkit-transition: all 300ms linear;}
.magezineList dd .con .text{height: 60px;line-height: 60px;padding: 0 20px;font-size: 16px;color: #333333;text-align: center;transition: all 0.4s;-webkit-transition: all 0.4s;}
.magezineList dd a:hover {box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);-webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);transform: translateY(-2px);-webkit-transform: translateY(-2px);}
.magezineList dd .con:hover .text{color: var(--themeColor);}
.magezineList dd .con:hover  .pic .scan{visibility: visible; opacity: 1;}
/* 期刊杂志 end */
/* 数字报纸 start */
.newsPaperTime{ text-align: left; font-size: 0; margin: 0 -5px 15px;}
.newsPaperTime a{ display: inline-block; height: 30px; line-height: 30px; padding:0 30px; color: #333; border: 1px solid #fff; border-radius: 32px; font-size: 12px; margin: 0 5px; background: #FFF;}
.newsPaperTime a:hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.newsPaperTime a.hover{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.newsPaper{overflow: hidden;margin:0 -15px;}
.newsPaper dd{width: 25%;float: left;display: inline;padding: 15px 0;}
.newsPaper dd .con{display: block;background: #FFFFFF;margin:0 15px; border-radius: 5px; overflow: hidden;transition: .4s;-webkit-transition: .4s;}
.newsPaper dd .con .pic::before{padding-top:133.333333%;}
.newsPaper dd .con .pic .scan{ position: absolute; left: 0;top: 0; width: 100%;height: 100%; background: rgba(0,0,0,.5) url(../images/eyeImg.png) no-repeat center center; visibility: hidden; opacity: 0; transition: all 300ms linear;-webkit-transition: all 300ms linear;}
.newsPaper dd .con .text{height: 60px;line-height: 60px;padding: 0 20px;font-size: 16px;color: #333333;text-align: center;transition: all 0.4s;-webkit-transition: all 0.4s;}
.newsPaper dd .con:hover .text{color: var(--themeColor);}
.newsPaper dd .con:hover  .pic .scan{visibility: visible; opacity: 1;}
.newsPaper dd .con:hover {box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);-webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);transform: translateY(-2px);-webkit-transform: translateY(-2px);}
/* 数字报纸 end */
/* 横向瀑布流 start */
.waterFall2{opacity: 0;}
.waterFall2>div>a{ display: block; border-radius: 5px; overflow: hidden;}
.waterFall2 .caption{font-size: 16px;color: #fff;height: 50px;line-height: 50px;text-align: center;-webkit-box-sizing: border-box;box-sizing: border-box;background: rgb(0,0,0,0.4);position: absolute;bottom: 0;left: 0;width: 100%;opacity: 0;transition: all .4s linear;-webkit-transition: all .4s linear}
/* 横向瀑布流 end */
/* 纵向瀑布流 start */
.waterFall{position: relative;width: 100%;z-index: 1 !important; opacity: 0;}
.waterFall dd {width: 33.3333%;position: absolute;top: 0;left:0;padding: 15px 0;}
.waterFall dd a {display: block;margin:0 15px;background: #fff;transition: all 0.3s linear;-webkit-transition: all 0.3s linear;}
.waterFall dd a .grPic {height: auto;;box-sizing: border-box;-webkit-box-sizing: border-box;overflow: hidden; border-radius: 5px;}
.waterFall dd a .grPic img {width: 100%;height: 100%;}
.waterFall dd .con{position: relative;}
.waterFall dd a .text {font-size: 16px;color: #fff;height: 50px;line-height: 50px;text-align: center;-webkit-box-sizing: border-box;box-sizing: border-box;background: rgb(0,0,0,0.4);position: absolute;bottom: 0;left: 0;width: 100%;opacity: 0;transition: all .4s linear;-webkit-transition: all .4s linear}
.waterFall dd a:hover .text {opacity: 1;}
/* 纵向瀑布流 end */
/* 表单模板 start */
.input{ border: 1px solid #ddd; padding:0 10px}
.input input{ border: none; background: none; width: 100%; height: 38px; line-height: 38px; font-size: 14px; color: #333;}
.textarea{ border: 1px solid #ddd; padding:5px 10px}
.textarea textarea{ border: none; background: none; width: 100%; height: 120px; line-height: 25px; font-size: 14px; color: #333;}
a.formBtn{ display: inline-block; height: 40px; line-height: 40px; border: 1px solid #ddd; background: #FFF; border-radius: 3px; font-size: 14px; color: #333; padding:0 30px; margin: 0 5px;}
a.formBtn:hover{ opacity: .9;}
.commonFormBox{ background: #FFF;padding: 40px;}
.commonForm{ margin-right: -40px; font-size: 14px;}
.commonForm:after{ clear:both; content: ''; visibility: hidden; display: block;}
.commonForm .item{ width: 50%; float: left; display: inline; margin-bottom: 15px;}
.commonForm .item.w100p{ width: 100%;}
.commonForm .item .con{ margin-right: 40px;}
.commonForm .item .label{ height: 38px; line-height: 38px;}
.commonForm .item .label span{ color: #da0100;}
.commonForm .item .itemC{ clear: both; min-height: 40px;}
.recruitListTc{ padding:20px; overflow: hidden;}
.commonForm .el-cascader{width: 100%;}
.upLoadResume{ font-size: 0;}
.upLoadResume span{ display: inline-block; font-size: 14px; height: 40px; line-height: 40px;color: #aeaeae;}
.upLoadResume a.up{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.upLoadResume a.down{ background: #e9e9e9; border-color: #e9e9e9;}
.input input { border: none;background: none;width: 100%;height: 38px;line-height: 38px;font-size: 14px;color: #333;}
.input { border: 1px solid #ddd;padding: 0 10px;}
.formYzm .input {width: 50%;float: left;display: inline;}
.formYzm .yzmImg {width: 118px; height: 38px;border: 1px solid #ddd;background: #ddd;float: left;display: inline;margin-left: 20px;}
.formYzm .yzmImg img {display: block;width: 100%;height: 100%;}
.formSubBtn{ font-size: 0; text-align: left; margin: 0 -5px;}
.formSubBtn a{ padding:0 40px; border-radius: 5px;}
.formSubBtn a.submit{ background:var(--themeColor); color: #FFF;border-color: var(--themeColor);}
.formSubBtn a.reset{ background: #ddd; color: #8b8b8b;}
/* 表单模板 start  */


/* 招聘 start  */
.recruitListPage{ background: #FFF; padding:20px}
.recruitListBox{ padding:20px;}
.recruitTitle{position: relative;padding-left: 20px;margin-bottom: 20px; height: 50px; line-height: 50px; border-bottom: 1px solid #ddd;}
.recruitTitle::before{width: 4px;height: 26px;background: var(--themeColor);display: block;content: '';position: absolute;top: 50%;left: 0;margin-top: -13px;}
.recruitTitle .conL{ float: left; display: inline; font-size: 24px;color: #000000;}
.recruitTitle .conR{ float: right; display: inline;}
.recruitTitle .conR a{ color: var(--themeColor); font-size: 14px;}
.recruitTitle .conR a:hover{ color: var(--themeColor);}
/* 列表start */
.recruitListTop {
	padding: 40px 0;
}

.recruitListTopR {
	float: right;
	display: inline;
}

.recruitListTopText {
	height: 62px;
	line-height: 62px;
	overflow: hidden;
	font-size: 16px;
	color: #999999;
	overflow: hidden;
}

.recruitListTopL {
	overflow: hidden;
}

.lc_search1Box {
	overflow: hidden;
	background: #FFFFFF;
	padding: 6px;
	border-radius: 30px;
	width: 418px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.lc_search1Box .searchBtn {
	float: right;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	background: var(--themeColor);
	cursor: pointer;
	position: relative;
	color: #fff;
}

.lc_search1Box .searchBtn:before {
	display: none;
}

.searchIcon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: url(../images/searchW_h.png) center center no-repeat;
}

.lc_search1Box .searchDiv {
	overflow: hidden;
}

.lc_search1Box .searchDiv .input {
	width: 100%;
	height: 50px;
	line-height: 50px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0 22px;
	font-size: 16px;
	color: #333;
	border: none;
	background: none;
}

.recruitListTop .lc_search1Box {
	float: left;
	display: inline;
	margin-right: 42px;
}

.recruitListDl dd {
	padding: 10px 0;
}

.recruitListDl dd .con {
	background: #FFFFFF;
	border-radius: 10px;
	padding: 0 40px;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.recruitListDl dd .con:hover {
	box-shadow: 1px 3px 15px 0px rgb(30, 33, 136, 0.12);
	-webkit-box-shadow: 1px 3px 15px 0px rgb(30, 33, 136, .12);
	transform: translateY(-2px);
	-webkit-transform: translateY(-2px);
}

.recruitListDl dd .ddTop {
	overflow: hidden;
	padding: 20px 0;
}

.recruitListDl dd .jt_more2Box .a2.active .rightIcon:before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	right: 0;
	bottom: 4px;
}

.recruitListDl dd .ddTopRight {
	float: right;
	margin-left: 40px;
	padding: 26px 0 0;
}

.recruitListDl dd .ddTopLeft {
	overflow: hidden;
}

.recruitListDl dd .ddTopText1 {
	font-size: 20px;
	color: #595959;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.recruitListDl dd .ddTopText2 {
	overflow: hidden;
	font-size: 0;
}

.recruitListDl dd .ddTopText2 span {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	color: #999999;
	margin-right: 40px;
	height: 32px;
	line-height: 32px;
	overflow: hidden;
}

.recruitListDl dd .ddBottom {
	padding: 40px 0 28px;
	position: relative;
	display: none;
}

.recruitListDl dd .ddBottom:before {
	content: '';
	background-color: rgb(230, 230, 230);
	height: 1px;
	width: 100%;
	position: absolute;
	top: 8px;
	left: 0;
}

.recruitListDl dd .ddBottomTextC {
	margin-bottom: 28px;
}

.recruitListDl dd .ddBottomTextC .ddBottomText1 {
	font-size: 14px;
	color: #333;
	line-height: 40px;
	font-weight: bold;
}

.recruitListDl dd .ddBottomTextC .ddBottomText2 {
	font-size: 14px;
	color: #999;
	line-height: 40px;
	padding-left: 5px;
}

.recruitListDl dd .con:hover .ddTopText1 {
	color: var(--themeColor);
}
.jt_more2Box {
	font-size: 0;
	overflow: hidden;
}

.jt_more2Box a {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid rgb(230, 230, 230);
	width: 65px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	border-radius: 22px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	font-size: 16px;
	color: #666666;
	text-align: center;
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center center;
}

.jt_more2Box a:before {
	display: block;
	content: '';
	position: absolute;
	left: -5px;
	right: -5px;
	top: -5px;
	bottom: -5px;
	background: var(--themeColor);
	z-index: -1;
	transform: scaleX(0.4);
	-webkit-transform: scaleX(0.4);
	transition: transform 0.4s ease-in-out;
	-webkit-transition: transform 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	border: none;
}

.jt_more2Box a.hover,
.jt_more2Box a:hover {
	color: #FFFFFF;
    border-color: var(--themeColor);
}

.jt_more2Box a.hover:before,
.jt_more2Box a:hover:before {
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
	opacity: 1;
	visibility: visible
}

.jt_more2Box .a1 {
	padding: 0 15px;
	margin-right: 20px;
}

.jt_more2Box .a2.hover,
.jt_more2Box .a2:hover {
	border: 2px solid transparent;
}
.rightIcon:before {
	display: block;
	content: '';
	position: absolute;
	right: 4px;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
}
.recruitBtn{ overflow: hidden;}
.recruitBtn a{ overflow: hidden; display: block; height: 50px; line-height: 50px; float: left; display: inline; padding: 0 40px; background: var(--themeColor); color: #FFF; border-radius: 3px; transition: all .3s; -webkit-transition: all .3s; font-size: 14px;}
.recruitBtn a:hover{ opacity: 0.9}
/* 列表end */

/* 表单start */
.recruitListForm{ margin-right: -40px; font-size: 14px;}
.recruitListForm:after{ clear:both; content: ''; visibility: hidden; display: block;}
.recruitListForm .item{ width: 50%; float: left; display: inline; margin-bottom: 15px;}
.recruitListForm .item.w100p{ width: 100%;}
.recruitListForm .item .con{ margin-right: 40px;}
.recruitListForm .item .label{ height: 38px; line-height: 38px;}
.recruitListForm .item .label span{ color: #da0100;}
.recruitListForm .item .itemC{ clear: both; min-height: 40px;}
.recruitListTc{ padding:20px; overflow: hidden;}
.recruitListForm .el-cascader{width: 100%;}
.upLoadResume{ font-size: 0;}
.upLoadResume span{ display: inline-block; font-size: 14px; height: 40px; line-height: 40px;color: #aeaeae;}
.upLoadResume a.up{ background: var(--themeColor); color: #FFF; border-color: var(--themeColor);}
.upLoadResume a.down{ background: #e9e9e9; border-color: #e9e9e9;}
/* 表单end */
/*********** 基础公共列表页 start ***********/

/*********** 特殊功能列表页 start ***********/
/* 问卷列表 start */
.collectListPage{padding: 20px; background: #fff;}
.collectList{overflow: hidden;}
.collectList dt{clear: both;height: 50px;overflow: hidden;border-radius:3px;background: var(--themeColor);}
.collectList dt span{float: right;height: 50px;line-height: 50px;text-align: center;font-size: 16px;color: #ffffff;}
.collectList span.span1{overflow: hidden;float: none;display: block;}
.collectList span.span2{width:23%}
.collectList span.span3{width:12%}
.collectList dd{clear: both;line-height: 60px;overflow: hidden;border-radius:3px;}
.collectList dd:nth-child(2n+1){background:#f3f3f3;}
.collectList dd span{float: right;overflow: hidden;}
.collectList dd span.span2{text-align:center;font-size:16px;color:#999999;}
.collectList dd span.span3{text-align:center;color: var(--themeColor);font-size: 16px;}
.collectList dd span.span3.finish{color:#999999}
.collectList dd span a{display:block;padding-left: 19px;background: url(../images/common/icon1.png) no-repeat 10px center;color: #333333;font-size: 16px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.collectList dd span a:hover{color:var(--themeColor);}
/* 问卷列表 end */
/* 问卷调查 start*/
.whdc {padding: 0 50px;margin: 0 auto;background: #fff;}
.whdcT {clear: both;text-align: center;line-height: 45px;font-size: 26px;font-family: "microsoft yahei";color: #333333;}
.whdcTime {height: 38px;line-height: 38px;color: #666;font-size: 12px;}
.whdcText {font-size: 14px;line-height: 30px;padding: 15px 0;border-bottom: 1px solid #f0f0f0;margin-bottom: 15px;}
.whdcText.noborder {border: none;}
.whdcTable {text-align: center;margin-bottom: 30px;}
.whdcTable table {border: 1px solid #efeeee;}
.whdcTable table tr {border: 1px solid #efeeee;height: 58px;}
.whdcTable table tr td {border: 1px solid #efeeee;}
.whdcTable table .w1 {width: 25%;}
.whdcTable table .w2 {width: 25%;}
.whdcTable table .w3 {width: 25%;}
.whdcTable table .w4 {width: 25%;}
.whdcTable table tr td .con {padding: 0 15px;font-size: 16px;color: #333333;}
.whdcTable table tr td .con em {color: #333;font-style: normal;}
.whdcTable table tr td .con em.red {color: var(--themeColor);}
.whdcTable table tr td .con em.green {color: #2aa516;}
.whdcTable table tr td.gray {background: #f7f7f7;}
.whdcTable table tr td.gray .con {color: #666;}
.questionBox {overflow: hidden;clear: both;padding: 20px 0;clear: both;margin: 0 0 20px 0;border-bottom: 1px solid #efefef;}
.questionT {clear: both;overflow: hidden;width: 100%;font-size: 16px;padding-bottom: 8px;color: #333333;}
.questionT span {color: #cc0000;font-size: 13px;padding: 0 0 0 10px;}
.questionDl {clear: both;padding: 0;background: #FFF;}
.questionDl dd {clear: both;overflow: hidden;padding: 0;}
.questionDl dd em {display: block;width: 16px;height: 16px;float: left;margin: 8px 0 0 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;background: url(../images/common/survey/kk1.png) no-repeat center center;}
.questionDl dd:last-child {border-bottom: none;}
.questionDl.radio em {border-radius: 16px;background: url(../images/common/survey/kk1.png) no-repeat center center;}
.questionDl.radio em.selected {background: url(../images/common/survey/kk1h.png) no-repeat center center;}
.questionDl.checkbox em.selected {background: url(../images/common/survey/kk1h.png) no-repeat center center;}
.ChoiceBox {clear: both;overflow: hidden;cursor: pointer;}
.ChoiceBox.float {float: left;}
.ChoiceBox span {display: block;line-height: 20px;font-size: 14px;margin-left: 30px;padding: 6px 0;}
.ChoiceBox i {margin-left: 30px;}
.writeBox {float: left;display: inline;overflow: hidden;}
.writeBox input {width: 120px;border: none;display: block;float: left;font-size: 12px;margin: 0 0 0 10px;line-height: 25px;font-family: "microsoft yahei";border-bottom: 1px solid #b80b0b;}
.surveyBt {clear: both;overflow: hidden;padding: 20px 0 10px 0;}
.surveyBt a {display: block;width: 100%;line-height: 30px;border-radius: 3px;text-align: center;font-size: 14px;color: #fff !important;background: #b51413;margin: 0 auto;padding: 3px 0;}
.surveyBt a:hover {background: #4189d0;}
.dcBtn {clear: both;text-align: center;}
.dcBtn div {display: inline-block;overflow: hidden;}
.dcBtn div a {float: left;display: inline;padding: 0 56px;border-radius: 3px;height: 40px;line-height: 40px;font-size: 14px;margin: 0 15px;}
.dcBtn div a.a1 {background: var(--themeColor);color: #FFF;}
.dcBtn div a.a2 {background: #f0f0f0;color: #666;}
.dcBtn div a:hover {opacity: .9;}
.wjdcT {background: #f8f8f8;padding: 5px 10px;}
.wjdcT1 {height: 33px;line-height: 33px;overflow: hidden;text-align: center;color: #333333;font-size: 24px;}
.wjdcT1Text {line-height: 31px;overflow: hidden;color: #666666;font-size: 14px;text-align: center;}
.questionTC {clear: both;}
.questionTC textarea {width: 1148px;border: 1px solid #eeeeee;height: 118px;line-height: 30px;padding: 0 10px;}
.questionDl.onchoice em {background: url(../images/common/survey/kk2.png) no-repeat center center}
.questionDl.onchoice em.selected {background: url(../images/common/survey/kk2h.png) no-repeat center center}
/* 问卷调查 end*/
/* 问卷详情 start*/
.wjdcresult {text-align: center;}
.wjdcresult dd {border-top: 2px solid var(--themeColor);margin-bottom: 20px;}
.wjdcresult dd .title {height: 51px;margin-bottom: 0px;overflow: hidden;line-height: 51px;background: url(../images/common/survey/tBg2.png) repeat-x left top;}
.wjdcresult dd .title .titleL {padding-left: 65px;height: 51px;background: url(../images/common//survey/listT.png) no-repeat 32px center;font-size: 16px;color: #333333;background-size: 20px;}
.wjdcresult dd .title .titleR {font-size: 14px;color: var(--themeColor);padding-right: 90px;}
.wjdcresult table {border: 1px solid #efeeee;}
.wjdcresult table tr {border: 1px solid #efeeee;height: 40px;}
.wjdcresult table tr.tr1 {height: 40px;background: #f7f7f7;font-size: 12px;}
.wjdcresult table tr td {border: 1px solid #efeeee;}
.wjdcresult table .w1 {width: 599px;}
.wjdcresult table .w2 {width: 120px;}
.wjdcresult table .w3 {width: 197px;}
.wjdcresult table tr td .con {padding: 0 15px;font-size: 14px;}
.wjdcresult table tr td .td1 {padding: 0 30px !important;}
.l {text-align: left;}
.r {text-align: right;}
.c {text-align: center;}
.wjdcresult table tr.tr1 td .con {padding: 0 15px;font-size: 14px;}
.whdcTable .gray {background: #f7f7f7;}
.wjdcCount {display: inline-block;overflow: hidden;}
.wjdcCount .wjdcCountL {color: var(--themeColor);margin-right: 10px;width: 50px;}
.wjdcCount .wjdcCountR {color: var(--themeColor);width: 115px;height: 15px;border: 1px solid #d1d1d1;}
.wjdcCount .wjdcCountR em {display: block;height: 15px;background: var(--themeColor);}
.questionC{padding-top: 10px;}
.questionArea{padding: 5px 10px;margin-bottom: 10px;border: 1px solid #ccc;}
.questionArea textarea{border: none;outline: none;background: none;height: 140px;width: 100%;line-height: 28px;font-size: 14px;color: #666;resize:none;}
/* 问卷详情 end*/
/*********** 特殊功能列表页 end ***********/

/*********** 文章详细页 start ***********/
.articleC {background: #FFFFFF;padding: 0 50px 50px;}
.articleBox {line-height: 2rem;padding: 10px 0 0;color: #666666;font-size: 1.0625rem;margin-bottom: 10px;}
.articleBox img {max-width: 100%;}
/* 标题 start */
.articleTitle {clear: both;line-height: 4.375rem;font-size: 2.25rem;color: #333333;text-align: center;position: relative;}
/* 标题 end */
/* 发布信息 start  */
.articleTime {display: flex;justify-content: space-between; align-items: center;  clear: both;color: #666666;font-size: 1rem;line-height: 2rem;padding: 10px 0 15px;border-bottom: 1px solid #dddddd;overflow: hidden;text-align: center;}
.articleTime span {margin-right: 16px;font-size: 1rem;color: #999999;vertical-align: middle;display: inline-block;padding-left: 1.375rem;background-position: left center;background-size: .8rem;background-repeat: no-repeat;}
.articleTime .eyesIcon {
    display: flex;
    align-items: center;
    column-gap: 3.75rem;
}
.articleTime .time1 {
    background-image: url(../images/icon/time1.png);
}
.articleTime .time2 {
    background-image: url(../images/icon/time2.png);
}
.shareBox .sharejs_list  .sharejs_item{position:relative;z-index: 100}
.pageOf {display: flex;align-items: center;}
.pageOf .homeText {width: 12.5rem;height: 3.75rem;background-color: var(--themeColor);margin: 0 1.25rem;background-position: center;background-repeat: no-repeat;background-size: 2.1875rem;background-image: url(../images/icon/homeText.png);}
.pageOf .pageDiv {height: 3.75rem;background-color: #fff;line-height: 3.75rem;background-color: #fff;flex: 1;padding: 0 4.375rem 0 2rem;display: flex;font-size: 1rem;}
.pageOf .pageDiv span {margin-right: 10px;text-wrap: nowrap;}
.pageOf .pageDiv a {text-overflow: ellipsis;white-space: nowrap;transition: .3s;overflow: hidden;color: #999999;transition: .3s;}
.pageOf .pageDiv a:hover {color: var(--themeColor);}
/*  发布信息 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 */
.xlTitle .titleNg {
    font-size: 2.25rem;
    line-height: 2.375rem;
    color: #333;
    font-weight: 700;
    font-family: "GothamRnd-Bold";
    margin-bottom: .625rem;
}
.xlTitle .titleCn {
     font-size: 2.25rem;
    line-height: 3.75rem;
    color: #333;
    font-family: "MiSans-Regular";
}
.imgObject img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.jtjjColumn1 {
    padding: 6.25rem 0 30.625rem;
    background-color: #fff;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.plantSwiperBg {
    display: flex;
    margin: 50px 0 0;
    overflow: hidden;
}
.plantSwiperBg .box {
    width: 50%;
    box-sizing: border-box;
}
.plantSwiperBg .box.box1 {
    padding-right: 4.8125rem;
    position: relative;
}
.plantSwiperBg .box.box1::after {
    content: "";
    display: block;
    width: 1px;
    height: 26.875rem;
    background-color: #dae8f2;
    right: 0;
    top: 4rem;
    position: absolute
}
.plantSwiperBg .box.box2 {
    padding-left: 4.8125rem;
}
.plantSwiperBg .iconTitle {
    margin-bottom: 2rem;
}
.plantSwiperBg .iconTitle span {
    display: inline-block;
    font-size: 1.75rem;
    line-height: 1.875rem;
    height: 1.875rem;
    color: #333;
    padding-left: 2.8125rem;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 1.875rem;
    background-image: url(../images/icon/jtic1.png);
}
.plantSwiperBg .img {
    height: 26.875rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.plantSwiperBg .img::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.plantSwiper {
    overflow: hidden;
    position: relative;
    padding-bottom: 5.3125rem;
}
.swiper-pagination.plantEl {
    bottom: 3.125rem;
}
.swiper-pagination.plantEl .swiper-pagination-bullet {
    width: 2.5rem;
    height: 4px;
    background: #e5e5e5;
    margin: 0 3px;
    opacity: 1;
    border-radius: 0;
}
.swiper-pagination.plantEl .swiper-pagination-bullet-active {
    background: var(--themeColor);
}
.plantSwiper .tip {
    position: absolute;
    bottom: 1.875rem;
    padding: 0 1.25rem;
    width: 100%;
    font-size: 1.375rem;
    line-height: 1.875rem;
    color: #fff;
    z-index: 1;
}
.plantSwiper .tip span {
    display: inline-block;
    padding-left: 1.25rem;
    position: relative;
}
.plantSwiper .tip span::before {
    content: "";
    display: block;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 0;
    top: .625rem
}
.jtjjColumn1 .jtText {
    padding: 3.125rem 0 1.875rem;
    border-top: 1px solid #dae8f2;
    border-bottom: 1px solid #dae8f2;
}
.jtjjColumn1 .textC {
    font-size: 1.0625rem;
    line-height: 2.1875rem;
    color: #666;
}
.jtjjDl {
    display: flex;
    margin-bottom: 2.8125rem;
}
.jtjjDl dd {
    width: 33.333%;
    box-sizing: border-box;
}
.jtjjDl .titleNg {
    font-size: 1.75rem;
    line-height: 2.75rem;
    color: #333;
    font-weight: 700;
}
.jtjjDl .titleCn {
     font-size: 1.75rem;
    line-height: 2.75rem;
    color: #333;
}
.jtjjDl .con {
    text-align: center;
    box-sizing: border-box;
    padding-bottom: 1.25rem;
    margin-top: 3.125rem;
}
.jtjjDl .con .text {
    margin: 1.25rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.875rem;
    color: #666;
}
.jtjjDl dd:nth-child(1) .con {
    padding-right: 4.0625rem;
}
.jtjjDl dd:nth-child(2) .con {
    padding: 0 4.0625rem;
    position: relative;
}
.jtjjDl dd:nth-child(2) .con::after {
    content: "";
    display: block;
    width: 1px;	
    height: 11.25rem;
    background-color: #f2f2f2;
    right: 0;
    bottom: 0;
    position: absolute;
}
.jtjjDl dd:nth-child(2) .con::before {
    content: "";
    display: block;
    width: 1px;	
    height: 11.25rem;
    background-color: #f2f2f2;
    left: 0;
    bottom: 0;
    position: absolute;
}
.jtjjDl dd:nth-child(3) .con {
    padding-left: 4.0625rem;
}
/* 集团简介 end */
/* 资质荣誉 start */
.hornorList {
    margin-right: -2rem;
    display: flex;
    flex-wrap: wrap;
}
.hornorList dd {
    width: 33.3333%;
    margin-bottom: 2rem;
}
.hornorList a {
    display: block;
    margin-right: 2rem;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}
/* .hornorList a:hover .picBox {
    background-image: url(../test/imges/ryzsbgh.png);
} */
.hornorList .picBox {
    padding: 1.5rem 2.5rem;
    /* background-position: center bottom;
    background-repeat: no-repeat;
    background-image: url(../test/imges/ryzsbg.png);
    background-size: 100%; */
    position: relative;
}
.hornorList .picBox .pic img {
    object-fit: contain;
}
.hornorList  .pic::before{
    padding-top: 74.0740%;
}
.hornorList .title {
    font-size: 1.25rem;
    line-height: 5rem;
    height: 5rem;
    text-align: center;
    padding: 0 1rem;
    border-top: 1px solid #e6e6e6;
}
.hornorList a:hover .title {
    color: var(--themeColor);
}
/* 资质荣誉 end */

/* 发展历程 start */
.fzlcColumn {
    box-sizing: border-box;
    overflow: hidden;
    padding: 6.25rem 0 0;
    height: 65.625rem;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.fzlcColumn .wrap {
    position: relative;
    height: 100%;
}
.fzlcSwiper {
    overflow: hidden;
    height: 100%;
    position: relative;
}
.fzlcSwiper dl {
    width: 100%;
    position: relative;
}
.fzlcSwiper dl dd {
    position: absolute;
    width: 16.25rem;
}
.fzlcSwiper dl dd:nth-child(3n-2) {
    left: 0;
    top: 15.625rem;
}
.fzlcSwiper dl dd:nth-child(3n-1) {
    left: 28.125rem;
    top: 8.5rem;
}
.fzlcSwiper dl dd:nth-child(3n) {
    right: 15rem;
    top: 0;
}
.fzlcSwiper .con {
    position: relative;
    
}
.fzlcSwiper .con .year {
    padding-left: 1.625rem;
    font-size: 1.25rem;
    line-height: 2.25rem;
    color: var(--themeColor);
    font-weight: 700;
    font-family: "GothamRnd-Medium";
    position: relative;
}
.fzlcSwiper .con .year::before {
    content: "";
    display: block;
    width: .9375rem;
    height: .9375rem;
    border-radius: 50%;
    border: 2px solid var(--themeColor);
    position: absolute;
    left: 0;
    top: .85rem;
}
.fzTextImg {
    padding-left: 1.625rem;
}
.fzlcSwiper .con .text {
    margin: 1.875rem 0 1.25rem;
    font-size: 1rem;
    line-height: 2rem;
    height: 8rem;
    overflow-y: auto;
    color: #333;
    box-sizing: border-box;
}
.fzlcSwiper .con  .img {
     height: 8.75rem;
     border-radius: 5px;
     overflow: hidden;
     position: relative;
     box-sizing: border-box;
}
.fzlcSwiper .con::after {
    content: "";
    display: block;
    width: 1px;
    height: 120%;
    border-left: 1px dashed #b8d2e6;
    position: absolute;
    top: 2rem;
    left: .625rem;
}
.pageBt div {
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
    z-index: 100;
}
.pageBt span {
    display: block;
    width: 100%;
    height: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 2rem;
    /* 必须添加 background-color 才能让 mask 区域可见 */
    background-color: var(--themeColor);
}
.pageBt .prev span {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='currentColor' d='M671 809c-5 0-10-2-15-6L369 510c-8-8-8-21 0-29L656 188c8-8 21-8 29 0 8 8 8 21 0 29L412 496l274 279c8 8 8 21 0 29-4 4-9 5-14 5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='currentColor' d='M671 809c-5 0-10-2-15-6L369 510c-8-8-8-21 0-29L656 188c8-8 21-8 29 0 8 8 8 21 0 29L412 496l274 279c8 8 8 21 0 29-4 4-9 5-14 5z'/%3E%3C/svg%3E");
}
.pageBt .prev:hover span {
    background-color: #fff;
}
.pageBt .prev:hover {
	background-color: var(--themeColor);
}
.pageBt .next span {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M383.291616 808.954249c-5.175883 0-10.353812-1.950422-14.338566-5.862521-8.064676-7.919367-8.182356-20.877493-0.26299-28.942169l273.602402-278.620695L368.69006 216.907145c-7.919367-8.064676-7.801686-21.022803 0.26299-28.942169 8.065699-7.918343 21.022803-7.80271 28.942169 0.26299l287.685141 292.960285c7.818059 7.961322 7.818059 20.717857 0 28.67918L397.895219 802.826692C393.887952 806.907637 388.591319 808.954249 383.291616 808.954249z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M383.291616 808.954249c-5.175883 0-10.353812-1.950422-14.338566-5.862521-8.064676-7.919367-8.182356-20.877493-0.26299-28.942169l273.602402-278.620695L368.69006 216.907145c-7.919367-8.064676-7.801686-21.022803 0.26299-28.942169 8.065699-7.918343 21.022803-7.80271 28.942169 0.26299l287.685141 292.960285c7.818059 7.961322 7.818059 20.717857 0 28.67918L397.895219 802.826692C393.887952 806.907637 388.591319 808.954249 383.291616 808.954249z'/%3E%3C/svg%3E");
}
.pageBt .next:hover span {
    background-color: #fff;
}
.pageBt .next:hover {
	background-color: var(--themeColor);
}
.pageBt .next {
    position: absolute;
    right: 0;
    top: 1.5rem;
}
.pageBt .prev {
    position: absolute;
    right: 5.625rem;
    top: 1.5rem;
}
/* 发展历程 end */

/* 团队建设 start */
.tdjsColumn1 {
    height: 56.25rem;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
    background-size: 60%;
    box-sizing: border-box;
}
.tdjsColumn1 .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    height: 100%;
    width: 40%;
}
.tdjsColumn1 .wrap {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}
.tdjsColumn1 .xlTitle .titleCn {
    position: relative;
    padding-bottom: 2rem;
}
.tdjsColumn1 .xlTitle .titleCn::after {
    content: "";
    display: block;
    width: 4.375rem;
    height: 3px;
    background-color: var(--themeColor);
    position: absolute;
    bottom: 0;	
    right: 0;
}
.tdjsColumn1 .textC {
    margin-top: 2.8125rem;
    font-size: 1.0625rem;
    line-height: 2rem;
    color: #666;
    text-align: right;
}
/* 第二栏 start */
        .tdjsColumn2 {
            width: 100%;
        }
        .tdjsC2Dl {
            display: flex;
            height: 42.5rem;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .tdjsC2Dl dd {
            width: 50%;
            position: relative;
            background-position: center;
            background-repeat: no-repeat !important;
            background-size: cover !important;
            height: 100%;
            transform-origin: left center;
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: pointer;
            overflow: hidden;
        }

        .tdjsC2Dl dd .textShow {
            display: none;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .tdjsC2Dl dd .iconTitle {
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            position: absolute;
            bottom: 5rem;
            left: 0;
            right: 0;
            z-index: 2;
            text-align: left;
        }

        .tdjsC2Dl dd.active {
            width: 70%;
        }

        .tdjsC2Dl dd.active .textShow {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .tdjsC2Dl dd.active .iconTitle {
            display: none;
        }

        .tdjsC2Dl dd:not(.active) {
            width: 30%;
            transform: scaleX(1); 
        }

        .tdjsC2Dl dd:not(.active):hover {
            width: 32%;
            filter: brightness(1.1);
        }

        .con {
            position: relative;
            height: 100%;
            z-index: 2;
        }

        .tdjsC2Dl dd::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
            transition: all 0.6s ease;
            z-index: 1;
        }

        .tdjsC2Dl dd:hover::before {
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
        }

        .iconTitle {
            color: white;
            text-align: center;
            padding: 20px;
        }

        .iconTitle .icon {
            margin-bottom: 1rem;
            transition: all 0.4s ease;
            width: 10rem;
            height: 2.8125rem;
            text-align: center;
        }

        .iconTitle .icon img {
            filter: brightness(0) invert(1);
            transition: all 0.4s ease;
        }

        .iconTitle .showTitle {
            font-size: 1.2rem;
            font-weight: 600;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-orientation: mixed;
            transition: all 0.4s ease;
            position: relative;
            padding: 0 3.75rem;
            display: inline-block;
        }
        .iconTitle .showTitle::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 3.75rem;
            height: 1px;
            background-color: #fff;
            transform: translateY(-50%);
            transition: all 0.4s ease;
        }
         .iconTitle .showTitle::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            width: 3.75rem;
            height: 1px;
            background-color: #fff;
            transform: translateY(-50%);
            transition: all 0.4s ease;
        }

        .textShow {
            position: absolute;
            
            left: 0;
            right: 0;
            bottom: 4.375rem;
            padding: 3.75rem;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .textShow .title {
            margin-bottom: 2rem;
        }

        .textShow .titleNg {
            font-size: 2.25rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.8s 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .textShow .titleCn {
            font-size: 1.5rem;
            font-weight: 300;
            margin-top: 10px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.8s 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .textShow .text {
            font-size: 1.1rem;
            line-height: 1.8;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.8s 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .tdjsC2Dl dd:not(.active) .textShow .titleNg,
        .tdjsC2Dl dd:not(.active) .textShow .titleCn,
        .tdjsC2Dl dd:not(.active) .textShow .text {
            animation: none;
            opacity: 0;
            transform: translateX(-30px);
        }

        .tdjsC2Dl dd.active .textShow .titleNg {
            animation: slideInLeft 0.8s 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .tdjsC2Dl dd.active .textShow .titleCn {
            animation: slideInLeft 0.8s 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .tdjsC2Dl dd.active .textShow .text {
            animation: slideInLeft 0.8s 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

/* 第二栏 end */
/* 第三栏 start */
.tdjsColumn3 {
    height: 53.125rem;
    box-sizing: border-box;
    padding: 7.5rem 0 0 0;
}
.ldSwiperBg {
    position: relative;
    padding-left: 11.25rem;
}
.ldSwiperMax {
    width: 116.6666%;
    position: relative;
    overflow: hidden;
}
.ldSwiperMax .con {
    height: 36.875rem;
    width: 100%;
    position: relative;
}
.ldSwiperMax .con .text {
    width: 44.375rem;
    padding: 3.125rem;
    box-sizing: border-box;
     position: absolute;
    left: 0;
    bottom: 0;
    height: 27.5rem;
    background-color: #f7f7f7;
}
.ldSwiperMax .con .imgBg {
    position: absolute;
    right: 0;
    width: 56.25rem;
    height: 36.875rem;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../test/imges/sbbj.png);
     z-index: 2;

}

.ldSwiperMax .con .img {
    width: 21.25rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
.ldSwiperMax .con img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: cover;
}
.ldSwiperMax .con .name {
    font-size: 2.25rem;
    line-height: 3.125rem;
    color: #333;
}
.ldSwiperMax .con .post {
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: var(--themeColor);
    margin: 1.25rem 0;
}
.ldSwiperMax .con .textC {
    font-size: 1.0625rem;
    line-height: 1.875rem;
    color: #666;
}
.ldSwiperMin {
    width: 75rem;
    position: absolute;
    left: -15rem;
    bottom: -6.25rem;
    overflow: hidden;
}
.ldSwiperMin .img {
    height: 12.5rem;
    background: linear-gradient(to right,#dae4fd,#8ec0e8);
    padding: 1rem 1rem 0;
    box-sizing: border-box;
    position: relative;
}
.ldSwiperMin .swiper-slide-thumb-active .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--themeColor);
  pointer-events: none;
  box-sizing: border-box;
}
.ldSwiperMin .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;

}
.pageBt.pageBt1 div {
    border: 1px solid var(--themeColor);
}
.pageBt.pageBt1 .prev {
    top: auto;
    bottom: 16.25rem;
    left: 0;
}
.pageBt.pageBt1 .next {
    top: auto;
    bottom: 16.25rem;
    left: 4.375rem;
}
/* 第三栏 end */
/* 第四栏 start */
.tdjsColumn4 {
    padding: 12.5rem 0 8.75rem;
}
.zcldSwiperBg {
    margin: 3.75rem 0 0;
    position: relative;
}
.zcldSwiper {
    position: relative;
    overflow: hidden;
}
.zcldSwiper .img {
    padding: 3.125rem 1.875rem 0;
    background-color: #f2f2f2;
}
.zcldSwiper .pic::before {
    padding-top: 157.8947%;
}
.zcldSwiper .text {
    margin: .625rem;
}
.zcldSwiper .name {
    font-size: 1.5rem;
    line-height: 2.5rem;
    color: #333;
    transition: .3s;
}
.zcldSwiper .post {
    font-size: 1rem;
    line-height: 1.875rem;
    color: #999;
}
.zcldSwiper .con:hover .name {
    color: var(--themeColor);
}
.zcldSwiperBg .pageBt.pageBt1 .prev {
    left: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}
.zcldSwiperBg .pageBt.pageBt1 .next {
    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}
   .tdjsTab {
       display: flex;
       align-items: center;
       column-gap: 1.875rem;
   }

   .tdjsTab .con {
       height: 3.4375rem;
       line-height: 3.4375rem;
       border: 1px solid #e6e6e6;
       border-radius: 3.4375rem;
       font-size: 1.25rem;
       color: #666;
       padding: 0 2rem;
       transition: .3s;
   }

   .tdjsTab dd.hover,
   .tdjsTab dd:hover {
       cursor: pointer;
   }

   .tdjsTab dd.hover .con,
   .tdjsTab dd:hover .con {
       background-color: #027bd3;
       color: #fff;
   }

   .zcldSwiperBg {
       padding: 0 5rem;
   }
/* 第四栏 end*/
/* 团队建设 end */

/* 市场版图 start */
.scbtColumn {
    padding: 7.5rem 0 13.4375rem;
    color: #fff;
}
.scbtColumn .mapText {
    display: flex;
    column-gap: 3.125rem;
}
.scbtColumn .mapText .text {
    flex: 1;
}
.scbtColumn .mapText .img {
    width: 50%;
    height: 24.25rem;
    overflow: hidden;
}
.scbtColumn .mapText img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.scbtColumn .mapText .textC {
    margin: 3rem 0;
    font-size: 1.0625rem;
    line-height: 2.125rem;
}
.scbtColumn .mapDl {
    display: flex;
}
.scbtColumn .mapDl dd {
    width: 50%;
    
}
.scbtColumn .mapDl dd:nth-child(1) .con {
    padding-right: 5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.scbtColumn .mapDl dd:nth-child(2) .con {
    padding-left: 5rem;
}
.scbtColumn .mapDl .num {
    display: flex;
    position: relative;
}
.scbtColumn .mapDl .number {
    font-size: 2rem;
    font-family: "GothamRnd-Bold";
    font-weight: 700;
}
.scbtColumn .mapDl .post {
    font-size: 1.125rem;
    line-height: 4rem;
}
.scbtColumn .mapDl .num::after {
    content: "";
    display: block;
    width: 1.25rem;
    height: .25rem;
    background-color: #66d3c7;
    position: absolute;
    left: 0;
    bottom: 0;
}
.scbtColumn .mapDl .client {
    margin: 1rem 0 0;
    font-size: 1.375rem;
    line-height: 1.375rem;
}
.contientDl {
    margin: 7.5rem 0 0 0;
    display: flex;
    align-items: center;
    column-gap: 6.875rem;
}
.contientDl .con {
    width: 8.75rem;
    height: 8.75rem;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, .14);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-family: "GothamRnd-Bold";
    font-weight: 700;
    transition: .3s;
}
.contientDl .con .tip {
    font-size: 1.375rem;
    line-height: 2.5rem;
}
.contientDl .con .num {
    font-size: 2rem;
    line-height: 2.875rem;
}
/* 市场版图 end */

/* 新闻中心 start */
.imgText1 dd {
    margin-bottom: 1.25rem;
}
.imgText1 .con {
    display: flex;
    align-items: center;
    column-gap: 1.875rem;
    padding: 1.25rem 3.75rem 1.25rem 1.25rem;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
}
.imgText1 .con .img {
    width: 18.75rem;
    height: 10.3125rem;
    overflow: hidden;
    border-radius: 5px;
}
.imgText1 .con .text {
    flex: 1;
    display: flex;
    align-items: center;
    column-gap: 11.25rem;
}
.imgText1 .con .text .textBox {
    flex: 1;
}
.imgText1 .con .title {
    font-size: 1.125rem;
    line-height: 2.25rem;
    height: 2.25rem;
    color: #333;
    transition: .3s;
}
.imgText1 .con .textC {
    font-size: 1rem;
    line-height: 2rem;
    height: 4rem;
    color: #666;
}
.imgText1 .con .time {
    font-size: 1rem;
    line-height: 2rem;
    color: #999;
    margin-top: .5rem;
}
.xlMore {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #e7e7e7;
    border-radius: 100%;
   display: flex;
	align-items: center;
	justify-content: center;
    transition: .3s;

}
.xlMore span {
    display: block;
    width: 100%;
    height: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 2rem;
    transition: .3s;
    background-color: #858585;
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M383.291616 808.954249c-5.175883 0-10.353812-1.950422-14.338566-5.862521-8.064676-7.919367-8.182356-20.877493-0.26299-28.942169l273.602402-278.620695L368.69006 216.907145c-7.919367-8.064676-7.801686-21.022803 0.26299-28.942169 8.065699-7.918343 21.022803-7.80271 28.942169 0.26299l287.685141 292.960285c7.818059 7.961322 7.818059 20.717857 0 28.67918L397.895219 802.826692C393.887952 806.907637 388.591319 808.954249 383.291616 808.954249z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M383.291616 808.954249c-5.175883 0-10.353812-1.950422-14.338566-5.862521-8.064676-7.919367-8.182356-20.877493-0.26299-28.942169l273.602402-278.620695L368.69006 216.907145c-7.919367-8.064676-7.801686-21.022803 0.26299-28.942169 8.065699-7.918343 21.022803-7.80271 28.942169 0.26299l287.685141 292.960285c7.818059 7.961322 7.818059 20.717857 0 28.67918L397.895219 802.826692C393.887952 806.907637 388.591319 808.954249 383.291616 808.954249z'/%3E%3C/svg%3E");
}
.imgText1 .con:hover .title {
    color: var(--themeColor);
}
.imgText1 .con:hover .xlMore span {
	background-color: #fff;
}
.imgText1 .con:hover .xlMore{
    background-color: var(--themeColor);
}
/* 新闻中心 end */

/* 创新能力 start */
/* 第一栏 start */
.cxnlColumn1 {
    padding: 6.25rem 0 0 0;
}

.cxnlColumn1 .titleText {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cxnlColumn1 .titleText .text {
    width: 67.3611%;
    font-size: 1.0625rem;
    line-height: 2.375rem;
    color: #666;
}

.cxnlColumn1 .img {
    height: 31.25rem;
    overflow: hidden;
    border-radius: 20px;
    margin: 3.75rem 0 0;
    position: relative;
}

.cxnlColumn1 .img::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
}

.addCpcxTipMore {
    position: absolute;
    bottom: 0;
    left: 1.785rem;
    right: 1.785rem;
    color: #fff;
    z-index: 5;
}

.addCpcxTipMore .tip {
    height: 4.125rem;
    line-height: 4.125rem;
    font-size: 1.625rem;
    border-bottom: 1px solid rgb(255, 255, 255, .6);
}

.addCpcxTipMore .more {
    height: 4.125rem;
    line-height: 4.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addCpcxTipMore .more span {
    position: relative;
    padding-left: 1.25rem;
    font-size: 1.125rem;
}

.addCpcxTipMore .more span::before {
    display: block;
    content: "";
    width: .5rem;
    height: .5rem;
    background-color: #fff;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.addCpcxTipMore .more em {
    width: 1.25rem;
    height: 1.25rem;
    font-style: normal;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.125rem;
    background-image: url(../images/icon/cpdzmore.png);
}

/* 第一栏 end */
/* 第二栏 start */
.cxnlColumn2 {
    padding: 6.25rem 0 3.125rem;
}

.cxnlColumn2 .textImg {
    display: flex;
    align-items: center;
    column-gap: 13.8888%;
}

.cxnlColumn2 .textImg .text {
    flex: 1;
}

.cxnlColumn2 .textImg .textC {
    padding-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
    margin: 3.75rem 0 0;
}

.cxnlColumn2 .textImg dl {
    display: flex;
    flex-wrap: wrap;
    margin: 2.5rem 0 0;
}

.cxnlColumn2 .textImg dt {
    width: 100%;
    margin-bottom: 2rem;
}

.cxnlColumn2 .textImg dd {
    width: 50%;
    margin-bottom: 2rem;
}

.cxnlColumn2 .textImg dt,
.cxnlColumn2 .textImg dd {
    font-size: 1.0625rem;
    line-height: 1.0625rem;
    color: #333;
    padding-left: 1rem;
    position: relative;
    box-sizing: border-box;
}

.cxnlColumn2 .textImg dt::after,
.cxnlColumn2 .textImg dd::after {
    display: block;
    content: "";
    width: 3px;
    height: 1rem;
    background-color: var(--themeColor);
    position: absolute;
    left: 0;
    top: 0
}

.cxnlColumn2 .textImg .img {
    height: 29.375rem;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
}

/* 第二栏 end */
/* 第三栏 start */
.cxnlColumn3 {
    padding: 0 0 7.5rem;
}

.cxnlDl {
    padding-top: 2rem;
    border-top: 1px solid #ededed;
}

.cxnlDl dd {
    margin-bottom: 1.875rem;
}

.cxnlDl .con {
    display: flex;
    column-gap: 7.5rem;
    padding-bottom: 1.875rem;
    border-bottom: 1px solid #ededed;
}

.cxnlDl .con .img {
    width: 44.0625rem;
    height: 25rem;
    overflow: hidden;
    border-radius: 1rem;
    background-color: #fbfaf9;
    order: 1;
    position: relative;
}

.cxnlDl .con img {
    position: relative;
}

.cxnlDl .con .img::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 0.3);
    z-index: 2;
}

.cxnlDl .con img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.cxnlDl .con .text {
    flex: 1;
    order: 2;
}

.cxnlDl dd:nth-child(even) .img {
    order: 2;
}

.cxnlDl dd:nth-child(even) .text {
    order: 1;
}

.cxnlDl dd:last-child .con {
    border-bottom: none;
}

.cxnlDl .con .textC {
    margin: 1.25rem 0 1.875rem;
    font-size: 1.0625rem;
    line-height: 1.875rem;
    color: #666;
}

.cxnlMore a {
    display: inline-block;
    height: 3.125rem;
    line-height: 3.125rem;
    border-radius: 3.125rem;
    background-color: #eff0f4;
    font-size: 1rem;
    color: #333;
    padding: 0 6.25rem 0 2.75rem;
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: calc(100% - 3rem) center;
    background-image: url(../images/icon/more1.png);
}

.cxnlMore a:hover {
    color: #fff;
    background-color: var(--themeColor);
    background-image: url(../images/icon/more2.png);
}

/* 第三栏 end*/
/* 创新能力 end */

/* 厂教融合 start */
/* 第一栏 start */
.cjrhColumn1 {
    padding: 6.25rem 0 0;
}
.cjrhColumn1 .imgText {
    display: flex;
    column-gap: 11.25rem;
}
.cjrhColumn1 .imgText .text {
    flex: 1;
}
.cjrhColumn1 .imgText .img {
    width: 38.125rem;
    height: 25.625rem;
    overflow: hidden;
    border-radius: 1rem;
}
.cjrhColumn1 .textC {
    margin: 3.75rem 0 0;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
/* 第一栏 end */
.cjrhColumn2 {
   height: 35rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 7.5rem 0 0;
}
.cjrhColumn2 .text {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.cjrhColumn2 .text .title {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-bottom: 2rem;
}
.cjrhColumn2 .textC {
    font-size: 1.0625rem;
    line-height: 2rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.cjrhColumn3 {
    padding: 7.5rem 0;
}
.cjrhSwiperBg {
    margin: 4.375rem 0 0;
    position: relative;
}
.cjrhSwiper {
    position: relative;
    overflow: hidden;
}
.cjrhSwiper .img {
    border: 2px solid #f5f5f5;
    overflow: hidden;
    border-radius: .5rem;
    background-color: #fafbfc;
    height: 15.625rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cjrhSwiper img {
    object-fit: contain;
    object-position: center;
}
.cjrhSwiper .con .text {
    text-align: center;
    margin: 1rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.0625rem;
    color: #333;
}
.pageBt.pageBt3 div {
	background-color: #f6f6f6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
}

.pageBt.pageBt3 div span {
    background-color: #7f7f7f;
}
.pageBt.pageBt3 .prev {
    left: -5rem;
}
.pageBt.pageBt3 .next {
    right: -5rem;	
}
/* 厂教融合 end */

/* 全文列表 start */
.textList1 dd {
    margin-bottom: 1.875rem;
}
.textList1 .con {
    padding: 3.125rem;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    column-gap: 5rem;
    border: 1px solid #dae3ed;
    overflow: hidden;
    border-radius: 1rem;
    transition:.3s;
    align-items: center;
}
.textList1 .con .title {
    padding-left: 3.25rem;
    font-size: 1.0625rem;
    line-height: 1.25rem;
    height: 1.25rem;
    color: #333;
    flex: 1;
    position: relative;
}
.textList1 .con .title::before{
    display: block;
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    box-sizing: border-box;
    border: 2px solid var(--themeColor);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.textList1 .con .time {
    width: 7.5rem;
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: #999;
    text-align: right;
}
.textList1 .con:hover {
    box-shadow: 0 0 1rem rgba(218, 227, 237, 0.8);
}
.textList1 .con:hover .title {
    color: var(--themeColor);
}
/* 全文列表 end */

/* 工厂生成 start */
/* 第一栏 start */
.gcColumn1 .imgText {
    display: flex;
    column-gap: 5rem;
}
.gcColumn1 .imgText .text {
    flex: 1;
}
.gcColumn1 .imgText .textC {
    padding-right: 1.875rem;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
    margin: 3.75rem 0 0;
    height: 17rem;
    overflow-y: auto;
}
.gcColumn1 .imgText .img {
    overflow: hidden;
    border-radius: 1rem;
    width: 50rem;
    height: 33.125rem;
}
.gscsDl {
    display: flex;
    align-items: center;
    margin: 3.75rem 0 0;
}
.gscsDl dd {
    width: 25%;
}
.gscsDl .con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gscsDl .number {
    font-size: 2.25rem;
    font-family: "GothamRnd-Bold";
    font-weight: 700;
    color: #333;
    line-height: 2.25rem;
}
.gscsDl .post {
    font-size: 1rem;
    line-height: 2.25rem;
    color: #333;
}
.gscsDl dd:nth-child(3) .post,
.gscsDl dd:nth-child(4) .post
{
      font-size: 2.25rem;
    font-family: "GothamRnd-Bold";
}
.gscsDl .tip {
    margin-top: .5rem;
    font-size: 1.0625rem;
    line-height: 1.0625rem;
    color: #999;
}
.gcColumn2 {
    margin: 6.25rem 0 0;
}
.gcColumn2 .img {
    height: 31.25rem;
    overflow: hidden;
    border-radius: 1rem;
}
.gcColumn3 {
    padding: 6.25rem 0 7.5rem;
}
.gcscSwiperBg {
    margin: 3.75rem 0 0;
    position: relative;
}
.gcscSwiper {
    position: relative;
    overflow: hidden;
}
.gcscSwiper .img {
    height: 100%;
    overflow: hidden;
    position: relative;
}
.gcscSwiper .con {
    overflow: hidden;
    height: 16.25rem;
    overflow: hidden;
    border-radius: 1rem;
}
.gcscSwiper .tip {
    position: absolute;
    width: 100%;
    bottom: 2rem;
    left: 0;
    padding: 0 1.875rem;
    color: #fff;
    font-size: 1.375rem;
    line-height: 1.375rem;
    z-index: 2;
}
.gcscSwiper .img::after {
    display: block;
    content: "";
    width: 100%;	
    height: 40%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    position: absolute;
    left: 0;
    bottom: 0;
}
/* 工厂生成 end */

/* 设备产能 start */
.sbcnColumn1 {
    box-sizing: border-box;
    padding: 6.25rem 0 0;
    background: linear-gradient(to bottom,#eef6fc,#ffffff);
    height: 60rem;
    overflow: hidden;
}
.sbcnColumn1 .wrap {
    position: relative;
    z-index: 2;
    height: 100%;
}
.earthMax {
    width: 55.625rem;
    height: 55.625rem;
    border-radius: 100%;
    border: 1px solid #cee5f6;
    z-index: 1;
    position: absolute;
    left: 50%;
    bottom: -16.875rem;
    transform: translateX(-50%);
}
.earthMin {
    width: 45.625rem;
    height: 45.625rem;
    border-radius: 100%;
    border: 1px solid #cee5f6;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.earthMin .img {
    width: 35rem;
    height: 35rem;
}
.earthDl dd {
    position: absolute;
}
.earthDl .con {
    display: flex;
    column-gap: 1.25rem;
}
.earthDl .con img {
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
  transform-origin: center center;
}
.earthDl .con .icon:hover img {
  transform: rotateY(180deg);
}
.earthDl .con .num {
    display: flex;
    flex-direction: column;
}
.earthDl .con .text {
    order: 1;
}
.earthDl .con .icon {
    order: 2;
    width: 7.5rem;
    height: 7.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 20;
    border-radius: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom,#cfe9fd,#3daeff);
    cursor: pointer;
}
.earthDl .con .number {
    font-size: 2rem;
    line-height: 2.375rem;
    font-family: "GothamRnd-Bold";
    font-weight: 700;
    color: var(--themeColor);
    text-align: right;
}
.earthDl .con .post {
    line-height: 2.125rem;
    font-size: 1.0625rem;
    color: #333;
}
.earthDl .dd1 {
    top: 13.75rem;
    left: -8rem;
}
.earthDl .dd2 {
    top: 2.5rem;
    left: -4rem;
}
.earthDl .dd3 .con{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.earthDl .dd3 {
    top: -7.25rem;
    left: 24rem;
}
.earthDl .dd4 {
     top: 2.5rem;
    right: -1rem;
}
.earthDl .dd5 {
     top: 13.75rem;
    right: -8rem;
}
.earthDl .dd4 .icon,.earthDl .dd5 .icon {
    order: 1;
}
.earthDl .dd4 .text,.earthDl .dd5 .text {
    order: 2;
}
.sbcnDlBg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 15.625rem;
    overflow: hidden;
    border-radius: .625rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    overflow: hidden;
    z-index: 1000;
}
.sbcnDlBg::after {
    display: block;
    content: "";
    width: 100%;	
    height: 100%;
    background: rgb(0 0 0 / 0.6);
    position: absolute;
    left: 0;
    bottom: 0;
}
.sbcnDl {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.sbcnDl dd {
    width: 25%;
    color: #fff;
}
.sbcnDl .con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5.625rem;
    border-right: 1px solid rgba(255, 255, 255, 0.8);
}
.sbcnDl dd:last-child .con {
    border-right: none;
}
.sbcnDl .con .tip {
    font-size: 1.125rem;
    line-height: 1.875rem;
    margin-bottom: .625rem;
}
.sbcnDl .con .number,.sbcnDl .con .number1 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    font-family: "GothamRnd-Bold";
    font-weight: 700;
}
.sbcnDl .con .post {
    font-size: 1.0625rem;
    line-height: 2.25rem;
}
.sbcnColumn2 {
    padding: 6.25rem 0 7.5rem;
    background-color: #fff;
    overflow: hidden;
}
.sbcnSwiperBg {
    position: relative;
    margin: 3.75rem 0 0;
}
.sbcnSwiper {
    overflow: hidden;
}
.sbcnSwiper .con {
    height: 16.25rem;
    overflow: hidden;
    border-radius: 1rem;
    transition: opacity 0.3s ease;
}
.sbcnSwiper .img{
    height: 100%;
    overflow: hidden;
    position: relative;
}
.sbcnSwiper .img::after {
    display: block;
    content: "";
    width: 100%;	
    height: 40%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    position: absolute;
    left: 0;
    bottom: 0;
    transition: height 0.4s ease, background 0.4s ease;
  pointer-events: none;
}
.sbcnSwiper .tip {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    padding: 0 1.875rem;
    color: #fff;
    z-index: 2;
    
}
.sbcnSwiper .tip .title {
    font-size: 1.375rem;
    line-height: 2.5rem;
}
.sbcnSwiper .tip .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    transform: translateY(100%);
    height: 0;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.sbcnSwiper .con:hover .textC {
    transform: translateY(0);
  opacity: 1;
  height: auto;
}
.sbcnSwiper .con:hover .img::after {
    height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
/* 设备产能 end */

/* 企业保证 start */
.qybzColumn1 {
    background-color: #fff;
    padding: 6.25rem 0 0;
}
.qybzColumn1 .imgText{
    display: flex;
    column-gap: 6.25rem;
}
.qybzColumn1 .imgText .text {
    flex: 1;
}
.qybzColumn1 .imgText .textC {
    margin: 2.75rem 0 0;
    font-size: 1.0625rem;
    line-height: 2rem;
    color: #666;
}
.qybzColumn1 .imgText .img {
    width: 45.625rem;
    height: 19.375rem;
    box-sizing: border-box;
    padding-left: 1.25rem;
    border-left: 1px solid #ededed;
    overflow: hidden;
}
.qybzColumn1 .img2 {
    margin: 7.5rem 0 0;
    height: 28.125rem;
    overflow: hidden;
    border-radius: 1rem;
}
/* 第二栏 start */
.qybzColumn2 {
    padding: 5.625rem 0 7.5rem;
}
.qybzColumn2 .textTitle {
    display: flex;
    column-gap: 6.25rem;
}
.qybzColumn2 .textTitle .xlTitle {
    width: 16.25rem;
}
.qybzColumn2 .textTitle .text {
    flex: 1;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
.qybzSwiperBg {
    display: flex;
    width: 116.6666%;
    margin: 3rem 0 0;
    column-gap: 6.25rem;
}
.qybzSwiperBg .pageBt {
    width: 16.25rem;
    position: relative;
}
.qybzSwiperBg .pageBt div {
   bottom: 0;
   top: auto;
   background-color: #f6f6f6;
}
.qybzSwiper {
    overflow: hidden;
    width: 100%;
}
.qybzSwiper .img {
    height: 11.875rem;
    overflow: hidden;
    border-radius: .5rem;
}
.qybzSwiper .img img {
    object-fit: contain;
}
.qybzSwiper .post {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.0625rem;
    line-height: 1.875rem;
    color: #333;
}
/* 第二栏 end */
/* 企业保证 end */

/* 检测能力 start */
.jcnlColumn {
    box-sizing: border-box;
    overflow: hidden;
    height: 60rem;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.jcnlColumn .wrap {
    height: 100%;
    position: relative;
}
.jcnlColumn .wrap .text {
    width: 40%;
}
.jcnlColumn .xlTitle {
    margin: 6.25rem 0 6.875rem;
}
.jcnlColumn .title {
    font-size: 1.625rem;
    line-height: 3.125rem;
    color: #333;
    margin-bottom: .5rem;
}
.jcnlColumn .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
.jcnlColumn .icon {
    margin-top: 5rem;
    height: 3rem;
    overflow: hidden;
}
.jcnlColumn .icon img {
    object-fit: contain;
    object-position: center;
    display: block;
    height: 100%;
}
.jcnlDl .con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.jcnlDl dd {
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 0 8px rgb(0 0 0 / 0.1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.jcnlDl .dd1 {
    width: 7.5rem;
    height: 7.5rem;
    top: 13.75rem;
    left: 36.25rem;
    animation: floatUpDown 3s ease-in-out infinite;
}
.jcnlDl .titleNg {
    text-transform: uppercase;
}
.jcnlDl .dd1 .titleCn ,
.jcnlDl .dd3 .titleCn,
.jcnlDl .dd4 .titleCn
{
    font-size: 1rem;
    color: #666;
    line-height: 2rem;
    text-align: center;
}
.jcnlDl .dd1 .titleNg,
.jcnlDl .dd3 .titleNg,
.jcnlDl .dd4 .titleNg
 {
    font-size: .75rem;
    line-height: 1.25rem;
    color: #999;
    text-align: center;
}
.jcnlDl .dd2 {
    width: 12.5rem;
    height: 12.5rem;
    top: 21.25rem;
    left: 45.625rem;
    color: #fff;
    background-image: url(../images/icon/jbys.png);
    animation: floatUpDown 2s ease-in-out infinite;
}
.jcnlDl .dd2 .titleCn {
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: center;
}
.jcnlDl .dd2 .titleNg {
    font-size: .75rem;
    line-height: 1.875rem;
    text-align: center;
}
.jcnlDl .dd3 {
    width: 7.5rem;
    height: 7.5rem;
    top: 26.875rem;
    left: 59.375rem;
    background-color: rgba(245, 246, 247, 0.9);
    animation: floatUpDown 3.5s ease-in-out infinite;
}
.jcnlDl .dd4 {
    width: 8.75rem;
    height: 8.75rem;
    top: 16.25rem;
    left: 59.375rem;
    background-color: rgba(245, 246, 247, 0.9);
    animation: floatUpDown 3s ease-in-out infinite;
}
.jcnlDl .dd5 {
    width: 10rem;
    height: 10rem;
    top: 9.375rem;
    right: 0;
    color: #fff;
    background-image: url(../images/icon/jbys.png);
    animation: floatUpDown 2.5s ease-in-out infinite;
}
.jcnlDl .dd5 .titleCn {
    font-size: 1.625rem;
    line-height: 2.25rem;
}
.jcnlDl .dd5 .titleNg {
    text-align: center;
    font-size: .75rem;
    line-height: .875rem;
}
.jcnlDl .dd6 {
    width: 15rem;
    height: 15rem;
    background-color: rgba(245, 246, 247, 0.9);
    top: 21.875rem;
    right: 4.375rem;
    animation: floatUpDown 2s ease-in-out infinite;
}
.jcnlDl .dd6 .titleCn {
    font-size: 2rem;
    line-height: 2.625rem;
    color: #333;
    text-align: center;
}
.jcnlDl .dd6 .titleCn .titleNg {
    font-size: .75rem;
    line-height: 1rem;
    color: #333;
}
.jcnlDl .dd6 .tip {
    margin: 1rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.0625rem;
    color: #333;
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* 向上移动 5px */
  }
}
/* 检测能力 end */

/* 产品目录 start */
.cpmlSwiperBg {
    border-bottom: 1px solid #e6e6e6;
}
.cpmlSwiper {
   overflow: hidden;
}
.cpmlSwiper .con {
    height: 14.25rem;
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 3.75rem;
    cursor: pointer;
}
.cpmlSwiper .con::after {
    display: block;
    content: "";
    width: 1px;
    height: 5rem;
    background-color: #e6e6e6;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}
.cpmlSwiper .con::before {
    display: block;
    content: "";
    width: 100%;
    height: 4px;
    transition: border-bottom 0.3s ease;
    position: absolute;
    bottom: -1px;
    left: 0;
}
.cpmlSwiper .con .img {
    width: 2.8125rem;
    height: 2.8125rem;
    overflow: hidden;
}
.cpmlSwiper .con img {
    object-fit: contain;
    object-position: center;
    display: block;
    height: 100%;
    transition: transform 0.3s ease
}
.cpmlSwiper .con .text {
    font-size: 1.0625rem;
    color: #999;
    line-height: 2.125rem;
    height: 6.375rem;
    margin-top: 1rem;
    overflow: hidden;
    transition: color 0.3s ease;
}
.cpmlSwiper .con .img2 {
    display: none;
}
.cpmlSwiper .con:hover .img2 {
    display: block;
}
.cpmlSwiper .con:hover .img1 {
    display: none;	
}
.cpmlSwiper .con:hover .text {
color: var(--themeColor);	
}
.cpmlSwiper .con:hover::before {
    background-color: var(--themeColor);
}
.cpmlSwiper .swiper-slide-thumb-active .con::before {
    background-color: var(--themeColor);
}
.cpmlSwiper .swiper-slide-thumb-active .con .text {
    color: var(--themeColor);	
}
.cpmlSwiper .swiper-slide-thumb-active .con .img1 {
    display: none;
}
.cpmlSwiper .swiper-slide-thumb-active .con .img2 {
    display: block;	
}
.cpmlPageSwiper {
    overflow: hidden;
}
.cpmlSearch {
    margin: 2.5rem auto;
    width: 55.625rem;
    height: 3.125rem;
    border-radius: 1.5625rem;
    line-height: 3.125rem;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ededed;
    display: flex;
    align-items: center;
}
.cpmlSearch .input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.0625rem;
    line-height: 3.125rem;
    color: #666;
    padding: 0 1.25rem;
}
.cpmlSearch input::placeholder {
    font-size: 1.0625rem;
    color: #999;
}
.cpmlSearch a {
    width: 10rem;
    height: 100%;
    font-size: 1.0625rem;
    line-height: 3.125rem;
    color: #fff;
    text-align: center;
    background-color: var(--themeColor);
    border-radius: 1.5625rem;
}
.cpmlDl {
    display: flex;
    flex-wrap: wrap;
    margin-right: 1.875rem;
}
.cpmlDl .page {
    width: 100%;
}
.cpmlDl dd {
    width: 25%;
    margin-bottom: 1.875rem;
}
.cpmlDl .con {
    margin-right: 1.875rem;
    display: block;
    overflow: hidden;
}
.cpmlDl .con .img {
    overflow: hidden;
    border-radius: 5px;
    height: 11.875rem;
}
.cpmlDl .con .text {
    text-align: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e3ebf0;
}
.cpmlDl .con .title {
    font-size: 1.0625rem;
    line-height: 1.875rem;
    color: #333;
    transition: .3s;
}
.cpmlDl .con:hover .title {
    color: var(--themeColor);
}
/* 产品目录 end */

/* 产品详情 start */
.cpxqColumn .cpxqTitle {
    margin: 0 0 1.875rem;
    font-size: 2.25rem;
    color: #333;
    line-height: 3.75rem;
}
.cpxqColumn {
    padding: 3.75rem;
    box-sizing: border-box;
}
.cpxqColumn .imgCpxqDl {
    display: flex;
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}
.imgCpxqDl .imgBg {
    width: 49.0566%;
    box-sizing: border-box;
    padding: 1.875rem 1.875rem 1.875rem 0;
  
}
.imgCpxqDl .img {
    overflow: hidden;
    height: 22.5rem;
    overflow: hidden;
    border-radius: 1rem;
} 
.cpxqDl {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}
.cpxqDl dd {
    width: 33.3333%;
    height: 13.125rem;
    overflow: hidden;
    border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
    box-sizing: border-box;
}

.cpxqDl dd:nth-child(3n+1) {
  border-left: 1px solid #e6e6e6;	
}
.cpxqDl dd:nth-last-child(1) {
  border-bottom: 1px solid #e6e6e6;	
}
.cpxqDl dd:nth-last-child(-n+3) {
  border-bottom: none;
}
.cpxqDl .con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.cpxqDl .con .icon {
    width: 2.8125rem;
    height: 2.8125rem;
    overflow: hidden;
    transition: transform 0.6s ease;
}
.cpxqDl .con:hover .icon {
  transform: rotateY(180deg); 
}
.cpxqDl .con .title {
    font-size: .875rem;
    color: #666;
    line-height: 1.25rem;
    margin: .625rem 0;
}
.cpxqDl .con .textC {
    font-size: .875rem;
    line-height: 1.5rem;
    color: #333;
}
.cpxqDl .con .text {
    text-align: center;
}
.cpxqNgDl {
    padding: 1.875rem 0;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    flex-wrap: wrap;
}
.cpxqNgDl dd {
    width: 50%;
    margin-bottom: .5rem;
}
.cpxqNgDl dt {
    width: 100%;
    margin-bottom: .5rem;
}
.cpxqNgDl .con {
    display: flex;
    line-height: 2.125rem;
    column-gap: 5px;
}
.cpxqNgDl .con .name {
    font-size: 1rem;
    color: #333;
    font-weight: 700;
    text-wrap: nowrap;
    font-family: "MiSans-Bold";
}
.cpxqNgDl .con .english {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
}
.cpxqTab table {
    margin-top: 1.875rem;
    box-sizing: border-box;
    overflow: hidden;
    border-collapse: collapse;
    border: 1px solid #e6e6e6;
    width: 100%;
}

.cpxqTab table thead th {
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    background-color: #f7fafc;
      line-height: 3.5rem;
    font-size: 1.375rem;
    color: #333;
}
.cpxqTab table thead th:nth-child(2) {
    text-align: left;
    padding: 0 2.5rem;
}
.cpxqTab table th:nth-child(1){
    width: 11.25rem;
}
.cpxqTab table tr td:first-child {
    width: 11.25rem;
    text-align: center;
     background-color: #f7fafc;
}
.cpxqTab table tr td:first-child span {
    color: #333;
    font-family: "MiSans-Bold";
}
.cpxqTab table tr td {
    padding: 1.25rem 0;
     border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
.cpxqTab table tr td span {
    font-size: 1rem;
    display: block;
    padding: 0 2.5rem;
    line-height: 1.875rem;
    color: #666;
}
.cpxqBottom {
    padding: 3.125rem 0;
    border-top: 1px solid #e6e6e6;
}
.cpxqBottomDl {
    display: flex;
    align-items: center;
}
.cpxqBottomDl dd {
    width: 50%;
}
.cpxqBottomDl .con {
    display: flex;
    column-gap: 1.25rem;
    position: relative;
}
.cpxqBottomDl .con .img {
    width: 13.75rem;
    height: 9.375rem;
    border-radius: .625rem;
    overflow: hidden;
}
.cpxqBottomDl .con .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cpxqBottomDl .con .title {
    transition: .3s;
    font-size: 1.375rem;
    line-height: 2.5rem;
}
.cpxqBottomDl .con .titleCn {
    color: #333;
}
.cpxqBottomDl .con .titleNg {
    color: #666;
    text-transform: uppercase;
}
.cpxqBottomDl .con .tig {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #999;
}
.cpxqBottomDl .con .tig  span {
    position: relative;
    display: inline-block;
    padding-left: .875rem;
}
.cpxqBottomDl .con .tig  span::before {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #999;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);	
}
.cpxqBottomDl .con:hover .titleCn {
    color: var(--themeColor);
}
.cpxqBottomDl .con:hover .titleNg {
    color: var(--themeColor);
}
.cpxqBottomDl .con::before {
    display: block;
    content: "";
    width: 1px;
    height: 15.625rem;
    background-color: #e6e6e6;
    position: absolute;
    right: 0;
    top: -3.125rem;
}
.cpxqBottomDl dd:nth-child(2) .con::before {
    display: none;
}
.cpxqBottomDl dd:nth-child(2) .con{
    padding-left: 5rem;
}
/* 产品详情 end */

/* 产地朔源 start */
.cdsyColumn {
    padding: 6.25rem 0;
}
.cdsyColumn .textC {
    margin: 1.875rem 0 3.75rem;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 2.25rem;
    color: #666;
}
.cdsyTabDl {
    display: flex;
    align-items: center;
    column-gap: 3.75rem;
    margin: 3.75rem 0;
}
.cdsyTabDl dd {
    flex: 1;
}
.cdsyTabDl dt {
    width: 13.4375rem;
    height: 13.4375rem;
    margin: 0 2.5rem;
    position: relative;
}
.cdsyTabDl dt .img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 100%;
    position: relative;
}
.cdsyTabDl dt::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  background-color: #c9e6fa;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2s infinite ease-out;
  opacity: 0.7;
}
.cdsyTabDl dt::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  background-color: #c9e6fa;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2.5s infinite ease-out;
  opacity: 0.8;
}
@keyframes ripple {
  0% {
    width: 120%;
    height: 120%;
    opacity: 0.6;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}
.cdsyTabDl img {
    object-fit: cover;
    object-position: center;
    display: block;	
    height: 100%;
    width: 100%;
}
.cdsyTabDl dt .img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    left: 0;
    top: 0;
}
.cdsyTabDl dd .con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.cdsyTabDl dd .con .img {
    border-radius: 100%;
    border: 2px solid #e6e6e6;
    transition: .3s;
    width: 8rem;
    height: 8rem;
    overflow: hidden;
}
.cdsyTabDl dd .con .text {
    text-align: center;
    margin-top: .625rem;
    font-size: 1.0625rem;
    line-height: 1.875rem;
    color: #333;
}
.cdsyTabBox {
    padding-top: 1.875rem;
    border-top: 1px solid #ededed;
}
.cdsyTabBox .img {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 37.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
}
.cdsyTabBox .img .tip {
    height: 15.625rem;
    width: 32.5rem;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2.5rem;
    box-sizing: border-box;
    overflow: hidden;
    border-top-left-radius: 1rem;
}
.cdsyTabBox .img .tip .title {
    font-size: 1.375rem;
    line-height: 2.5rem;
    color: #333;
    padding-bottom: 1rem;
    position: relative;
}
.cdsyTabBox .img .tip .title::after {
    display: block;
    content: "";
    width: 2.5rem;
    height: .125rem;
    background-color: var(--themeColor);
    position: absolute;
    left: 0;
    bottom: 0;
}
.cdsyTabBox .img .tip .post {
    margin: 2.5rem 0 0;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
.cdsyIconDl {
    margin: 3.75rem -5rem 0 0;
    display: flex;
}
.cdsyIconDl dd {
    width: 25%;
}
.cdsyIconDl .con {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 5rem;
}
.cdsyIconDl .con .icon {
    width: 2.8125rem;
    height: 2.8125rem;
    overflow: hidden;
}
.cdsyIconDl .con .title {
    margin: 1.25rem 0;
    font-size: 1.375rem;
    line-height: 2.5rem;
    color: #333;
    padding-bottom: .625rem;
    position: relative;
}
.cdsyIconDl .con .title::before {
    display: block;
    content: "";
    width: 2.5rem;
    height: .125rem;
    background-color: var(--themeColor);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.cdsyIconDl .con .text {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
    text-align: center;
}
.cdsyTabDl dd.hover .img,
.cdsyTabDl dd:hover .img {
    border-color: var(--themeColor);
}
.cdsyTabDl dd.hover .text,
.cdsyTabDl dd:hover .text{
    color: var(--themeColor);
}
/* 产地朔源 end*/

/*  可持续发展start*/
.kcxfzColumn {
    padding: 6.25rem 0;
}
.kcxfzColumn .titleText1 {
    display: flex;
    column-gap: 11.25rem;
}
.kcxfzColumn .titleText1 .text {
    flex: 1;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
.kcxfzColumn .bg1 {
    margin: 3.75rem 0 0;
    padding: 7.5rem 0 6.25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}
.kcxfzColumn .bg1::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    top: 0;
}
.lcxfzDl1 {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
}
.lcxfzDl1 dd {
    width: 33.3333%;
}
.lcxfzDl1 .con {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5rem;
}
.lcxfzDl1 .con .icon {
    width: 5rem;
    height: 5rem;
    overflow: hidden;
}
.lcxfzDl1 .con .text {
    text-align: center;
}
.lcxfzDl1 .con .text .title {
    font-size: 1.375rem;
    line-height: 2.5rem;
    margin: 1.25rem 0 .625rem;
}
.lcxfzDl1 .con .textC {
    font-size: 1.0625rem;
    line-height: 2rem;
    height: 22rem;
    text-align: center;
}
.kcxfzColumn .textTitle2 {
    display: flex;
    column-gap: 11.25rem;
    padding: 6.25rem 0 3.75rem;
    border-bottom: 1px solid #ededed;
}
.kcxfzColumn .textTitle2 .text {
    flex: 1
}
.kcxfzColumn .textTitle2 .title {
    position: relative;
    font-size: 1.375rem;
    line-height: 2.5rem;
    color: #333;
    padding-bottom: 1rem;
}
.kcxfzColumn .textTitle2 .title::before {
    display: block;
    content: "";
    width: 2.5rem;
    height: 3px;
    background-color: #24b324;
    position: absolute;
    left: 0;
    bottom: 0;
}
.kcxfzColumn .textTitle2 .textC {
    margin-top: .625rem;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
.cxfzImgText {
    margin: 3.125rem 0 5rem;
    display: flex;
    column-gap: 12.5rem;
    align-items: center;
}
.cxfzImgText .img {
    width: 31.875rem;
    height: 31.25rem;
}
.cxfzImgText dl {
    flex: 1;
}
.cxfzImgText dl dd {
    margin-bottom: 1.875rem;
}
.cxfzImgText dl .con {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #ededed;
    position: relative;
    padding-left: 1.5rem;
}
.cxfzImgText dl .con::before{
    display: block;
    content: "";
    position: absolute;
    width: .1875rem;
    height: 1.375rem;
    left: 0;
    top: .5rem;
    background-color: #24b324;

}
.cxfzImgText dl .con .title {
    font-size: 1.125rem;
    line-height: 2.25rem;
    color: #333;
}
.cxfzImgText dl .con .text {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #999;
}
.kcxfzColumn .bg2 {
    padding: 10.625rem 0 11.875rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.kcxfzColumn .bg2::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0,.5);
    position: absolute;	
    left: 0;
    top: 0;
}
.kcxfzColumn .bg2 .text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}
.kcxfzColumn .bg2 .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    margin: 1.875rem 0 0;
}
.kcxfzColumn2 {
    padding: 0 0 21.875rem;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
}
.cxfzImgText2 {
    display: flex;
    column-gap: 7.5rem;
}
.cxfzImgText2 .titleImg {
    width: 38.4375rem;
}
.cxfzImgText2 .img {
    overflow: hidden;
    border-radius: .625rem;
    height: 21.5625rem;
    margin: 5rem 0 0;
}
.cxfzImgText2 .textDl {
    flex: 1;
}
.cxfzImgText2 .textDl .title {
    font-size: 1.125rem;
    line-height: 1.125rem;
    color: #333;
}
.cxfzImgText2 .textDl .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid #ededed;
}
.cxfzImgText2 .textDl dl {
    width: 100%;
    margin: 2.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cxfzImgText2 .textDl dl dd {
    width: 50%;
    margin-bottom: 1.875rem;
    box-sizing: border-box;
}
.cxfzImgText2 .textDl dl .title {
    padding-left: .9375rem;
    font-size: 1.125rem;
    line-height: 1.125rem;
    color: #333;
    position: relative;
}
.cxfzImgText2 .textDl dl .title::before {
    display: block;
    content: "";
    width: 3px;
    height: 1.125rem;
    background-color: #24b324;
    position: absolute;
    left: 0;
    top: 0;
}
.cxfzImgText2 .textDl dl .post {
    padding: 1rem 0;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
.cxfzImgText2 .textDl dl .con {
    margin-right: 1.875rem;
}
.cxfzImgText2 .textDl dl dd:nth-child(2n) .con {
    margin-right: 0;
}
.cxfzImgText2 .textDl dl dd:nth-child(1),
.cxfzImgText2 .textDl dl dd:nth-child(2) {
    border-bottom: 1px solid #ededed;	
}
/* 可持续发展 end */

/* 人文关怀 start */
.rwghColumn {
    padding: 6.25rem 0 7.5rem;
    background: linear-gradient(to bottom,#d1e7ff,#fff);
    position: relative;
}
.rwghColumn::before {
    display: block;
    content: "";
    width: 100%;
    /* background-image: url(../test/imges/xt.png); */
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    height: 100%;
    bottom: -3rem;
}
.rwghColumn .wrap {
    position: relative;
}
.rwghImgText1 {
    display: flex;
    column-gap: 7.5rem;
    position: relative;
    z-index: 5;
    align-items: center;
    padding-right: 2.5rem;
}
.rwghImgText1 .title{
    margin: 3.75rem 0 1.875rem;
    font-size: 1.375rem;
    line-height: 2.5rem;
    color: #333;
    padding-bottom: 1rem;
    position: relative;
}
.rwghImgText1 .title::before {
    display: block;
    content: "";
    width: 2.5rem;	
    height: 3px;
    background-color: var(--themeColor);
    position: absolute;
    left: 0;
    bottom: 0;
}
.rwghImgText1 .text {
    flex: 1;
}
.rwghImgText1 .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;	
}
.rwghImgText1 .img {
    width: 35.625rem;
    height: 18.75rem;
    overflow: hidden;	
    border-radius: 18.75rem;
}
.rwghImgText2 {
    margin: 4.375rem 0 0;
    padding-bottom: 1.875rem;
    display: flex;
    align-items: center;
    column-gap: 13.75rem;
    padding-left: 2.5rem;
}
.rwghImgText2 .img {
    width: 18.75rem;
    height: 18.75rem;
    overflow: hidden;
    border-radius: 18.75rem;
}
.rwghImgText2 .text {
    flex: 1;
}
.rwghImgText2 .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
    position: relative;
}
/* 第二栏 start */
.rwghColumn2 .bg {
    height: 33.75rem;
    position: relative;
    box-sizing: border-box;
    padding-top: 5.625rem;
}

.rwghColumn2 .bg::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .4);
}

.rwghColumn2 .xlTitle {
    position: relative;
    z-index: 5;
}

.rwghC2Dl {
    position: relative;
    top: -4.375rem;
}

.rwghC2Dl dd {
    margin-bottom: 3.75rem;
}

.rwghC2Dl .con {
    display: flex;
    align-items: center;
    column-gap: 5.625rem;
}

.rwghC2Dl .con .img {
    width: 44.0625rem;
    height: 25rem;
    order: 2;
    overflow: hidden;
}

.rwghC2Dl .con .text {
    flex: 1;
    order: 1;
}

.rwghC2Dl dd:nth-child(even) .img {
    order: 1;
}

.rwghC2Dl dd:nth-child(even) .text {
    order: 2;
}

.rwghC2Dl .con .year span {
    font-size: 2rem;
    line-height: 2rem;
    color: #333;
    padding-bottom: 2rem;
    position: relative;
}

.rwghC2Dl .con .year span::before {
    display: block;
    content: "";
    width: 2.5rem;
    height: 2px;
    background-color: var(--themeColor);
    position: absolute;
    left: 0;
    bottom: 0;
}

.rwghC2Dl .con .textC {
    font-size: 1.375rem;
    line-height: 2.25rem;
    color: #333;
    margin-top: 4.375rem;
}

/* 第二栏 end */
/* 人文关怀 end */

/* 保护措施 start */
.bhcsColumn {
    background: linear-gradient(to bottom,#d1e7ff,#fff);
}
.bhcsImgText1 {
    padding: 5.625rem 0 3.75rem;
    display: flex;
    column-gap: 12.5rem;
    border-bottom: 1px solid #ededed;
}
.bhcsImgText1 .text {
    flex: 1;
}
.bhcsImgText1 .title {
    margin: 3.75rem 0 1.875rem;
    font-size: 1.375rem;
    line-height: 2.25rem;
    color: #333;
    padding-bottom: 1rem;
    position: relative;
}
.bhcsImgText1 .title::before {
    display: block;
    content: "";
    width: 2.5rem;	
    height: 3px;
    background-color: var(--themeColor);
    position: absolute;
    left: 0;
    bottom: 0;
}
.bhcsImgText1 .minTitle {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #333;
    margin-bottom: 1.25rem;
}
.bhcsUl li {
    padding-left: 1.25rem;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #333;
    position: relative;
}
.bhcsUl li::before {
    display: block;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: var(--themeColor);
    position: absolute;	
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.bhcsImgText1 .img {
    width: 38.125rem;
    height: 35.625rem;
    overflow: hidden;
}
.bhcsImgText2 {
    padding: 3.75rem 0 7.5rem;
    display: flex;
    column-gap: 7.5rem;
    align-items: center;
}
.bhcsImgText2 .img {
    width: 38.125rem;
    height: 19.6875rem;
    overflow: hidden;
    border-radius: 1rem;
}
.bhcsImgText2 .text {
    flex: 1;    
    padding-left: 5.625rem;
    position: relative;
}
.bhcsImgText2 .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #333;
    margin-bottom: 1.5625rem;
}
.bhcsImgText2 .text::before {
    display: block;
    content: "";
    width: 3.75rem;
    height: 8.125rem;
    background-image: url(../test/imges/ej.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)	
}
/* 保护措施 end*/

/* 商业道德 start */
.syddColumn {
    padding: 7.5rem 0 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.syddColumn .bg {
    margin: 3.75rem 0;
    height: 31.25rem;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
}
.syddColumn .bg .text{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 3.75rem;
    color: #fff;
    box-sizing: border-box;
    width: 50.9259%;
}
.syddColumn .bg .title {
    font-size: 1.375rem;
    line-height: 2.5rem;
    padding-bottom: 1rem;
    position: relative;
}
.syddColumn .bg .title::before {
    display: block;
    content: "";
    width: 2.5rem;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}
.syddColumn .bg .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    margin-top: 1.25rem;
}
.syddImgText dd {
    margin-bottom: 3.75rem;
}
.syddImgText .con {
    display: flex;
    column-gap: 7.5rem;
    align-items: center;
    padding-bottom: 3.75rem;
    border-bottom: 1px solid #ededed;
}
.syddImgText .con .img {
    width: 43.75rem;
    height: 25rem;
    border-radius: 1rem;
    overflow: hidden;
}
.syddImgText .con .text {
    flex: 1;
}
.syddImgText .con .title{
    font-size: 1.375rem;
    line-height: 2.5rem;
    color: #333;
    padding-bottom: 1rem;
    position: relative;
}
.syddImgText .con .title::before {
    display: block;
    content: "";
    width: 2.5rem;	
    height: 3px;
    background-color: var(--themeColor);
    position: absolute;
    left: 0;
    bottom: 0;
}
.syddImgText .con .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;	
    margin-top: 1.25rem;
}
.syddImgText dd:last-child .con {
    border-bottom: 0;
}
/* 商业道德 end*/

/* 联系我们 start */
.lxusC1 {
    display: flex;
    padding: 6.25rem 0 0;
}
#messageForm {
    flex: 1;
}
.lxusC1 .post,
.lxusC1 .usTab {
    width: 50%;
    box-sizing: border-box;
}
.lxusC1 .post {
    padding-right: 6.875rem;
    border-right: 2px dashed #e6e6e6;
}
.lxusC1 .post .minTitle {
    margin: 4.375rem 0 6.875rem;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
.lxusC1 .post dl {
    display: flex;
    flex-wrap: wrap;
}
.lxusC1 .post dl dd {
    width: 50%;
    margin-bottom: 3.75rem;
}
.lxusC1 .post dd:nth-child(1) {
    width: 100%;
}
.lxusC1 .post dl .icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 100%;
    background-color: var(--themeColor);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.75rem;
}
.lxusC1 .post dl .con {
    display: flex;
    column-gap: .9375rem;
    align-items: center;
}
.lxusC1 .post dl .con .text{
    flex: 1;
}
.lxusC1 .post dl .con .phone {
    font-size: 1.125rem;
    line-height: 2.125rem;
    color: var(--themeColor);
}
.lxusC1 .post dl .con .addres {
    font-size: 1.375rem;
    line-height: 2.125rem;
    color: #333;
}
.lxusC1 .post dl dd:nth-child(1) .con .addres {
    font-size: 1.0625rem;
}
.lxusC1 .usTab {
    padding-left: 6.875rem;
}
.lxusC1 .usTab dd {
    margin-bottom: 1.875rem;
    transition: .3s;
}
.lxusC1 .usTab .con {
    padding: 1.875rem;
    border: 2px solid #dae8f2;
    background-color: #f5f9fc;
    overflow: hidden;
    border-radius: 1rem;
}
.lxusC1 .usTab .con .title {
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #333;
}
.lxusC1 .usTab .textC {
    margin: 1.875rem 0 1.25rem;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
.lxusC1 .usTab .phone {
    font-size: 1.375rem;
    line-height: 1.375rem;
    color: #333;
}
.lxusC1 .usTab dd.hover .con,
.lxusC1 .usTab dd:hover .con {
    border-color: var(--themeColor);
}
.lxUsColumn .usImg {
    height: 35rem;
    overflow: hidden;
    border-radius: .625rem;
    margin: 6.25rem 0;
}
.lxusC2 {
    padding-bottom: 6.25rem;
    display: flex;
    column-gap: 16.875rem;
}
.lxusC2 .usText {
    width: 34.375rem;
}
.lxusC2 .usText .minTitle{
    margin: 3.75rem 0 6.25rem;
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
}
.lxusC2 .usText .img {
    height: 23.125rem;
    border-radius: .625rem;
    overflow: hidden;
}
.lxusForm {
    flex: 1;
}
.lxusForm .item {
    margin-bottom: 2.5rem;
}
.lxusForm .item .labe span {
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.375rem;
    color: #666;
    padding-left: 1.875rem;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1.2rem;
}
.lxusForm .item  .input {
    height: 3.75rem;
    line-height: 3.75rem;
    border-radius: 5px;
    padding: 0 1.25rem;
    overflow: hidden;
    border: 3px solid #f5f5f5;
    background-color: #fafbfc;
    margin-top: 1.25rem;
}
.lxusForm .item .textarea {
    margin-top: 1.25rem;
     padding: 1.25rem;
    overflow: hidden;
    border: 3px solid #f5f5f5;
    background-color: #fafbfc;
}
.lxusForm .item textarea {
    display: block;
    width: 100%;
    min-height: 11.25rem;
}
.lxusForm .upForm a {
    display: inline-block;
    height: 3.75rem;
    line-height: 3.75rem;
    overflow: hidden;
    border-radius: 5px;
    padding: 0 6.25rem;
    font-size: 1.125rem;
    color: #fff;
    background-color: var(--themeColor);
}
.lxusForm .item .yzmImg {
    display: flex;
    align-items: center;
}
.lxusForm .item .yzmImg .img {
    height: 3.75rem;
    width: 7.5rem;
    background-color: #f5f6f7;
    margin: 1.25rem 2rem 0;
}
.lxusForm .item .yzmImg img {
    object-fit: contain;
    object-position: center;
    display: block;
    width: 100%;
    height: 100%;
}
.lxusForm .item .yzmImg .post {
    font-size: 1rem;
    line-height: 3.75rem;
    color: #666;
    cursor: pointer;
    margin-top: 1.25rem;
}
/* 联系我们 end */

/* 人才理念 start */
.rclnColumn .textTitle {
    padding: 6.25rem 0 3.125rem;
    display: flex;
    column-gap: 18.75rem;
    border-bottom: 1px solid #ededed;
}
.rclnColumn .textTitle .text {
    width: 17.5rem;
}
.rclnColumn .textTitle .minTitle {
    margin: 3.125rem 0 0;
    font-size: 1.375rem;
    line-height: 2.25rem;
    color: #333;
}
.rclnColumn .textTitle ul {
    flex: 1;
}
.rclnColumn .textTitle ul li {
    font-size: 1.0625rem;
    color: #666;
    line-height: 2.5rem;
    padding-left: 1.25rem;
    position: relative;
}
.rclnColumn .textTitle ul li::before {
    display: block;
    content: "";
    width: .625rem;
    height: .625rem;
    border-radius: 100%;
    border: 2px solid var(--themeColor);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.rclnDl {
    margin: 3.125rem 0 4.375rem
}
.rclnDl dd {
    margin-bottom: 3.125rem;
}
.rclnDl .con {
    display: flex;
    align-items: center;
    column-gap: 5.625rem;
}
.rclnDl .con .img {
    width: 43.75rem;
    height: 25rem;
    overflow: hidden;
    border-radius: 1rem;
}
.rclnDl .con .text {
    flex: 1;
}
.rclnDl .con .title {
    padding-bottom: 2rem;
    border-bottom: 1px solid #f6f6f6;
}
.rclnDl .con .title span {
    display: inline-block;
    padding-left: 1.625rem;
    font-size: 1.375rem;
    line-height: 1.375rem;
    color: #333;
    position: relative;
}
.rclnDl .con .title span::before {
    display: block;
    content: "";
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    background-color: var(--themeColor);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.rclnDl .con  .textC {
    font-size: 1.0625rem;
    line-height: 2.125rem;
    color: #666;
    margin: .625rem 0 0;
}
/* 人才理念 end */

/* 人才招聘列表 start */
.textList2 {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1.875rem;
}
.textList2 dd {
    margin-bottom: 1.875rem;
    width: 50%;
}
.textList2 .con {
    display: block;
    margin-right: 30px;
    padding: 1.875rem;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: .3s;
}
.textList2 .con .title {
    font-size: 1.125rem;
    height: 1.25rem;
    line-height: 1.25rem;
    color: #333;
    transition: .3s;
}
.textList2 .con .textC {
    margin: 1.25rem 0 1.875rem;
    font-size: 1rem;
    line-height: 1.875rem;
    color: #666;
}
.textList2 .con .addres {
    display: flex;
    column-gap: 3.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #ededed;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #666;
    font-style: normal;
}
.textList2 .con:hover {
    box-shadow: 0 0 1rem rgba(2, 123, 211, .2);
}
.textList2 .con:hover .title {
    color: var(--themeColor);
}
/* 人才招聘列表 end */

/* 人才招聘详情 start */
.rczpNews {
    background-color: #fff;
}
.rczpNews .title {
    display: flex;
    align-items: center;
    height: 5rem;
    line-height: 5rem;
    column-gap: 3rem;
    font-size: 1rem;
    color: #fff;
    background-color: var(--themeColor);
    padding: 0 2.5rem;
    box-sizing: border-box;
}
.rczpNews .text {
    padding: 2.5rem 2.5rem 0;
}
.rczpNews .textC {
    margin-bottom: 1.875rem;
    font-size: 1.0625rem;
    line-height: 1.875rem;
    color: #666;
}
.rczpNews .textC  span {
    color: #333;
}
.rczpNews .upDown {
    border-top: 1px solid #ededed;
    padding: 1.875rem 2.5rem 3.125rem;
    display: flex;
    align-items: center;
    column-gap: 1.25rem;
}
.rczpNews .upDown a {
    height: 2.875rem;
    line-height: 2.875rem;
    font-size: 1.0625rem;
    overflow: hidden;
    border-radius: 5px;
    width: 11.25rem;
    text-align: center;
    box-sizing: border-box;
}
.rczpNews .upDown a:nth-child(1){
    border: 1px solid var(--themeColor);
    background-color: #e6f2fa;
    color: var(--themeColor);
}
.rczpNews .upDown a:nth-child(2) {
    background-color: var(--themeColor);
    color: #fff;
}
/* 表单start */
.recruitListForm{ margin-right: -40px; font-size: 14px;}
.recruitListForm:after{ clear:both; content: ''; visibility: hidden; display: block;}
.recruitListForm .item{ width: 50%; float: left; display: inline; margin-bottom: 15px;}
.recruitListForm .item.w100p{ width: 100%;}
.recruitListForm .item .con{ margin-right: 40px;}
.recruitListForm .item .label{ height: 38px; line-height: 38px;}
.recruitListForm .item .label span{ color: #da0100;}
.recruitListForm .item .itemC{ clear: both; min-height: 40px;}
.recruitListTc{ padding:20px; overflow: hidden;}
.recruitListForm .el-cascader{width: 100%;}
.upLoadResume{ font-size: 0;}
.upLoadResume span{ display: inline-block; font-size: 14px; height: 40px; line-height: 40px;color: #aeaeae;}
.upLoadResume a.up{ background: #1e5ab0; color: #FFF; border-color: #1e5ab0;}
.upLoadResume a.down{ background: #e9e9e9; border-color: #e9e9e9;}
/* 表单end */
/* 人才招聘详情 end */

/* 简历填写 start */
.jlFormBg .title {
    height: 5rem;
    line-height: 5rem;
    font-size: 1.375rem;
    color: #fff;
    background-color: var(--themeColor);
    padding: 0 3.75rem;
    box-sizing: border-box;
}
.jlFormBg .title span {
    display: inline-block;
    padding-left: 1.25rem;
    position: relative;
}
.jlFormBg .title span::before {
    display: block;
    content: "";
    width:.5rem;
    height:.5rem;
    border-radius: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.jlForm {
    padding: 1.875rem 3.75rem 3.125rem;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    margin-right: -5.625rem;
}
.jlForm .labe {
    font-size: 1rem;
    line-height: 1.875rem;
    color: #666;
    margin-bottom: .625rem;
}
.jlForm .item {
    width: 50%;
    margin-bottom: 1.875rem;
}
.jlForm .itemC {
    margin-right: 5.625rem;
}

.jlForm .item .input {
    display: flex;
    padding: 0 1.25rem;
    height: 2.875rem;
    line-height: 2.875rem;
    border: 1px solid #ededed;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fafbfc;
    align-items: center;
    column-gap: .5rem;
}
.jlForm  .input .icon {
    width: 1.25rem;
    height: 1.25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1rem;
}
.jlForm .item input {
    flex: 1;
}
.jlForm .radio {
    display: flex;
    align-items: center;
    column-gap: 1.25rem;
    font-size: 1.125rem;
}
.radio input[type="radio"] {
    appearance: none; /* 隐藏原生样式 */
    -webkit-appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    border: 1px solid #ededed;
    border-radius: 50%;
    background-color: #fafbfc;
    margin-right: .5rem;
    position: relative;
    cursor: pointer;
}

.radio input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background-color: var(--themeColor);
    border-radius: 50%;
}
.jlForm .item select {
    flex: 1;
    height: 2.875rem;
    line-height: 2.875rem;
    border: none;
    overflow: hidden;
    font-size: 1rem;
}
.jlForm .itemTextArea {
    width: 100%;
}
.jlForm .textarea {
    padding: 1.25rem;
    border: 1px solid #ededed;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fafbfc;
    display: flex;
    margin-right: 1.875rem;
}
.jlForm .textarea .icon {
    width: 1.25rem;
    height: 1.25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1rem;
    margin-right: .5rem;
}
.jlForm .textarea textarea {
    flex: 1;
    min-height: 10rem;   
    line-height: 1.25rem;
}
.jlForm .itemJlmb {
    width: 100%;
    margin: 1.875rem 1.875rem 1.875rem 0;
}
.jlForm .itemJlmb .jlmb {
    display: flex;
    column-gap: 1.25rem;
    align-items: center;
}
.jlForm .itemJlmb a {
    height: 2.875rem;
    line-height: 2.875rem;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--themeColor);
    color: var(--themeColor);
    width: 11.25rem;
    text-align: center;
    background-color: #e6f2fa;
    font-size: 1.0625rem;
}
.jlForm .itemJlmb span {
    font-size: 1rem;
    color: #999;
}
.jlForm .yzmItem {
    width: 100%;
    display: flex;
    column-gap: 1.25rem;
    align-items: center;
    margin-right: 1.875rem;
}
.jlForm .yzmItem .input {
    display: flex;
    padding: 0 1.25rem;
    height: 2.875rem;
    line-height: 2.875rem;
    border: 1px solid #ededed;
    border-radius: 5px;
    overflow: hidden;
    width: 12.5rem;
    box-sizing: border-box;
    align-items: center;
}
.jlForm .yzmItem .icon {
    width: 1.25rem;
    height: 1.25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1rem;
    margin-right: .5rem;
}
.jlForm .yzmItem .img {
    height: 2.875rem;
    width: 6.25rem;
    border: 1px solid #ededed;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fafbfc;
    cursor: pointer;
}
.jlForm .yzmItem img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.jlForm .yzmItem .tip {
    font-size: 1rem;
    color: #999;
}
.jlForm .upJl {
    width: 100%;
    margin: 2.5rem 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.875rem;
}
.jlForm .upJl a {
    width: 11.25rem;
    height: 2.875rem;
    line-height: 2.875rem;
    border-radius: 5px;
    overflow: hidden;
    font-size: 1.0625rem;
    text-align: center;
    color: #fff;
}
.jlForm .upJl a:nth-child(1) {
    background-color: var(--themeColor);
    
}
.jlForm .upJl a:nth-child(2) {
    background-color: #bababa;
}
/* 简历填写 end*/