﻿/*========================== .pub_header ==========================*/
.pub_header {
    width: 100%;
    height: 90px;
    padding: 0 2%;
}
.pub_header .h_logo {
    float: left;
    display: inline-block;
    height: 100%;
    line-height: 90px;
}
.pub_header .h_logo img {
    max-width: 235px;
    max-height: 74px;
}
.pub_header .h_right {
    float: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    padding: 18px 0;
}
.pub_header .h_nav {
    overflow: hidden;
}
.pub_header .h_nav li {
    float: left;
    margin-right: 30px;
}
.pub_header .h_nav li:last-of-type {
    margin-right: 0;
}
.pub_header .h_nav li a {
    display: block;
    max-width: 100px;
    padding: 0 19px;
    position: relative;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: #505050;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: .5s ease-in-out;
}
.pub_header .h_nav li.on a, .pub_header .h_nav li a:hover {
    color: #1e1e1e;
}
.pub_header .h_nav li a:before, .pub_header .h_nav li a:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #5f5f5f;
    position: absolute;
    top: 50%;
    z-index: -1;
    transition: .5s ease-in-out;
}
.pub_header .h_nav li a:before {
    left: 0;
}
.pub_header .h_nav li a:after {
    right: 0;
}
.pub_header .h_nav li.on a:before, .pub_header .h_nav li a:hover:before, .pub_header .h_nav li.on a:after, .pub_header .h_nav li a:hover:after {
    width: 14px;
}
.pub_header .h_search {
    padding-left: 30px;
    margin-left: 20px;
    position: relative;
}
.pub_header .h_search:before {
    content: "";
    display: block;
    width: 2px;
    height: 13px;
    margin: auto;
    background: #a7a7a7;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
}
.pub_header .h_search .search-icon {
    display: block;
    width: 24px;
    height: 24px;
    background: url("../images/h_search.png") no-repeat center center;
    cursor: pointer;
}
.pub_header .h_search .search-form {
    display: none;
    width: 340px;
    padding: 20px;
    margin-top: 18px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 10;
    background: rgba(248, 248, 248, 0.95);
    box-shadow: 0 6px 6px rgba(0, 0, 0, .3);
}
.pub_header .h_search .search-form [type="text"] {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #cbcbcb;
    border-radius: 4px;
    margin-bottom: 15px;
    outline: none;
    font-size: 15px;
    line-height: 40px;
    color: #505050;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset;
    transition: border-color .2s ease-in-out 0s, box-shadow .2s ease-in-out 0s;
}
.pub_header .h_search .search-form [type="text"]:focus {
    border-color: #505050;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(80, 80, 80, .6);
}
.pub_header .h_search .search-form [type="submit"] {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #505050;
    border-radius: 4px;
    outline: none;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    color: #505050;
    background: transparent;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset;
    transition: all .5s ease 0s;
}
.pub_header .h_search .search-form [type="submit"]:hover {
    color: #fff;
    background: #505050;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(80, 80, 80, .6);
}
.pub_header .h_tool {
    position: absolute;
    right: 2%;
    top: 15px;
}
.pub_header .h_tool li {
    display: inline-block;
    padding: 0 8px;
    position: relative;
}
.pub_header .h_tool li + li:before {
    content: "";
    display: block;
    width: 2px;
    height: 13px;
    margin: auto;
    background: #a7a7a7;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
}
.pub_header .h_tool li a {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #9c9c9c;
    transition: .5s ease-in-out;
}
.pub_header .h_tool li a:hover {
    color: #1e1e1e;
}
.pub_header .h_tool li .icon-login, .pub_header .h_tool li .icon-qrcode {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    vertical-align: middle;
}
.pub_header .h_tool li .icon-login {
    background: url("../images/h_icon01.png") no-repeat center center;
}
.pub_header .h_tool li .icon-qrcode {
    background: url("../images/h_icon02.png") no-repeat center center;
}
.pub_header .h_tool li figure {
    width: 120px;
    padding-top: 10px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
    opacity: 0;
    transform: scale(0, 0);
    transition: .5s ease-in-out;
}
.pub_header .h_tool li figure img {
    width: 100%;
    height: auto;
}
.pub_header .h_tool li a:hover figure {
    opacity: 1;
    transform: scale(1, 1);
}
@media (max-width: 1440px) {
    .pub_header .h_nav li {
        margin-right: 15px;
    }
    .pub_header .h_nav li a {
        max-width: 92px;
        padding: 0 16px;
    }
    .pub_header .h_nav li.on a:before, .pub_header .h_nav li a:hover:before, .pub_header .h_nav li.on a:after, .pub_header .h_nav li a:hover:after {
        width: 12px;
    }
    .pub_header .h_search {
        padding-left: 21px;
        margin-left: 14px;
    }
}
@media (max-width: 1230px) {
    .pub_header .h_nav li {
        margin-right: 6px;
    }
    .pub_header .h_nav li a {
        max-width: 80px;
        padding: 0 10px;
    }
    .pub_header .h_nav li.on a:before, .pub_header .h_nav li a:hover:before, .pub_header .h_nav li.on a:after, .pub_header .h_nav li a:hover:after {
        width: 8px;
    }
    .pub_header .h_search {
        padding-left: 12px;
        margin-left: 8px;
    }
}
@media (max-width: 1024px) {
    body {
        padding-top: 75px;
    }
    .pub_header {
        height: 75px;
        position: fixed;
        top: 0;
        z-index: 30000;
        background: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    }
    .pub_header .h_logo {
        line-height: 75px;
    }
    .pub_header .h_logo img {
        max-width: 196px;
        max-height: 62px;
    }
    .pub_header .h_right {
        justify-content: center;
        align-items: center;
        padding: 0;
        margin-right: 48px;
    }
    .pub_header .h_nav {
        display: none;
    }
    .pub_header .h_search {
        padding-left: 0;
        margin-left: 0;
        position: static;
    }
    .pub_header .h_search:before {
        display: none;
    }
    .pub_header .h_search .search-icon {
        width: 40px;
        height: 40px;
        background-size: 20px 20px;
    }
    .pub_header .h_search .search-form {
        width: 300px;
        padding: 15px;
        margin-top: 0;
    }
    .pub_header .h_search .search-form [type="text"] {
        margin-bottom: 10px;
    }
    .pub_header .h_tool {
        display: none;
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    .pub_header {
        height: 60px;
    }
    .pub_header .h_logo {
        line-height: 60px;
    }
    .pub_header .h_logo img {
        max-width: 160px;
        max-height: 50px;
    }
    .pub_header .h_right {        
        margin-right: 44px;
    }
    .pub_header .h_search .search-form {
        width: 260px;
        padding: 10px;
    }
    .pub_header .h_search .search-form [type="text"] {
        padding: 0 8px;
        margin-bottom: 8px;
        font-size: 14px;
    }
    .pub_header .h_search .search-form [type="submit"] {
        padding: 0 8px;
        font-size: 14px;
    }
    .h_right{
        display: none;
    }
}
/*========================== .mobile-menu ==========================*/
.mobile-menu {
    display: none;
}
.mobile-menu .menu-btn {
    width: 50px;
    height: 40px;
    padding: 4px;
    /* margin: auto; */
    margin-top: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5%;
    z-index: 30010;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.mobile-menu .menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    top: 45%;
    left: 9px;
    background: #0f6ba7;
    transition: .2s ease-in-out;
}
.mobile-menu .menu-btn span:before {
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 3px;
    position: absolute;
    top: -8px;
    left: 0;
    background: #0f6ba7;
    transition: .2s ease-in-out;
}
.mobile-menu .menu-btn span:after {
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 0;
    background: #0f6ba7;
    transition: .2s ease-in-out;
}
.mobile-menu .menu-btn-open {
    background: #1e1e1e;
}
.mobile-menu .menu-btn-open span {
    width: 0;
    background: #fff;
}
.mobile-menu .menu-btn-open span:before {
    top: 0;
    transform: rotate(45deg);
    background: #fff;
}
.mobile-menu .menu-btn-open span:after {
    top: 0;
    transform: rotate(-45deg);
    background: #fff;
}
.mobile-menu-box {
    width: 100%;
    min-width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .4);
    transform: perspective(450px) rotateY(-91deg);
    transform-origin: 0;
    transition: .5s ease-in-out;
}
.mobile-menu-box-show {
    transform: perspective(450px) rotateY(0deg);
}
.mobile-menu-box .mobile-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 29999;
    background: rgba(0, 0, 0, .6);
}
.mobile-menu-box .mobile-wrapper {
    width: 250px;
    height: 100%;
    position: relative;
    z-index: 30000;
    background: #fff;
}
.mobile-menu-box .mobile-logo {
    height: 75px;
    line-height: 75px;
    text-align: center;
    background: #1e1e1e;
    cursor: pointer;
}
.mobile-menu-box .mobile-logo img {
    max-width: 196px;
    max-height: 62px;
}
.mobile-menu-box .mobile-nav {
    height: 100%;
    padding-bottom: 80px;
    overflow-y: scroll;
}
.mobile-menu-box .mobile-nav ul li {
    border-bottom: 1px solid #151414;
}
.mobile-menu-box .mobile-nav ul li h6 a {
    display: block;
    height: 56px;
    padding: 0 25px 0 40px;
    overflow: hidden;
    position: relative;
    font-size: 18px;
    line-height: 56px;
    letter-spacing: 1px;
    color: #000;
    background: url("../images/icon-down.png") no-repeat 95% center / 8px auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.mobile-menu-box .mobile-nav ul li h6:only-child a {
    background-image: none !important;
}
.mobile-menu-box .mobile-nav ul li h6.on a, .mobile-menu-box .mobile-nav ul li h6 a:hover {
    color: #1e1e1e;
    background-image: url("../images/icon-down-on.png");
}
.mobile-menu-box .mobile-nav ul li h6 a:before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid #757575;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    transition: .5s ease-in-out;
}
.mobile-menu-box .mobile-nav ul li h6.on a:before, .mobile-menu-box .mobile-nav ul li h6 a:hover:before {
    border-color: #1e1e1e;
    background: #1e1e1e;
}
.mobile-menu-box .mobile-nav ul li .mobile-second-nav {
    display: none;
}
.mobile-menu-box .mobile-nav ul li .mobile-second-nav dd {
    border-top: 1px solid #f2f2f2;
}
.mobile-menu-box .mobile-nav ul li .mobile-second-nav dd a {
    display: block;
    height: 56px;
    padding: 0 10px 0 45px;
    overflow: hidden;
    font-size: 16px;
    line-height: 56px;
    letter-spacing: 1px;
    color: #176dd8;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.mobile-menu-box .mobile-nav ul li .mobile-second-nav dd a:hover, .mobile-menu-box .mobile-nav ul li .mobile-second-nav dd.on a {
    color: #1e1e1e;
}
.mobile-menu-box .mobile-nav ol {
    padding: 15px;
    overflow: hidden;
}
.mobile-menu-box .mobile-nav ol li {
    float: left;
    width: 50%;
    margin: 4px 0;
}
.mobile-menu-box .mobile-nav ol li a {
    display: block;
    font-size: 14px;
    line-height: 2;
    color: #9c9c9c;
    transition: .5s ease-in-out;
}
.mobile-menu-box .mobile-nav ol li a:hover {
    color: #1e1e1e;
}
.mobile-menu-box .mobile-nav ol li .icon-login, .mobile-menu-box .mobile-nav ol li .icon-qrcode {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    vertical-align: middle;
}
.mobile-menu-box .mobile-nav ol li .icon-login {
    background: url("../images/h_icon01.png") no-repeat center center;
}
.mobile-menu-box .mobile-nav ol li .icon-qrcode {
    background: url("../images/h_icon02.png") no-repeat center center;
}
.mobile-menu-box .mobile-nav ol li figure {
    width: 90px;
}
.mobile-menu-box .mobile-nav ol li figure img {
    width: 100%;
    height: auto;
}
@media (max-width: 1024px) {
    .mobile-menu {
        display: block;
    }
}
@media (max-width: 768px) {
    .mobile-menu-box .mobile-logo {
        height: 60px;
        line-height: 60px;
    }
    .mobile-menu-box .mobile-logo img {
        max-width: 160px;
        max-height: 50px;
    }
}
/*========================== .ind_banner ==========================*/
.ind_banner a {
    display: block;
}
.ind_banner img {
    width: 100%;
    height: auto;
}
.ind_banner .swiper-pagination {
    bottom: 4%;
}
.ind_banner .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    outline: none;
    margin: 0 6px;
    background: rgba(255, 255, 255, .6);
    opacity: 1;
    transition: .35s ease-in-out;
}
.ind_banner .swiper-pagination .swiper-pagination-bullet-active {
    background: #1e1e1e;
}
@media (max-width: 1024px) {
    .ind_banner .swiper-pagination {
        bottom: 3.5%;
    }
    .ind_banner .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }
}
@media (max-width: 768px) {
    .ind_banner img {
        min-height: 350px;
       
    }
    .ind_banner .swiper-pagination {
        bottom: 3%;
    }
    .ind_banner .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}
/*========================== .comtit1 & .hover_btn_four ==========================*/
.comtit1 {
    text-align: center;
    color: #1e1e1e;
}
.comtit1 em {
    display: block;
    margin-bottom: 24px;
    font-family: 'SimHei', 'SimSun', monospace, monospace, serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    color: inherit;
}
.comtit1 h3 {
    font-size: 38px;
    line-height: 1.3;
    color: inherit;
}
.comtit1 p {
    font-size: 18px;
    line-height: 1.5;
    color: inherit;
}
.comtit1 .text-wrap {
    position: relative;
}
.comtit1 .text-white {
    color: #fff;
}
.comtit1 .text-black {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #1e1e1e;
    clip: rect(0px, 1920px, 24px, 0);
}
@keyframes hover_btn_four {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0.8;
        transform: skew(0deg, 0deg);
    }
    20% {
        transform: skew(5deg, 0deg);
    }
    40% {
        transform: scale3d(1.2, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.95, 1.05, 1.03);
    }
    80% {
        transform: scale3d(1.05, 0.97, .97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}
@media (max-width: 1024px) {
    .comtit1 em {
        margin-bottom: 2%;
        font-size: 34px;
    }
    .comtit1 h3 {
        font-size: 28px;
    }
    .comtit1 p {
        font-size: 16px;
    }
    .comtit1 .text-black {
        clip: rect(0px, 1920px, 17px, 0);
    }
}
@media (max-width: 768px) {
    .comtit1 em {
        font-size: 20px;
    }
    .comtit1 h3 {
        font-size: 18px;
    }
    .comtit1 p {
        font-size: 14px;
    }
    .comtit1 .text-black {
        clip: rect(0px, 1920px, 10px, 0);
    }
}
/*========================== .ind_pro ==========================*/
.ind_pro {
    margin-top: 90px;
    padding-bottom: 70px;
    background: url("../images/ind_pro_bg.jpg") no-repeat center center / cover;
}
.ind_pro .comtit1 {
    margin-bottom: 36px;
    position: relative;
    top: -24px;
    z-index: 10;
    color: #fff;
}
@media (max-width: 1024px) {
    .ind_pro {
        margin-top: 7.5%;
        padding: 0 2% 5.85% 2%;
    }
    .ind_pro .comtit1 {
        margin-bottom: 3%;
        top: -17px;
    }
}
@media (max-width: 768px) {
    .ind_pro .comtit1 {
        top: -10px;
    }
}
.ind_pro_ul {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.ind_pro_ul li {
    float: left;
    width: 32.6%;
    margin-right: 1.1%;
}
.ind_pro_ul li:last-of-type {
    margin-right: 0;
}
.ind_pro_ul li a {
    display: block;
    width: 100%;
}
.ind_pro_ul li figure {
    position: relative;
    padding-bottom: 70px;
}
.ind_pro_ul li figure:before {
    content: "";
    display: block;
    width: 1px;
    height: 0;
    margin: auto;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .5s ease-in-out;
}
.ind_pro_ul li a:hover figure:before {
    bottom: 25px;
    height: 30px;
}
.ind_pro_ul li figure:after {
    content: "";
    display: block;
    width: 60px;
    height: 30px;
    margin: auto;
    background: url("../images/ind_pro_circle01.png") no-repeat center center;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    transition: .5s ease-in-out;
}
.ind_pro_ul li a:hover figure:after {
    background: url("../images/ind_pro_circle02.png") no-repeat center center;
}
.ind_pro_ul li figure .img-box {
    height: 100%;
    padding: 29% 0;
}
.ind_pro_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.ind_pro_ul li a:hover figure .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.ind_pro_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.ind_pro_ul li a:hover figure .img-box img {
    transform: scale(1.05, 1.05);
}
.ind_pro_ul li figcaption {
    margin-top: 20px;
}
.ind_pro_ul li figcaption .icon-pro01, .ind_pro_ul li figcaption .icon-pro02, .ind_pro_ul li figcaption .icon-pro03 {
    display: block;
    height: 90px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: .5s ease-in-out;
}
.ind_pro_ul li a:hover figcaption .icon-pro01, .ind_pro_ul li a:hover figcaption .icon-pro02, .ind_pro_ul li a:hover figcaption .icon-pro03 {
    animation-iteration-count: 1;
    animation: hover_btn_four .5s linear 0s;
}
.ind_pro_ul li figcaption .icon-pro01 {
    background-image: url("../images/ind_pro_icon01.png");
}
.ind_pro_ul li figcaption .icon-pro02 {
    background-image: url("../images/ind_pro_icon02.png");
}
.ind_pro_ul li figcaption .icon-pro03 {
    background-image: url("../images/ind_pro_icon03.png");
}
.ind_pro_ul li figcaption p {
    margin-top: 10px;
    padding: 0 4px;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all .5s ease-in-out;
}
@media (max-width: 1024px) {
    .ind_pro_ul li figure {
        padding-bottom: 50px;
    }
    .ind_pro_ul li a:hover figure:before {
        bottom: 20px;
        height: 24px;
    }
    .ind_pro_ul li figure:after {
        width: 24px;
        height: 24px;
        border: 1px solid transparent;
        border-radius: 50%;
        bottom: -12px;
    }
    .ind_pro_ul li a:hover figure:after {
        background-image: url("../images/ind_pro_circle01.png");
        border-color: #fff;
    }
    .ind_pro_ul li figcaption {
        margin-top: 6%;
    }
    .ind_pro_ul li figcaption .icon-pro01, .ind_pro_ul li figcaption .icon-pro02, .ind_pro_ul li figcaption .icon-pro03 {
        height: 70px;
        background-size: auto 60px;
    }
    .ind_pro_ul li figcaption p {
        margin-top: 3%;
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .ind_pro_ul {
        border-bottom: none;
    }
    .ind_pro_ul li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
    }
    .ind_pro_ul li:last-of-type {
        margin-bottom: 0;
    }
    .ind_pro_ul li figure {
        padding-bottom: 0;
    }
    .ind_pro_ul li figure:before {
        display: none;
    }
    .ind_pro_ul li figure:after {
        display: none;
    }
    .ind_pro_ul li figcaption {
        margin: auto;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translate(0, -50%);
    }
    .ind_pro_ul li figcaption .icon-pro01, .ind_pro_ul li figcaption .icon-pro02, .ind_pro_ul li figcaption .icon-pro03 {
        height: 50px;
        background-size: auto 40px;
    }
    .ind_pro_ul li figcaption p {
        margin-top: 1%;
        font-size: 16px;
    }
}
/*========================== .ind_adv ==========================*/
.ind_adv {
    padding: 70px 0;
}
.ind_adv .comtit1 {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .ind_adv {
        padding: 5.85% 0;
    }
    .ind_adv .comtit1 {
        margin-bottom: 2.5%;
    }
}
.ind_adv_panel {
    position: relative;
}
.ind_adv_hd {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    z-index: 10;
}
.ind_adv_hd li {
    margin-bottom: 50px;
    position: relative;
    cursor: pointer;
}
.ind_adv_hd li:last-of-type {
    margin-bottom: 0;
}
.ind_adv_hd li p {
    width: 200px;
    height: 36px;
    padding: 0 10px 0 60px;
    border-radius: 18px;
    font-size: 16px;
    line-height: 36px;
    color: #fff;
    background: rgba(30, 30, 30, 0.5);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.ind_adv_hd li .ind_adv_icon {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -14px;
    left: -14px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #1e1e1e;
    transition: .5s ease-in-out;
}
.ind_adv_hd li .ind_adv_icon01 {
    background-image: url("../images/ind_adv_icon01w.png");
}
.ind_adv_hd li .ind_adv_icon02 {
    background-image: url("../images/ind_adv_icon02w.png");
}
.ind_adv_hd li .ind_adv_icon03 {
    background-image: url("../images/ind_adv_icon03w.png");
}
.ind_adv_hd li .ind_adv_icon04 {
    background-image: url("../images/ind_adv_icon04w.png");
}
.ind_adv_hd li.on p, .ind_adv_hd li:hover p {
    color: #494949;
    background: #fff;
}
.ind_adv_hd li.on .ind_adv_icon, .ind_adv_hd li:hover .ind_adv_icon {
    background-color: #fff;
    box-shadow: rgba(255, 255, 255, .2) 0 0 0 6px;
}
.ind_adv_hd li.on .ind_adv_icon01, .ind_adv_hd li:hover .ind_adv_icon01 {
    background-image: url("../images/ind_adv_icon01.png");
}
.ind_adv_hd li.on .ind_adv_icon02, .ind_adv_hd li:hover .ind_adv_icon02 {
    background-image: url("../images/ind_adv_icon02.png");
}
.ind_adv_hd li.on .ind_adv_icon03, .ind_adv_hd li:hover .ind_adv_icon03 {
    background-image: url("../images/ind_adv_icon03.png");
}
.ind_adv_hd li.on .ind_adv_icon04, .ind_adv_hd li:hover .ind_adv_icon04 {
    background-image: url("../images/ind_adv_icon04.png");
}
.ind_adv_swiper a {
    display: block;
    width: 100%;
}
.ind_adv_swiper figure {
    position: relative;
}
.ind_adv_swiper figure .img-box {
    height: 100%;
    padding: 20.70% 0;
}
.ind_adv_swiper figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.ind_adv_swiper figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.ind_adv_swiper figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.ind_adv_swiper figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.ind_adv_swiper figcaption {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 30, 30, 0.4);
    width: 910px;
    padding: 30px 180px 30px 60px;
}
.ind_adv_swiper figcaption h4 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 8px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ind_adv_swiper figcaption small {
    font-size: 14px;
}
.ind_adv_swiper figcaption p {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.ind_adv_swiper .swiper-btn-prev, .ind_adv_swiper .swiper-btn-next {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    outline: none;
    position: absolute;
    right: 40px;
    bottom: 50px;
    z-index: 10;
    font-family: 'SimHei', 'SimSun', monospace, monospace, serif;
    font-size: 20px;
    font-weight: bolder;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.ind_adv_swiper .swiper-btn-prev {
    margin-right: 70px;
}
.ind_adv_swiper .swiper-btn-prev:hover, .ind_adv_swiper .swiper-btn-next:hover {
    color: #494949;
    background: #fff;
}
@media (min-width: 1440px) {
    .ind_adv .container {
        max-width: 1300px;
    }
}
@media (min-width: 1560px) {
    .ind_adv .container {
        max-width: 1350px;
    }
}
@media (max-width: 1230px) {
    .ind_adv_hd {
        left: 4%;
    }
    .ind_adv_hd li {
        margin-bottom: 40px;
    }
    .ind_adv_swiper figcaption {
        width: 730px;
        padding: 20px 120px 20px 20px;
    }
    .ind_adv_swiper figcaption p {
        font-size: 15px;
    }
    .ind_adv_swiper .swiper-btn-prev, .ind_adv_swiper .swiper-btn-next {
        right: 20px;
        bottom: 40px;
    }
    .ind_adv_swiper .swiper-btn-prev {
        margin-right: 50px;
    }
}
@media (max-width: 1024px) {
    .ind_adv_hd {
        display: none;
    }
    .ind_adv_swiper figcaption {
        position: static;
        width: 100%;
        padding: 15px 120px 15px 15px;
        background-color: #1e1e1e;
    }
    .ind_adv_swiper figcaption h4 {
        font-size: 19px;
        line-height: 28px;
        margin-bottom: 6px;
    }
    .ind_adv_swiper figcaption small {
        font-size: 13px;
    }
    .ind_adv_swiper figcaption p {
        font-size: 15px;
    }
    .ind_adv_swiper .swiper-btn-prev, .ind_adv_swiper .swiper-btn-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
        right: 15px;
        bottom: 30px;
    }
}
@media (max-width: 768px) {
    .ind_adv_swiper figcaption {
        padding: 2%;
    }
    .ind_adv_swiper figcaption h4 {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 4px;
    }
    .ind_adv_swiper figcaption small {
        font-size: 12px;
    }
    .ind_adv_swiper figcaption p {
        font-size: 14px;
    }
    .ind_adv_swiper .swiper-btn-prev, .ind_adv_swiper .swiper-btn-next {
        width: 30px;
        height: 30px;
        right: 2%;
        top: 25%;
        bottom: auto;
        font-size: 15px;
        line-height: 30px;
    }
    .ind_adv_swiper .swiper-btn-prev {
        margin-right: 0;
        left: 2%;
    }
}
/*========================== .ind_support ==========================*/
.ind_support {
    padding: 60px 0 75px 0;
    background: #f4f4f4 url("../images/ind_support_bg.png") no-repeat center center / cover;
}
.ind_support_l {
    float: left;
    width: 300px;
}
.ind_support_l .comtit1 {
    text-align: left;
}
.ind_support_l .comtit1 em {
    margin-bottom: 48px;
}
.ind_support_l .comtit1 hr {
    width: 1px;
    height: 160px;
    border: none;
    background: #666;
    margin: 48px 0 0 20px;
}
.ind_support_r {
    float: right;
    width: 62.5%;
}
@media (min-width: 1440px) {
    .ind_support .container {
        max-width: 1300px;
    }
}
@media (min-width: 1560px) {
    .ind_support .container {
        max-width: 1400px;
    }
}
@media (max-width: 1024px) {
    .ind_support {
        padding: 5% 0 6.25% 0;
        background: #f4f4f4;
    }
    .ind_support_l {
        float: none;
        width: 100%;
    }
    .ind_support_l .comtit1 {
        text-align: center;
        margin-bottom: 2.5%;
    }
    .ind_support_l .comtit1 em {
        margin-bottom: 2%;
    }
    .ind_support_l .comtit1 hr {
        display: none;
    }
    .ind_support_r {
        float: none;
        width: 100%;
    }
}
.support_ul li {
    float: left;
    width: 31.84%;
    margin-right: 2.24%;
}
.support_ul li:nth-of-type(3n) {
    margin-right: 0;
}
.support_ul li a {
    display: block;
    width: 100%;
}
.support_ul li figure {
    position: relative;
}
.support_ul li figure + figure {
    margin-top: 7.03%;
}
.support_ul li figure .img-box {
    height: 100%;
    padding: 43.53% 0;
}
.support_ul li:nth-of-type(2) figure:nth-of-type(1) .img-box {
    padding: 64.51% 0;
}
.support_ul li:nth-of-type(2) figure:nth-of-type(2) .img-box {
    padding: 62.76% 0;
}
.support_ul li:nth-of-type(3) figure:nth-of-type(1) .img-box {
    padding: 71.50% 0;
}
.support_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.support_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.support_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.support_ul li figure:hover figure .img-box img {
    transform: scale(1.05, 1.05);
}
.support_ul li figcaption {
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, .5);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 7%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.support_ul li figcaption h5 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.support_ul li figcaption p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
@media (max-width: 1024px) {
    .support_ul li {
        width: 32%;
        margin-right: 2%;
    }
    .support_ul li figure + figure {
        margin-top: 6.25%;
    }
    .support_ul li figcaption {
        padding: 4%;
    }
    .support_ul li figcaption h5 {
        margin-bottom: 10px;
        font-size: 19px;
    }
    .support_ul li figcaption p {
        line-height: 22px;
        height: 66px;
    }
}
@media (max-width: 768px) {
    .support_ul li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1%;
    }
    .support_ul li:nth-of-type(3n) {
        margin-bottom: 0;
    }
    .support_ul li figure {
        float: left;
        width: 49.5%;
        margin-right: 1%;
    }
    .support_ul li figure + figure {
        margin-top: 0;
        margin-right: 0;
    }
    .support_ul li figure .img-box {
        padding: 50% 0 !important;
    }
    .support_ul li figcaption {
        padding: 2%;
    }
    .support_ul li figcaption h5 {
        margin-bottom: 5px;
        font-size: 16px;
    }
    .support_ul li figcaption p {
        line-height: 20px;
        height: 60px;
    }
}
/*========================== .ind_process ==========================*/
.ind_process {
    padding: 75px 0;
    background: #1e1e1e url("../images/ind_process_bg.jpg") no-repeat center center / cover fixed;
}
.ind_process .comtit1 {
    color: #fff;
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .ind_process {
        padding: 6.25% 0;
    }
    .ind_process .comtit1 {
        margin-bottom: 5%;
    }
}
.process_ol li {
    float: left;
    width: 16.66%;
    padding: 0 1.66%;
    position: relative;
    transition: .5s ease-in-out;
}
.process_ol li:hover {
    animation-iteration-count: 1;
    animation: hover_btn_four .5s linear 0s;
}
.process_ol li:after {
    content: "";
    display: block;
    width: 18px;
    height: 12px;
    margin: auto;
    background: url("../images/ind_process_arrow.png") no-repeat center center /cover;
    position: absolute;
    top: 35%;
    right: -9px;
}
.process_ol li:nth-of-type(6n):after {
    display: none;
}
.process_ol li .img-box {
    height: 100%;
    padding: 28% 0;
}
.process_ol li p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
@media (max-width: 1024px) {
    .process_ol li {
        padding: 0 1.5%;
    }
    .process_ol li:after {
        width: 15px;
        height: 10px;
        right: -7px;
    }
    .process_ol li p {
        margin-top: 15%;
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .process_ol li {
        width: 33.33%;
        margin-top: 2%;
    }
    .process_ol li:after {
        width: 12px;
        height: 8px;
        right: -6px;
    }
    .process_ol li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .process_ol li:nth-of-type(3n):after {
        display: none;
    }
    .process_ol li .img-box {
        padding: 12.5% 0;
    }
    .process_ol li p {
        margin-top: 6.71%;
        font-size: 14px;
    }
}
/*========================== .ind_case ==========================*/
.ind_case {
    padding: 65px 0;
}
.ind_case .comtit1 {
    margin-bottom: 45px;
}
@media (max-width: 1024px) {
    .ind_case {
        padding: 5.42% 0;
    }
    .ind_case .comtit1 {
        margin-bottom: 3.75%;
    }
}
.ind_case_swiper {
    padding: 0 50px;
    position: relative;
}
.ind_case_ul li {
    float: left;
}
.ind_case_ul li a {
    display: block;
    width: 100%;
}
.ind_case_ul li figure .img-box {
    height: 100%;
    padding: 36.30% 0;
}
.ind_case_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.ind_case_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.ind_case_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.ind_case_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.ind_case_ul li figcaption {
    position: relative;
}
.ind_case_ul li figcaption:before {
    content: "";
    width: 0;
    height: 100%;
    background: #1e1e1e;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}
.ind_case_ul li figcaption p {
    padding: 0 4px;
    font-size: 16px;
    line-height: 48px;
    color: #4b4b4b;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 20;
    transition: .5s ease-in-out;
}
.ind_case_ul li figcaption p small {
    margin-left: 8px;
    font-size: 12px;
    color: #999;
}
.ind_case_ul li figure:hover figcaption:before {
    width: 100%;
    opacity: 1;
}
.ind_case_ul li figure:hover figcaption p {
    color: #fff;
}
.ind_case_swiper .swiper-btngroup {
    margin-top: 40px;
    text-align: center;
}
.ind_case_swiper .swiper-btn-prev, .ind_case_swiper .swiper-btn-next {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #282828;
    border-radius: 50%;
    outline: none;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    color: #282828;
    background: transparent;
    cursor: pointer;
    position: absolute;
    top: 40%;
    z-index: 10;
    transition: .5s ease-in-out;
}
.ind_case_swiper .swiper-btn-prev {
    left: 0;
}
.ind_case_swiper .swiper-btn-next {
    right: 0;
}
.ind_case_swiper .swiper-btn-prev:hover, .ind_case_swiper .swiper-btn-next:hover {
    color: #fff;
    background: #282828;
}
.ind_case_swiper .swiper-btn-link {
    font-size: 18px;
    line-height: 1.5;
    color: #4b4b4b;
    transition: .5s ease-in-out;
}
.ind_case_swiper .swiper-btn-link:hover {
    color: #1e1e1e;
}
@media (min-width: 1440px) {
    .ind_case .container {
        max-width: 1300px;
    }
    .ind_case_swiper {
        padding: 0 70px;
    }
}
@media (min-width: 1560px) {
    .ind_case .container {
        max-width: 1400px;
    }
    .ind_case_swiper {
        padding: 0 90px;
    }
}
@media (max-width: 1024px) {
    .ind_case_swiper {
        padding: 0;
    }
    .ind_case_ul li figcaption p {
        font-size: 15px;
        line-height: 40px;
    }
    .ind_case_ul li figcaption p small {
        margin-left: 6px;
    }
    .ind_case_swiper .swiper-btngroup {
        margin-top: 4%;
    }
    .ind_case_swiper .swiper-btn-prev, .ind_case_swiper .swiper-btn-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
        top: auto;
        bottom: 0;
    }
    .ind_case_swiper .swiper-btn-link {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .ind_case_ul li figcaption p {
        font-size: 14px;
        line-height: 35px;
        text-align: center;
    }
    .ind_case_ul li figcaption p small {
        display: none;
        margin-left: 4px;
    }
    .ind_case_swiper .swiper-btn-prev, .ind_case_swiper .swiper-btn-next {
        width: 30px;
        height: 30px;
        font-size: 15px;
        line-height: 30px;
    }
    .ind_case_swiper .swiper-btn-link {
        font-size: 14px;
    }
}
/*========================== .ind_about ==========================*/
.ind_about {
    padding-top: 95px;
    margin-bottom: 75px;
    background: #fafafa url("../images/ind_about_bg.png") no-repeat center center / 100% 100%;
}
@media (max-width: 1024px) {
    .ind_about {
        padding-top: 6.25%;
        margin-bottom: 6.25%;
        background: #fafafa;
    }
}
.ind_about_r {
    float: right;
    width: 250px;
}
.ind_about_r .comtit1 {
    text-align: left;
}
.ind_about_r .comtit1 em {
    margin-bottom: 48px;
}
.ind_about_r .comtit1 p {
    font-size: 12px;
    line-height: 1.2;
    color: #666;
}
.ind_about_r .comtit1 p span {
    display: block;
}
.ind_about_r .comtit1 hr {
    width: 1px;
    height: 160px;
    border: none;
    background: #666;
    margin: 48px 0 0 20px;
}
.ind_about_l {
    float: left;
    width: 930px;
}
.ind_about_intro .xtit {
    margin-bottom: 50px;
}
.ind_about_intro .xtit h4 {
    font-size: 20px;
    line-height: 1.5;
    color: #666;
}
.ind_about_intro .xtit h4 em {
    display: block;
    color: #282828;
}
.ind_about_intro .xtit hr {
    width: 22px;
    height: 5px;
    background: #282828;
    margin: 8px 0 0 0;
}
.ind_about_intro .xtext {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.72;
    color: #313131;
}
.ind_about_intro .xtext .en {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.25;
    color: #808080;
}
.ind_about_intro .xmore {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #282828;
    border-radius: 50%;
    outline: none;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    color: #282828;
    background: transparent;
    transition: .5s ease-in-out;
}
.ind_about_intro .xmore:hover {
    color: #fff;
    background: #282828;
}
.ind_about_intro .xpic-box {
    position: relative;
    width: 1176px;
    margin-top: 120px;
    overflow: hidden;
}
.ind_about_intro .xpic-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.ind_about_intro .xpic-box:hover:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.ind_about_intro .xpic-box img {
    width: 100%;
    height: auto;
    transition: .5s ease-in-out;
}
.ind_about_intro .xpic-box:hover img {
    transform: scale(1.05, 1.05);
}
@media (min-width: 1440px) {
    .ind_about .container {
        max-width: 1300px;
    }
    .ind_about_intro .xpic-box {
        width: 1274px;
    }
}
@media (min-width: 1560px) {
    .ind_about .container {
        max-width: 1400px;
    }
    .ind_about_intro .xpic-box {
        width: 1372px;
    }
}
@media (max-width: 1230px) {
    .ind_about_l {
        width: 70%;
    }
    .ind_about_intro .xpic-box {
        width: 796px;
        margin-top: 80px;
    }
}
@media (max-width: 1024px) {
    .ind_about_r {
        float: none;
        width: 100%;
    }
    .ind_about_r .comtit1 {
        text-align: center;
        margin-bottom: 3%;
    }
    .ind_about_r .comtit1 em {
        margin-bottom: 2%;
    }
    .ind_about_r .comtit1 p span {
        display: inline;
    }
    .ind_about_r .comtit1 hr {
        display: none;
    }
    .ind_about_l {
        float: none;
        width: 100%;
    }
    .ind_about_intro .xtit {
        margin-bottom: 3%;
        text-align: center;
    }
    .ind_about_intro .xtit h4 {
        font-size: 18px;
    }
    .ind_about_intro .xtit hr {
        width: 20px;
        height: 4px;
        margin: 6px auto 0 auto;
    }
    .ind_about_intro .xtext {
        margin-bottom: 3%;
        line-height: 1.66;
    }
    .ind_about_intro .xtext .en {
        margin-top: 6px;
    }
    .ind_about_intro .xmore {
        width: 36px;
        height: 36px;
        margin: auto;
        font-size: 18px;
        line-height: 36px;
    }
    .ind_about_intro .xpic-box {
        width: 100%;
        margin-top: 3%;
    }
}
@media (max-width: 768px) {
    .ind_about_intro .xtit h4 {
        font-size: 16px;
    }
    .ind_about_intro .xtit hr {
        width: 18px;
        height: 3px;
        margin: 4px auto 0 auto;
    }
    .ind_about_intro .xtext {
        line-height: 1.6;
    }
    .ind_about_intro .xtext .en {
        margin-top: 4px;
    }
    .ind_about_intro .xmore {
        width: 30px;
        height: 30px;
        font-size: 15px;
        line-height: 30px;
    }
}
/*========================== .ind_news_ul ==========================*/
.ind_news {
    padding: 60px 0;
    background: #fafafa;
}
.ind_news .comtit1 {
    margin-bottom: 25px;
}
.ind_news .swiper-btngroup {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}
@media (max-width: 1024px) {
    .ind_news {
        padding: 5% 2%;
    }
    .ind_news .comtit1 {
        margin-bottom: 2.5%;
    }
    .ind_news .swiper-btngroup {
        margin-bottom: 4%;
    }
}
.ind_news .swiper-btn-prev, .ind_news .swiper-btn-next {
    display: inline-block;
    width: 40px;
    height: 40px;
    outline: none;
    font-family: 'SimHei', 'SimSun', monospace, monospace, serif;
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    color: #666;
    vertical-align: middle;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.ind_news .swiper-btn-link {
    margin: 0 3.2%;
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    color: #434343;
    vertical-align: middle;
    transition: .5s ease-in-out;
}
.ind_news .swiper-btn-prev:hover, .ind_news .swiper-btn-next:hover,.ind_news .swiper-btn-link:hover{
    color: #1e1e1e;
}
.ind_news_ul li {
    float: left;
}
.ind_news_ul li a {
    display: block;
    width: 100%;
    padding: 7% 9%;
    position: relative;
}
.ind_news_ul li a:after {
    display: block;
    content: "";
    width: 100%;
    height: 0;
    background: transparent;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}
.ind_news_ul li figure {
    position: relative;
    z-index: 20;
}
.ind_news_ul li figure .img-box {
    height: 100%;
    padding: 33.88% 0;
}
.ind_news_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.ind_news_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.ind_news_ul li figcaption .xmeta {
    margin-bottom: 12.7%;
}
.ind_news_ul li figcaption time {
    display: block;
    font-size: 18px;
    line-height: 1.33;
    color: #1e1e1e;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.ind_news_ul li figcaption time .date {
    display: inline-block;
    font-size: 35px;
}
.ind_news_ul li figcaption .mouth {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.ind_news_ul li figcaption hr {
    width: 42px;
    height: 1px;
    margin: 0;
    border: none;
    background: #1e1e1e;
    transition: .5s ease-in-out;
}
.ind_news_ul li figcaption .xtext {
    margin-bottom: 6.3%;
}
.ind_news_ul li figcaption h5 {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.ind_news_ul li figcaption p {
    font-size: 14px;
    line-height: 22px;
    color: #666;
    height: 88px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.ind_news_ul li a:hover:after {
    height: 100%;
    margin-bottom: 14%;
    background: #1e1e1e;
    opacity: 1;
}
.ind_news_ul li a:hover figure .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.ind_news_ul li a:hover figure .img-box img {
    transform: scale(1.05, 1.05);
}
.ind_news_ul li a:hover figcaption time,
.ind_news_ul li a:hover figcaption .mouth,
.ind_news_ul li a:hover figcaption h5,
.ind_news_ul li a:hover figcaption p {
    color: #f3f3f3;
}
@media (max-width: 1230px) {
    .ind_news_ul li a {
        padding: 5.6%  7.2%;
    }
    .ind_news_ul li figcaption .xmeta {
        margin-bottom: 9.7%;
    }
    .ind_news_ul li figcaption .xtext {
        margin-bottom: 4.8%;
    }
    .ind_news_ul li figcaption h5 {
        margin-bottom: 12px;
    }
    .ind_news_ul li a:hover:after {
        margin-bottom: 11.2%;
    }
}
@media (max-width: 1024px) {
    .ind_news .swiper-btn-prev, .ind_news .swiper-btn-next {
        display: inline-block;
        width: 36px;
        height: 36px;
        font-size: 27px;
        line-height: 36px;
    }
    .ind_news .swiper-btn-link {
        line-height: 36px;
    }
    .ind_news_ul li a {
        padding: 4.4% 5.6%;
    }
    .ind_news_ul li figcaption .xmeta {
        margin-bottom: 7.31%;
    }
    .ind_news_ul li figcaption time {
        font-size: 16px;
    }
    .ind_news_ul li figcaption time .date {
        font-size: 30px;
    }
    .ind_news_ul li figcaption .mouth {
        font-size: 16px;
    }
    .ind_news_ul li figcaption hr {
        width: 36px;
    }
    .ind_news_ul li figcaption .xtext {
        margin-bottom: 3.62%;
    }
    .ind_news_ul li figcaption h5 {
        margin-bottom: 9px;
    }
    .ind_news_ul li a:hover:after {
        margin-bottom: 8.8%;
    }
}
@media (max-width: 768px) {
    .ind_news .swiper-btn-prev, .ind_news .swiper-btn-next {
        width: 30px;
        height: 30px;
        font-size: 22px;
        line-height: 30px;
    }
    .ind_news .swiper-btn-link {
        line-height: 30px;
    }
    .ind_news_ul li a {
        padding: 3% 3.75%;
    }
    .ind_news_ul li figcaption .xmeta {
        margin-bottom: 4.68%;
    }
    .ind_news_ul li figcaption time {
        font-size: 14px;
    }
    .ind_news_ul li figcaption time .date {
        display: inline-block;
        font-size: 25px;
    }
    .ind_news_ul li figcaption .mouth {
        font-size: 14px;
    }
    .ind_news_ul li figcaption hr {
        width: 30px;
    }
    .ind_news_ul li figcaption .xtext {
        margin-bottom: 2.32%;
    }
    .ind_news_ul li figcaption h5 {
        margin-bottom: 8px;
        font-size: 14px;
    }
    .ind_news_ul li figcaption p {
        line-height: 20px;
        height: 60px;
        -webkit-line-clamp: 3;
    }
    .ind_news_ul li a:hover:after {
        margin-bottom: 6%;
    }
}
@media (max-width: 640px) {
    .ind_news_ul li a {
        padding: 2%;
    }
    .ind_news_ul li figcaption .xmeta {
        margin-bottom: 2%;
    }
    .ind_news_ul li figcaption .xtext {
        margin-bottom: 1.5%;
    }
    .ind_news_ul li figcaption h5 {
        margin-bottom: 6px;
    }
    .ind_news_ul li figcaption p {
        height: 40px;
        -webkit-line-clamp: 2;
    }
    .ind_news_ul li a:hover:after {
        margin-bottom: 4%;
    }
}
/*========================== .pub_footer ==========================*/
.pub_footer {
    color: #818181;
    background: #fff;
}
.pub_footer a {
    transition: .5s ease-in-out;
}
.pub_footer a:hover {
    color: #fff;
}
.pub_footer .f_top {
    padding: 60px 0;
}
.pub_footer .f_nav {
    float: right;
    width: 60%;
}
.pub_footer .f_nav li {
    float: left;
    width:  13%;
    margin-right: 4.4%;
}
.pub_footer .f_nav li:last-of-type {
    margin-right: 0;
}
.pub_footer .f_nav li h5 {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
}
.pub_footer .f_nav li dl a {
    font-size: 14px;
    line-height: 24px;
    color: #818181;
    transition: .5s ease-in-out;
}
.pub_footer .f_nav li dl a:hover {
    color: #fff;
}
.pub_footer .f_content {
    float: left;
    width: 370px;
}
.pub_footer .f_join {
    margin-bottom: 25px;
    overflow: hidden;
}
.pub_footer .f_join .xcall {
    float: left;
    width: 60%;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}
.pub_footer .f_join .xcall em {
    display: block;
    font-size: 28px;
    line-height: 1;
}
.pub_footer .f_join .xbtn {
    float: right;
    display: block;
    width: 140px;
    height: 50px;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 25px;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 10;
    transition: .5s ease-in-out;
}
.pub_footer .f_join .xbtn:hover {
    color: #282828;
}
.pub_footer .f_join .xbtn:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: .5s ease-in-out;
}
.pub_footer .f_join .xbtn:hover:before {
    width: 100%;
}
.pub_footer .f_contact {
    padding: 16px 0;
    border-top: 1px solid rgba(247, 250, 252,.16);
    border-bottom: 1px solid rgba(247, 250, 252,.16);
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 24px;
    color: #818181;
}
.pub_footer .f_share a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 6px;
}
.pub_footer .f_share .bshare-weixin {
    background: url("../images/f_weixin.png") no-repeat center center;
}
.pub_footer .f_share .bshare-sinaminiblog {
    background: url("../images/f_weibo.png") no-repeat center center;
}
#bsWXBox, #bsWXBox * {
    box-sizing: content-box;
}
.pub_footer .f_copyright {
    padding: 14px 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;   
    background: #000;
}
@media (min-width: 1440px) {
    .pub_footer .container {
        max-width: 1300px;
    }
}
@media (min-width: 1560px) {
    .pub_footer .container {
        max-width: 1400px;
    }
}
@media (max-width: 1024px) {
    .pub_footer .f_top {
        padding: 5% 0;
    }
    .pub_footer .f_nav {
        float: none;
        width: 100%;
        margin-bottom: 2.5%;
    }
    .pub_footer .f_nav li h5 {
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 22px;
    }
    .pub_footer .f_nav li dl a {
        line-height: 22px;
    }
    .pub_footer .f_content {
        float: none;
        width: 100%;

    }
    .pub_footer .f_join {
        margin-bottom: 2.5%;
    }
    .pub_footer .f_join .xcall em {
        font-size: 24px;
    }
    .pub_footer .f_join .xbtn {
        width: 115px;
        height: 40px;
        border: 1px solid #fff;
        border-radius: 20px;
        margin-top: 2px;
        font-size: 16px;
        line-height: 40px;
    }
    .pub_footer .f_contact {
        padding: 1.6% 0;
        margin-bottom: 2.5%;
        line-height: 22px;
    }
    .pub_footer .f_share a {
        width: 28px;
        height: 28px;
        margin-right: 5px;
    }
    .pub_footer .f_copyright {
        padding: 1.4% 0;
        font-size: 14px;
    }
}
@media (min-width: 769px) {
    .pub_footer .f_nav li dl {
        display: block !important;
    }
}
@media (max-width: 768px) {
    .pub_footer .f_nav li {
        float: none;
        width: 100%;
        margin-right: 0;
        border-bottom: 1px solid #333;
    }
    .pub_footer .f_nav li h5 {
        height: 50px;
        padding: 0 30px 0 10px;
        margin-bottom: 0;
        font-size: 14px;
        line-height: 50px;
        background: #1e1e1e;
        cursor: pointer;
        position: relative;
    }
    .pub_footer .f_nav li h5:after {
        content: "+";
        width: 20px;
        height: 20px;
        margin: auto;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;

    }
    .pub_footer .f_nav li h5.on:after {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .pub_footer .f_nav li dl {
        display: none;
    }
    .pub_footer .f_nav li dl a {
        display: block;
        padding: 0 20px;
        font-size: 13px;
        line-height: 40px;
    }
    .pub_footer .f_nav li dl a:hover {
        color: #fff;
        background: #1e1e1e;
    }
    .pub_footer .f_join .xcall {
        font-size: 13px;
    }
    .pub_footer .f_join .xcall em {
        display: block;
        font-size: 20px;
    }
    .pub_footer .f_join .xbtn {
        width: 85px;
        height: 30px;
        margin-top: 4px;
        border-radius: 15px;
        font-size: 14px;
        line-height: 30px;
    }
    .pub_footer .f_contact {
        font-size: 13px;
        line-height: 20px;
    }
    .pub_footer .f_share a {
        width: 25px;
        height: 25px;
        margin-right: 4px;
    }
    .pub_footer .f_copyright {
        font-size: 13px;
    }
}
.f-bottom {
    display: none;
}
.f-side {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 999;
    transform: translate(0, -50%);
}
.f-side li {
    width: 60px;
    height: 60px;
    margin-bottom: 2px;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background: rgba(52, 52, 52, 0.5);
    cursor: pointer;
}
.f-side li:last-of-type {
    margin-bottom: 0;
}
.f-side li .icon {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 2px auto;
    object-fit: contain;
}
.f-side li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 3px;
    overflow: hidden;
    transition: .6s ease-in-out;
}
.f-side li a:hover {
    background: #1e1e1e;
}
.f-side li div {
    min-width: 160px;
    width: -moz-max-content;
    width: max-content;
    padding: 20px 10px;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: -1;
    background: #1e1e1e;
    opacity: 0;
    pointer-events: none;
    transform: translate(0, -50%);
    transition: .5s ease-in-out;
}
.f-side li:hover div {
    opacity: 1;
    pointer-events: auto;
    right: 61px;
}
.f-side li figure {
    width: 160px;
    padding-right: 10px;
    position: absolute;
    top: 50%;
    right: 61px;
    opacity: 0;
    transform: translate(0, -50%) scale(0);
    transition: .5s ease-in-out;
}
.f-side li figure img {
    width: 100%;
    height: auto;
}
.f-side li:hover figure {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
}
.f-side .go_top {
    display: none;
}
@media (max-width: 1024px) {
    .f-side {
        display: none;
    }
}
@media (max-width: 768px) {
    .pub_footer .f_top {
       display: none;
    }
    .pub_footer .f_copyright {
        margin-bottom: 60px;
    }
    .f-bottom {
        display: block;
        width: 100%;
        height: 60px;
        background: #1e1e1e;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
    }
    .f-bottom li {
        float: left;
        width: 25%;
        height: 100%;
        border-right: 1px solid rgba(255, 255, 255, .5);
        overflow: hidden;
        font-size: 14px;
        line-height: 20px;
        color: #e5e5e5;
        text-align: center;
        cursor: pointer;
    }
    .f-bottom li:last-of-type {
        border-right: none;
    }
    .f-bottom li a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 3px;
    }
    .f-bottom li a img {
        display: block;
        width: 32px;
        height: 32px;
        object-fit: contain;
        margin: 0 auto 2px auto;
    }
}
/*========================== .pub_banner ==========================*/
.pub_banner img {
    width: 100%;
    height: auto;
}
@media (max-width: 1024px) {
    .pub_banner img {
        min-height: 160px;
        object-fit: cover;
    }
}
/*========================== .breadcrumb ==========================*/
.breadcrumb {
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    line-height: 2;
    color: #666;
}
.breadcrumb li {
    display: inline-block;
}
.breadcrumb li + li:before {
    content: ">";
    margin: 0 2px;
}
.breadcrumb li:first-of-type:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 18px;
    margin: 0 4px;
    background: #666;
    vertical-align: text-bottom;
}
.breadcrumb li:nth-of-type(2):before {
    display: none;
}
.breadcrumb a {
    transition: .5s ease-in-out;
}
.breadcrumb a:hover {
    color: #1e1e1e;
}
@media (max-width: 1024px) {
    .breadcrumb {
        margin: 1% 0;
        padding: 1% 0;
    }
}
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 13px;
    }
    .breadcrumb li:first-of-type:before {
        width: 8px;
        height: 15px;
        margin: 0 3px;
    }
}
/*========================== .type-nav ==========================*/
.type-nav {
    margin: 30px 0;
}
.type-nav .swiper-slide {
    float: left;
    width: 16.66%;
}
.type-nav .swiper-slide a {
    display: block;
    width: 100%;
    padding: 0 4px;
    height: 44px;
    border-top: 1px solid #636363;
    border-bottom: 1px solid #636363;
    font-size: 16px;
    line-height: 44px;
    text-align: center;
    color: #5f5f5f;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.type-nav .swiper-slide:first-of-type a {
    border-left: 1px solid #636363;
}
.type-nav .swiper-slide:last-of-type a {
    border-right: 1px solid #636363;
}
.type-nav .swiper-slide.on a, .type-nav .swiper-slide a:hover {
    color: #fff;
    background: #1e1e1e;
    border-color: #1e1e1e;
}
@media (max-width: 1024px) {
    .type-nav {
        margin: 3% 0;
    }
    .type-nav .swiper-slide a {
        height: 40px;
        font-size: 15px;
        line-height: 40px;
    }
}
@media (max-width: 768px) {
    .type-nav .swiper-slide {
        float: left;
        width: 33.33%;
    }
    .type-nav .swiper-slide a {
        height: 35px;
        font-size: 14px;
        line-height: 35px;
    }

}
/*========================== .comtit2 ==========================*/
.comtit2 {
    text-align: center;
}
.comtit2 h3 {
    font-size: 34px;
    line-height: 1.2;
    color: #1e1e1e;
}
.comtit2 p {
    font-size: 16px;
    line-height: 1.5;
    color: #6b6b6b;
}
.comtit2 hr {
    display: block;
    width: 64px;
    height: 2px;
    border: none;
    margin: 16px auto 0;
    background: #1e1e1e;
}
@media (max-width: 1024px) {
    .comtit2 h3 {
        font-size: 26px;
    }
    .comtit2 p {
        font-size: 15px;
    }
    .comtit2 hr {
        width: 48px;
        margin: 10px auto 0;
    }
}
@media (max-width: 768px) {
    .comtit2 h3 {
        font-size: 18px;
    }
    .comtit2 p {
        font-size: 14px;
    }
    .comtit2 hr {
        width: 32px;
        height: 1px;
        margin: 4px auto 0;
    }
}
/*========================== .join ==========================*/
.join .type-nav {
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .join .type-nav {
        margin-bottom: 6%;
    }
}
/*========================== .join_intro ==========================*/
.join_intro {
    background: url("../images/join_intro_bg.jpg") no-repeat center center / cover fixed;
}
.join_intro_content {
    width: 380px;
    padding:  55px 25px;
    margin: auto;
    background: rgba(0,0,0,.7);
}
.join_intro_content .comtit2 {
    margin-bottom: 36px;
}
.join_intro_content .comtit2 h3 {
    margin-bottom: 8px;
    color: #fff;
}
.join_intro_content .comtit2 p {
    font-size: 20px;
    color: #fff;
}
.join_intro_content .xtext {
    font-size: 14px;
    line-height: 1.72;
    color: #fff;
}
@media (max-width: 1024px) {
    .join_intro_content {
        width: 360px;
        padding:  30px 15px;
    }
    .join_intro_content .comtit2 {
        margin-bottom:  20px;
    }
    .join_intro_content .comtit2 h3 {
        margin-bottom: 6px;
    }
    .join_intro_content .comtit2 p {
        font-size: 17px;
    }
    .join_intro_content .xtext {
        line-height: 1.66;
    }
}
@media (max-width: 768px) {
    .join_intro .container {
        padding: 2%;
    }
    .join_intro_content {
        width:  100%;
        padding:  3%  1.5%;
    }
    .join_intro_content .comtit2 {
        margin-bottom: 2%;
    }
    .join_intro_content .comtit2 h3 {
        margin-bottom: 4px;
    }
    .join_intro_content .comtit2 p {
        font-size: 14px;
    }
    .join_intro_content .xtext {
        line-height: 1.6;
    }
}
/*========================== .join_cond ==========================*/
.join_cond {
    padding: 60px 0;
}
.join_cond .comtit2 {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .join_cond {
        padding: 5% 0;
    }
    .join_cond .comtit2 {
        margin-bottom: 3%;
    }
}
.join_cond_ul {
    text-align: center;
    font-size: 0;
    -ms-text-size-adjust: none;
    -webkit-text-size-adjust: none;
}
.join_cond_ul li {
    display: inline-block;
    width: 29.2%;
    margin: 1.25%;
    vertical-align: top;
}
.join_cond_ul li figure {
    border: 1px solid #dedede;
}
.join_cond_ul li figure .img-box {
    height: 100%;
    padding: 20.50% 0;
}
.join_cond_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.join_cond_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.join_cond_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.join_cond_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.join_cond_ul li figcaption {
    text-align: left;
    padding: 8.6% 4.3%;
}
.join_cond_ul li figcaption .xtit {
    font-size: 22px;
    line-height: 1.4;
    color: #1e1e1e;
}
.join_cond_ul li figcaption .xtit small {
    display: block;
    font-size: 12px;
}
.join_cond_ul figcaption .xtext {
    font-size: 14px;
    line-height: 40px;
    color: #4e4e4e;
}
@media (min-width: 1025px) and (max-width: 1230px) {
    .join_cond_ul li {
        float: left;
        width: 32.66%;
        margin: 1% 1% 1% 0;
    }
    .join_cond_ul li:last-of-type {
        margin-right: 0;
    }
    .join_cond_ul li figcaption {
        text-align: left;
        padding: 5.5% 2.75%;
    }
}
@media (max-width: 1024px) {
    .join_cond_ul li {
        width: 47%;
        margin: 1%;
    }
    .join_cond_ul li figcaption {
        padding: 3%;
    }
    .join_cond_ul li figcaption .xtit {
        font-size: 19px;
    }
    .join_cond_ul figcaption .xtext {
        line-height: 32px;
    }
}
@media (max-width: 768px) {
    .join_cond_ul li {
        display: block;
        width: 96%;
        margin: 2%;
    }
    .join_cond_ul li figcaption {
        padding: 2%;
    }
    .join_cond_ul li figcaption .xtit {
        font-size: 16px;
    }
    .join_cond_ul figcaption .xtext {
        font-size: 13px;
        line-height: 25px;
    }
}
/*========================== .join_support ==========================*/
.join_support {
    padding: 60px 0;
    background: #f0f0f0;
}
.join_support .comtit2 {
    margin-bottom: 45px;
}
.join_support_ulWrap {
    padding: 0 2.5%;
}
.join_support_ulWrap .support_ul li figure .img-box {
    padding: 41.76% 0;
}
.join_support_ulWrap .support_ul li:nth-of-type(1) figure:nth-of-type(2) .img-box {
    padding: 34.77% 0;
}
.join_support_ulWrap .support_ul li:nth-of-type(2) figure:nth-of-type(1) .img-box {
    padding:  48.74% 0;
}
.join_support_ulWrap .support_ul li:nth-of-type(2) figure:nth-of-type(2) .img-box {
    padding: 47.34% 0;
}
.join_support_ulWrap .support_ul li:nth-of-type(3) figure:nth-of-type(1) .img-box {
    padding: 43.15% 0;
}
.join_support_ulWrap .support_ul li:nth-of-type(3) figure:nth-of-type(2) .img-box {
    padding: 36.17% 0;
}
@media (max-width: 1024px) {
    .join_support {
        padding: 5% 0;
    }
    .join_support .comtit2 {
        margin-bottom: 4%;
    }
    .join_support_ulWrap {
        padding: 0;
    }
}
/*========================== .join_store ==========================*/
.join_store {
    padding: 50px 0;
}
.join_store .comtit2 {
    margin-bottom: 45px;
}
@media (max-width: 1024px) {
    .join_store {
        padding: 4.5% 0;
    }
    .join_store .comtit2 {
        margin-bottom: 4%;
    }
}
.join_store_swiper {
    padding: 0 1.67%;
}
.join_store_big {
    float: left;
    width: 48.8%;
}
.join_store_ul {
    float: right;
    width: 49.3%;
}
.join_store_ul li {
    float: left;
    width: 48.25%;
    margin-top: 3.5%;
    margin-right: 3.5%;
}
.join_store_ul li:nth-of-type(2n) {
    margin-right: 0;
}
.join_store_ul li:nth-of-type(-n+2) {
    margin-top: 0;
}
.join_store_swiper .swiper-pagination {
    display: block;
    width: 100%;
    margin-top: 25px;
    position: static;
    text-align: center;
}
.join_store_swiper .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    outline: none;
    margin: 0 6px;
    background: #a1a1a1;
    opacity: 1;
    transition: .35s ease-in-out;
}
.join_store_swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #1e1e1e;
}
.join_store_big a,.join_store_ul li a {
    display: block;
    width: 100%;
}
.join_store_big figure,.join_store_ul li figure {
    position: relative;
}
.join_store_big figure .img-box,.join_store_ul li figure .img-box {
    height: 100%;
    padding: 34.36% 0;
}
.join_store_ul li figure .img-box {
    height: 100%;
    padding: 33.27% 0;
}
.join_store_big figure .img-box:after,.join_store_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.join_store_big figure:hover .img-box:after,.join_store_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.join_store_big figure .img-box img,.join_store_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.join_store_big figure:hover .img-box img,.join_store_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.join_store_big figcaption,.join_store_ul li figcaption {
    position: absolute;
    background: rgba(0,0,0,.4);
    bottom: 0;
    left: 0;
    width: 100%;
}
.join_store_big figcaption:before,.join_store_ul li figcaption:before {
    content: "";
    width: 0;
    height: 100%;
    background: rgba(30, 30, 30, .8);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}
.join_store_big figcaption p,.join_store_ul li figcaption p {
    padding: 2% 4px;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 20;
    transition: .5s ease-in-out;
}
.join_store_big figure:hover figcaption:before,.join_store_ul li figure:hover figcaption:before {
    width: 100%;
    opacity: 1;
}
.join_store_big figure:hover figcaption p,.join_store_ul li figure:hover figcaption p {
    color: #fff;
}
@media (max-width: 1024px) {
    .join_store_swiper {
        padding: 0;
    }
    .join_store_big {
        width: 49%;
    }
    .join_store_ul {
        width: 49.7%;
    }
    .join_store_ul li {
        width: 48.8%;
        margin-top: 2.4%;
        margin-right: 2.4%;
    }
    .join_store_swiper .swiper-pagination {
        margin-top: 2.5%;
    }
    .join_store_swiper .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }
    .join_store_big figcaption p,.join_store_ul li figcaption p {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .join_store_big {
        float: none;
        width: 100%;
        margin-bottom: 1%;
    }
    .join_store_ul {
        float: none;
        width: 100%;
    }
    .join_store_ul li {
        width: 49.5%;
        margin-top: 1%;
        margin-right: 1%;
    }
    .join_store_swiper .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    .join_store_big figcaption p,.join_store_ul li figcaption p {
        padding: 1.5% 4px;
        font-size: 14px;
    }

}
/*========================== .join_process ==========================*/
.join_process {
    padding: 85px 0;
    background: #1e1e1e url("../images/join_process_bg.jpg") no-repeat center center / cover fixed;
}
.join_process .comtit2 {
    margin-bottom: 70px;
}
.join_process .comtit2 h3 {
    margin-bottom: 1%;
    color: #fff;
}
.join_process .comtit2 p {
    color: #fff;
}
.join_process .comtit2 hr {
    background: #fff;
}
@media (max-width: 1024px) {
    .join_process {
        padding: 7% 0;
    }
    .join_process .comtit2 {
        margin-bottom: 5.5%;
    }
}
/*========================== .join_apply ==========================*/
.join_apply_top {
    padding: 36px 0;
    background: #898989;
}
.join_apply_top .comtit2 h3 {
    margin-bottom: 10px;
    color: #fff;
}
.join_apply_top .comtit2 p {
    color: #fff;
}
.join_apply_top .comtit2 hr {
    background: #fff;
}
@media (max-width: 1024px) {
    .join_apply_top {
        padding: 3% 0;
    }
    .join_apply_top .comtit2 h3 {
        margin-bottom: 1%;
    }
}
.join_apply_con {
    padding: 60px 0;
    background: url("../images/join_apply_bg.jpg") no-repeat center center / cover fixed;
}
.join_apply_form {
    width: 600px;
    margin: 0 auto;
}
.join_apply_form .form-group {
    margin-bottom: 15px;
    overflow: hidden;
}
.join_apply_form .form-group:last-of-type {
    margin-bottom: 0;
}
.join_apply_form input {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 50px;
    color: #7e7e7e;
    background: #fff;
}
.join_apply_form select {
    display: block;
    float: left;
    width: 48%;
    margin-right: 4%;
    height: 50px;
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 50px;
    color: #7e7e7e;
    background: #fff;
}
.join_apply_form select:last-of-type {
    margin-right: 0;
}
.join_apply_form textarea {
    display: block;
    width: 100%;
    height: 100px;
    padding: 20px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #7e7e7e;
    background: #fff;
    resize: none;
}
.join_apply_form button {
    display: block;
    float: left;
    width: 49%;
    height: 50px;
    margin-right: 2%;
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 18px;
    line-height: 50px;
    color: #fff;
    background: #7e7e7e;
    transition: .5s ease-in-out;
}
.join_apply_form button:last-of-type {
    margin-right: 0;
}
.join_apply_form button[disabled],.join_apply_form button[disabled='disabled'] {
    color: #fff !important;
    background: #7e7e7e !important;
}
.join_apply_form button:hover,.join_apply_form button.js_submit_hover {
    color: #fff;
    background: #232323;
}
.join_apply_form .ver_code {
    width: 240px;
    height: 40px;
    border-radius: 4px;
    background: #fff;
    position: relative;
}
.join_apply_form .ver_code > p {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -8px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #3c3c3c;
}
.join_apply_form .ver_code .code-box {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border: 0;
    border-radius: 4px;
    outline: none;
    position: relative;
    color: #3c3c3c;
}
.join_apply_form .ver_code .code-box p, .join_apply_form  .ver_code .code-box span {
    display: block;
    height: 100%;
    border-radius: 4px;
    position: absolute;
    left: 0;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    color: #fff;
}
.join_apply_form  .ver_code .code-box span {
    width: 40px;
    font-family: "SimSun", monospace, serif;
    cursor: pointer;
    background: #7e7e7e;
}
@media (max-width: 1024px) {
    .join_apply_con {
        padding: 5% 0;
    }
    .join_apply_form .form-group {
        margin-bottom: 10px;
    }
    .join_apply_form input {
        height: 45px;
        padding: 0 15px;
        font-size: 15px;
        line-height: 45px;
    }
    .join_apply_form select {
        width: 49%;
        margin-right: 2%;
        height: 45px;
        padding: 0 15px;
        font-size: 15px;
        line-height: 45px;
    }
    .join_apply_form textarea {
        height: 90px;
        padding: 15px;
        font-size: 15px;
    }
    .join_apply_form button {
        height: 45px;
        padding: 0 15px;
        font-size: 16px;
        line-height: 45px;
    }
    .join_apply_form .ver_code > p {
        font-size: 15px;
    }
    .join_apply_form .ver_code .code-box p, .join_apply_form  .ver_code .code-box span {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .join_apply_form {
        width: 100%;
    }
    .join_apply_form .form-group {
        margin-bottom: 1.5%;
    }
    .join_apply_form input {
        height: 40px;
        padding: 0 10px;
        font-size: 14px;
        line-height: 40px;
    }
    .join_apply_form select {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5%;
        height: 40px;
        padding: 0 10px;
        font-size: 14px;
        line-height: 40px;
    }
    .join_apply_form select:last-of-type {
        margin-bottom: 0;
    }
    .join_apply_form textarea {
        height: 80px;
        padding: 10px;
        font-size: 14px;
    }
    .join_apply_form button {
        width: 49.25%;
        height: 40px;
        margin-right: 1.5%;
        padding: 0 10px;
        font-size: 15px;
        line-height: 40px;
    }
    .join_apply_form .ver_code {
        width: 200px;
    }
    .join_apply_form .ver_code > p {
        margin-top: -7px;
        font-size: 14px;
    }
    .join_apply_form .ver_code .code-box p, .join_apply_form  .ver_code .code-box span {
        font-size: 14px;
    }
}
/*========================== .pages ==========================*/
.pages {
    margin-top: 50px;
    text-align: center;
}
.pages a {
    display: inline-block;
    height: 35px;
    min-width: 35px;
    padding: 0 4px;
    margin: 3px;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    background: #ccc;
    transition: .5s ease-in-out;
}
.pages a:hover,.pages a.on {
    background: #212121;
}
.pages .pages-select {
    width: 35px;
    height: 35px;
    border: 1px solid #a9a9a9;
    border-radius: 4px;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 35px;
    text-align: center;
    color: #212121;
    background: transparent;
    transition: .5s ease-in-out;
}
@media (max-width: 1024px) {
    .pages {
        margin-top: 5%;
    }
    .pages a {
        height: 32px;
        min-width: 32px;
        margin: 2px;
        font-size: 14px;
        line-height: 32px;
    }
    .pages .pages-select {
        width: 32px;
        height: 32px;
        font-size: 14px;
        line-height: 32px;
    }
}
/*========================== .pro ==========================*/
.pro .type-nav {
    margin: 55px 0 40px 0;
}
.pro_inner {
    padding: 60px 0;
    background: #eee;
}
@media (max-width: 1024px) {
    .pro .type-nav {
        margin: 5.5% 0 4% 0;
    }
    .pro_inner {
        padding: 5% 0;
    }
}


.pro_ul li {
    margin-bottom: 2.5%;
}
.pro_ul li:last-of-type {
    margin-bottom: 0;
}
.pro_ul li a {
    display: block;
    width: 100%;
}
.pro_ul li figure {
    padding: 1.67%;
    background: #fff;
}
.pro_ul li figure .img-box {
    float: left;
    width: 40.36%;
    height: 100%;
    padding: 15.30% 0;
}
.pro_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.pro_ul li a:hover figure .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.pro_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.pro_ul li a:hover figure .img-box img {
    transform: scale(1.05, 1.05);
}
.pro_ul li figcaption {
    float: right;
    width: 56.10%;
    padding: 3.40% 0;
}
.pro_ul li figcaption .xtit {
    margin-bottom: 6.15%;
    font-size: 18px;
    left: 30px;
    color: #484848;
}
.pro_ul li figcaption hr {
    display: block;
    width: 100%;
    height: 1px;
    border: none;
    margin: 0 auto;
    background: #d3d3d3;
    position: relative;
}
.pro_ul li figcaption hr:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #1e1e1e;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .5s ease-in-out;
}
.pro_ul li a:hover figcaption hr:after {
    width: 100%;
}
.pro_ul li figcaption .xtext {
    margin: 6.15% 0 3.85%;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
}
.pro_ul li figcaption .xbtn {
    display: block;
    width: 200px;
    height: 40px;
    padding: 0 18px;
    border: 2px solid #c2c2c2;
    font-weight: bold;
    font-size: 15px;
    line-height: 40px;
    color: #7c7c7c;
    cursor: pointer;
    overflow: hidden;
    transition: .5s ease-in-out;
}
.pro_ul li a:hover figcaption .xbtn {
    border-color: #1e1e1e;
    color: #252525;
}
.pro_ul li figcaption .xbtn .arrow {
    float: right;
}
@media (max-width: 1024px) {
    .pro_ul li {
        margin-bottom: 2%;
    }
    .pro_ul li figure {
        padding: 1.5%;
    }
    .pro_ul li figure .img-box {
        width: 42%;
        padding: 16% 0;
    }
    .pro_ul li figcaption {
        width: 56%;
        padding: 1% 0;
    }
    .pro_ul li figcaption .xtit {
        margin-bottom: 2%;
        font-size: 16px;
        line-height: 28px;
    }
    .pro_ul li figcaption .xtext {
        margin: 2% 0 1.5%;
        font-size: 14px;
        line-height: 28px;

    }
    .pro_ul li figcaption .xbtn {
        width: 160px;
        padding: 0 12px;
        font-size: 14px;
        line-height: 40px;
    }
}
@media (max-width: 768px) {
    .pro_ul li figure .img-box {
        float: none;
        width: 100%;
        height: 100%;
        padding: 37.92% 0;
    }
    .pro_ul li figcaption {
        float: none;
        width: 100%;
    }
    .pro_ul li figcaption .xtit {
        font-size: 14px;
        line-height: 25px;
    }
    .pro_ul li figcaption .xtext {
        font-size: 13px;
        line-height: 25px;
    }
    .pro_ul li figcaption .xbtn {
        width: 120px;
        height: 35px;
        padding: 0 6px;
        border: 1px solid #c2c2c2;
        font-size: 13px;
        line-height: 35px;
    }
}







.pro_ul_view li {
    margin-top: 30px;
}
.pro_ul_view li:nth-of-type(-n+1) {
    margin-top: 0;
}
.pro_ul_view li:last-of-type {
    margin-bottom: 0;
}
.pro_ul_view li a {
    display: block;
    width: 100%;
}
.pro_ul_view li figure {
    background: #fff;
    border:1px solid #d5d5d5;
}
.pro_ul_view li figure .img-box {
    height: 100%;
    width:100%;
    padding: 38.8% 0;
    border-bottom: 1px solid #d5d5d5;
}
.pro_ul_view li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.pro_ul_view li a:hover figure .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;

}
.pro_ul_view li figure .img-box img {
    width: 100%;
    height: 100%;
    padding:6px;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.pro_ul_view li a:hover figure .img-box img {
    transform: scale(1.05, 1.05);
}

.pro_ul_view li figcaption {
    position: relative;
    border-top:1px solid #d5d5d5;
}
.pro_ul_view li figcaption:before {
    content: "";
    width: 0;
    height: 100%;
    background: #1e1e1e;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}

.pro_ul_view li figcaption p {
    padding: 8px 4px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #5f5f5f;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 20;
    transition: .5s ease-in-out;
}
.pro_ul_view li figure:hover figcaption:before{
    width: 100%;
    opacity: 1;
}
.pro_ul_view li figure:hover figcaption p{
    color: #fff;
}

.pro_ul_view li figcaption .xtit {
    margin-bottom: 6.15%;
    font-size: 18px;
    left: 30px;
    color: #484848;
}
.pro_ul_view li figcaption hr {
    display: block;
    width: 100%;
    height: 1px;
    border: none;
    margin: 0 auto;
    background: #d3d3d3;
    position: relative;
}
.pro_ul_view li figcaption hr:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #1e1e1e;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .5s ease-in-out;
}
.pro_ul_view li a:hover figcaption hr:after {
    width: 100%;
}
.pro_ul_view li figcaption .xtext {
    margin: 6.15% 0 3.85%;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
}
.pro_ul_view li figcaption .xbtn {
    display: block;
    width: 200px;
    height: 40px;
    padding: 0 18px;
    border: 2px solid #c2c2c2;
    font-weight: bold;
    font-size: 15px;
    line-height: 40px;
    color: #7c7c7c;
    cursor: pointer;
    overflow: hidden;
    transition: .5s ease-in-out;
}
.pro_ul_view li a:hover figcaption .xbtn {
    border-color: #1e1e1e;
    color: #252525;
}
.pro_ul_view li figcaption .xbtn .arrow {
    float: right;
}
@media (min-width: 769px) and (max-width: 1024px){
    .pro_ul_view li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .pro_ul_view li:nth-of-type(3n) {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
   
    .pro_ul_view li {
        float: left;
        width: 32%;
        margin-right: 2%;
        margin-top: 2%;
    }
    .pro_ul_view li figure {
        padding: 1.5%;
    }
    .pro_ul_view li figure .img-box {
        width: 100%;
    }
    .pro_ul_view li figcaption {
        width: 100%;
        padding: 1% 0;
    }
    .pro_ul_view li figcaption .xtit {
        margin-bottom: 2%;
        font-size: 16px;
        line-height: 28px;
    }
    .pro_ul_view li figcaption .xtext {
        margin: 2% 0 1.5%;
        font-size: 14px;
        line-height: 28px;

    }
    .pro_ul_view li figcaption .xbtn {
        width: 160px;
        padding: 0 12px;
        font-size: 14px;
        line-height: 40px;
    }
}
@media (max-width: 768px) {
    
    .pro_ul_view li {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .pro_ul_view li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .pro_ul_view li:nth-of-type(2n) {
        margin-right: 0;
    }
    .pro_ul_view li figure .img-box img {
        padding: 4px;
    }
    .pro_ul_view li figcaption p {
        padding: 4px;
        font-size: 14px;
    }
    .pro_ul_view li figcaption {
        float: none;
        width: 100%;
    }
    .pro_ul_view li figcaption .xtit {
        font-size: 14px;
        line-height: 25px;
    }
    .pro_ul_view li figcaption .xtext {
        font-size: 13px;
        line-height: 25px;
    }
    .pro_ul_view li figcaption .xbtn {
        width: 120px;
        height: 35px;
        padding: 0 6px;
        border: 1px solid #c2c2c2;
        font-size: 13px;
        line-height: 35px;
    }
}
/*========================== .case ==========================*/
.case .type-nav {
    margin: 55px 0;
}
.case_inner {
    padding-bottom: 55px;
}
@media (max-width: 1024px) {
    .case .type-nav {
        margin: 5.5% 0;
    }
    .case_inner {
        padding-bottom: 4.5%;
    }
}
.case_ul li {
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-top: 2%;
}
.case_ul li a {
    display: block;
    width: 100%;
}
.case_ul li figure {
    position: relative;
}
.case_ul li figure .img-box {
    height: 100%;
    padding: 36.94% 0;
}
.case_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.case_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.case_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.case_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.case_ul li figcaption {
    position: absolute;
    background: rgba(0,0,0,.4);
    bottom: 0;
    left: 0;
    width: 100%;
}
.case_ul li figcaption:before {
    content: "";
    width: 0;
    height: 100%;
    background: rgba(30, 30, 30, .8);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}
.case_ul li figcaption p {
    padding: 2% 4px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 20;
    transition: .5s ease-in-out;
}
.case_ul li figcaption p small {
    margin-left: 8px;
    font-size: 12px;
    color: #999;
}
.case_ul li figure:hover figcaption:before {
    width: 100%;
    opacity: 1;
}
.case_ul li figure:hover figcaption p {
    color: #fff;
}
@media (min-width: 769px) {
    .case_ul li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .case_ul li:nth-of-type(3n) {
        margin-right: 0;
    }
}
@media (max-width: 1024px) {
    .case_ul li {
        width: 32.5%;
        margin-right: 1.25%;
        margin-top: 1.25%;
    }
    .case_ul li figcaption p {
        font-size: 15px;
    }
    .case_ul li figcaption p small {
        margin-left: 6px;
    }
}
@media (max-width: 768px) {
    .case_ul li {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .case_ul li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .case_ul li:nth-of-type(2n) {
        margin-right: 0;
    }
    .case_ul li figcaption p {
        font-size: 14px;
    }
    .case_ul li figcaption p small {
        display: none;
        margin-left: 4px;
    }

}
/*========================== .prov_show ==========================*/
.prov .type-nav {
    margin-top: 55px;
}
.prov_show {
    padding: 20px 0;
}
@media (max-width: 1024px) {
    .prov .type-nav {
        margin-top: 5.5%;
    }
    .prov_show {
        padding: 2% 0;
    }
}
@media (max-width: 768px) {
    .prov_show {
        background: #eee;
    }
}
.prov_show_swiper {
    float: left;
    width: 51.75%;
}
.prov_show_swiper .gallery-big a {
    display: block;
    width: 100%;
}
.prov_show_swiper .gallery-big .img-box {
    width:  100%;
    height: 100%;
    padding: 39% 0;
}
.prov_show_swiper .gallery-big .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.prov_show_swiper .gallery-big .swiper-slide:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.prov_show_swiper .gallery-big .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.prov_show_swiper .gallery-big .swiper-slide:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.prov_show_swiper .gallery-thumbs {
    padding: 15px 45px;
    position: relative;
}
.prov_show_swiper .gallery-thumbs .swiper-slide {
    width: 94px;
    height: 90px;
    position: relative;
    cursor: pointer;
}
.prov_show_swiper .gallery-thumbs .swiper-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    background: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .5s ease-in-out;
}
.prov_show_swiper .gallery-thumbs .swiper-slide-thumb-active:after {
    border-color: #232323;
}
.prov_show_swiper .gallery-thumbs a {
    display: block;
    width: 100%;
    height: 100%;
}
.prov_show_swiper .gallery-thumbs .img-box {
    width: 100%;
    height: 100%;
}
.prov_show_swiper .gallery-thumbs .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.prov_show_swiper .gallery-thumbs .swiper-slide:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.prov_show_swiper .gallery-thumbs .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.prov_show_swiper .gallery-thumbs .swiper-slide:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.prov_show_swiper .gallery-thumbs .swiper-btn-prev, .prov_show_swiper .gallery-thumbs .swiper-btn-next {
    display: block;
    width:26px;
    height: 90px;
    border: 2px solid #b4b4b4;
    outline: 0;
    margin: auto;
    font-family: 'SimHei', 'SimSun', monospace, monospace, serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 90px;
    text-align: center;
    color: #b4b4b4;
    position: absolute;
    top: 0;
    bottom: 0;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.prov_show_swiper .gallery-thumbs .swiper-btn-prev:hover, .prov_show_swiper .gallery-thumbs .swiper-btn-next:hover {
    color: #fff;
    background: #232323;
    border-color: #232323;
}
.prov_show_swiper .gallery-thumbs .swiper-btn-prev {
    left: 0;
}
.prov_show_swiper .gallery-thumbs .swiper-btn-next {
    right: 0;
}
.prov_show_info {
    float: right;
    width: 45%;
    min-height: 590px;
    padding: 3% 2%;
    background: #f5f5f5;
}
.prov_show_info .xtit {
    font-size: 20px;
    line-height: 30px;
    color: #0b0b0b;
}
.prov_show_info hr {
    display: block;
    width: 100%;
    height: 1px;
    border: none;
    margin: 3.05% auto 8.15%;
    background: #b4b4b4;
}
.prov_show_info .xtext {
    margin-bottom:  8.15%;
    font-size: 16px;
    line-height: 30px;
    color: #454545;
}
.prov_show_info .xcall {
    font-size: 24px;
    line-height: 30px;
    color: #1c1c1c;
}
.prov_show_info .xcall em {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    color: #010101;
}
.prov_show_info .xbtnGroup {
    margin-top: 8.15%;
}
.prov_show_info .xbtn {
    display: inline-block;
    width: 170px;
    height: 48px;
    padding: 0 4px;
    margin: 4px;
    border:1px solid #b4b4b4;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    vertical-align: middle;
    color: #1c1c1c;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.prov_show_info .xbtn:hover {
    color: #fff;
    background: #232323;
    border-color: #232323;
}
@media (max-width: 1230px) {
    .prov_show_info {
        min-height: 506px;
    }
}
@media (max-width: 1024px) {

    .prov_show_swiper {
        width: 52%;
    }
    .prov_show_swiper .gallery-thumbs {
        padding: 10px 36px;
    }
    .prov_show_swiper .gallery-thumbs .swiper-slide {
        width: 72px;
        height: 70px;
    }
    .prov_show_swiper .gallery-thumbs .swiper-btn-prev, .prov_show_swiper .gallery-thumbs .swiper-btn-next {
        width: 24px;
        height: 70px;
        font-size: 18px;
        line-height: 70px;
    }
    .prov_show_info {
        width: 46%;
        min-height: auto;
        padding: 2.1%  1.4%;
    }
    .prov_show_info .xtit {
        font-size: 18px;
        line-height: 25px;
    }
    .prov_show_info hr {
        margin: 2% auto 4%;
    }
    .prov_show_info .xtext {
        margin-bottom: 4%;
        font-size: 15px;
        line-height: 25px;
    }
    .prov_show_info .xcall {
        font-size: 21px;
        line-height: 25px;
    }
    .prov_show_info .xcall em {
        font-size: 25px;
    }
    .prov_show_info .xbtnGroup {
        margin-top: 4%;
    }
    .prov_show_info .xbtn {
        width: 148px;
        height: 42px;
        margin: 3px;
        font-size: 16px;
        line-height: 42px;
    }
}
@media (max-width: 768px) {
    .prov_show_swiper {
        float: none;
        width: 100%;
        padding: 1.5% 1.5% 0 ;
        margin-top: 2%;
        background: #fff;
    }
    .prov_show_swiper .gallery-thumbs {
        padding: 5px 25px;
    }
    .prov_show_swiper .gallery-thumbs .swiper-slide {
        width:  60px;
        height: 60px;
    }
    .prov_show_swiper .gallery-thumbs .swiper-slide:after {
        border-width: 1px;
    }
    .prov_show_swiper .gallery-thumbs .swiper-btn-prev, .prov_show_swiper .gallery-thumbs .swiper-btn-next {
        width: 20px;
        height: 60px;
        border-width: 1px;
        font-size: 16px;
        line-height: 60px;
    }
    .prov_show_info {
        float: none;
        width: 100%;
        padding: 1.5%;
        background: #fff;
    }
    .prov_show_info .xtit {
        font-size: 16px;
        line-height: 22px;
    }
    .prov_show_info hr {
        margin: 1.5% auto 3%;
    }
    .prov_show_info .xtext {
        margin-bottom: 2%;
        font-size: 14px;
        line-height: 22px;
    }
    .prov_show_info .xcall {
        font-size: 18px;
        line-height: 22px;
    }
    .prov_show_info .xcall em {
        font-size: 22px;
    }
    .prov_show_info .xbtnGroup {
        margin-top: 2%;
    }
    .prov_show_info .xbtn {
        width: 128px;
        height: 36px;
        margin: 2px;
        font-size: 14px;
        line-height: 36px;

    }
}
/*========================== .prov_con ==========================*/
.prov_con {
    padding: 42px 0;
    background: #eee;
}
.prov_con_left {
    float: left;
    width: 71.25%;
    background: #fff;
}
.prov_con_left .text{
    padding:2%;
}

.prov_con_right {
    float: right;
    width: 26.75%;;
    background: #fff;
}
.prov_detail {
    padding: 32px;
}
.prov_detail .xtit {
    margin-bottom: 48px;
    text-align: center;
}
.prov_detail .xtit hr {
    display: block;
    width: 65px;
    height: 2px;
    border: none;
    margin: 15px auto;
    background: #1e1e1e;
}
.prov_detail .xtit h3 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: bold;
    color: #1b1b1b;
}
.prov_detail .xtit p {
    font-size: 24px;
    line-height: 1.5;
    color: #1a1a1a;
}
.prov_detail .xtext {
    font-size: 14px;
    line-height: 1.7;
    color: #1b1b1b;
}
.prov_detail .xtext em {
    font-weight: bold;
}
.prov_detail .xtext img {
    display: block;
    width: 100%;
    height: auto;
    margin: 4px auto 0;
}
.prov_hot {
    padding: 32px 20px;
}
.prov_hot .xtit {
    text-align: center;
    margin: 8px 0 20px;
}
.prov_hot .xtit h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.1;
    color: #1b1b1b;
    margin-bottom: 8px;
}
.prov_hot .xtit h3 span {
    display: block;
}
.prov_hot .xtit p {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.5;
}
.prov_hot_ul li {
    margin-top: 30px;
}
.prov_hot_ul li:nth-of-type(-n+1) {
    margin-top: 0;
}
.prov_hot_ul li a {
    display: block;
    width: 100%;
}
.prov_hot_ul li figure {
    border: 1px solid #d5d5d5;
}
.prov_hot_ul li figure .img-box {
    height: 100%;
    padding: 38.8% 0;
    border-bottom: 1px solid #d5d5d5;
}
.prov_hot_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.prov_hot_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.prov_hot_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    padding: 6px;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.prov_hot_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.prov_hot_ul li figcaption {
    position: relative;
}
.prov_hot_ul li figcaption:before {
    content: "";
    width: 0;
    height: 100%;
    background: #1e1e1e;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}
.prov_hot_ul li figcaption p {
    padding: 8px 4px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #5f5f5f;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 20;
    transition: .5s ease-in-out;
}
.prov_hot_ul li figure:hover figcaption:before {
    width: 100%;
    opacity: 1;
}
.prov_hot_ul li figure:hover figcaption p {
    color: #fff;
}
@media (max-width: 1230px) {
    .prov_detail {
        padding: 28px;
    }
    .prov_detail .xtit {
        margin-bottom: 40px;
    }
    .prov_detail .xtit h3 {
        font-size: 40px;
    }
    .prov_detail .xtit p {
        font-size: 21px;
    }
    .prov_hot {
        padding: 28px 20px;
    }
}
@media (max-width: 1024px) {
    .prov_con {
        padding: 3.5% 0;
    }
    .prov_con_left {
        float: none;
        width: 100%;
        margin-bottom: 2%;
    }
    .prov_con_right {
        float: none;
        width: 100%;
    }
    .prov_detail {
        padding: 3%;
    }
    .prov_detail .xtit {
        margin-bottom: 4%;
    }
    .prov_detail .xtit hr {
        width: 48px;
        height: 2px;
        margin: 9px auto;
    }
    .prov_detail .xtit h3 {
        font-size: 30px;
    }
    .prov_detail .xtit p {
        font-size: 18px;
    }
    .prov_detail .xtext {
        line-height: 1.6;
    }
    .prov_hot {
        padding: 3%;
    }
    .prov_hot .xtit {
        margin: 1% 0 2%;
    }
    .prov_hot .xtit h3 {
        font-size: 20px;
        margin-bottom: 1%;
    }
    .prov_hot .xtit h3 span {
        display: inline-block;
    }
    .prov_hot .xtit p {
        font-size: 17px;
    }
    .prov_hot_ul li {
        float: left;
        width: 32%;
        margin-right: 2%;
        margin-top: 2%;
    }
    .prov_hot_ul li figure .img-box img {
        padding: 5px;
    }
    .prov_hot_ul li figcaption p {
        padding: 6px 4px;
        font-size: 15px;
    }
}
@media (min-width: 769px) and (max-width: 1024px){
    .prov_hot_ul li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .prov_hot_ul li:nth-of-type(3n) {
        margin-right: 0;
    }
}
@media (max-width: 768px) {
    .prov_con {
        padding: 2% 0;
    }
    .prov_detail {
        padding: 1.5%;
    }
    .prov_detail .xtit {
        margin-bottom: 3%;
    }
    .prov_detail .xtit hr {
        width: 32px;
        height: 1px;
        margin: 4px auto;
    }
    .prov_detail .xtit h3 {
        font-size: 20px;
    }
    .prov_detail .xtit p {
        font-size: 16px;
    }
    .prov_detail .xtext {
        line-height: 1.5;
    }
    .prov_hot {
        padding: 1.5%;
        margin-bottom: 2%;
    }
    .prov_hot .xtit h3 {
        font-size: 18px;
    }
    .prov_hot .xtit p {
        font-size: 16px;
    }
    .prov_hot_ul li {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .prov_hot_ul li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .prov_hot_ul li:nth-of-type(2n) {
        margin-right: 0;
    }
    .prov_hot_ul li figure .img-box img {
        padding: 4px;
    }
    .prov_hot_ul li figcaption p {
        padding: 4px;
        font-size: 14px;
    }
}
/*========================== .custom ==========================*/
.custom .type-nav {
    margin: 55px 0 45px;
}
.custom_inner {
    padding-bottom: 55px;
}
@media (max-width: 1024px) {
    .custom .type-nav {
        margin: 5.5% 0 4.5%;
    }
    .custom_inner {
        padding-bottom: 4.5%;
    }
}
.custom_ul li {
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-top: 2%;
}
.custom_ul li a {
    display: block;
    width: 100%;
}
.custom_ul li figure .img-box {
    height: 100%;
    padding: 36.94% 0;
}
.custom_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.custom_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.custom_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.custom_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.custom_ul li figcaption {
    position: relative;
    padding: 4px;
    margin-top: 24px;
}
.custom_ul li figcaption:before {
    content: "";
    width: 0;
    height: 100%;
    background: rgba(30, 30, 30, .8);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .5s ease-in-out;
}
.custom_ul li figcaption h5 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
    color: #2d2d2d;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.custom_ul li figcaption p {
    font-size: 14px;
    color: #515151;
    line-height: 20px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.custom_ul li figure:hover figcaption:before {
    width: 100%;
    opacity: 1;
}
.custom_ul li figure:hover figcaption h5,.custom_ul li figure:hover figcaption p {
    color: #fff;
}
@media (min-width: 769px) {
    .custom_ul li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .custom_ul li:nth-of-type(3n) {
        margin-right: 0;
    }
}
@media (max-width: 1024px) {
    .custom_ul li {
        width: 32.5%;
        margin-right: 1.25%;
        margin-top: 1.25%;
    }
    .custom_ul li figcaption {
        margin-top: 3.85%;
    }
    .custom_ul li figcaption h5 {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 5px;
    }
    .custom_ul li figcaption p {
        line-height: 19px;
        height: 38px;
    }
}
@media (max-width: 768px) {
    .custom_ul li {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .custom_ul li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .custom_ul li:nth-of-type(2n) {
        margin-right: 0;
    }
    .custom_ul li figcaption {
        margin-top: 0;
    }
    .custom_ul li figcaption h5 {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 4px;
    }
    .custom_ul li figcaption p {
        font-size: 13px;
        line-height: 18px;
        height: 36px;
    }
}
/*========================== .news ==========================*/
.news .type-nav {
    margin: 55px 0 55px;
}
.news_inner {
    padding-bottom: 55px;
}
@media (max-width: 1024px) {
    .news .type-nav {
        margin: 5.5% 0;
    }
    .news_inner {
        padding-bottom: 4.5%;
    }
}
.news_ul li {
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-top: 4%;
}
.news_ul li a {
    display: block;
    width: 100%;
}
.news_ul li figure {
    border: 1px solid #b6b6b6;
}
.news_ul li figure .img-box {
    height: 100%;
    padding: 36.94% 0;
}
.news_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.news_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.news_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.news_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.news_ul li figcaption {
    padding: 7.86%;
}
.news_ul li figcaption h5 {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news_ul li figcaption p {
    margin-bottom: 24px;
    font-size: 14px;
    color: #666;
    line-height: 22px;
    height: 66px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.news_ul li figcaption .xmore {
    display: block;
    width: 120px;
    height: 36px;
    padding: 0 4px;
    border: 2px solid #636363;
    border-radius: 4px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    color: #393939;
    background: #f5f5f5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.news_ul li a:hover figcaption .xmore {
    border-color: #232323;
    color: #fff;
    background: #232323;
    animation-iteration-count: 1;
    animation: hover_btn_four .5s linear 0s;
}
@media (min-width: 769px) {
    .news_ul li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .news_ul li:nth-of-type(3n) {
        margin-right: 0;
    }
}
@media (max-width: 1024px) {
    .news_ul li {
        width: 32.5%;
        margin-right: 1.25%;
        margin-top: 2.5%;
    }
    .news_ul li figcaption {
        padding: 4%;
    }
    .news_ul li figcaption h5 {
        margin-bottom: 8px;
        line-height: 22px;
    }
    .news_ul li figcaption p {
        margin-bottom: 15px;
        line-height: 20px;
        height: 60px;
    }
    .news_ul li figcaption .xmore {
        width: 110px;
        height: 32px;
        line-height: 32px;
    }
}
@media (max-width: 768px) {
    .news_ul li {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .news_ul li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .news_ul li:nth-of-type(2n) {
        margin-right: 0;
    }
    .news_ul li figcaption {
        padding: 2%;
    }
    .news_ul li figcaption h5 {
        margin-bottom: 4px;
        font-size: 14px;
        line-height: 20px;
    }
    .news_ul li figcaption p {
        margin-bottom: 6px;
        font-size: 13px;
        line-height: 18px;
        height: 36px;
        -webkit-line-clamp: 2;
    }
    .news_ul li figcaption .xmore {
        width: 100px;
        height: 30px;
        border-width: 1px;
        font-size: 13px;
        line-height: 30px;
    }
}
/*========================== .newsv ==========================*/
.newsv_con {
    padding: 35px 0 55px 0;
}
.newsv_con_left {
    float: left;
    width: 74.25%;
}
.newsv_con_right {
    float: right;
    width: 21.75%;
}
.newsv_detail {
    padding:20px;
}
.newsv_detail_tit {
    margin-bottom: 35px;
    font-size: 24px;
    line-height: 1.25;
    color: #0d0d0d;
}
.newsv_detail_meta {
    margin-bottom: 30px;
    padding-right: 90px;
    font-size: 14px;
    line-height: 24px;
    color: #515151;
    border-bottom: 1px solid #515151;
    position: relative;
}
.newsv_detail_meta .xback {
    display: inline-block;
    min-width: 70px;
    max-width: 80px;
    height: 20px;
    padding: 0 4px;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background: #232323;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.newsv_detail_text{
    font-size: 14px;
    line-height: 1.71;
    color: #3c3c3c;
}
.newsv_detail_text img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 4px auto;
}
.newsv_detail_pages {
    margin-top: 40px;
}
.newsv_detail_pages p,.newsv_detail_pages a {
    font-size: 16px;
    line-height: 1.875;
    color: #515151;
}
.newsv_detail_pages a {
    transition: .5s ease-in-out;
}
.newsv_detail_pages a:hover {
    color: #1e1e1e;
}
.newsv_detail_pages .back-btn {
    display: block;
    width: 170px;
    height: 40px;
    padding: 0 4px;
    margin-top: 25px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    color: #515151;
    background: #e9e9e9;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.newsv_detail_pages .back-btn:hover {
    color: #fff;
    background: #232323;
}
.newsv_other {
    margin-top: 24px;
    padding: 20px 0;
    border-top: 2px solid #333;
}
.newsv_other_tit {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #1e1e1e;
}
.newsv_other_ul li {
    margin-top: 25px;
}
.newsv_other_ul li:nth-of-type(-n+1) {
    margin-top: 0;
}
.newsv_other_ul li a {
    display: block;
    width: 100%;
}
.newsv_other_ul li figure .img-box {
    height: 100%;
    padding: 29.23% 0;
}
.newsv_other_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.newsv_other_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.newsv_other_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.newsv_other_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.newsv_other_ul li figcaption {
    position: relative;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(170,170,170,.6);
}
.newsv_other_ul li figcaption:before {
    content: "";
    width: 0;
    height: 1px;
    background: #1e1e1e;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}
.newsv_other_ul li figcaption h5 {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.newsv_other_ul li figcaption time {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: #bababa;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.newsv_other_ul li figure:hover figcaption:before {
    width: 100%;
}
@media (max-width: 1024px) {
    .newsv_con {
        padding: 3% 0 4.5% 0;
    }
    .newsv_con_left {
        float: none;
        width: 100%;
    }
    .newsv_con_right {
        float: none;
        width: 100%;
    }
    .newsv_detail {
        padding: 2%;
    }
    .newsv_detail_tit {
        margin-bottom: 3%;
        font-size: 21px;
        text-align: center;
    }
    .newsv_detail_meta {
        margin-bottom: 3%;
        padding-right: 90px;
        font-size: 13px;
    }
    .newsv_detail_meta .xback {
        font-size: 13px;
    }
    .newsv_detail_text{
        line-height: 1.65;
    }
    .newsv_detail_pages {
        margin-top: 4%;
    }
    .newsv_detail_pages p,.newsv_detail_pages a {
        font-size: 15px;
    }
    .newsv_detail_pages .back-btn {
        width: 150px;
        height: 35px;
        margin-top: 16px;
        font-size: 14px;
        line-height: 35px;
    }
    .newsv_other {
        margin-top: 2.5%;
        padding: 2% 0;
        border-top: 1px solid #333;
    }
    .newsv_other_tit {
        margin-bottom: 1%;
    }
    .newsv_other_ul li {
        float: left;
        width: 32%;
        margin-right: 2%;
        margin-top: 2%;
    }
    .newsv_other_ul li figcaption {
        padding: 8px 4px;
    }
}
@media (min-width: 769px) and (max-width: 1024px){
    .newsv_other_ul li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .newsv_other_ul li:nth-of-type(3n) {
        margin-right: 0;
    }
}
@media (max-width: 768px) {
    .newsv_detail {
        padding: 1.5%;
    }
    .newsv_detail_tit {
        font-size: 18px;
    }
    .newsv_detail_meta {
        padding-right: 0;
        font-size: 12px;
        text-align: center;
    }
    .newsv_detail_meta .xback {
        display: none;
        font-size: 12px;
    }
    .newsv_detail_text{
        line-height: 1.6;
    }
    .newsv_detail_pages p,.newsv_detail_pages a {
        font-size: 14px;
    }
    .newsv_detail_pages .back-btn {
        display: block;
        width: 125px;
        height: 30px;
        padding: 0 4px;
        margin-top: 6px;
        font-size: 14px;
        line-height: 30px;
    }
    .newsv_other_tit {
        font-size: 15px;
    }
    .newsv_other_ul li {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 2%;
    }
    .newsv_other_ul li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .newsv_other_ul li:nth-of-type(2n) {
        margin-right: 0;
    }
    .newsv_other_ul li figcaption {
        padding: 4px;
    }
    .newsv_other_ul li figcaption h5 {
        font-size: 14px;
    }
    .newsv_other_ul li figcaption time {
        font-size: 13px;
    }
}
/*========================== .custom_menu ==========================*/
.custom_menu {
    margin-top: 25px;
}
.custom_menu_tit {
    padding: 20px;
    margin-bottom: 2px;
    font-size: 26px;
    line-height: 1.35;
    text-align: center;
    color: #fff;
    background: #232323;
}
.custom_menu_ul li + li {
    margin-top: 2px;
}
.custom_menu_ul li a {
    display: block;
    padding: 10px 40px 10px 20px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #232323;
    background: #ececeb;
    position: relative;
    transition: .5s ease-in-out;
}
.custom_menu_ul li a:after {
    content: "+";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -12px;
}
.custom_menu_ul li.on a, .custom_menu_ul li a:hover {
    color: #fff;
    background: #232323;
}
.custom_menu_call {
    padding: 20px 0;
    text-align: center;
}
.custom_menu_call .icon-call {
    display: inline-block;
    width: 50px;
    height: 55px;
    background: url("../images/icon-call.png") no-repeat center center / cover;
    vertical-align: middle;
}
.custom_menu_call .hotline {
    display: inline-block;
    font-size: 14px;
    line-height: 1.72;
    color: #232323;
    text-align: left;
    vertical-align: middle;
}
.custom_menu_call .hotline em {
    display: block;
    font-size: 28px;
    line-height: 1;
}
@media (max-width: 1230px) {
    .custom_menu_tit {
        padding: 15px;
    }
    .custom_menu_ul li a {
        padding: 10px 35px 10px 15px;
    }
    .custom_menu_ul li a:after {
        right: 15px;
    }
    .custom_menu_call {
        padding: 15px 0;
    }
    .custom_menu_call .icon-call {
        width: 45px;
        height: 50px;
    }
    .custom_menu_call .hotline em {
        font-size: 22px;
    }
}
@media (max-width: 1024px) {
    .custom_menu {
        display: none;
        margin-top: 2.5%;
    }
    .custom_menu_tit {
        padding: 10px;
        font-size: 22px;
    }
    .custom_menu_ul li a {
        padding: 10px 30px 10px 10px;
        font-size: 16px;
    }
    .custom_menu_ul li a:after {
        font-size: 20px;
        right: 10px;
        margin-top: -10px;
    }
    .custom_menu_call {
        padding: 10px;
        line-height: 1.65;
    }
    .custom_menu_call .icon-call {
        width: 40px;
        height: 44px;
    }
    .custom_menu_call .hotline em {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .custom_menu_tit {
        padding: 5px;
        font-size: 18px;
        line-height: 1.5;
    }
    .custom_menu_ul li a {
        display: block;
        padding: 5px 20px 5px 5px;
        font-size: 14px;
    }
    .custom_menu_ul li a:after {
        font-size: 18px;
        right: 5px;
        margin-top: -9px;
    }
    .custom_menu_call {
        padding: 5px;
    }
    .custom_menu_call .icon-call {
        width: 30px;
        height: 33px;
    }
    .custom_menu_call .hotline {
        font-size: 13px;
        line-height: 1.6;
    }
    .custom_menu_call .hotline em {
        font-size: 18px;
    }
}
/*========================== .contact ==========================*/
.BMap_bubble_content p {
    font-size: 14px;
    line-height: 1.5;
    color: #2f2f2f;
}
.BMap_bubble_content p:nth-of-type(1) {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: bold;
    color: #1e1e1e;
}
.contact_inner {
    padding: 30px 0 60px;
}
.contact_inner .comtit2 {
    margin-bottom: 45px;
}
.contact_ul {
    overflow: hidden;
    position: relative;
}
.contact_ul:before,.contact_ul:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #d5d5d5;
    position: absolute;
    top: 0;
    bottom: 0;
}
.contact_ul:before {
    left: 26.75%;
}
.contact_ul:after {
    right: 26.75%;
}
.contact_ul li {
    float: left;
    width: 26.75%;
    padding: 14px;
    text-align: center;
}
.contact_ul li:nth-of-type(2n) {
    width: 46.5%;
}
.contact_ul li> div {
    display: inline-block;
    min-width: 80%;
    text-align: left;
}
.contact_ul li h5 {
    font-size: 18px;
    line-height: 2;
    color: #656565;
}
.contact_ul li .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    vertical-align: middle;
}
.contact_ul li .icon-phone {
    background-image: url("../images/contact_icon01.png");
}
.contact_ul li .icon-address {
    background-image: url("../images/contact_icon02.png");
}
.contact_ul li .icon-email {
    background-image: url("../images/contact_icon03.png");
}
.contact_ul li p {
    font-size: 16px;
    line-height: 1.5;
    color: #353535;
}
.contact_ul li em {
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    color: #1e1e1e;
}
.contact_map {
    margin-top: 40px;
    height: 100%;
    padding: 24.25% 0;
}
.contact_map img {
    max-width: none;
    max-height: none;
}
@media (max-width: 1024px) {
    .contact_inner {
        padding: 2.5% 0 5%;
    }
    .contact_inner .comtit2 {
        margin-bottom: 4%;
    }
    .contact_ul li {
        float: left;
        width: 26.75%;
        padding: 1.4%;
        text-align: center;
    }
    .contact_ul li h5 {
        font-size: 16px;
    }
    .contact_ul li .icon {
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }
    .contact_ul li p {
        font-size: 15px;
    }
    .contact_ul li em {
        font-size: 20px;
    }
    .contact_map {
        margin-top: 4%;
    }
}
@media (max-width: 768px) {
    .contact_ul:before,.contact_ul:after {
        display: none;
    }
    .contact_ul li {
        float: none;
        width:  100%;
        text-align: left;
    }
    .contact_ul li:nth-of-type(2n) {
        width: 100%;
    }
    .contact_ul li> div {
        display: block;
        width: 100%;
    }
    .contact_ul li h5 {
        font-size: 14px;
    }
    .contact_ul li .icon {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }
    .contact_ul li p {
        font-size: 14px;
    }
    .contact_ul li em {
        font-size: 16px;
    }
    .contact_map {
        padding: 35% 0;
    }
}
/*========================== .message ==========================*/
.message {
    padding: 50px 0 65px 0;
    background:  #f3f3f3;
}
.message_tit h3 {
    font-size: 26px;
    line-height: 1.5;
    color: #343434;
    margin-bottom: 12px;
}
.message_tit p {
    font-size: 16px;
    line-height: 1.5;
    color: #7a7a7a;
}
.message_form {
    margin-top: 30px;
}
.message_form .form-group {
    overflow: hidden;
}
.message_form .text-input {
    float: left;
    display: block;
    width: 33%;
    height: 70px;
    padding: 0 30px;
    border: none;
    margin-right: 0.5%;
    margin-bottom: 0.5%;
    font-size: 16px;
    line-height: 70px;
    color: #929292;
    background: #fff;
}
.message_form .text-input:nth-of-type(3n) {
    margin-right: 0;
}
.message_form .verify {
    position: relative;
}
.message_form .form-group .verify-code {
    display: inline-block;
    width: 160px;
    height: 70px;
}
.message_form  .form-group .verify-code img {
    width: 100%;
    height: 100%;
}
.message_form textarea {
    display: block;
    width: 100%;
    height: 200px;
    padding: 30px;
    border: none;
    margin-bottom: 0.5%;
    font-size: 16px;
    color: #929292;
    background: #fff;
    resize: none;
}
.message_form .form-btn {
    float: left;
    display: block;
    width: 28.5%;
    height: 80px;
    margin-left: 0.5%;
    margin-top: 0.5%;
    border: none;
    font-size: 20px;
    line-height: 80px;
    text-align: center;
    color: #fff;
    background: #676767;
    transition: .5s ease-in-out;
}
.message_form .form-btn:first-of-type {
    margin-left: 0;
}
.message_form .form-btn:hover {
    background: #232323;
}
@media (max-width: 1024px) {
    .message {
        padding: 4% 0 5.5% 0;
    }
    .message_tit h3 {
        font-size: 22px;
        margin-bottom: 1%;
    }
    .message_tit p {
        font-size: 15px;
    }
    .message_form {
        margin-top: 3%;
    }
    .message_form .text-input {
        width: 32.66%;
        height: 55px;
        padding: 0 20px;
        margin-right:  1%;
        margin-bottom:  1%;
        font-size: 15px;
        line-height: 55px;
    }
    .message_form .form-group .verify-code {
        display: inline-block;
        width: 145px;
        height: 55px;
    }
    .message_form textarea {
        height: 180px;
        padding: 20px;
        margin-bottom: 1%;
        font-size: 15px;
    }
    .message_form .form-btn {
        width: 29%;
        height: 55px;
        margin-left: 1%;
        margin-top: 1%;
        font-size: 18px;
        line-height: 55px;
    }
}
@media (max-width: 768px) {
    .message_tit h3 {
        font-size: 18px;
    }
    .message_tit p {
        font-size: 14px;
    }
    .message_form .text-input {
        float: none;
        width: 100%;
        height: 40px;
        padding: 0 10px;
        margin-right: 0;
        font-size: 14px;
        line-height: 40px;
    }
    .message_form .verify {
        padding-right: 120px;
    }
    .message_form .form-group .verify-code {
        display: inline-block;
        width: 120px;
        height: 40px;
        position: absolute;
        top: 0;
        right: 0;
    }
    .message_form textarea {
        height: 160px;
        padding: 10px;
        font-size: 14px;
    }
    .message_form .form-btn {
        width: 49.5%;
        height: 40px;
        font-size: 16px;
        line-height: 40px;

    }
}
/*========================== .about_intro ==========================*/
.about_intro {
    padding: 30px 0 60px;
}
.about_intro .comtit2 {
    margin-bottom: 40px;
}
.about_intro_word {
    font-size: 15px;
    line-height: 1.72;
    color: #313131;
}
.about_intro_ul {
    margin-top: 40px;
    padding: 0 5%;
}
.about_intro_ul li figure {
    background: #f4f4f4;
}
.about_intro_ul li figure .img-box {
    float: left;
    width: 50%;
    height: 100%;
    padding: 14.93% 0;
}
.about_intro_ul li figcaption {
    float: right;
    width: 50%;
}
.about_intro_ul li:nth-of-type(2n) figure .img-box {
    float: right;
}
.about_intro_ul li:nth-of-type(2n) figcaption {
    float: left;
}
.about_intro_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.about_intro_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.about_intro_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.about_intro_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.about_intro_ul li figcaption {
    padding: 5.6% 2.8% 2.8%;
}
.about_intro_ul li figcaption h5 {
    font-size: 18px;
    line-height: 1.5;
    color: #595959;
    margin-bottom: 6%;
}
.about_intro_ul li figcaption p {
    font-size: 16px;
    line-height: 1.72;
}
@media (max-width: 1024px) {
    .about_intro {
        padding: 2.5% 0 5%;
    }
    .about_intro .comtit2 {
        margin-bottom: 4%;
    }
    .about_intro_word {
        font-size: 14px;
        line-height: 1.65;
    }
    .about_intro_ul {
        margin-top: 4%;
        padding: 0;
    }
    .about_intro_ul li figcaption {
        padding: 5% 2.5% 2.5%;
    }
    .about_intro_ul li figcaption h5 {
        font-size: 16px;
        margin-bottom: 5%;
    }
    .about_intro_ul li figcaption p {
        font-size: 14px;
        line-height: 1.65;
    }
}
@media (max-width: 768px) {
    .about_intro_word {
        font-size: 13px;
        line-height: 1.6;
    }
    .about_intro_ul li + li {
        margin-top: 2%;
    }
    .about_intro_ul li figure .img-box {
        float: none !important;
        width:  100%;
        padding: 29.86% 0;
    }
    .about_intro_ul li figcaption {
        float: none !important;
        width: 100%;
    }
    .about_intro_ul li figcaption {
        padding: 1.5%;
    }
    .about_intro_ul li figcaption h5 {
        font-size: 14px;
        margin-bottom: 1.5%;
    }
    .about_intro_ul li figcaption p {
        font-size: 13px;
        line-height: 1.6;
    }
}
/*========================== .about_history ==========================*/
.about_history {
    padding: 50px 0 75px;
    background: #f0f0f0;
}
.about_history .comtit2 {
    margin-bottom: 40px;
}
.about_history .comtit2 > span{
    display: block;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.5;
    color: #6b6b6b;
}
.about_history_swiper {
    padding: 0 50px;
    position: relative;
}
.about_history_ul li a {
    display: block;
    width: 100%;
}
.about_history_ul li figure .img-box {
    float: left;
    width:  47%;
    height: 100%;
    padding: 12.10% 0;
}
.about_history_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.about_history_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.about_history_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.about_history_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.about_history_ul li figcaption {
    float: right;
    width: 51%;
    margin-top: 2%;
}
.about_history_ul li figcaption time {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 86px;
    line-height: 1;
    color: #2a2a2a;
}
.about_history_ul li figcaption p {
    font-size: 18px;
    line-height: 1.66;
    color: #373737;
}
.about_history_swiper .swiper-btn-prev, .about_history_swiper .swiper-btn-next {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #282828;
    border-radius: 50%;
    outline: none;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    color: #282828;
    background: transparent;
    cursor: pointer;
    position: absolute;
    top: 25%;
    z-index: 10;
    transition: .5s ease-in-out;
}
.about_history_swiper .swiper-btn-prev {
    left: 0;
}
.about_history_swiper .swiper-btn-next {
    right: 0;
}
.about_history_swiper .swiper-btn-prev:hover, .about_history_swiper .swiper-btn-next:hover {
    color: #fff;
    background: #282828;
}
@media (max-width: 1024px) {
    .about_history {
        padding: 4% 0 6%;
    }
    .about_history .comtit2 {
        margin-bottom: 4%;
    }
    .about_history .comtit2 > span{
        margin-top: 2%;
        font-size: 15px;
    }
    .about_history_swiper {
        padding: 0;
        position: static;
    }
    .about_history_ul li figcaption time {
        font-size: 40px;
    }
    .about_history_ul li figcaption p {
        font-size: 16px;
    }
    .about_history_swiper .swiper-btngroup {
        position: relative;
        margin-top: 2%;
        height: 36px;
    }
    .about_history_swiper .swiper-btn-prev, .about_history_swiper .swiper-btn-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
        top: 0;
    }
}
@media (max-width: 768px) {
    .about_history .comtit2 > span{
        font-size: 14px;
    }
    .about_history_swiper {
        position: relative;
    }
    .about_history_ul li figure .img-box {
        float: none;
        width:  100%;
        height: 100%;
        padding: 25.78% 0;
    }
    .about_history_ul li figcaption {
        float: none;
        width: 100%;
        text-align: center;
    }
    .about_history_ul li figcaption time {
        font-size: 20px;
    }
    .about_history_ul li figcaption p {
        font-size: 14px;
        line-height: 1.6;
    }
    .about_history_swiper .swiper-btngroup {
        height: auto;
        position: static;
    }
    .about_history_swiper .swiper-btn-prev, .about_history_swiper .swiper-btn-next {
        width: 30px;
        height: 30px;
        font-size: 15px;
        line-height: 30px;
        top: 25%;
    }
    .about_history_swiper .swiper-btn-prev {
        left: 2%;
    }
    .about_history_swiper .swiper-btn-next {
       right: 2%;
    }
}
/*========================== .about_culture ==========================*/
.about_culture {
    padding: 50px 0 25px 0;
}
.about_culture .comtit2 {
    margin-bottom: 45px;
}
.about_culture_swiper {
    float: left;
    width: 50%;
    overflow: hidden;
}
.about_culture_ul li a {
    display: block;
    width: 100%;
}
.about_culture_ul li figure .img-box {
    width:  100%;
    height: 100%;
    padding: 35% 0;
}
.about_culture_ul li figure .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.about_culture_ul li figure:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.about_culture_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.about_culture_ul li figure:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.about_culture_hd {
    float: right;
    padding: 3% 6%;
    width:  50%;
}
.about_culture_hd li {
    font-size: 18px;
    line-height: 1.66;
    color: #333;
    margin-bottom: 6.6%;
    position: relative;
}
.about_culture_hd li:last-of-type {
    margin-bottom: 0;
}
.about_culture_hd li:before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #373737;
    position: absolute;
    left: 0;
    top: 50%;
    transition: .5s ease-in-out;
}
.about_culture_hd li.on:before,.about_culture_hd li:hover:before {
    width: 80px;
    left: -80px;
    margin-left: -8%;

}
@media (max-width: 1024px) {
    .about_culture {
        padding: 4% 0 2% 0;
    }
    .about_culture .comtit2 {
        margin-bottom: 4%;
    }
    .about_culture_hd {
        float: right;
        padding: 2% 2% 2% 4%;
        width:  50%;
    }
    .about_culture_hd li {
        font-size: 16px;
        margin-bottom: 4%;
    }
    .about_culture_hd li.on:before,.about_culture_hd li:hover:before {
        width: 40px;
        left: -40px;
        margin-left: -4%;
    }
}
@media (max-width: 768px) {
    .about_culture_swiper {
        float: none;
        width: 100%;
    }
    .about_culture_hd {
        float: none;
        padding: 2%;
        width:  100%;
    }
    .about_culture_hd li {
        font-size: 14px;
        margin-bottom: 2%;
        padding-left: 15px;
    }
    .about_culture_hd li.on:before,.about_culture_hd li:hover:before {
        width: 8px;
        left: 0;
        margin-left: 0;

    }
}
/*========================== .about_equ ==========================*/
.about_equ {
    padding: 25px 0 50px 0;
}
.about_equ .comtit2 {
    margin-bottom: 45px;
}
.about_equ_swiper .gallery-big a {
    display: block;
    width: 100%;
}
.about_equ_swiper .gallery-big .img-box {
    width:  100%;
    height: 100%;
    padding: 18% 0;
}
.about_equ_swiper .gallery-big .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.about_equ_swiper .gallery-big .swiper-slide:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.about_equ_swiper .gallery-big .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.about_equ_swiper .gallery-big .swiper-slide:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.about_equ_swiper .gallery-thumbs {
    padding: 10px 0;
    position: relative;
}
.about_equ_swiper .gallery-thumbs .swiper-slide {
    position: relative;
    cursor: pointer;
}
.about_equ_swiper .gallery-thumbs .swiper-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    background: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .5s ease-in-out;
}
.about_equ_swiper .gallery-thumbs .swiper-slide-thumb-active:after {
    border-color: #232323;
}
.about_equ_swiper .gallery-thumbs a {
    display: block;
    width: 100%;
    height: 100%;
}
.about_equ_swiper .gallery-thumbs .img-box {
    width: 100%;
    height: 100%;
    padding: 29.76% 0;
}
.about_equ_swiper .gallery-thumbs .img-box:after {
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-45deg);
    transition: all 0s;
}
.about_equ_swiper .gallery-thumbs .swiper-slide:hover .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.about_equ_swiper .gallery-thumbs .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.about_equ_swiper .gallery-thumbs .swiper-slide:hover .img-box img {
    transform: scale(1.05, 1.05);
}
@media (max-width: 1024px) {
    .about_equ {
        padding: 4% 0 2% 0;
    }
    .about_equ .comtit2 {
        margin-bottom: 4%;
    }
    .about_equ_swiper .gallery-big .img-box {
        width:  100%;
        height: 100%;
        padding: 18% 0;
    }
    .about_equ_swiper .gallery-thumbs {
        padding: 8px 0;
    }
    .about_equ_swiper .gallery-thumbs .img-box {
        width: 100%;
        height: 100%;
        padding: 29.76% 0;
    }

}
@media (max-width: 768px) {
    .about_equ_swiper .gallery-big .img-box {
        width:  100%;
        height: 100%;
        padding: 18% 0;
    }
    .about_equ_swiper .gallery-thumbs {
        padding: 4px 0;
    }
    .about_equ_swiper .gallery-thumbs .img-box {
        width: 100%;
        height: 100%;
        padding: 29.76% 0;
    }
}