@charset "utf-8";

@font-face {
    font-family: myFont;
    src: url(../fonts/myFont.ttf);
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/dincond-medium-webfont.eot');
    src: url('../fonts/dincond-medium-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/dincond-medium-webfont.woff') format('woff'), url('../fonts/dincond-medium-webfont.ttf') format('truetype'), url('../fonts/dincond-medium-webfont.svg#novecentowide-bold-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
}

:root {
    --main-color: #BB091E;
    --black-color: #333333;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    height: 100px;
}

header>.pd {
    height: 100%;
}

header.hover {
    background-color: #333333;
    -webkit-box-shadow: 0px 2px 5px rgb(0 0 0 / 10%);
    box-shadow: 0px 2px 5px rgb(0 0 0 / 10%);
}

header .logo {
    float: left;
    width: 150px;
    height: 100%;
}

header .logo>a {
    display: block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header nav {
    float: right;
    height: 100%;
    width: calc(100% - 300px);
    padding-left: 6%;
}

header nav>a {
    font-size: 17px;
    font-weight: bold;
    color: #FFFFFF;
    display: inline-block;
    position: relative;
    height: 100%;
    float: left;
    width: 12.5%;
}

header nav>a span {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

header nav>a span:after {
    content: "";
    height: 3px;
    left: 0;
    bottom: -38px;
    position: absolute;
    width: 0;
    background-color: #ffffff;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

header nav>a:hover span:after, header nav>a.active span:after {
    width: 100%;
}

header .circle34 {
    width: 34px;
    height: 34px;
    background-color: #ffffff;
    border-radius: 50%;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    float: right;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

header .nav_btn_m {
    background-image: url(../images/nav_btn_m_black.svg);
    margin-left: 23px;
}

header .search_btn {
    background-image: url(../images/search_icon_black.svg);
}

@media(max-width:1366px) {
    header nav {
        padding-left: 80px;
    }

}

@media(max-width:1279px) {
    header nav {
        padding-left: 40px;
    }

}

@media(max-width:1200px) {
    header nav {
        display: none;
    }

    header {
        height: 62px;
    }

}

/*header_nav_drop*/
.header_nav_box {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 998;
    display: none;
}

.header_nav_box.show {
    display: block;
}

header nav .nav_cont {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    height: 300px;
    background-color: #fff;
    display: none;
    overflow: hidden;
}

.nav_drop_item .box_ {
    height: 100%;
    padding-left: 12%;
}

.nav_drop_item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: none;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .1);
}

.nav_drop_item .l_ {
    float: left;
    width: 270px;
    height: 100%;
    border-right: 1px solid #cccccc;
    padding-top: 70px;
}

.nav_drop_item .r_ {
    float: left;
    width: calc(100% - 270px);
    height: 100%;
}

.nav_drop_item .l_ .con {
    position: relative;
    height: 100%;
}

.nav_drop_item .l_ .t1 {
    font-size: 36px;
    font-weight: bold;
    color: #333333;
}

.nav_drop_item .l_ .t2 {
    font-size: 18px;
    font-family: Robotox;
    font-weight: 300;
    color: #999999;
    margin-top: 10px;
}

.nav_drop_item .l_ .t3 {
    font-size: 18px;
    font-weight: 300;
    color: #333333;
    margin-top: 75px;
}

.nav_drop_item .l_ a {
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    color: #999999;
    line-height: 26px;
    margin-top: 17px;
    border-bottom: 1px solid #999999;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.nav_drop_item .l_ a:hover {
    color: var(--main-color);
    border-bottom-color: var(--main-color);
}

.nav_drop_item .r_ .con {
    height: 100%;
    float: left;
    width: 55%;
    padding: 50px 130px 0;
}

.nav_drop_item .r_ .img {
    height: 100%;
    float: left;
    width: 45%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.nav_drop_item .r_ .list_ {
    margin: -20px -60px;
}

.nav_drop_item .r_ .i {
    float: left;
    width: 50%;
    padding: 20px 60px;
}

.nav_drop_item .r_ a {
    position: relative;
    display: block;
    padding-bottom: 20px;
    background-image: url(../images/more_gray.svg);
    background-repeat: no-repeat;
    background-position: right 5px;
    background-size: 12px;
}

.nav_drop_item .r_ a:hover {
    background-image: url(../images/more_red.svg);
}

.nav_drop_item .r_ a:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #eee;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.nav_drop_item .r_ a:before {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.nav_drop_item .r_ a:hover:before {
    width: 100%;
}

.nav_drop_item .r_ a span {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav_drop_item .r_ a:hover span {
    color: var(--main-color);
}

.index_search_box {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #fff;
    z-index: 1998;
    display: none;
}

.index_search_box .cont {
    position: relative;
    width: 100%;
    height: 40px;
    margin-top: 25px;
}

.index_search_box .cont input {
    position: absolute;
    display: block;
    width: calc(100% - 80px);
    height: 100%;
    left: 0;
    top: 0;
    border: none;
    background-color: #ffffff;
    padding: 0 20px;
    border-bottom: 1px solid #cccccc;
    z-index: 2;
}

.index_search_box .cont button {
    width: 50px;
    height: 100%;
    position: absolute;
    right: 80px;
    cursor: pointer;
    z-index: 3;
    background-image: url(../images/search_icon_gray.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.index_search_box .cont .close {
    position: absolute;
    right: 0;
    width: 50px;
    top: 0;
    height: 100%;
    cursor: pointer;
    background-image: url(../images/close_black.svg);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 4;
}

/*nav_m_box*/
.nav_m_box {
    overflow-y: auto;
    position: fixed;
    z-index: -99;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
}

.nav_m_cont {
    min-height: 800px;
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #0e0e0e;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav_m_box.show {
    z-index: 10000;
    opacity: 1;
}

.nav_m_box.show .nav_m_cont {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.nav_m_cont .box___ {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
    height: 100%;
}

.nav_m_cont .box___ .close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0.7;
    transition: all .3s;
}

.nav_m_cont .box___ .close:hover {
    opacity: 1;
}

.nav_m_cont .box___ .close a {
    width: 150px;
}

.nav_m_cont .box___ .close .icon {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255);
    border-radius: 50%;
    margin-left: 37px;
    background-image: url(../images/close_black.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    cursor: pointer;
}

.nav_m_cont .box___ ul {
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    transform: translateY(-40%);
    height: 100%;
    min-height: 500px;
    max-height: 700px;
}

.nav_m_cont .box___ ul>.pd {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.nav_m_cont .box___ li:after {
    clear: both;
    content: '';
    display: block;
}

.nav_m_cont .box___ .yiji_m {
    float: left;
    width: 230px;
}

.nav_m_cont .box___ .yiji_m .icon {
    display: none;
}

.nav_m_cont .box___ .yiji_m a {
    font-size: 40px;
    font-weight: bold;
    color: var(--main-color);
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav_m_cont .box___ .active .yiji_m a {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.nav_m_cont .box___ .drop_down_m {
    float: left;
    padding-top: 16px;
    width: calc(100% - 230px);
}

.nav_m_cont .box___ .drop_down_m a {
    font-size: 18px;
    font-weight: 400;
    color: #A3A3A3;
    line-height: 30px;
    margin-left: 40px;
    white-space: nowrap;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.nav_m_cont .box___ .drop_down_m a:after {
    content: '';
    width: 0;
    height: 1px;
    width: 0%;
    background-color: var(--main-color);
    left: 0;
    bottom: 0;
    transition: all .3s linear;
    position: absolute;
}

.nav_m_cont .box___ .drop_down_m a.active:after, .nav_m_cont .box___ .drop_down_m a:hover:after {
    width: 100%;
}

.nav_m_box .box___ li {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
}

.nav_m_box.show .box___ li {
    -webkit-transition-property: margin, opacity, -webkit-transform;
    transition-property: margin, opacity, -webkit-transform;
    -o-transition-property: margin, transform, opacity;
    transition-property: margin, transform, opacity;
    transition-property: margin, transform, opacity, -webkit-transform;
    -webkit-transition-duration: .6s;
    -o-transition-duration: .6s;
    transition-duration: .6s;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.nav_m_box.show .box___ li:nth-child(1) {
    -webkit-transition-delay: .55s;
    -o-transition-delay: .55s;
    transition-delay: .55s;
}

.nav_m_box.show .box___ li:nth-child(2) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}

.nav_m_box.show .box___ li:nth-child(3) {
    -webkit-transition-delay: .75s;
    -o-transition-delay: .75s;
    transition-delay: .75s;
}

.nav_m_box.show .box___ li:nth-child(4) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}

.nav_m_box.show .box___ li:nth-child(5) {
    -webkit-transition-delay: .95s;
    -o-transition-delay: .95s;
    transition-delay: .95s;
}

.nav_m_box.show .box___ li:nth-child(6) {
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}

.nav_m_box.show .box___ li:nth-child(7) {
    -webkit-transition-delay: 1.05s;
    -o-transition-delay: 1.05s;
    transition-delay: 1.05s;
}

.nav_m_box.show .box___ li:nth-child(8) {
    -webkit-transition-delay: 1.1s;
    -o-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

.nav_m_box.show .box___ li:nth-child(9) {
    -webkit-transition-delay: 1.15s;
    -o-transition-delay: 1.15s;
    transition-delay: 1.15s;
}

.nav_m_box .des {
    position: absolute;
    right: 10%;
    bottom: 110px;
    opacity: 0;
}

.nav_m_box .des .t1 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.nav_m_box .des .t1 span {
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 35px;
}

.nav_m_box .des .t1 p {
    font-size: 40px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 47px;
}

.nav_m_box .des .t2 {
    padding-top: 20px;
}

.nav_m_box .des .t2 p {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 34px;
}

.nav_m_box.show .des {
    -webkit-transition-delay: 1.05s;
    -o-transition-delay: 1.05s;
    transition-delay: 1.05s;
    opacity: 1;
}

@media(max-width:1439px) {
    .nav_drop_item .r_ .con {
        padding: 70px 60px 0;
    }

}

@media(max-width:1280px) {
    .nav_drop_item .r_ .i {
        padding: 20px 30px;
    }

}

@media(max-width:1200px) {
    .index_search_box {
        height: 62px;
    }

    .index_search_box .cont {
        margin-top: 10px;
    }

    .nav_m_box {
        overflow: visible;
    }

    .nav_m_cont {
        min-height: 100%;
    }

    .nav_m_box.show .des {
        display: none;
    }

    .nav_m_cont .box___ ul {
        top: 62px;
        bottom: 0;
        transform: translateY(0);
        overflow-y: auto;
        height: auto;
    }

    .nav_m_cont .box___ ul>.pd {
        height: auto;
    }

}

@media(max-width:768px) {
    .index_search_box .cont .close {
        width: 20px;
    }

    .index_search_box .cont input {
        width: calc(100% - 40px);
    }

    .index_search_box .cont button {
        right: 40px;
    }

    .nav_m_cont .box___ .yiji_m {
        width: 100%;
    }

    .nav_m_cont .box___ .drop_down_m {
        width: 100%;
    }

    .nav_m_cont .box___ .yiji_m a {
        font-size: 24px;
    }

    .nav_m_cont .box___ .drop_down_m a {
        font-size: 16px;
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .nav_m_cont .box___ .drop_down_m {
    }

    .nav_m_cont .box___ li {
        margin-bottom: 20px;
    }

    .nav_m_cont .box___ .close {
        top: 12px;
        justify-content: space-between;
        left: 20px;
    }

    .nav_m_cont .box___ ul {
        padding-top: 30px;
    }

}

/*banner*/
.index_banner {
    position: relative;
    overflow: hidden;
}

.index_banner .banner_img.pc {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
}

.index_banner .banner_img.mobile {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.index_banner .banner_img {
    transform-origin: center;
}

.index_banner .swiper-slide-active .banner_img {
    transition: all 4.2s linear;
}

.index_banner .index_banner_swp .text {
    position: absolute;
    left: 0;
    right: 0;
    top: 35%;
    transform: translateY(-50%);
    user-select: none;
    opacity: 0;
    text-align: center;
    margin-top: 50px;
}

.index_banner .index_banner_swp .swiper-slide-active .text {
    opacity: 1;
    margin-top: 0;
    transition: all .7s 0.2s;
}

.index_banner .index_banner_swp .text img {
    max-width: 520px;
    width: 100%;
}

.index_banner .btn_box {
    position: absolute;
    right: 12%;
    top: 45%;
    transform: translateY(-50%);
    z-index: 3;
}

.index_banner .btn_box .btn_ {
    width: 50px;
    height: 50px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    background-image: url(../images/next_white.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all .3s;
}

.index_banner .btn_box .btn_:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.index_banner .btn_box .prev {
    transform: rotate(180deg);
}

.index_banner .btn_box .next {
    margin-top: 15px;
}

.index_banner_bottom {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 2;
}

.index_banner_bottom:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .2);
    left: 0;
    bottom: 12px;
    position: absolute;
}

.index_banner_bottom .slide-cont a {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.index_banner_bottom .slide-item {
    background-image: url(../images/ban_img.svg);
    height: 98px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 10px;
    padding-left: 35px;
    transition: all .3s;
}

.index_banner_bottom .slide-cont:hover .slide-item {
    background-image: url(../images/ban_img_hover.svg);
}

.index_banner_bottom .slide-item .img {
    width: 40px;
}

.index_banner_bottom .slide-item .img img:nth-child(2) {
    display: none;
}

.index_banner_bottom .slide-cont:hover .img img:first-child {
    display: none;
}

.index_banner_bottom .slide-cont:hover .img img:nth-child(2) {
    display: inline-block;
}

.index_banner_bottom .slide-item .p {
    padding-left: 12px;
}

.index_banner_bottom .slide-item .p p {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 23px;
}

.index_banner_bottom .slide-cont:hover .slide-item .p p {
    color: #ffffff;
}

.index_banner_bottom .slide-item .p span {
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    color: #ffffff;
    line-height: 16px;
}

.index_banner_bottom .slide-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-top: 10px;
    position: relative;
    background-color: rgba(255, 255, 255, .1);
    animation: op 2s linear alternate infinite;
}

.index_banner_bottom .slide-cont:hover .slide-dot {
    background-color: rgba(188, 0, 0, 0.24);
}

.index_banner_bottom .slide-dot:after {
    content: '';
    width: 18px;
    height: 18px;
    background-color: rgba(255, 255, 255, .14);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.index_banner_bottom .slide-cont:hover .slide-dot:after {
    background-color: rgba(188, 0, 0, 0.34);
}

.index_banner_bottom .slide-dot:before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, .24);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.index_banner_bottom .slide-cont:hover .slide-dot:before {
    background-color: rgba(188, 0, 0, 0.64);
}

@keyframes op {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.3;
    }

}

@media(max-width:1500px) {
    .index_banner_bottom .swiper-slide {
        width: auto;
    }

    .index_banner_bottom .slide-item {
        width: 220px;
    }

}

@media(max-width:1200px) {
    .index_banner .index_banner_swp .text img {
        max-width: 340px;
    }

}

@media(max-width:768px) {
    .index_banner .btn_box {
        display: none;
    }

    .index_banner .banner_img {
        transform: scale(1.1);
    }

    .index_banner .index_banner_swp .text img {
        max-width: 70%;
    }

    .index_banner_bottom .slide-item {
        height: 80px;
    }

    .index_banner_bottom .slide-item {
        padding-left: 15px;
    }

    .index_banner_bottom .slide-item .img {
        width: 30px;
    }

    .index_banner_bottom .slide-item .p p {
        font-size: 18px;
    }

    .index_banner_bottom .slide-item {
        width: 180px;
    }

}

/*公共样式*/
.public_img {
    overflow: hidden;
    position: relative;
    border-radius: 3px;
}

.public_img img {
    position: relative;
    z-index: 1;
    width: 100%;
}

.public_img i {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.public_more a {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.public_more .line {
    width: 40px;
    height: 1px;
    background-color: #666;
}

.public_more svg {
    margin-left: -10px;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.public_more svg path {
    stroke-dashoffset: 0;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    fill: none;
    stroke: #4B4B4B;
}

.public_more:hover svg path {
    stroke-dashoffset: 2828;
    -webkit-animation: DrawPath 1.2s ease;
    animation: DrawPath 1.2s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes DrawPath {
    to {
        stroke-dashoffset: 0;
    }

}

@keyframes DrawPath {
    to {
        stroke-dashoffset: 0;
    }

}

/*首页新闻*/
.index_news {
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: hidden;
    background-color: #ffffff;
}

.m_por {
    position: relative;
}

.m_poab {
    position: absolute;
}

.index_news .m_poab {
    width: 100%;
    right: 0;
    top: 0;
}

.index_news .m_poab .pd {
    float: right;
    margin: inherit;
    padding-left: 0;
    max-width: calc(1440px + 220px);
}

.index_news .m_r_d {
    position: absolute;
    left: 440px;
    width: 100%;
    padding-left: 0;
}

.index_news_left {
    float: left;
    width: 440px;
    padding-bottom: 100px;
    position: relative;
    z-index: 9;
}

.index_news_right {
    float: right;
    width: calc(100% - 440px);
}

.index_news_left .t1 {
    font-weight: bold;
    color: #333333;
}

.index_news_left .t2 {
    padding-top: 12px;
}

.index_news_left .t2 p {
    font-weight: 400;
    color: #333333;
    line-height: 1.4;
}

.index_news_left .t3 {
    margin-top: 15px;
    font-weight: 400;
    color: #999999;
    line-height: 50px;
}

.index_news_left .public_more {
    margin-top: 40px;
}

.index_news_right .swiper-container {
    padding: 10px 0;
}

.index_news_right .swiper-slide {
}

.index_news_right .slide-item {
    display: block;
    border-radius: 20px;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.0500);
}

.index_news_right .slide-item .img {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.index_news_right .slide-item .img i {
    transition: all .3s;
}

.index_news_right .slide-item:hover .img i {
    transform: scale(1.06);
}

.index_news_right .slide-item .text {
    background-color: #ffffff;
    border-radius: 0 0 20px 20px;
    padding: 23px 20px 15px;
    position: relative;
}

.index_news_right .slide-item .text:after {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 30px;
    transition: all .3s linear;
}

.index_news_right .slide-item:hover .text:after {
    top: 60px;
}

.index_news_right .slide-item .text p {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 28px;
    height: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.index_news_right .dot {
    margin-top: 30px;
}

.index_news_right .dot .btn_box {
    float: left;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.index_news_right .dot .scroll {
    float: left;
    width: calc(100% - 130px);
    height: 3px;
    margin-top: 18px;
    position: relative;
}

.index_news_right .dot .scroll:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #cccccc;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.index_news_right .dot .btn_box .btn_ {
    width: 40px;
    height: 40px;
    border: 1px solid #333333;
    background-color: #ffffff;
    border-radius: 50%;
    background-image: url(../images/next_black.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-size: 18px;
}

.index_news_right .dot .btn_box .prev {
    margin-right: 13px;
    transform: rotate(180deg);
}

.index_news_right .dot .btn_box .btn_:hover {
    background-color: #333333;
    background-image: url(../images/next_white.svg);
}

.index_news_right .dot .btn_box .swiper-button-disabled {
    opacity: 0.3;
}

@media(max-width:1580px) {
    .index_news_right {
        float: right;
        width: calc(100% - 506px);
    }

}

@media(max-width:1579px) {
    .index_news .m_poab .pd {
        max-width: calc(1300px + 220px);
    }

    .index_news_right {
        width: calc(100% - 544px);
    }

}

@media(max-width:1439px) {
    .index_news_right {
        width: calc(100% - 500px);
    }

}

@media(max-width:1365px) {
    .index_news .m_poab .pd {
        max-width: calc(1200px + 220px);
    }

}

@media(max-width:1280px) {
    .index_news_left {
        padding-bottom: 50px;
    }

}

@media(max-width:1279px) {
    .index_news .m_poab .pd {
        max-width: calc(1100px + 220px);
    }

    .index_news_right {
        width: calc(100% - 520px);
    }

}

@media(max-width:1199px) {
    .index_news_left {
        width: 340px;
        padding-bottom: 50px;
    }

    .index_news .m_poab .pd {
        max-width: 100%;
        padding: 0;
    }

    .index_news_right {
        width: calc(100% - 550px);
    }

}

@media(max-width:1100px) {
    .index_news_left {
        width: 340px;
        padding-bottom: 70px;
    }

    .index_news_right {
        width: calc(100% - 520px);
    }

}

@media(max-width:991px) {
    .index_news_left {
        padding-bottom: 50px;
    }

    .index_news_right {
        width: calc(100% - 400px);
    }

}

@media(max-width:768px) {
    .index_news_left {
        width: 100%;
    }

    .index_news_left {
        padding-bottom: 20px;
    }

    .index_news_right {
        float: left;
        width: 100%;
    }

    .index_news .m_poab {
        position: relative;
    }

    .index_news .m_poab .pd {
        max-width: 100%;
        padding-left: 20px;
    }

    .index_news_right {
        margin-top: 20px;
    }

    .index_news {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .index_news_left .t2 p {
        line-height: 32px;
    }

    .index_news_left .t3 {
        margin-top: 0px;
    }

    .index_news_left .public_more {
        margin-top: 10px;
    }

}

/*首页新闻列表*/
.index_zixun {
    background-image: url(../images/index_news_list_bg.jpg);
    padding: 44px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.index_zixun .tit p {
    float: left;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 28px;
}

.index_zixun .tit .public_more {
    float: right;
}

.index_zixun .cont .list {
    padding-top: 20px;
    margin: -4px -60px;
}

.index_zixun .cont .list .i {
    float: left;
    width: 33.33%;
    padding: 4px 60px;
}

.index_zixun .cont .list .i a {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 15px;
    position: relative;
}

.index_zixun .cont .list .i a:hover {
    color: var(--main-color);
}

.index_zixun .cont .list .i a:after {
    content: '';
    width: 6px;
    height: 6px;
    background: #333333;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.index_zixun .cont .list .i a:hover:after {
    background-color: var(--main-color);
}

@media(max-width:1200px) {
    .index_zixun .cont .list .i {
        width: 50%;
    }

}

@media(max-width:768px) {
    .index_zixun .cont .list .i {
        width: 100%;
    }

}

/*footer*/
footer {
    padding-top: 35px;
    background-color: #212121;
}

footer .up_ .list {
    display: flex;
}

footer .up_ .list .i {
    float: left;
}

footer .up_ .list .i.ewm {
    width: 40%;
}

footer .up_ .list .i.link_ {
    width: 30%;
}

footer .up_ .list .i.contact_ {
    width: 30%;
}

footer .up_ .list .i:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, .2);
}

footer .up_ .list .i .t {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 26px;
}

footer .up_ .list .ewm .con {
    padding-top: 20px;
}

footer .up_ .list .ewm .img_i {
    float: left;
    margin-right: 20px;
}

footer .up_ .list .ewm .img_i img {
    width: 80px;
    height: 80px;
}

footer .up_ .list .ewm .img_i p {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    line-height: 26px;
    text-align: center;
}

footer .up_ .list .link_ .con a {
    float: left;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    line-height: 26px;
    width:50%;
}

footer .up_ .list .link_ .con_box {
    max-width: 260px;
    margin: 0 auto;
}

footer .up_ .list .link_ .con {
    padding-top: 20px;
}

footer .up_ .list .contact_ .con_box {
    float: right;
}

footer .up_ .list .contact_ .con {
    padding-top: 20px;
}

footer .up_ .list .contact_ .con .con_i:after {
    content: '';
    display: block;
    clear: both;
}

footer .up_ .list .contact_ .con .con_i .icon {
    width: 14px;
    float: left;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .up_ .list .contact_ .con .con_i p {
    float: left;
    width: calc(100% - 14px);
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    line-height: 30px;
    padding-left: 15px;
}

footer .up_ .list .contact_ .con .con_i p a {
    color: inherit;
    font-size: inherit;
}

footer .up_ {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

footer .down_ {
    padding: 15px 0;
}

footer .down_>a {
    float: left;
    width: 150px;
    opacity: .7;
}

footer .down_ .r_ {
    float: right;
    text-align: right;
}

footer .down_ .r_ span, footer .down_ .r_ a {
    font-size: 14px;
    font-weight: 300;
    color: #999999;
    line-height: 30px;
}

@media(max-width:1660px) {
    footer .up_ .list .i.ewm {
        width: 50%;
    }

    footer .up_ .list .i.link_ {
        width: 25%;
        padding-left: 15px;
    }

    footer .up_ .list .i.contact_ {
        width: 25%;
        padding-left: 15px;
    }

}

@media(max-width:1200px) {
    footer .up_ .list {
        display: block;
    }

    footer .up_ .list .i {
        height: auto;
        margin-bottom: 30px;
    }

    footer .up_ .list .i:not(:first-child) {
        border-left: none;
    }

    footer .up_ .list .i.ewm {
        width: 100%;
    }

    footer .up_ .list .i.link_ {
        width: 100%;
        padding-left: 0;
    }

    footer .up_ .list .link_ .con_box {
        margin: 0;
    }

    footer .up_ .list .i.contact_ {
        width: 100%;
        padding-left: 0;
        margin-bottom: 0;
    }

    footer .up_ .list .contact_ .con_box {
        float: left;
    }

}

@media(max-width:768px) {
    footer {
        padding-top: 25px;
    }

    footer .up_ .list .i {
        margin-bottom: 20px;
    }

    footer .up_ .list .link_ .con_box {
        max-width: 100%;
    }

    footer .up_ .list .ewm .img_i {
        margin-right: 0;
        width: 33.33%;
        text-align: center;
        margin-bottom: 0;
    }
    footer .up_ {
        padding-bottom: 15px;
    }
    footer .down_ .r_ {
        width: 100%;
        text-align: left;
    }
    footer .up_ .list .contact_ .con .con_i .icon {
        height: 22px;
    }
    footer .up_ .list .contact_ .con .con_i p {
        line-height: 22px;
    }

    footer .up_ .list .link_ .con {
        padding-top: 20px;
    }

    footer .down_ {
        padding: 10px 0;
    }
    footer .down_ .r_ span, footer .down_ .r_ a {
    font-size: 12px;
    line-height: 24px;
}

}

/*right*/
.right_nav {
    position: fixed;
    right: 5px;
    bottom: 15%;
    z-index: 99;
}

.back-top {
    display: none;
}

.right_nav ul li {
    width: 42px;
    height: 42px;
    background: var(--black-color);
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.right_nav ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

.right_nav ul li .hide {
    position: absolute;
    right: calc(100% + 10px);
    top: -30%;
    width: 185px;
    padding: 15px 28px;
    background-color: var(--main-color);
    opacity: 0;
    justify-content: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 10%);
}

.right_nav ul li .hide:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-left-color: var(--main-color);
    right: -20px;
    bottom: 26px;
}

.right_nav ul li .hide a {
    color: #ffffff;
    font-size: 18px;
}

.right_nav ul li:hover {
    overflow: visible;
    background: var(--main-color);
}

.right_nav ul li:hover .hide {
    opacity: 1;
    z-index: 8;
}

.right_nav  a.phone {
    background-image: url(../images/phone.svg);
}

.right_nav .mess a {
    background-image: url(../images/mess.svg);
}

.right_nav .back-top a {
    background-image: url(../images/top.svg);
}

@media screen and (max-width:768px) {
    .right_nav ul li {
        width: 36px;
        height: 36px;
    }

    .right_nav ul li a {
        background-size: 18px 18px;
    }

}

@media screen and (max-width:767px) {
    .right_nav {
        bottom: 10px;
    }

}

/*page side*/
.height100 {
    height: 100px;
}

.page_head {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.page_ban {
    text-align: center;
}

header.page_head nav>a span {
    color: var(--black-color);
}

header.page_head nav>a:hover span, header.page_head nav>a.active span {
    color: var(--main-color);
}

header.page_head nav>a span:after {
    background-color: var(--main-color);
}

header.page_head .circle34 {
    background-color: var(--black-color);
}

header.page_head .search_btn {
    background-image: url(../images/search_icon_white.svg);
}

header.page_head .nav_btn_m {
    background-image: url(../images/nav_btn_m_white.svg);
}

.two_menu {
    padding-top: 50px;
}

.two_menu ul {
    margin-left: -13px;
    margin-right: -13px;
}

.two_menu ul li {
    float: left;
    padding: 13px;
    padding-top: 0;
}

.two_menu a {
    height: 44px;
    width: 120px;
    text-align: center;
    border-radius: 40px;
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 44px;
    color: var(--black-color);
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.two_menu a::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #DDDDDD;
    transform-origin: center right;
    transform: scaleX(0);
    transition: transform 0.25s ease-in-out;
}

.two_menu .active a {
    color: #ffffff;
    border-color: var(--main-color);
}

.two_menu .active a:before {
    transform-origin: center left;
    transform: scaleX(1);
    background-color: var(--main-color);
}

@media screen and (min-width:768px) {
    .two_menu a:hover::before {
        transform-origin: center left;
        transform: scaleX(1);
        background-color: #DDDDDD;
    }

    .two_menu a:hover {
        color: #333;
        border-color:#DDDDDD;
    }

}

@media screen and (max-width:1200px) {
    .height100 {
        height: 60px;
    }

}

@media screen and (max-width:1200px) {
    .two_menu {
        padding-top: 20px;
    }

    .two_menu ul {
        margin-left: -3px;
        margin-right: -3px
    }

    .two_menu ul li {
        width: 16.66%;
        padding: 5px 3px;
    }

    .two_menu a {
        height: 36px;
        line-height: 36px;
        width: 100%;
    }

}

@media screen and (max-width:768px) {
    .two_menu ul li {
        width: 33.33%;
    }

    .two_menu a {
        overflow: hidden;
    }

    .two_menu .active a {
        border: 1px solid var(--main-color);
        background-color: var(--main-color);
    }

    .two_menu .active a:before {
        display: none;
    }

}

/*about*/
.bgf5 {
    background-color: #F5F5F5;
}

.white_bg {
    background-color: #ffffff;
}

.about_top {
    width: 100%;
    padding-top: 140px;
    padding-bottom: 150px;
    background-image: url(../images/about_bg01.png);
    background-position: center bottom;
    background-repeat: no-repeat;
}

.about_top .l_ {
    flex: 1;
}

.about_top .r_ p {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    color: var(--black-color);
    padding: 15px 0;
}

.red {
    color: var(--main-color);
}

.about_two {
    padding: 120px 0;
    overflow: hidden;
    width: 100%;
}

.about_two .l_ {
    float: left;
    width: 40%;
    padding-right: 30px;
}

.about_two .r_ {
    width: 60%;
    float: right;
    max-width: 700px;
}

.about_two .l_ h3 {
    font-weight: 700;
    line-height: 1.1;
}

.about_two .l_ h3 em {
    font-family: 'Roboto';
    color: var(--main-color);
    font-style: normal;
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    display: inline-block;
    margin-right: 4px;
    vertical-align: sub;
}

.about_two .l_ h3 strong {
    margin-right: 4px;
}

.about_two .l_ p {
    padding-top: 20px;
}

.about_two .r_ p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #333333;
    padding-bottom: 25px;
}

.about_two .r_ p:last-child {
    padding-bottom: 0;
}

.about_map {
    padding-top: 130px;
    padding-bottom: 110px;
}

.about_map .left {
    float: left;
    width: 45%;
    padding-right: 20px;
}

.about_map .right {
    float: right;
    width: 55%;
    padding-left: 10px;
}

.about_three {
    background-image: url(../images/about_bg02.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.about_loop {
    padding-top: 60px;
}

.about_loop .swiper-slide {
    padding-top: 20px;
}

.about_loop .bg {
    height: 570px;
    background: #FFFFFF;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    padding: 45px 20px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.about_loop .bg:hover {
    transform: translateY(-10px);
}

.about_loop .bg .img {
    max-width: 180px;
    margin: 0 auto;
}

.about_loop .bg .name {
    font-weight: 400;
    padding-top: 38px;
    font-size: 20px;
    line-height: 24px;
    color: var(--black-color);
}

.about_loop .bg .scoll {
    margin-top: 18px;
    max-height: 224px;
    overflow-y: auto;
}

.about_loop .bg .scoll p {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: var(--black-color);
}

.scoll::-webkit-scrollbar {
    width: 4px;
    height: 2px
}

.scoll::-webkit-scrollbar-button:vertical {
    display: none
}

.scoll::-webkit-scrollbar-corner, .scoll::-webkit-scrollbar-track {
    background-color: #ccc;
}

.scoll::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--main-color);
}

.scoll::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #016EC5;
}

.scoll::-webkit-scrollbar-thumb:vertical:active {
    background-color: #016EC5;
}

@media screen and (min-width:768px) {
    .about_loop .swiper-wrapper {
        transform: inherit !important;
    }

}

@media screen and (max-width:1440px) {
    .about_two {
        padding: 100px 0;
    }

}

@media screen and (max-width:1366px) {
    .about_two {
        padding: 80px 0;
    }

    .about_top {
        padding-top: 100px;
        padding-bottom: 100px;
    }

}

@media screen and (max-width:1200px) {
    .about_top .r_ p {
        font-size: 26px;
    }

    .about_two .l_ h3 em {
        font-size: 70px;
    }

}

@media screen and (max-width:991px) {
    .about_top {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .about_two {
        padding: 60px 0;
    }

    .about_two .l_ {
        width: 45%;
        padding-right: 30px;
    }

    .about_two .r_ {
        width: 55%;
    }

    .about_two .l_ h3 em {
        font-size: 65px;
    }

    .about_top .r_ p {
        font-size: 24px;
    }

}

@media screen and (max-width:767px) {
    .about_top {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .about_top .l_ {
        max-width: 320px;
    }

    .about_top .r_ {
        padding-top: 30px;
    }

    .about_top .r_ p {
        font-size: 22px;
        line-height: 1.4;
    }

    .about_two {
        padding: 40px 0;
    }

    .about_two .l_ {
        width: 100%;
        padding-right: 0;
    }

    .about_two .r_ {
        width: 100%;
        max-width: 100%;
        padding-top: 30px
    }

    .about_two .l_ p {
        padding-top: 10px;
    }

    .about_two .l_ h3 em {
        font-size: 50px;
    }

    .about_two .r_ p {
        line-height: 28px;
        padding-bottom: 15px;
        text-align: justify;
    }

    .about_map {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .about_map .left {
        width: 100%;
        padding-right: 0;
        padding-top: 30px;
    }

    .about_map .right {
        width: 100%;
        padding-left: 0px;
    }

}

/*wenhualinian*/
.idea_cont {
    padding: 80px 0 100px 0;
}

.idea_cont .idea_list {
    padding-top: 50px;
}

.idea_cont .idea_list ul {
    margin-left: -30px;
    margin-right: -30px;
}

.idea_cont .idea_list ul li {
    width: 20%;
    padding: 30px;
    float: left;
}

.idea_cont .idea_list .bg {
    height: 270px;
    width: 100%;
    background: #F5F5F5;
    border-radius: 20px;
    text-align: center;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.idea_cont .idea_list .bg .ico {
    height: 66px;
}

.idea_cont .idea_list .bg .ico img {
    height: 100%;
}

.idea_cont .idea_list .bg .ico img:nth-child(2) {
    display: none;
}

.idea_cont .idea_list .bg .title {
    font-weight: 400;
    line-height: 24px;
    color: #333333;
    padding-top: 30px;
}

.idea_cont .idea_list .bg:hover .title {
    color: #ffffff;
}

.idea_cont .idea_list .bg::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform-origin: center right;
    transform: scaleX(0);
    transition: transform 0.35s ease-in-out;
    background-color: var(--main-color);
}

.idea_cont .idea_list .bg:hover::before {
    transform-origin: center left;
    transform: scaleX(1);
}

.idea_cont .idea_list .bg:hover .ico img:nth-child(1) {
    display: none;
}

.idea_cont .idea_list .bg:hover .ico img:nth-child(2) {
    display: inline-block;
}

.idea_bgtwo {
    background-image: url(../images/idea_bg01.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.army_rules {
    position: relative;
    padding-bottom: 70px;
}

.idea_bgtwo .rulue_but {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    bottom: -10px;
    border-radius: 50%;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.idea_bgtwo .rulus_prev {
    background-image: url(../images/black_l.svg);
}

.idea_bgtwo .rulus_next {
    margin-left: 52px;
    background-image: url(../images/black_r.svg);
}

.idea_bgtwo .rulue_but:hover {
    background-color: var(--black-color);
}

.idea_bgtwo .rulus_prev:hover {
    background-image: url(../images/white_l.svg);
}

.idea_bgtwo .rulus_next:hover {
    background-image: url(../images/white_r.svg);
}

.army_rules .swiper-container {
    height: 480px;
}

.army_rules .swiper-pagination {
    bottom: 0px;
}

.army_rules .swiper-pagination span {
    background: #666666;
    opacity: 1;
    margin: 0 5px;
}

.army_rules .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 10px;
}

.army_rules .swiper-slide {
    height: 120px;
}

.army_rules .t {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
}

.army_rules .d {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    height: 56px;
    overflow-y: auto;
    color: #333333;
    margin-top: 10px;
    margin-bottom: 32px;
}

/*team*/
.idea_two {
    padding-bottom: 96px;
}

.c_team {
    margin-top: 80px;
    border-radius: 20px;
    background-image: url(../images/team_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.c_team .swiper-slide {
    height: 100%;
}

.c_team .c_team_list {
   
    max-width: 100%;
    height: 483px;
    padding: 100px 40px 30px 50px;
    border-right: 1px solid #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.c_team .c_team_list:last-child {
    border-right: none;
}

.c_team .c_team_list .t {
    font-weight: 700;
    line-height: 32px;
    color: var(--black-color);
}

.c_team .c_team_list .des {
    margin-top: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    color: #333333;
    padding-right: 10px;
    max-height: 260px;
    overflow-y: auto;
}

.c_team .c_team_list .des p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
}

.idea_two .l_ {
    width: 100%;
    padding-right: 0;
}

.idea_two .des {
    padding-top: 18px;
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #666666;
}
.idea_two .des p {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}
.pt80 {
    padding-top: 80px;
}

.sale_list:first-child {
    padding-right: 17px;
}

.sale_list:nth-child(2) {
    padding-left: 17px;
}

.sale_list {
    width: 50%;
    float: left;
}

.sale_list .loop {
    height: 80px;
    width: 100%;
    display: flex;
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 35px;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.sale_list .loop span:nth-child(2) {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #333333;
    flex: 1;
    padding-right: 20px;
    padding-left: 30px;
}

.sale_list .loop .number {
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 30px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.idea_fa_swp {
    margin-top: 75px;
}

.idea_fa_swp .swiper-wrapper {
    -webkit-transition-timing-function: linear; /*之前是ease-out*/
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

.idea_fa_swp .swiper-slide {
    width: auto;
}

.idea_bottom {
    padding-bottom: 100px;
}

.idea_bottom .xsbg {
    background-image: url(../images/idea_title.png);
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 68px 60px 65px 0;
}

.sale_list .loop .number:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 0;
    top: 0;
    left: -80%;
    padding-bottom: 200%;
    background: var(--main-color);
    border-radius: 50%;
    z-index: -1;
}

.c_team {
    position: relative;
}

.c_team .culture_but {
    position: absolute;
    display: none;
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 9;
}

.c_team .prev {
    right: 65px;
    background-image: url(../images/black_l.svg);
}

.c_team .next {
    background-image: url(../images/black_r.svg);
}

.c_team .culture_but:hover {
    background-color: var(--black-color);
}

.c_team .prev:hover {
    background-image: url(../images/white_l.svg);
}

.c_team .next:hover {
    background-image: url(../images/white_r.svg);
}

@media screen and (min-width:768px) {
    .c_team .c_teamu {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .sale_list .loop:before {
        content: "";
        position: absolute;
        left: 0;
        width: 0;
        height: 100%;
        background-color: var(--main-color);
        z-index: -1;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
    }

    .sale_list .loop:hover:before {
        width: 100%;
    }

    .sale_list .loop:hover span:nth-child(2) {
        color: #ffffff;
    }

    .c_team .c_team_list::before {
        content: '';
        z-index: -1;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--main-color);
        transform-origin: center right;
        transform: scaleX(0);
        transition: transform 0.25s ease-in-out;
    }

.c_team .c_team_list {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;

}
    .c_team .c_team_list:hover {
        cursor: pointer;
    }

    .c_team .c_team_list:hover::before {
        transform-origin: center left;
        transform: scaleX(1);
    }

    .c_team .c_team_list:hover .t, .c_team .c_team_list:hover .des {
        color: #ffffff;
    }

}

@media screen and (max-width:1440px) {
    .idea_cont {
        padding: 70px 0 90px 0;
    }

    .idea_cont .idea_list ul li {
        padding: 30px 25px;
    }

}

@media(max-width:1366px) {
    .idea_cont {
        padding: 70px 0 80px 0;
    }

    .idea_bottom {
        padding-bottom: 80px;
        padding-top: 100px
    }

    .idea_cont .idea_list ul li {
        padding: 30px 20px;
    }

    .c_team .c_team_list {
        padding: 100px 3% 30px 3%;
    }

}

@media(max-width:1279px) {
    .idea_cont {
        padding: 60px 0 70px 0;
    }

    .idea_bottom {
        padding-bottom: 80px;
        padding-top: 100px
    }

    .idea_cont .idea_list ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .idea_cont .idea_list ul li {
        padding: 30px 15px;
    }

    .c_team .c_team_list {
        padding: 70px 20px 30px 20px;
    }

    .sale_list .loop .number {
        font-size: 28px;
    }

    .idea_bottom .swiper-slide img {
        max-height: 400px;
    }

}

@media screen and (max-width:991px) {
    .sale_list .loop .number {
        font-size: 22px;
    }

    .idea_cont .idea_list .bg .ico {
        height: 56px;
    }

    .idea_cont .idea_list .bg {
        height: 200px;
        padding-top: 40px;
    }

    .army_rules .swiper-container {
        height: 360px;
    }

}

@media screen and (max-width:767px) {
    .idea_cont {
        padding: 40px 0 40px 0;
    }

    .pt80 {
        padding-top: 40px;
    }

    .sale_list {
        width: 100%;
        padding: 0 !important;
    }

    .idea_bgtwo .rulue_but {
        right: 0;
        left: inherit;
        bottom: 0;
    }

    .idea_bgtwo .rulus_prev {
        margin-right: 55px;
    }

    .idea_cont .idea_list {
        padding-top: 30px;
    }

    .idea_two {
        padding-bottom: 40px;
    }

    .idea_cont .idea_list ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .idea_cont .idea_list ul li {
        width: 33.33%;
        padding: 10px 10px;
    }

    .idea_cont .idea_list .bg {
        height: 150px;
        padding-top: 30px;
    }

    .sale_list .loop span:nth-child(2) {
        line-height: 28PX;
    }

    .idea_cont .idea_list .bg .ico {
        height: 35px;
    }

    .idea_cont .idea_list .bg .title {
        padding-top: 20px;
    }

    .sale_list .loop {
        margin-bottom: 25px;
    }

    .sale_list .loop .number {
        font-size: 22px;
        width: 60px;
    }
    .c_team_list:hover {
        background-color: var(--main-color);
    }
    .c_team_list:hover .t,.c_team .c_team_list:hover .des {
        color: #fff;
    }
    .idea_bottom .swiper-slide img {
        max-height: 300px;
    }

    .army_rules .swiper-pagination {
        display: none
    }

    .army_rules {
        padding-bottom: 50px;
    }

    .army_rules .swiper-container {
        height: 100%;
    }

    .army_rules .swiper-slide {
        height: 100%;
        width: 100%;
    }

    .army_rules .d {
        height: auto;
    }

    .c_team {
        margin-top: 40px;
        border-radius: 20px;
        background-image: none;
        background: #F6F6F6;
    }

    .c_team .culture_but {
        display: inline-block;
    }

    .c_team .c_team_list {
        padding: 40px 30px 70px 30px;
        height: 344px;
        width: 100%;
        border-right: none;
        border-radius: 0;
        overflow: hidden;
    }

    .c_team .c_team_list .des {
        max-height: inherit;
        margin-top: 20px;
        width: 100%;
    }

    .idea_fa_swp {
        margin-top: 45px;
    }

    .sale_list .loop span:nth-child(2) {
        font-size: 16px;
    }

}

@media screen and (max-width:374px) {
    .idea_cont .idea_list ul li {
        width: 50%;
    }

    .sale_list .loop .number {
        font-size: 20px;
        width: 50px;
    }

}

/*honor*/
.bgf {
    background: #F5F5F5;
}

.bgw {
    background: #ffffff;
}
.pb50 {
    padding-bottom: 30px;
}
.honor_one .honor_text {
    position: relative;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    margin-top: 45px;
    padding-top: 30px;
}

.honor_one .honor_text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 1px;
    background: #CCCCCC;
}

.about_two .r_  .honor_t p {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    position: relative;
    padding-left: 20px;
}

.about_two .r_  .honor_t p:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    left: 0;
    top: 9px;
    border-radius: 50%;
    background: var(--main-color);
}

.honor_cont {
    width: 100%;
    background-image: url(../images/honor_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0;
    overflow: hidden;
}

.honor_cont .m_dw {
    position: relative;
    height: 100%;
    z-index: 9;
}

.honor_cont .honor_l {
    float: left;
    width: 288px;
    padding-bottom: 16%;
}

.honor_cont .honor_r .swiper-slide {
    cursor: pointer;
}

.honor_cont .m_about_smsub {
    color: var(--black-color);
    font-weight: 700
}

.honor_cont .honor_l .honor_text {
    margin-top: 30px;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    margin-bottom: 50px;
}

.honor_cont .honor_r .bg {
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    border: 1px solid rgba(0, 0, 0, 0.2000);
    padding: 13px 10px;
}

.honor_cont .honor_r p {
    margin-top: 15px;
    font-size: 16px
}

.mhonor-btn {
    width: 40px;
    height: 40px;
    float: left;
    outline: 0;
    cursor: pointer;
    border: 1px solid #333333;
    border-radius: 50%;
}

.honor-button-next {
    margin-left: 12px;
}

.mhonor-btn i {
    width: 100%;
    height: 100%;
    display: inline-block;
    background-size: 8px 15px;
    background-repeat: no-repeat;
    background-position: center;
}

.honor-button-prev i {
    background-image: url(../images/black_l.svg);
}

.honor-button-next i {
    background-image: url(../images/black_r.svg);
}

.mhonor-btn:hover {
    background-color: var(--black-color);
}

.honor-button-prev:hover i {
    background-image: url(../images/white_l.svg);
}

.honor-button-next:hover i {
    background-image: url(../images/white_r.svg);
}

.case-swp-tc-close {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 40px;
    top: 20px;
    z-index: 11;
    cursor: pointer;
    background-image: url(../images/tc_close.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
}

.case-swp-tc {
    position: fixed;
    z-index: 1111;
    width: 100vw;
    height: 100vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, .8);
    display: none;
}

.case-swp-tc .swiper-container {
    transform: scale(0);
    transition: transform .6s;
}

.case-swp-tc .swiper-slide {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-swp-tc .swiper-slide div {
    text-align: center;
}

.case-swp-tc .swiper-slide img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
}

.case-swp-tc .swiper-slide p {
    color: #ffffff;
    font-weight: bold;
    width: 100%;
    text-align: center;
    padding-top: 15px;
}

.case-swp-tc .tc-btn {
    position: absolute;
    width: 50px;
    height: 100px;
    z-index: 11;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    outline: 0;
    background-size: 80%;
    opacity: .3;
}

.case-swp-tc .tc-btn:hover {
    opacity: 1;
}

.case-swp-tc .tc-prev {
    left: 50px;
    background-image: url(../images/tc_left.png);
}

.case-swp-tc .tc-next {
    right: 50px;
    background-image: url(../images/tc_right.png);
}

.honor_cont .honor_r .swiper-slide .bg img {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.honor_cont .honor_r .swiper-slide:hover .bg img {
    transform: scale(1.03)
}

.honor_cont .honor_r .swiper-slide:hover p {
    color: var(--main-color);
}

.honor_r  .scroll {
    float: left;
    width: 100%;
    height: 3px;
    margin-top: 30px;
    position: relative;
}

.honor_r  .scroll:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #cccccc;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.honor_cont .m_poab {
    width: 100%;
    right: 0;
    top: 0;
}

.honor_cont .m_poab .pd {
    float: right;
    margin: inherit;
    padding-left: 0;
    max-width: calc(1440px + 220px);
}

.honor_cont .honor_r {
    float: right;
    width: calc(100% - 440px);
}

@media(max-width:1580px) {
    .honor_cont .honor_l {
        padding-bottom: 12%;
    }

    .honor_cont .honor_r {
        float: right;
        width: calc(100% - 506px);
    }

}

@media(max-width:1579px) {
    .honor_cont .honor_l {
        padding-bottom: 10%;
    }

    .honor_cont .m_poab .pd {
        max-width: calc(1300px + 220px);
    }

    .honor_cont .honor_r {
        width: calc(100% - 544px);
    }

}

@media(max-width:1440px) {
    .honor_cont .honor_l {
        padding-bottom: 8%;
    }

}

@media(max-width:1439px) {
    .honor_cont .honor_r {
        width: calc(100% - 500px);
    }

}

@media(max-width:1365px) {
    .honor_cont .m_poab .pd {
        max-width: calc(1200px + 220px);
    }

}

@media(max-width:1280px) {
    .honor_cont .honor_r {
        padding-bottom: 50px;
    }

}

@media(max-width:1279px) {
    .honor_cont .m_poab .pd {
        max-width: calc(1100px + 220px);
    }

    .honor_cont .honor_r {
        width: calc(100% - 520px);
    }

}

@media(max-width:1199px) {
    .honor_cont .m_poab .pd {
        max-width: 100%;
        padding: 0;
    }

    .honor_cont .honor_r {
        width: calc(100% - 550px);
    }

}

@media(max-width:1100px) {
    .honor_cont .honor_r {
        width: calc(100% - 420px);
    }

}

@media(max-width:991px) {
    .honor_cont .honor_r {
        width: calc(100% - 400px);
    }

}

@media (max-width:768px) {
    .case-swp-tc-close {
        width: 30px;
        height: 30px;
        right: 20px;
        top: 5%;
    }

    .case-swp-tc .tc-btn {
        width: 30px;
        height: 60px;
        opacity: 1;
    }

    .case-swp-tc .swiper-slide p {
        font-size: 16px;
    }

    .case-swp-tc .tc-prev {
        left: 10px;
    }

    .case-swp-tc .tc-next {
        right: 10px;
    }

    .case-swp-tc .swiper-slide div {
        padding: 0 30px;
    }

    .honor_cont {
        padding: 80px 0;
        padding-bottom: 60px;
    }

    .honor_cont .honor_r {
        width: calc(100% - 350px);
    }

}

@media (max-width:767px) {
    .honor_cont {
        padding: 50px 0;
    }

    .honor_cont .m_poab {
        position: inherit;
        float: left;
        padding-left: 20px
    }

    .honor_cont .honor_r {
        width: 100%;
        padding-bottom: 20px;
    }

    .mhonor-btn {
        width: 35px;
        height: 35px;
    }

}

/*fengcaizhanshi*/
.view_one {
    padding-top: 87px;
    padding-bottom: 117px;
}

.public_tab {
    text-align: right;
}

.public_tab .tab-nav {
    display: flex;
    justify-content: flex-end;
}

.public_tab .nav-item {
    width: auto;
    padding: 0 28px;
    height: 44px;
    line-height: 44px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 30px;
    margin-left: 30px;
}

.public_tab .nav-item {
    font-size: 16px;
    color: #666666;
    cursor: pointer;
}

.public_tab .nav-item:first-child {
    margin-left: 0;
}

.public_tab .nav-item.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.public_tab_cont {
    padding-top: 40px;
}

.public_tab_cont .pub-t1 {
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.public_tab_cont .pub-t1.d-show {
    z-index: 3;
    opacity: 1;
    height: auto;
    overflow: visible;
}

.view_loop .swiper-container {
    margin-left: -20px;
    margin-right: -20px;
}

.view_loop .swiper-container .swiper-slide {
    opacity: 0 !important;
}

.view_loop .swiper-container .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.view_loop .swiper-slide .view_img:first-child {
    width: 50%;
}

.view_loop .swiper-slide .view_img {
    width: 25%;
}

.view_img {
    float: left;
    padding: 16px 20px;
}

.view_img .dw {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.view_img .dw a {
    width: 100%;
    height: 100%;
    display: inline-block;
    overflow: hidden;
}

.view_img .pic {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.view_img .view_title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.view_img .view_title h3 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view_loop .swiper-slide .view_img .view_title {
    padding: 21px 26px;
}

.view_loop .swiper-slide .view_img:first-child .view_title {
    padding: 36px;
}

.view_button {
    position: absolute;
    width: 25%;
    right: 0;
    bottom: 0;
    padding: 16px 20px;
    z-index: 9;
}

.view_button .bg {
    background-color: var(--main-color);
    border-radius: 20px;
    background-image: url(../images/view_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.view_button .bg .button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
}

.view_button .bg .button div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 8px;
    border: 1px solid #FFFFFF;
    background-size: 8px 15px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.view-button-prev {
    background-image: url(../images/white_l.svg)
}

.view-button-next {
    background-image: url(../images/white_r.svg)
}

.view_img .pic {
    transition: all .3s;
}

.view_img .dw:hover .pic {
    transform: scale(1.03);
}

.view_l_bg {
    background-image: url(../images/view_bg2.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pt70 {
    margin-top: 53px;
}

.view_cont {
    padding-bottom: 112px;
}

@media(max-width:1366px) {
    .view_one {
        padding-top: 77px;
        padding-bottom: 80px;
    }

    .view_cont {
        padding-bottom: 80px;
    }

}

@media(max-width:991px) {
    .view_one .l_ {
        width: 270px;
    }

    .view_loop .swiper-container {
        margin-left: -10px;
        margin-right: -10px;
    }

    .view_img {
        padding: 8px 10px;
    }

    .view_button {
        padding: 8px 10px;
    }

    .view_loop .swiper-slide .view_img:first-child .view_title {
        padding: 20px 20px;
    }

    .view_loop .swiper-slide .view_img .view_title {
        padding: 10px 20px;
    }

    .view_img .view_title h3 {
        overflow: hidden;
        white-space: inherit;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

}

@media(max-width:767px) {
    .pt70 {
        margin-top: 40px;
    }

    .public_tab_cont {
        padding-top: 20px;
    }

    .view_one {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .view_cont {
        padding-bottom: 40px;
    }

}

@media(max-width:640px) {
    .public_tab .tab-nav {
        display: block;
        width: 100%;
    }

    .public_tab .nav-item {
        width: calc(33.33% - 10px);
        padding: 0 5px;
        margin: 5px;
        text-align: center;
        float: left;
    }

    .view_loop .swiper-slide .view_img:first-child {
        width: 100%;
    }

    .view_loop .swiper-slide .view_img {
        width: 50%;
    }

    .view_button {
        width: 50%;
    }

    .view_loop .swiper-slide .view_img .view_title {
        padding: 10px 15px;
    }

}

@media(max-width:374px) {
    .public_tab .nav-item {
        width: calc(50% - 10px);
    }

    .view_img .view_title h3 {
        font-size: 15px;
    }

}

/*page*/
.paged {
    text-align: center;
    padding: 50px 0;
    padding-top: 35px;
}

.paged ul {
    display: flex;
    justify-content: center;
}

.paged ul li {
    line-height: 36px;
    padding: 0 5px;
}

.paged ul li a, .paged ul li span {
    min-width: 45px;
    height: 46px;
    display: inline-block;
    line-height: 46px;
    background: #ffffff;
    padding: 0 18px;
    font-size: 16px;
    color: #333;
    border-radius: 8px;
}

.paged ul li span:hover, .paged ul li a:hover, .paged ul li.active a, .paged ul li.active span {
    background: var(--main-color);
    color: #fff;
}

@media(max-width:768px) {
    .paged {
        padding: 30px 0;
    }

    .paged ul li a, .paged ul li span {
        font-size: 14px;
        padding: 0 10px;
    }

}

@media(max-width:767px) {
    .paged ul {
        display: block;
    }

    .paged ul li {
        display: inline-block;
        padding: 0 3px;
        padding-bottom: 5px;
    }

    .paged ul li {
        line-height: 40px;
    }

    .paged ul li a, .paged ul li span {
        height: 40px;
        line-height: 40px;
        min-width: 35px;
    }

}

/*new*/
.new_o_list {
    padding-top: 70px;
}

.new_o_list ul {
    margin-left: -15px;
    margin-right: -15px;
}

.new_o_list ul li {
    width: 33.33%;
    padding: 15px;
    float: left;
}

.new_o_list ul li a {
    border-radius: 20px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.new_o_list .new_up {
    position: relative;
    overflow: hidden;
}

.new_o_list .new_up .pic {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.new_o_list .new_down {
    padding: 40px 30px;
}

.new_down .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    height: 56px;
    color: #333333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new_down .time {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #999999;
    padding-top: 20px;
}

.new_o_list a:hover .new_up .pic {
    transform: scale(1.03);
}

.new_o_list a:hover .new_down {
    background-color: var(--main-color);
}

.new_o_list a:hover .title, .new_o_list a:hover .time {
    color: #fff;
}

@media(min-width:768px) {
    .new_o_list .new_down {
        transition: all .3s;
    }

}

@media(max-width:1366px) {
    .new_o_list {
        padding-top: 50px;
    }

}

@media(max-width:991px) {
    .new_o_list {
        padding-top: 40px;
    }

    .new_o_list .new_down {
        padding: 30px 20px;
    }

    .new_down .title {
        font-size: 18px;
    }

}

@media(max-width:767px) {
    .new_o_list {
        padding-top: 15px;
    }

    .new_o_list .new_down {
        padding: 20px 20px;
    }

    .new_down .title {
        font-size: 18px;
    }

}

@media(max-width:640px) {
    .new_o_list ul li {
        width: 50%;
    }

}

@media(max-width:540px) {
    .new_o_list ul li {
        width: 100%;
    }

}

/*industry*/
.trade_cont {
    padding: 80px 0 100px 0;
}

.trade_cont .trade_r {
    width: 50%;
    padding-left: 15px;
    float: right;
}

.trade_cont .trade_r .bg {
    width: 100%;
    height: 729px;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 65px 50px;
}

.trade_cont .trade_r .bg ._cont {
    width: 100%;
    height: 100%;
    position: relative;
}

.trade_cont .m_poab {
    width: 50%;
    height: 100%;
    right: 50%;
    padding-right: 15px;
}

.trade_cont .m_poab .pd {
    height: 100%;
}

.trade_cont .left_bg {
    width: 100%;
    height: 100%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-repeat: no-repeat;
    background-size: cover;
}

#indusry {
    margin-top: 50px;
}

#indusry .swiper-slide {
    height: 52px;
}

#indusry .swiper-slide .time {
    font-family: 'Robotox';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #999999;
}

#indusry .swiper-slide .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333333;
    padding-left: 20px;
    position: relative;
}

#indusry .swiper-slide .title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background: #333333;
}

#indusry .swiper-slide a:hover .title {
    color: var(--main-color);
}

#indusry .swiper-slide a:hover .title:before {
    background: var(--main-color);
}

#indusry {
    width: 100%;
    height: calc(100% - 100px);
}

#indusry .swiper-slide {
    border-bottom: 1px solid #DDDDDD;
    padding-top: 5px;
}

.trade_cont .trade_r .bg ._cont .button {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
}

.trade_cont .trade_r .bg ._cont .button div {
    border: 1px solid #333333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    opacity: 1;
}

.trade_cont .trade_r .bg .button div.swiper-button-disabled {
    opacity: 0.5;
}

.trade_cont .trade_r .bg ._cont .button .in-button-next {
    margin-left: 13px;
}

.trade_cont .trade_r .bg ._cont .button .in-button-prev {
    background-image: url(../images/black_l.svg);
}

.trade_cont .trade_r .bg ._cont .button .in-button-next {
    background-image: url(../images/black_r.svg);
}

.trade_cont .trade_r .bg ._cont .button div:hover {
    background-color: var(--black-color);
}

.trade_cont .trade_r .bg ._cont .button .in-button-prev:hover {
    background-image: url(../images/white_l.svg);
}

.trade_cont .trade_r .bg ._cont .button .in-button-next:hover {
    background-image: url(../images/white_r.svg);
}

@media(max-width:1366px) {
    .trade_cont {
        padding: 60px 0 80px 0;
    }

}

@media(max-width:991px) {
    .trade_cont .trade_r .bg {
        height: 670px;
        padding: 40px 50px;
    }

    #indusry .swiper-slide .title {
        font-size: 18px;
    }

}

@media(max-width:767px) {
    #indusry {
        margin-top: 30px;
        height: calc(100% - 80px);
    }

    .trade_cont {
        padding: 30px 0 40px 0;
    }

    .trade_cont .m_poab {
        display: none !important;
    }

    .trade_cont .trade_r {
        width: 100%;
        padding-left: 0px;
        float: left;
    }

    .trade_cont .trade_r .bg {
        height: 540px;
        padding: 30px 30px 20px 30px;
    }

    .trade_cont .trade_r .bg ._cont .button div {
        width: 35px;
        height: 35px;
    }

}

/*service*/
#ser_two {
    background-image: url(../images/ser_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.ser_list {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.ser_list .ser_k {
    width: 100%;
    height: 100%;
}

.ser_list .ser_k .ser_loop {
    width: 25%;
    float: left;
    height: 100%;
    border-right: 2px solid #fff;
    padding-top: 13%;
    text-align: center;
}

.ser_loop .letter {
    padding: 0 30px;
}

.ser_loop .letter img {
    height: 300px;
}

.ser_loop .title {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.4;
    padding-top: 60px;
    color: #333333;
}

.ser_loop .eng {
    font-family: 'Roboto2';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #999999;
    padding-top: 8px;
}

.ser_loop .more {
    padding-top: 50px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #666666;
}

.ser_loop a:hover .title {
    color: var(--main-color);
}

.ser_loop a:hover .more {
    color: var(--main-color);
}

@media screen and (min-width:768px){

.ser_loop .more {
    display: none;
}

}

/*detail*/
.ser_one {
    background-color: #fff;
}

.ser_red_bg {
    position: relative;
    z-index: 1;
}

.ser_red_bg:before {
    content: "";
    background-image: url(../images/ser_bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 102%;
    z-index: -1;
}

.ser_red_bg:after {
    content: "";
    background-image: url(../images/ser_jt.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    background-position: center;
    right: -30px;
    top: 0;
    width: 32px;
    height: 100%;
    z-index: -1;
}

.ser_red_bg .title, .ser_red_bg .eng {
    color: #fff;
}

.more a.back_ser {
    background-image: url(../images/ser_back.svg);
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 27px;
    background-size: 20px 20px;
    color: #FFFFFF !important;
}

.ser_r_loop {
    position: relative;
    width: 75%;
    height: 100%;
    float: left;
}

.ser_r_loop .swiper-container {
    width: 100%;
    height: 100%;
}

.ser_r_loop .swiper-container .swiper-slide {
    height: 100%;
    border-right: 2px solid #EEEEEE;
}

.ser_r_loop .service_but {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 20px;
    border-radius: 50%;
    background-color: #EEEEEE;
    border: 1px solid #EEEEEE;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 9;
}

.ser_r_loop .prev {
    right: 60px;
    background-image: url(../images/black_l.svg);
}

.ser_r_loop .next {
    margin-left: 52px;
    background-image: url(../images/black_r.svg);
}

.ser_r_loop .service_but:hover {
    background-color: var(--black-color);
    border-color: var(--black-color);
}

.ser_r_loop .prev:hover {
    background-image: url(../images/white_l.svg);
}

.ser_r_loop .next:hover {
    background-image: url(../images/white_r.svg);
}

.ser_r_loop .cont {
    width: 100%;
    height: 100%;
    padding: 0 70px;
    padding-top: 28%;
}

.ser_r_loop .cont .top {
    width: 100%;
    height: 300px;
}

.ser_r_loop .cont .icon {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ser_r_loop .cont .title {
    font-weight: 700;
    line-height: 1.2;
    color: #333333;
    padding-top: 20px;
}

.ser_r_loop .cont .eng {
    font-family: 'Roboto2';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #999999;
    padding-top: 10px;
}

.ser_r_loop .cont .text {
    width: 100%;
    height: calc(100% - 300px);
    overflow-y: auto;
}

.ser_r_loop .cont .text p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 14px;
    color: var(--black-color);
    position: relative;
    padding-left: 15px;
}

.ser_r_loop .cont .text p:last-child {
    margin-bottom: 0;
}

.ser_r_loop .cont .text p:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main-color);
}

.scoll::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

.scoll::-webkit-scrollbar-button:vertical {
    display: none
}

.scoll::-webkit-scrollbar-corner, .scoll::-webkit-scrollbar-track {
    background-color: #EEEEEE;
}

.scoll::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: var(--main-color);
}

.scoll::-webkit-scrollbar-thumb:vertical:hover {
    background-color: var(--main-color);
}

@media(min-width:768px) {
    .shows {
        transform: translateY(150px);
    }

    .ser_loop a:hover .shows {
        transform: translateY(-20px);
    }

    .active .shows {
        transform: translateY(0);
    }

    .ser_list .ser_loop .shows {
        transition: all .4s;
    }

}

@media(max-width:1280px) {
    .ser_loop .letter img {
        max-height: 230px;
    }

    .ser_loop .title {
        padding-top: 40px;
    }

    .ser_loop .more {
        padding-top: 30px;
    }

    .ser_loop .letter img {
        height: 260px;
    }

    .ser_loop .title {
        font-size: 30px;
    }

    .ser_r_loop .cont .top {
        height: 220px;
    }

    .ser_r_loop .cont .text {
        height: calc(100% - 220px);
    }

}

@media(max-width:991px) {
    .ser_loop .letter img {
        height: 200px;
    }

    .ser_loop .eng {
        font-size: 16px;
    }

    .ser_loop .title {
        font-size: 28px;
    }

    .ser_red_bg:after {
        right: -25px;
        width: 25px;
    }

    .ser_r_loop .cont {
        padding: 0 30px;
        padding-top: 25%;
    }

    .ser_r_loop .cont .eng, .ser_r_loop .cont .text p {
        font-size: 18px;
    }

}

@media(max-width:767px) {
    .ser_list {
        height: auto;
        min-height: inherit;
    }

    .ser_list .ser_k .ser_loop {
        height: 330px;
        width: 50%;
        padding-top: 50px;
        padding-bottom: 20px;
        border-bottom: 2px solid white;
    }

    .ser_loop .letter img {
        height: 110px;
    }

    .ser_loop .title {
        font-size: 24px;
        padding-top: 20px;
    }

    .ser_loop .eng {
        font-size: 12px;
    }

    .ser_red_bg::after {
        right: -8px;
        width: 8px;
        background-size: contain;
    }

    .ser_list .ser_k .ser_red_bg {
        width: 160px;
        height: 450px;
    }

    .ser_r_loop {
        width: calc(100% - 160px);
        height: 450px;
    }

    .ser_r_loop .cont {
        padding: 0 20px;
        padding-top: 30px;
        padding-right: 15px;
    }

    .ser_r_loop .cont .top {
        height: 120px;
    }

    .ser_r_loop .cont .text {
        height: 228px;
        margin-top: 10px;
    }

    .ser_r_loop .cont .icon {
        width: 30px;
        height: 30px;
        padding: 5px;
    }

    .ser_r_loop .cont .eng {
        font-size: 14px;
    }

    .ser_r_loop .cont .text p {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .ser_r_loop .cont .title {
        padding-top: 10px;
    }

    .ser_r_loop .cont .eng {
        padding-top: 0;
    }

    .ser_r_loop .cont .text p:before {
        top: 12px;
        width: 4px;
        height: 4px;
    }

    .ser_r_loop .service_but {
        display: block !important;
        bottom: 10px;
    }

}

@media(max-width:374px) {
    .ser_loop .title {
        font-size: 22px;
        padding-top: 15px;
    }

    .ser_r_loop .cont .eng {
        font-size: 12px;
    }

    .ser_r_loop .cont .text {
        height: 204px;
    }

}

/*case*/
.mt25 {
    margin-top: 15px;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #DDDDDD;
}

.three_menu {
    padding: 15px 0;
}

.three_menu span {
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    float: left;
    display: inline-block;
    width: 120px;
    line-height: 40px;
    color: #999999;
}

.three_menu ul {
    float: left;
    width: calc(100% - 120px);
}

.three_menu ul li {
    padding-right: 25px;
    float: left;
}

.three_menu ul li a {
    height: 40px;
    width: 120px;
    text-align: center;
    border-radius: 40px;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    color: var(--black-color);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.three_menu ul li.active a {
    background-color: var(--main-color);
    color: #fff;
}
.three_menu ul li a:hover {
    background-color: #DDD;
    color: #333;
}
.case_title {
    color: var(--black-color);
    font-weight: 700;
}

.pb100 {
    padding-bottom: 100px;
}

.case_cont {
    padding-top: 50px;
    padding-bottom: 65px;
}

.case_loop {
    padding-top: 60px;
    position: relative;
}

.case_loop .button {
    position: absolute;
    right: 0;
    top: -45px;
}

.case_loop .swiper-container {
    margin-left: -20px;
    margin-right: -20px;
}

.case_loop .case_img {
    width: 25%;
    float: left;
    padding: 17px 20px;
}

.case_loop .case_img:first-child {
    width: 50%;
}

.case_loop .dw {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
}

.case_loop .case_img .case_pic {
    position: relative;
    overflow: hidden;
}

.case_loop .pic {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all .3s;
}

.case_loop .case_img:first-child .case_title {
    height: 187px;
    padding: 55px 30px;
    position: relative;
    padding-right: 120px;
    z-index: 1;
}

.case_loop .case_img .case_title {
    height: 90px;
    padding: 20px 30px;
}

.case_loop .case_img .case_title h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case_loop .case_img .case_title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    margin-top: 7px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case_loop .case_img:first-child .case_title h3 {
    font-size: 24px;
    line-height: 32px;
}

.case_loop .case_img:first-child .case_title p {
    margin-top: 18px;
}

.case_loop .case_img a:hover h3 {
    color: var(--main-color);
}

.case_loop .case_img:first-child a:hover .case_title:after {
    right: 40px;
}

.case_loop .dw a:hover .pic {
    transform: scale(1.03);
}

.case_loop .case_title .public_more {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media(max-width:1366px) {
    .pb100 {
        padding-bottom: 80px;
    }

    .case_cont {
        padding-bottom: 45px;
    }

    .case_loop .case_img:first-child .case_title h3 {
        font-size: 22px;
    }

    .case_loop .case_img .case_title h3 {
        font-size: 18px;
    }

}

@media(max-width:1280px) {
    .pb100 {
        padding-bottom: 60px;
    }

    .case_cont {
        padding-bottom: 45px;
    }

    .case_loop .case_img:first-child .case_title h3 {
        font-size: 20px;
    }

    .case_loop .case_img:first-child .case_title {
        height: 167px;
        padding: 35px 25px;
        padding-right: 100px;
    }

    .case_loop .case_title .public_more {
        right: 45px;
    }

    .case_loop .case_img .case_title {
        height: 80px;
        padding: 10px 25px;
    }

    .case_loop .case_img .case_title p {
        margin-top: 4px
    }

}

@media(max-width:991px) {
    .case_loop {
        padding-top: 40px;
    }

    .case_cont {
        padding-bottom: 45px;
    }

    .case_loop .swiper-container {
        margin-left: -10px;
        margin-right: -10px;
    }

    .case_loop .case_img {
        padding: 11px 10px;
    }

    .case_loop .case_img:first-child .case_title {
        height: 147px;
        padding: 30px 20px;
        padding-right: 80px;
    }

    .case_loop .case_title .public_more {
        right: 45px;
    }

    .case_loop .case_img .case_title {
        height: 70px;
        padding: 8px 20px;
    }

}

@media(max-width:767px) {
    .mt25 {
        margin-top: 15px;
    }

    .three_menu ul li a {
        line-height: 35px;
        height: 35px;
    }

    .three_menu span {
        width: 80px;
        line-height: 35px;
    }

    .three_menu ul {
        width: calc(100% - 80px);
    }

    .three_menu ul li {
        padding-right: 15px;
    }

    .three_menu ul li a {
        width: 100px;
    }
    .case_cont {
        padding-top: 40px;
    }
    .case_loop {
        padding-top: 30px;
    }

    .case_loop .case_img:first-child {
        width: 100%;
    }

    .case_loop .case_img {
        width: 50%;
    }

    .case_loop .case_img:first-child .case_title {
        height: 88px;
        padding: 15px 20px;
        padding-right: 80px;
    }

    .case_loop .case_img:first-child .case_title h3 {
        font-size: 18px;
    }

    .case_loop .case_title .public_more {
        right: 30px;
    }

    .case_loop .case_img:first-child .case_title p {
        margin-top: 5px;
    }

    .case_loop .case_img .case_title h3 {
        font-size: 16px;
        font-weight: 500;
    }

    .case_loop .swiper-container {
        margin-left: -5px;
        margin-right: -5px;
    }

    .case_loop .case_img {
        padding: 6px 5px;
    }

    .case_loop .button {
        top: -35px;
    }

}

/*new detail*/
.new_article, .article_down {
    overflow: hidden;
}

.new_article_title {
    margin-top: 78px;
    font-weight: bold;
    color: #333333;
    width: 100%;
    line-height: 1.2;
}

.new_article_line {
    border-top: 1px solid #CCCCCC;
    padding: 22px 0;
    border-bottom: 1px solid #CCCCCC;
    margin-top: 25px;
    margin-bottom: 30px;
    line-height: 32px;
}

.new_article_line .share {
    float: right;
    display: flex;
}

.new_article_line .share .share-btn, .new_article_line .share .web_btn {
    margin-left: 8px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 18px 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #F5F5F6;
    border-radius: 50%;
}

.web_wechat {
    background-image: url(../images/share_icon_wechat.svg);
}

.web_qzone {
    background-image: url(../images/share_icon_qqzone.svg);
}

.web_tsina {
    background-image: url(../images/share_icon_sina.svg);
}

.web_qq {
    background-image: url(../images/share_icon_qq.svg);
}

.article_time {
    font-family: 'Roboto2';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    float: left;
    color: #999999;
}

.article_time:after {
    content: "";
    height: 16px;
    width: 1px;
    position: absolute;
    right: 0;
    top: 8px;
    background-color: #C4C4C4;
}

.detail-cnt {
    color: #666666;
}

.detail-main .detail-cnt p {
    font-size: 16px;
    line-height: 1.8;
    padding-bottom: 15px;
}

.detail-main .detail-cnt p img, .detail-main .detail-cnt img, .detail-main .detail-cnt table img, .detail-main .detail-cnt video, .detail-main .detail-cnt table {
    max-width: auto !important;
    height: auto !important;
    display: block;
    margin: 10px auto;
    border-radius: 6px;
}

/*.detail-main .detail-cnt video {
    width: 100%;
}*/
.new_article_cont .article_l {
    width: 100%;
}

.article_xg {
    padding-top: 15px;
    border-bottom: 1px solid #CCCCCC;
}

.article_xg h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
}

.article_xg_link {
    padding: 16px 0 35px 0;
}

.article_xg_link a {
    height: 34px;
    background: #EEEEEE;
    display: inline-block;
    margin-right: 8px;
    color: #999999;
    font-weight: 16px;
    padding: 0 12px;
    line-height: 34px;
    border-radius: 30px;
    margin-bottom: 5px;
}

.article_xg_link a:hover {
    color: #fff;
    background-color: var(--black-color);
}

.news_show_more {
    padding: 40px 0 50px 0;
}

.news_show_more .prev {
    float: left;
    width: 50%;
    padding-right: 80px;
    position: relative;
}

.news_show_more .prev:before {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    background: #CCCCCC;
    height: 62px;
    width: 1px;
}

.news_show_more .next {
    float: left;
    width: 50%;
    padding-left: 80px;
}

.news_show_more .n {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    line-height: 26px;
}

.news_show_more .t {
    line-height: 28px;
    height: 56px;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 10px;
}

.news_show_more .t a {
    font-size: inherit;
    color: var(--black-color);
    line-height: inherit;
}

.news_show_more .t a:hover {
    color: var(--blue);
}

.article_down {
    background: #ffffff;
    padding: 40px 0 50px 0;
}

.article_down_sub {
    color: #333;
    line-height: 1.1;
    font-weight: 700;
}

.article_down_list {
    padding-top: 30px;
}

.article_down_list ul {
    margin-left: -45px;
    margin-right: -45px;
}

.article_down_list ul li {
    width: 33.33%;
    padding: 0 45px;
    float: left;
}

.article_down_list .article_down_time {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #999999;
}

.article_down_list .article_down_sub {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    color: #333333;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article_down_list li a:hover .article_down_sub {
    color: var(--main-color);
}

@media screen and (max-width:1279px) {
    .article_down_list .article_down_sub {
        font-size: 20px;
    }

}

@media screen and (max-width:991px) {
    .article_down_list ul {
        margin-left: -25px;
        margin-right: -25px;
    }

    .article_down_list ul li {
        padding: 0 25px;
    }

    .article_down_list .article_down_sub {
        font-size: 18px;
    }

    .news_show_more .prev {
        padding-right: 50px;
    }

    .news_show_more .next {
        padding-left: 50px;
    }

    .news_show_more .t {
        font-size: 18px;
    }

}

@media screen and (max-width:767px) {
    .new_article_title {
        margin-top: 35px;
    }

    .new_article_line {
        padding: 10px 0;
    }

    .article_time {
        font-size: 14px;
        padding-right: 15px;
        margin-right: 15px;
    }

    .news_show_more .prev {
        padding-right: 20px;
    }

    .news_show_more .next {
        padding-left: 20px;
    }

    .news_show_more .t {
        font-size: 16px;
    }

    .article_down {
        padding: 40px 0 35px 0;
    }

    .article_down_list ul li {
        width: 100%;
        padding-bottom: 30px
    }

    .article_down_list .article_down_sub {
        font-size: 16px;
        margin-top: 10px;
    }

    .article_down_list .article_down_time {
        font-size: 14px;
    }

    .article_xg_link {
        padding: 16px 0 15px 0;
    }

    .news_show_more {
        padding: 20px 0 25px 0;
    }

    .detail-main .detail-cnt video {
        width: 100%;
    }

}

/*study list*/
.pt75 {
    padding-top: 75px;
}

.study_cont .label {
    margin-top: 55px;
    width: 100%;
    padding: 45px 65px 25px 65px;
    background: #FFFFFF;
    border-radius: 20px;
}

.study_cont .label ul {
    margin-left: -15px;
    margin-right: -15px;
}

.study_cont .label ul li {
    float: left;
    width: 20%;
    padding: 5px 15px;
}

.study_cont .label ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    height: 46px;
    position: relative;
    color: #333333;
    padding-left: 26px;
    display: inline-block;
    overflow: hidden;
}

.study_cont .label a:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 0;
    top: 3px;
    border-radius: 50%;
    background-color: #E0DDDD;
    background-image: url(../images/add.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.study_cont .label li.active a, .study_cont .label li a:hover {
    color: var(--main-color);
    font-weight: 700;
}

.study_cont .label li a:hover:before, .study_cont .label li.active a:before {
    background-color: var(--main-color);
}

.study_sub {
    padding-top: 55px;
    font-weight: 400;
    line-height: 1.2;
    color: #333333;
}

.subject_l {
    width: 100%;
    padding-top: 35px;
}

.subject_l ul li {
    padding-bottom: 20px;
}

.subject_l .bg {
    width: 100%;
    display: inline-block;
    border-radius: 20px;
    padding: 38px 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.subject_l .bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transition: all .3s;
    z-index: -1;
}

.subject_l .bg .img {
    position: relative;
    overflow: hidden;
    width: 262px;
    border-radius: 20px;
    float: left;
}

.subject_l .bg .thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.subject_l .bg .img span {
    position: absolute;
    width: 40px;
    height: 25px;
    line-height: 25px;
    right: 15px;
    bottom: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
}

.subject_l .subject_r {
    width: calc(100% - 262px);
    padding-left: 55px;
    float: left;
}

.subject_l .subject_r h3 {
    font-weight: 700;
    line-height: 25px;
    color: #333333;
}

.subject_l .subject_r p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #666666;
    margin-top: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.subject_l .subject_r .bottom {
    margin-top: 25px;
    padding-top: 30px;
    border-top: 1px solid #CCCCCC;
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 14px;
    line-height: 18px;
}

.subject_l .subject_r .time {
    font-weight: 400;
    color: #999999;
}

.subject_l .bg:hover:before {
    background-color: var(--main-color);
}

.subject_l .bg:hover h3, .subject_l .bg:hover p, .subject_l .bg:hover .time, .subject_l .bg:hover .red {
    color: #ffffff;
}

.subject_l .bg:hover .bottom {
    border-top-color: rgba(255, 255, 255, 0.5);
}

@media(max-width:1366px) {
    .pt75 {
        padding-top: 55px
    }

    .study_cont .label ul li a {
        font-size: 16px;
    }

    .study_cont .label li.active a, .study_cont .label li a:hover {
        font-weight: 500;
    }

}

@media(max-width:1280px) {
    .study_cont .label {
        margin-top: 55px;
        padding: 45px 30px 25px 30px;
    }

    .study_cont .label ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .study_cont .label ul li {
        padding: 5px 10px;
    }

}

@media(max-width:1279px) {
    .study_cont .label {
        padding: 45px 45px 25px 45px;
    }

    .study_cont .label ul {
        margin-left: -25px;
        margin-right: -25px;
    }

    .study_cont .label ul li {
        padding: 5px 25px;
    }

}

@media(max-width:991px) {
    .study_cont .label {
        padding: 35px 35px 25px 35px;
    }

    .study_cont .label ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .study_cont .label ul li {
        padding: 5px 10px;
    }

    .study_cont .label ul li {
        width: 25%;
    }

    .subject_l .bg {
        padding: 38px 40px;
    }

}

@media(max-width:767px) {
    .pt75 {
        padding-top: 35px;
    }

    .study_cont .label {
        margin-top: 35px;
        padding: 35px 20px 25px 20px;
    }

    .study_cont .label ul li {
        width: 50%;
    }

    .study_sub {
        padding-top: 35px;
    }

}

@media(max-width:640px) {
    .subject_l .bg .img {
        width: auto;
    }

    .subject_l .subject_r {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }

    .subject_l .bg {
        padding: 30px 30px;
    }

    .study_cont .label {
        padding: 25px 15px 25px 15px;
    }

    .study_cont .label ul li {
        width: 100%;
    }

    .study_cont .label ul li a {
        height: auto;
    }

}

/*study*/
.video video {
    max-width: 100%;
}

.video_eject {
    position: fixed;
    width: 95%;
    max-width: 612px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 20px;
    display: none;
    z-index: 9999;
}

.video_eject.o_one {
    text-align: center;
    padding: 100px 30px;
}

.video_eject.o_two {
    text-align: center;
    padding: 85px 30px 90px 30px;
}

.video_mask {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    display: none;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.video_eject .close {
    position: absolute;
    right: 16px;
    top: 15px;
}

.video_eject .video_title {
    color: #000000;
}

.video_eject .video_button {
    padding-top: 28px;
}

.video_eject .video_button a {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    padding: 8px 28px;
    color: #FFFFFF;
    background: var(--main-color);
    border-radius: 30px;
}

.video_eject.o_two .er_img {
    display: flex;
    justify-content: center;
}

.video_eject.o_two .er_img .img_i {
    padding: 0 15px;
}

.video_eject.o_two .er_img .img_i img {
    max-width: 88px;
}

.video_eject.o_two .er_img .img_i p {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    margin-top: 8px;
    text-align: center;
    color: #666666;
}

.study_title {
    position: relative;
    padding-right: 200px;
    padding-bottom: 30px;
}

.study_title .down_button {
    position: absolute;
    right: 0;
    top: -7px;
}

.study_title .down_button a {
    height: 56px;
    padding: 0 25px;
    border: 1px solid #B0B0B0;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    line-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
}

.study_title .down_button a img {
    margin-right: 10px;
}

@media screen and (max-width:767px) {
    .study_title {
        padding-right: 0;
        overflow: hidden;
        padding-bottom: 0;
    }

    .study_title .down_button {
        position: relative;
        top: inherit;
        right: inherit;
        float: right;
        margin-top: 20px;
    }

    .study_title .down_button a {
        height: 45px;
        line-height: 45px;
    }

    .study_title .down_button a img {
        width: 25px;
    }

    .detail-main .video {
        position: relative;
        z-index: 9;
    }

    .video_eject.o_one {
        padding: 45px 20px;
    }

    .video_eject.o_two {
        padding: 45px 20px 40px 20px;
    }

    .video_eject.o_two .er_img {
        display: block;
    }

    .video_eject.o_two .er_img .img_i {
        padding: 15px;
        width: 50%;
        float: left;
    }

    .video_eject {
        z-index: 99999999;
    }

}

/*video list*/
.video_list {
    padding-top: 65px;
}

.video_list ul {
    margin-left: -24px;
    margin-right: -24px;
}

.video_list ul li {
    padding: 15px 24px;
    float: left;
    width: 33.33%;
}

.video_list .bg {
    width: 100%;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
}

.video_list .img {
    position: relative;
    overflow: hidden;
}

.video_list .thumb {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all .3s;
}

.video_list .cont {
    padding: 40px 25px 45px 25px;
}

.video_list .cont h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--black-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video_list .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_list .mask span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_list a:hover h3 {
    color: var(--main-color);
}

.video_list a:hover .thumb {
    transform: scale(1.03);
}

.content {
    min-height: 60vh;
}

@media(max-width:1366px) {
    .video_list {
        padding-top: 45px;
    }

    .video_list .cont {
        padding: 30px 25px 35px 25px;
    }

}

@media(max-width:991px) {
    .video_list {
        padding-top: 35px;
    }

    .video_list ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .video_list ul li {
        padding: 15px 15px;
    }

    .video_list .cont {
        padding: 20px 25px 25px 25px;
    }

}

@media(max-width:767px) {
    .video_list {
        padding-top: 15px;
    }

    .video_list ul li {
        width: 50%;
        padding: 15px 15px;
    }

    .video_list .mask span {
        width: 40px;
        height: 40px;
    }

    .video_list .mask span img {
        width: 10px;
    }

    .content {
        min-height: 30vh;
    }

}

@media(max-width:540px) {
    .video_list ul li {
        width: 100%;
    }

}

/*view*/
.view_one_bg {
    background-image: url(../images/view_bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 0;
    padding-bottom: 100px;
}

.view_swiper {
    position: relative;
    padding-bottom: 30px;
}

.view_swiper .swiper-slide {
    margin-bottom: 30px;
    height: 56px;
}

.view_swiper .view_list {
    height: 56px;
    overflow-y: auto;
}

.view_swiper .view_list p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    padding-left: 14px;
    color: #333333;
}

.view_swiper .view_list p:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0;
    top: 10px;
    background: var(--main-color);
}

.view_swiper .swiper-container {
    height: 344px;
}

.view_swiper .swiper-pagination {
    bottom: 0px;
}

.view_swiper .swiper-pagination span {
    background: #666666;
    opacity: 1;
    margin: 0 5px;
}

.view_swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 10px;
}

.view_l_top .rulue_but {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    bottom: -10px;
    border-radius: 50%;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.view_l_top .rulus_prev {
    background-image: url(../images/black_l.svg);
}

.view_l_top .rulus_next {
    margin-left: 52px;
    background-image: url(../images/black_r.svg);
}

.view_l_top .rulue_but:hover {
    background-color: var(--main-color);
}

.view_l_top .rulus_prev:hover {
    background-image: url(../images/white_l.svg);
}

.view_l_top .rulus_next:hover {
    background-image: url(../images/white_r.svg);
}

.view_l_top {
    padding-top: 80px;
}

.view_a_bottom .case_cont {
    padding-top: 95px;
    padding-bottom: 100px;
}

.view_a_bottom .swiper-container {
    margin: 0;
}

.view_a_bottom .li a {
    border-radius: 20px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.view_a_bottom .new_up {
    position: relative;
    overflow: hidden;
}

.view_a_bottom .new_up .pic {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.view_a_bottom .new_down {
    padding: 40px 30px;
    transition: all .3s;
}

.view_a_bottom a:hover .new_up .pic {
    transform: scale(1.03);
}

.view_a_bottom a:hover .new_down {
    background-color: var(--main-color);
}

.view_a_bottom a:hover .title, .view_a_bottom a:hover .time {
    color: #fff;
}

.view_a_bottom {
    background-color: #f5f5f5;
}

@media(max-width:1366px) {
    .view_a_bottom .case_cont {
        padding-top: 75px;
        padding-bottom: 80px;
    }

}

@media(max-width:1280px) {
    .view_a_bottom .case_cont {
        padding-top: 55px;
        padding-bottom: 60px;
    }

}

@media(max-width:991px) {
    .view_one_bg {
        padding-bottom: 80px;
    }

    .view_a_bottom .new_down {
        padding: 30px 20px;
    }

}

@media(max-width:767px) {
    .view_l_top {
        padding-top: 40px;
    }

    .view_one_bg {
        padding-bottom: 50px;
    }

    .view_swiper .swiper-container {
        height: auto;
    }

    .view_swiper .swiper-slide {
        height: 100%;
    }

    .view_swiper .view_list {
        height: auto;
    }

    .view_swiper .swiper-pagination {
        display: none;
    }

    .view_l_top  .rulue_but {
        right: 0;
        left: inherit;
        bottom: 0;
    }

    .view_l_top  .rulus_prev {
        margin-right: 55px;
    }

    .view_a_bottom .case_cont {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .view_a_bottom .new_down {
        padding: 20px 20px;
    }

    .view_swiper {
        padding-bottom: 40px;
    }

}

/*contact*/
.contact-us-02-box {
    width: 100%;
    height: 800px;
}

.contact_down {
    padding-top: 100px;
    padding-bottom: 95px;
}

.contact_down .title {
    font-weight: 700;
    color: #333333;
}

.contact_down .name {
    font-weight: 700;
    color: #000000;
}

.contact_down .contact_cont {
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
}

.contact_down .contact_cont .m_l {
    width: 43%;
    border-right: 1px solid #CCCCCC;
    padding-right: 30px;
}

.contact_down .contact_cont .m_r {
    max-width: 57%;
    padding-left: 30px;
}

.contact_down .contact_cont .m_r .con {
    display: flex;
    padding-top: 55px;
}

.contact_down .contact_cont .m_r .con .img_i {
    padding-left: 35px;
}

.contact_down .contact_cont .m_r .con .img_i:first-child {
    padding-left: 0;
}

.contact_down .contact_cont .m_r .con p {
    font-weight: 290;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    color: #999999;
}

.contact_icon {
    padding-top: 35px;
}

.contact_icon p {
    display: flex;
    min-height: 44px;
    line-height: 22px;
    padding-bottom: 20px;
}

.contact_icon p a {
    font-size: inherit;
    color: inherit;
}

.contact_icon p span:first-child {
    padding-right: 12px;
}

.contact_icon p span:first-child img {
    width: 18px;
}

.contact_icon p span:nth-child(2) {
    flex: 1;
}

@media (max-width:1279px) {
    .contact_down {
        padding-top: 80px;
        padding-bottom: 75px;
    }

    .contact_down .contact_cont .m_l {
        width: 44%;
        padding-right: 20px;
    }

    .contact_down .contact_cont .m_r {
        max-width: 56%;
        padding-left: 30px;
    }

    .contact_down .contact_cont .m_r .con .img_i {
        padding-left: 25px;
    }

}

@media (max-width:1199px) {
    .contact_down .contact_cont .m_r .con .img_i {
        padding-left: 15px;
    }

}

@media (max-width:991px) {
    .contact_down {
        padding-top: 60px;
        padding-bottom: 55px;
    }

    .contact_down .contact_cont .m_r {
        width: 56%;
    }

    .contact_down .contact_cont .m_r .con {
        display: block;
        padding-top: 35px;
        overflow: hidden;
    }

    .contact_down .contact_cont .m_r .con .img_i {
        width: 33.33%;
        float: left;
        padding-left: 0;
        padding-bottom: 15px;
        text-align: center;
    }

}

@media (max-width:767px) {
    .contact_down {
        padding-top: 40px;
        padding-bottom: 45px;
    }

    .contact-us-02-box {
        height: 400px;
    }

    .contact_down .contact_cont {
        display: block;
        padding-top: 40px;
    }

    .contact_down .contact_cont .m_l {
        width: 100%;
        padding-right: 0;
        border-right: none;
    }

    .contact_down .contact_cont .m_r {
        width: 100%;
        max-width: inherit;
        padding-left: 0;
        padding-top: 20px
    }

    .contact_down .contact_cont .m_r .con .img_i {
        padding: 0 5px 15px 5px !important;
    }

}

/*job*/
.job_rcln {
    padding-top: 75px;
    padding-bottom: 120px;
    background: #FFFFFF;
    overflow: hidden;
}

.job_rcln .l_ {
    flex: 1;
}

.job_rcln .job_eng {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 120px;
    line-height: 1;
    color: var(--main-color);
}

.job_eng .blank {
    color: #2C2C2C;
}

.job_rcln .r_ p {
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--black-color);
    padding: 15px 0;
}

.job_rcln .r_ strong {
    font-weight: inherit;
}

.job_three {
    margin-top: 80px;
    height: 547px;
    width: 100%;
    overflow: hidden;
}

.job_three #accordion {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0;
    margin: 0;
    margin-left: -7px;
    margin-right: -7px;
}

#accordion li {
    padding: 0 7px;
    position: relative;
    width: 25%;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.5s cubic-bezier(0.37, 0.07, 0.02, 1.01) 0.08s, background-color 0.5s cubic-bezier(0.37, 0.07, 0.02, 1.01) 0.08s;
}

#accordion .life .title {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 0 30px 36px 60px;
    z-index: 1;
}

#accordion .life .title:before {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#accordion .life .title .icon {
    padding-bottom: 15px;
    display: block;
}

#accordion .life .title h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
}

.life .job_content {
    opacity: 0;
    width: 204%;
    height: 100%;
    background: var(--main-color);
    border-radius: 20px;
    overflow: hidden;
    padding: 70px 65px 30px 65px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.life .job_content .life-intro {
    overflow-y: auto;
    opacity: 0;
    max-height: 432px;
    -webkit-transition: all 0.3s ease 0.3s;
    -o-transition: all 0.3s ease 0.3s;
    -moz-transition: all 0.3s ease 0.3s;
    transition: all 0.3s ease 0.3s;
}

.life .job_content .life-intro h3 {
    color: #fff;
    font-size: 18px;
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.life .job_content .life-intro h3:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    left: 0;
    top: 8px;
    border-radius: 50%;
    background: #FFFFFF;
}

.life .job_content .life-intro p {
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    padding-bottom: 25px;
}

.life .job_content .life-intro::-webkit-scrollbar {
    width: 2px;
    height: 2px
}

.life .job_content .life-intro::-webkit-scrollbar-button:vertical {
    display: none
}

.life .job_content .life-intro::-webkit-scrollbar-corner, .life .job_content .life-intro::-webkit-scrollbar-track {
    background-color: #ccc;
}

.life .job_content .life-intro::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--main-color);
}

.job_three #accordion li.active.life .job_content {
    opacity: 1;
    width: 100%;
}

.job_three #accordion li.active.life .life-intro {
    opacity: 1;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.job_three #accordion li.active .title {
    opacity: 0;
    height: 0;
    padding: 0;
}

.job_three #accordion li.active {
    width: 50%;
}

.job_list_p {
    padding-top: 63px;
    overflow: hidden;
}

.job_list_p ul {
    margin-left: -22px;
    margin-right: -22px;
}

.job_list_p ul li {
    width: 50%;
    float: left;
    padding: 17px 22px;
}

.job_list_p .thats {
    width: 100%;
    height: 100%;
    padding: 40px 60px;
    position: relative;
}

.job_list_p .thats .post {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: #333333;
}

.job_list_p .thats .des {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    height: 52px;
    margin-top: 20px;
}

.job_list_p .thats .bottom {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 60px;
}

.job_list_p .number {
    font-weight: 700;
    font-size: 32px;
    color: #DFDFDF;
}

.job_list_p .bg {
    height: 275px;
    background: #FFFFFF;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.job_list_p .bg .active {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10%;
    padding: 48px 60px;
    transition: top .4s;
}

.job_list_p .bg .active .scoll {
    height: 160px;
    overflow-y: auto;
}

.job_list_p .bg .active p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;
}

.job_list_p .bg:hover {
    background: var(--main-color);
}

.job_list_p .bg:hover .thats {
    opacity: 0;
}

.job_list_p .bg:hover .active {
    opacity: 1;
    top: 0;
}

.job_last {
    margin-top: 83px;
    width: 100%;
    background-color: var(--main-color);
    background-image: url(../images/job_bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    border-radius: 20px;
    padding: 84px 58px;
    overflow: hidden;
}

.job_last .subtitle {
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.job_last .job_infor {
    display: flex;
}

.job_last .job_infor .infor_l:first-child, .job_last .job_infor .infor_l:last-child {
    flex: 1;
}

.job_last .job_infor .infor_l:nth-child(2), .job_last .job_infor .infor_l:nth-child(3) {
    flex: 2;
}

.job_last .job_infor .infor_l {
    text-align: center;
    margin-top: 38px;
    position: relative;
}

.job_last .job_infor .infor_l:after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 50%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
}

.job_last .job_infor .infor_l:last-child:after {
    display: none;
}

.job_last .job_infor .infor_l span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 50%;
}

.job_last .job_infor .infor_l span img {
    width: 26px;
    height: 26px;
}

.job_last .job_infor .infor_l .t {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.job_last .job_infor .infor_l .p {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #FFFFFF;
}

.job_last .job_infor .infor_l .p a {
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

.job_last .job_infor .infor_l .code {
    padding-bottom: 8px;
}

@media (max-width:1366px) {
    .job_rcln .job_eng {
        font-size: 100px;
    }

}

@media (max-width:1279px) {
    .job_rcln .job_eng {
        font-size: 80px;
    }

    #accordion .life .title {
        padding: 0 30px 36px 40px;
    }

    .job_list_p .thats .post {
        font-size: 28px;
    }

    .job_rcln {
        padding-top: 55px;
        padding-bottom: 100px;
    }

    .job_three {
        margin-top: 60px;
    }

}

@media (max-width:1199px) {
    .job_rcln .job_eng {
        font-size: 60px;
    }

    .job_rcln .r_ p {
        font-size: 26px;
        line-height: 1.4;
    }

    .life .job_content {
        padding: 60px 40px 30px 40px;
    }

    #accordion .life .title {
        padding: 0 20px 36px 20px;
    }

    #accordion .life .title .icon img {
        width: 40px;
    }

    .job_list_p .thats {
        padding: 40px 40px;
    }

    .job_list_p .thats .bottom {
        padding: 0 30px 0 40px;
    }

    .job_list_p .bg .active {
        padding: 48px 40px;
    }

    .job_last .job_infor {
        display: block;
    }

    .job_last .job_infor .infor_l {
        width: 50%;
        float: left;
    }

    .job_last .job_infor .infor_l:nth-child(2):after {
        display: none;
    }

}

@media (max-width:991px) {
    .job_rcln .dis_flex {
        display: block;
    }

    .job_rcln .r_ {
        width: 100%;
        padding-top: 30px
    }

    .job_rcln .l_ {
        width: 100%;
    }

    .job_rcln .r_ p {
        font-size: 24px;
        line-height: 1.4;
        padding: 15px 0;
    }

    #accordion .life .title .icon img {
        width: 30px;
    }

    .job_list_p .thats .post {
        font-size: 24px;
    }

    .job_rcln {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .job_three {
        margin-top: 40px;
    }

    .job_list_p {
        padding-top: 40px;
    }

    .job_list_p .thats .bottom {
        bottom: 30px;
    }

    .job_list_p .bg .active .scoll {
        height: 180px;
    }

    .job_list_p .bg .active p {
        line-height: 30px;
    }

    .job_last {
        margin-top: 60px;
        padding: 60px 30px;
    }

}

@media (max-width:767px) {
    .job_rcln {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .job_rcln .r_ p {
        font-size: 20px;
        line-height: 1.4;
        padding: 10px 0;
    }

    .job_three {
        height: auto;
    }

    .job_three #accordion {
        display: block;
        margin: 0;
    }

    #accordion li {
        width: 100%;
        height: 400px;
        margin-bottom: 30px;
        padding: 0;
    }

    #accordion li:last-child {
        margin-bottom: 0
    }

    .life .job_content {
        width: 100%;
    }

    .life .job_content .life-intro {
        max-height: 328px;
    }

    .job_three #accordion li.active {
        width: 100%;
        padding: 0;
    }

    .job_list_p {
        padding-top: 20px;
    }

    .job_list_p ul li {
        width: 100%;
        padding: 15px 22px;
    }

    .job_list_p .bg {
        height: 250px;
    }

    .job_list_p .thats {
        padding: 30px 30px;
    }

    .job_list_p .thats .post {
        font-size: 20px;
    }

    .job_list_p .number {
        font-size: 26px;
    }

    .job_list_p .thats .bottom {
        bottom: 30px;
        padding: 0 30px 0 30px;
    }

    .job_list_p .bg .active {
        padding: 40px 30px;
    }

    .job_last {
        margin-top: 40px;
        padding: 40px 30px;
    }

    .job_last .subtitle {
        padding-bottom: 30px;
    }

    .job_last .job_infor .infor_l {
        width: 100%;
    }

    .job_last .job_infor .infor_l::after {
        display: none !important;
    }

    .life .job_content {
        padding: 40px 30px 30px 30px;
    }

}

@media (max-width:350px) {
    .job_last {
        padding: 40px 20px;
    }

}

/*sitemap*/
.pt45 {
    padding-top: 45px;
}

.site_map {
    padding: 30px 0;
}

.wzdt_xt {
    float: left;
    width: -webkit-calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: calc(100% - 300px);
}

.wzdt_xt ul li {
    float: left;
    padding-left: 20px;
    line-height: 45px;
}

.wzdt_xt ul li a {
    font-size: 16px;
    color: #666;
}

.wzdt_xt ul li a:hover {
    color: var(--main-color);
}

.sitemapz {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
}

.sitemapy {
    width: 300px;
    float: left;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}

.sitemapy h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.sitemapy h3 a {
    color: #fff;
    font-size: inherit;
    display: block;
    line-height: 45px;
}
.pc_show {
    display: block;
}
.mo_show {
    display: none;
}

.bottom_box {
    position: absolute;
    left: 20px;
    bottom: -5px;
    display: flex;
    align-items: center;
    z-index: 99;
}
.bottom_box  .btn_ {
    width: 35px;
    height: 35px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    background-image: url(../images/next_white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    cursor: pointer;
    transition: all .3s;
}

.bottom_box  .btn_:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.bottom_box  .prev {
    transform: rotate(180deg);
}

.bottom_box  .next {
    margin-left: 10px;
}

@media (min-width:768px) {
.bottom_box {
    display: none;
}
}
@media (max-width:767px) {
    .pc_show {
    display: none !important;
    }
    .mo_show {
        display: block !important;
    }
    .pt45 {
        padding-top: 25px;
    }

    .sitemapy h3 a {
        font-size: 18px;
    }

    .sitemapy {
        width: 100%;
    }

    .wzdt_xt {
        padding: 10px 0;
        width: 100%
    }

    .wzdt_xt ul li {
        line-height: 30px;
        padding-left: 15px;
    }

    .wzdt_xt ul li a {
        font-size: 16px;
    }
    .slide-cont {
        padding-bottom: 45px;
    }
    .index_banner_bottom .slide-dot {
        display: none;
    }
    #div_test {
        display: none !important;
    }

}