/*========================== .pub_header ==========================*/
.pub_header {
    width: 100%;
    max-width: 1200px;
    height: 90px;
    padding: 15px 0;
    margin: 0 auto;
    overflow: hidden;
}
.pub_header .h_logo {
    float: left;
    display: inline-block;
    width: 30%;
    height: 60px;
    line-height: 60px;
}
.pub_header .pc-nav {
    float: right;
    width: 68%;
}
.pub_header .pc-nav li {
    float: left;
    display: inline-block;
    width: 12.5%;
    height: 60px;
    margin-right: 2%;
    line-height: 60px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.pub_header .pc-nav li:last-of-type {
    margin-right: 0;
}
.pub_header .pc-nav li a {
    padding: 0 4px;
    font-size: 16px;
    color: #464646;
    transition: .5s ease-in-out;
}
.pub_header .pc-nav li.on a, .pub_header .pc-nav li:hover a {
    font-weight: bold;
    color: #b78337;
}
@media (max-width: 1230px) {
    .pub_header {
        padding: 15px;
    }
}
@media (max-width: 1024px) {
    .pub_header {
        height: 80px;
        padding: 10px 2%;
    }
    .pub_header .pc-nav li {
        width: 16%;
        margin-right: 0.8%;
    }
    .pub_header .pc-nav li a {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    .pub_header {
        position: fixed;
        top: 0;
        z-index: 30000;
        background: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
        height: 70px;
        padding: 5px 2%;
    }
    .pub_header .h_logo {
        width: 260px;
    }
    .pub_header .pc-nav {
        display: none;
    }
}
/*========================== .mobile-menu ==========================*/
.mobile-menu .menu-btn {
    width: 40px;
    height: 40px;
    padding: 4px;
    border: 1px solid #1f1f1f;
    position: fixed;
    top: 15px;
    right: 2%;
    z-index: 30010;
    background: #fff;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.mobile-menu .menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: 9px;
    background: #1f1f1f;
    transition: .2s ease-in-out;
    z-index: 10;
}
.mobile-menu .menu-btn span:before {
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 3px;
    position: absolute;
    top: -8px;
    left: 0;
    background: #1f1f1f;
    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: #1f1f1f;
    transition: .2s ease-in-out;
}
.mobile-menu .menu-btn-open {
    background: #1f1f1f;
    border: 1px solid #1f1f1f;
}
.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: .4s 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: 9999;
    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 {
    padding: 10px;
    text-align: center;
    background: #1f1f1f;
    cursor: pointer;
}
.mobile-menu-box .mobile-logo img {
    max-width: 100%;
    height: 50px;
}
.mobile-menu-box .mobile-nav {
    height: 100%;
    padding-bottom: 80px;
    overflow-y: scroll;
}
.mobile-menu-box .mobile-nav ul li {
    border-bottom: 1px solid #f2f2f2;
}
.mobile-menu-box .mobile-nav ul li a {
    display: block;
    height: 56px;
    padding: 0 25px 0 40px;
    overflow: hidden;
    position: relative;
    font-size: 16px;
    line-height: 56px;
    letter-spacing: 1px;
    color: #1f1f1f;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.mobile-menu-box .mobile-nav ul li.on a, .mobile-menu-box .mobile-nav ul li a:hover {
    color: #d39e52;
}
.mobile-menu-box .mobile-nav ul li a:before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid #1f1f1f;
    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.on a:before, .mobile-menu-box .mobile-nav ul li a:hover:before {
    border-color: #d39e52;
    background: #d39e52;
}
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}
/*========================== .ind_banner ==========================*/
.ind_banner a {
    display: block;
}
.ind_banner img {
    width: 100%;
}
.ind_banner .swiper-pagination {
    width: auto;
    position: absolute;
    left: 20%;
    bottom: 6%;
    z-index: 20;
}
.ind_banner .swiper-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    margin: 0 8px;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #242424;
    background: #fff;
    opacity: 1;
    transition: .35s ease-in-out;
}
.ind_banner .swiper-pagination .swiper-pagination-bullet-active {
    color: #fff;
    background: #d39e52;
}
.ind_banner .swiper-btngroup {
    width: auto;
    position: absolute;
    right: 20%;
    bottom: 6%;
    z-index: 20;
}
.ind_banner .swiper-btn-prev, .ind_banner .swiper-btn-next {
    display: inline-block;
    width: 28px;
    height: 28px;
    outline: none;
    font-family: monospace, monospace, sans-serif;
    font-weight: bold;
    font-size: 28px;
    line-height: 28px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.ind_banner .swiper-btngroup .lie {
    display: inline-block;
    width: 1px;
    height: 28px;
    line-height: 28px;
    outline: none;
    background: #fff;
    vertical-align: text-bottom;
}
.ind_banner .swiper-container:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 13px;
    background: rgba(255, 255, 255, .3);
    position: absolute;
    left: 0;
    bottom: 6%;
    z-index: 10;
}
@media (max-width: 1024px) {
    .ind_banner .swiper-pagination {
        left: 10%;
        bottom: 5%;
    }
    .ind_banner .swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
        margin: 0 6px;
        font-size: 13px;
        line-height: 20px;
    }
    .ind_banner .swiper-btngroup {
        right: 10%;
        bottom: 5%;
    }
    .ind_banner .swiper-btn-prev, .ind_banner .swiper-btn-next {
        width: 24px;
        height: 24px;
        font-size: 24px;
        line-height: 24px;
    }
    .ind_banner .swiper-btngroup .lie {
        height: 24px;
        line-height: 24px;
    }
    .ind_banner .swiper-container:after {
        margin-bottom: 12px;
        bottom: 5%;
    }
}
@media (max-width: 768px) {
    .ind_banner img {
        min-height: 200px;
        object-fit: cover;
    }
    .ind_banner .swiper-pagination {
        width: 100%;
        left: 0;
        bottom: 4%;
    }
    .ind_banner .swiper-pagination .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        margin: 0 4px;
        font-size: 12px;
        line-height: 16px;
    }
    .ind_banner .swiper-btngroup {
        display: none;
    }
    .ind_banner .swiper-container:after {
        display: none;
    }
}

@media (max-width: 768px){
    .ind_pro .comhd1{
        display: none;
    }
}

/*========================== .comtit1 & .comhd1  ==========================*/
.comtit1 {
    text-align: center;
}
.comtit1 h3 {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(34, 31, 30, 0.1);
    margin-bottom: 15px;
}
.comtit1 h3 em {
    display: block;
    font-family: 'Microsoft YaHei', Helvetica, Arial, sans-serif;
    font-size: 48px;
    color: #1f1f1f;
    position: relative;
}
.comtit1 h3 em:before, .comtit1 h3 em:after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 20px;
    margin: 0 8px;
    vertical-align: middle;
    background: url("../images/ind_pro_title.png") no-repeat center center /cover;
}
.comtit1 p {
    font-size: 24px;
    line-height: 1.5;
    color: #9f9f9f;
    letter-spacing: 4px;
}
@media (max-width: 1024px) {
    .comtit1 h3 {
        font-size: 25px;
        margin-bottom: 10px;
    }
    .comtit1 h3 em {
        font-size: 34px;
    }
    .comtit1 h3 em:before, .comtit1 h3 em:after {
        width: 24px;
        height: 17px;
        margin: 0 6px;
    }
    .comtit1 p {
        font-size: 20px;
        letter-spacing: 2px;
    }
}
@media (max-width: 768px) {
    .comtit1 h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .comtit1 h3 em {
        font-size: 20px;
    }
    .comtit1 h3 em:before, .comtit1 h3 em:after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 14px;
        margin: 0 4px;
    }
    .comtit1 p {
        font-size: 16px;
        letter-spacing: 0;
    }
}
.comhd1 {
    position: relative;
}
.comhd1:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 9px;
    background: #e6e6e6;
}
.comhd1 .swiper-slide {
    display: inline-block;
    width: auto;
    margin: 0 45px;
}
.comhd1 .swiper-slide a {
    display: block;
    max-width: 180px;
    padding: 0 4px 24px;
    font-size: 20px;
    line-height: 1.5;
    color: #1f1f1f;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url("../images/ind_pro_block01.jpg");
    background-size: auto 19px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.comhd1 .swiper-slide.on a, .comhd1 .swiper-slide a:hover {
    color: #d39e52;
    background-image: url("../images/ind_pro_block02.jpg");
}




@media (max-width: 1230px) {
    .comhd1 .swiper-slide {
        margin: 0 36px;
    }
}
@media (max-width: 1024px) {
    .comhd1:after {
        bottom: 7px;
    }
    .comhd1 .swiper-slide {
        margin: 0 2.5%;
    }
    .comhd1 .swiper-slide a {
        max-width: 160px;
        padding: 0 4px 20px;
        font-size: 17px;
        background-size: auto 16px;
    }
}
@media (max-width: 768px) {
    .comhd1:after {
        bottom: 5px;
    }
    .comhd1 .swiper-slide {
        margin: 0 1.25%;
    }
    .comhd1 .swiper-slide a {
        max-width: 140px;
        padding: 0 4px 16px;
        font-size: 14px;
        background-size: auto 12px;
    }
}
/*========================== .ind_pro  ==========================*/
.ind_pro {
    padding: 50px 0;
}
.ind_pro .comtit1 {
    margin-bottom: 40px;
}
.ind_pro .comhd1 {
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .ind_pro {
        padding: 5% 0;
    }
    .ind_pro .comtit1 {
        margin-bottom: 4%;
    }
    .ind_pro .comhd1 {
        margin-bottom: 4%;
    }
}
@media (min-width: 1440px) {
    .ind_pro .container, .pub_main .container {
        max-width: 1300px;
    }
}
@media (min-width: 1560px) {
    .ind_pro .container, .pub_main .container {
        max-width: 1400px;
    }
}
@media (min-width: 1640px) {
    .ind_pro .container, .pub_main .container {
        max-width: 1500px;
    }
}
.ind_pro_ul li {
    float: left;
    width: 33.14%;
    margin-right: 0.29%;
    margin-top: 0.29%;
}
.ind_pro_ul li a {
    display: block;
    width: 100%;
}
.ind_pro_ul li figure {
    position: relative;
}
.ind_pro_ul li figure .img-box {
    height: 100%;
    padding: 35.40% 0;
}
.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 {
    width: 100%;
    padding: 5%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.ind_pro_ul li figcaption p {
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.ind_pro_ul li a:hover figcaption p {
    color: #d39e52;
}
.ind_pro_ul li figcaption p small {
    font-size: 14px;
    margin-left: 14px;
}
@media (min-width: 769px) {
    .ind_pro_ul li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .ind_pro_ul li:nth-of-type(3n) {
        margin-right: 0;
    }
}
@media (max-width: 1024px) {
    .ind_pro_ul li figcaption {
        padding: 3.5%;
    }
    .ind_pro_ul li figcaption p {
        font-size: 18px;
    }
    .ind_pro_ul li figcaption p small {
        font-size: 13px;
        margin-left: 9px;
    }
}
@media (max-width: 768px) {
    .ind_pro_ul li {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .ind_pro_ul li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .ind_pro_ul li:nth-of-type(2n) {
        margin-right: 0;
    }
    .ind_pro_ul li figcaption {
        padding: 2%;
    }
    .ind_pro_ul li figcaption p {
        font-size: 14px;
    }
    .ind_pro_ul li figcaption p small {
        font-size: 12px;
        margin-left: 4px;
    }
}
/*========================== .ind_adv ==========================*/
.ind_adv_ul li {
    padding: 50px 0;
}
.ind_adv_ul li figure {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.ind_adv_ul li figure .pic-box {
    float: right;
    width: 57%;
    height: auto;
    overflow: hidden;
}
.ind_adv_ul li figure .pic-box img {
    width: 100%;
    height: auto;
    transition: .5s ease-in-out;
}
.ind_adv_ul li figure:hover .pic-box img {
    transform: scale(1.05, 1.05);
}
.ind_adv_ul li figure figcaption {
    float: left;
    width: 41%;
    padding-left: 70px;
    position: relative;
}
.ind_adv_ul li figure figcaption .xnum {
    display: inline-block;
    height: 70px;
    min-width: 50px;
    border-bottom: 1px solid #1f1f1f;
    font-family: "SimSun", monospace, serif;
    font-size: 50px;
    line-height: 70px;
    text-align: center;
    color: #1f1f1f;
    position: absolute;
    top: 0;
    left: 0;
    transition: .5s ease-in-out;
}
.ind_adv_ul li figure figcaption .xtit {
    font-size: 30px;
    line-height: 1.2;
    margin: 20px 0;
    color: #313131;
    transition: .5s ease-in-out;
}
.ind_adv_ul li figure:hover .xnum {
    color: #d39e52;
    border-color: #d39e52;
}
.ind_adv_ul li figure:hover .xtit {
    color: #d39e52;
}
.ind_adv_ul li figure figcaption .xtext {
    font-size: 16px;
    line-height: 1.5;
    color: #1f1f1f;
}
.ind_adv_ul li:nth-of-type(2n) {
    background: url("../images/ind_adv_bg.jpg") no-repeat center center / cover;
}
.ind_adv_ul li:nth-of-type(2n) figure .pic-box {
    float: left;
}
.ind_adv_ul li:nth-of-type(2n) figure figcaption {
    float: right;
}
@media (max-width: 1230px) {
    .ind_adv_ul li figure {
        max-width: 996px;
    }
    .ind_adv_ul li figure figcaption {
        padding-left: 60px;
    }
    .ind_adv_ul li figure figcaption .xnum {
        height: 60px;
        min-width: 45px;
        font-size: 45px;
        line-height: 60px;
    }
    .ind_adv_ul li figure figcaption .xtit {
        font-size: 25px;
        margin: 16px 0;
    }
}
@media (max-width: 1024px) {
    .ind_adv_ul li {
        padding: 5% 0;
    }
    .ind_adv_ul li figure {
        max-width: 100%;
        padding: 0 2%;
    }
    .ind_adv_ul li figure figcaption {
        width: 42%;
        padding: 0;
        position: static;
    }
    .ind_adv_ul li figure figcaption .xnum {
        height: 35px;
        min-width: auto;
        font-size: 25px;
        line-height: 35px;
        position: static;
    }
    .ind_adv_ul li figure figcaption .xtit {
        font-size: 22px;
        margin: 2% 0;
    }
    .ind_adv_ul li figure figcaption .xtext {
        font-size: 15px;
    }
    .ind_adv_ul li figure figcaption .xtext br {
        display: none;
    }
}
@media (max-width: 768px) {
    .ind_adv_ul li figure .pic-box {
        float: none !important;
        width: 100%;
        margin-bottom: 1%;
    }
    .ind_adv_ul li figure figcaption {
        float: none !important;
        width: 100%;
    }
    .ind_adv_ul li figure figcaption .xnum {
        height: 28px;
        font-size: 20px;
        line-height: 28px;
    }
    .ind_adv_ul li figure figcaption .xtit {
        font-size: 18px;
        margin: 2% 0;
    }
    .ind_adv_ul li figure figcaption .xtext {
        font-size: 14px;
    }
}
.ind_adv {
    padding-top: 35px;
}
@media (max-width: 1024px) {
    .ind_adv {
        padding-top: 3.5%;
    }
}
@media (min-width: 1440px) {
    .ind_adv_ul li figure {
        max-width: 1300px;
    }
}
@media (min-width: 1560px) {
    .ind_adv_ul li figure {
        max-width: 1400px;
    }
}
/*========================== .ind_case ==========================*/
.ind_case {
    padding: 60px 0;
}
.ind_case .comtit1 {
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .ind_case {
        padding: 6% 0;
    }
    .ind_case .comtit1 {
        margin-bottom: 2%;
    }
}
.ind_case_swiper {
    padding: 0 30px;
}
.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: 37.44% 0;
}
.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: #d39e52;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}
.ind_case_ul li figcaption p {
    padding: 12px 4px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 20;
    transition: .5s ease-in-out;
}
.ind_case_ul li a:hover figcaption:before {
    width: 100%;
    opacity: 1;
}
.ind_case_ul li a:hover figcaption p {
    color: #fff;
}
@media (max-width: 1230px) {
    .ind_case_swiper {
        padding: 0 15px;
    }
}
@media (max-width: 1024px) {
    .ind_case_swiper {
        padding: 0 2%;
    }
    .ind_case_ul li figcaption p {
        padding: 8px 4px;
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .ind_case_ul li figcaption p {
        padding: 4px;
        font-size: 14px;
    }
}
.ind_case_swiper .swiper-btngroup {
    padding: 4px;
    margin-top: 40px;
    text-align: center;
}
.ind_case_swiper .swiper-btn-prev, .ind_case_swiper .swiper-btn-next, .ind_case_swiper .swiper-btn-link {
    display: inline-block;
    width: 38px;
    height: 32px;
    outline: none;
    background-color: #ddd;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.ind_case_swiper .swiper-btn-prev {
    background-image: url("../images/ind_case_prev01.png");
}
.ind_case_swiper .swiper-btn-prev:hover {
    background-color: #d39e52;
    background-image: url("../images/ind_case_prev02.png");
}
.ind_case_swiper .swiper-btn-next {
    background-image: url("../images/ind_case_next01.png");
}
.ind_case_swiper .swiper-btn-next:hover {
    background-color: #d39e52;
    background-image: url("../images/ind_case_next02.png");
}
.ind_case_swiper .swiper-btn-link {
    width: 60px;
    background-image: url("../images/ind_case_block01.png");
}
.ind_case_swiper .swiper-btn-link:hover {
    background-color: #d39e52;
    background-image: url("../images/ind_case_block02.png");
}
@media (max-width: 1024px) {
    .ind_case_swiper .swiper-btngroup {
        margin-top: 4%;
    }
    .ind_case_swiper .swiper-btn-prev, .ind_case_swiper .swiper-btn-next, .ind_case_swiper .swiper-btn-link {
        width: 35px;
        height: 30px;
    }
    .ind_case_swiper .swiper-btn-link {
        width: 56px;
    }
}
@media (max-width: 768px) {
    .ind_case_swiper .swiper-btn-prev, .ind_case_swiper .swiper-btn-next, .ind_case_swiper .swiper-btn-link {
        width: 34px;
        height: 28px;
    }
    .ind_case_swiper .swiper-btn-link {
        width: 52px;
    }
}
/*========================== .ind_about ==========================*/
@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);
    }
}
.ind_about {
    padding: 65px 0;
    min-height: 675px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.ind_about .comtit1 h3 {
    color: rgba(255, 255, 255, .25);
}
.ind_about .comtit1 h3 em {
    color: #fff;
}
.ind_about .comtit1 p {
    color: #fff;
}
.ind_about_text {
    margin-top: 75px;
    padding: 0 124px;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
    text-align: center;
}
.ind_about_text .xmore {
    display: block;
    width: 150px;
    height: 40px;
    padding: 0 4px;
    margin: 35px auto 0;
    border: 1px solid #fff;
    border-radius: 16px;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .5s ease-in-out;
}
.ind_about_text .xmore:hover {
    animation-iteration-count: 1;
    animation: hover_btn_four .5s linear 0s;
    background: #d39e52;
    border-color: #d39e52;
}
.ind_about_nav:before, .ind_about_nav:after {
    content: "";
    display: block;
    width: 22%;
    height: 1px;
    margin: auto;
    background: rgba(255, 255, 255, .3);
    position: absolute;
    top: 0;
    bottom: 0;
}
.ind_about_nav:before {
    left: 0;
}
.ind_about_nav:after {
    right: 0;
}
.ind_about_nav li {
    width: 160px;
    height: 160px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 20;
}
.ind_about_nav li:nth-of-type(1) {
    left: 5%;
}
.ind_about_nav li:nth-of-type(2) {
    right: 5%;
    margin-right: 125px;
}
.ind_about_nav li:nth-of-type(3) {
    right: 5%;
}
.ind_about_nav li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    background: rgba(0, 0, 0, .8);
    transition: .5s ease-in-out;
}
.ind_about_nav li a em {
    display: block;
    margin-top: 45px;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ind_about_nav li a p {
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ind_about_nav li a hr {
    width: 25px;
    height: 1px;
    border: none;
    background: #ffd39e;
    transition: .5s ease-in-out;
}
.ind_about_nav li a:hover {
    animation-iteration-count: 1;
    animation: hover_btn_four .5s linear 0s;
    color: #171717;
    background: url("../images/ind_about_circle.png") no-repeat center center;
}
.ind_about_nav li a:hover hr {
    background: #171717;
}
@media (max-width: 1640px) {
    .ind_about_nav li:nth-of-type(1) {
        left: 2%;
    }
    .ind_about_nav li:nth-of-type(2), .ind_about_nav li:nth-of-type(3) {
        right: 2%;
    }
}
@media (max-width: 1024px) {
    .ind_about {
        padding: 6% 0;
        min-height: auto;
    }
    .ind_about_text {
        margin: 5% 0;
        padding: 0;
        font-size: 15px;
        line-height: 1.75;
    }
    .ind_about_text .xmore {
        width: 135px;
        height: 36px;
        margin: 3.5% auto 0;
        border-radius: 15px;
        font-size: 15px;
        line-height: 36px;
    }
    .ind_about_nav {
        text-align: center;
    }
    .ind_about_nav:before, .ind_about_nav:after {
        display: none;
    }
    .ind_about_nav li {
        display: inline-block;
        width: 100px;
        height: 100px;
        margin: 0 8px !important;
        position: static;
    }
    .ind_about_nav li a em {
        margin-top: 36px;
        font-size: 16px;
    }
    .ind_about_nav li a p {
        display: none;
    }
    .ind_about_nav li a hr {
        width: 20px;
    }
}
@media (max-width: 768px) {
    .ind_about_text {
        font-size: 14px;
        line-height: 1.6;
    }
    .ind_about_text .xmore {
        width: 130px;
        height: 35px;
        border-radius: 14px;
        font-size: 14px;
        line-height: 35px;
    }
    .ind_about_nav li {
        width: 60px;
        height: 60px;
        margin: 0 4px !important;
    }
    .ind_about_nav li a em {
        margin-top: 20px;
        font-size: 12px;
    }
    .ind_about_nav li a hr {
        width: 15px;
    }
}
/*========================== .ind_process ==========================*/
.ind_process {
    padding: 50px 0;
    background: url("../images/ind_process_bg.jpg") no-repeat center center / cover;
}
.ind_process .comtit1 {
    margin-bottom: 40px;
}
.ind_process_ol {
    padding-bottom: 103px;
    position: relative;
}
.ind_process_ol:before {
    content: "";
    display: block;
    width: 100%;
    height: 93px;
    background: url("../images/ind_process_block.png") no-repeat center center / cover;
    position: absolute;
    left: 0;
    bottom: 0;
}
.ind_process_ol li {
    float: left;
    width: 10.5%;
    margin-right: 7.4%;
    text-align: center;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.ind_process_ol li:hover {
    animation-iteration-count: 1;
    animation: hover_btn_four .5s linear 0s;
}
.ind_process_ol li .img-box {
    height: 100%;
    padding: 67.2% 0;
}
.ind_process_ol li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
    -webkit-filter: grayscale(1) brightness(1) contrast(1);
    -moz-filter: grayscale(1) brightness(1) contrast(1);
    -ms-filter: grayscale(1) brightness(1) contrast(1);
    -o-filter: grayscale(1) brightness(1) contrast(1);
    filter: grayscale(1) brightness(1) contrast(1);
    -webkit-filter: grey opacity(1);
    filter: grey;
}
.ind_process_ol li:hover .img-box img {
    -webkit-filter: grayscale(0) brightness(1) contrast(1);
    -moz-filter: grayscale(0) brightness(1) contrast(1);
    -ms-filter: grayscale(0) brightness(1) contrast(1);
    -o-filter: grayscale(0) brightness(1) contrast(1);
    filter: grayscale(0) brightness(1) contrast(1);
    -webkit-filter: none opacity(1);
    filter: none opacity(1);
}
.ind_process_ol li p {
    margin: 10px 0;
    padding: 0 4px;
    font-size: 22px;
    line-height: 1.5;
    color: #3c3c3c;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .5s ease-in-out;
}
.ind_process_ol li:hover p {
    color: #d39e52;
}
.ind_process_phone {
    display: block;
    width: 300px;
    margin: -35px auto 0;
    height: 70px;
    padding: 0 4px;
    border-radius: 35px;
    font-size: 26px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    background: #1f1f1f;
    cursor: pointer;
    position: relative;
    z-index: 20;
    transition: .5s ease-in-out;
}
.ind_process_phone:hover {
    background: #d39e52;
    animation-iteration-count: 1;
    animation: hover_btn_four .5s linear 0s;
}
.ind_process_phone .icon-phone {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("../images/ind_process_call.png") no-repeat center center / cover;
    vertical-align: text-bottom;
}
@media (min-width: 769px) {
    .ind_process_ol li:nth-of-type(6n) {
        margin-right: 0;
    }
    .ind_process_ol li:nth-of-type(-n+6) {
        margin-top: 0;
    }
}
@media (min-width: 1025px) and (max-width: 1230px) {
    .ind_process_ol {
        padding-bottom: 88px;
    }
    .ind_process_ol:before {
        height: 78px;
    }
}
@media (max-width: 1024px) {
    .ind_process {
        padding: 5% 0;
    }
    .ind_process .comtit1 {
        margin-bottom: 4%;
    }
    .ind_process_ol {
        padding-bottom: 4%;
        position: static;
    }
    .ind_process_ol:before {
        display: none;
        position: static;
    }
    .ind_process_ol li {
        width: 14%;
        margin-right: 3.2%;
    }
    .ind_process_ol li p {
        margin: 6px 0;
        font-size: 18px;
    }
    .ind_process_phone {
        width: 235px;
        margin: 0 auto;
        height: 55px;
        border-radius: 28px;
        font-size: 20px;
        line-height: 55px;
    }
    .ind_process_phone .icon-phone {
        width: 25px;
        height: 25px;
    }
}
@media (max-width: 768px) {
    .ind_process_ol li {
        width: 28%;
        margin-right: 8%;
    }
    .ind_process_ol li:nth-of-type(3n) {
        margin-right: 0;
    }
    .ind_process_ol li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .ind_process_ol li p {
        margin: 4px 0;
        font-size: 16px;
    }
    .ind_process_ol li .img-box {
        height: auto;
        padding: 0;
        position: static;
    }
    .ind_process_ol li .img-box img {
        position: static;
        width: auto;
        height: auto;
        max-height: 120px;
        object-fit: cover;
    }
    .ind_process_phone {
        width: 175px;
        height: 40px;
        border-radius: 20px;
        font-size: 16px;
        line-height: 40px;
    }
    .ind_process_phone .icon-phone {
        width: 20px;
        height: 20px;
    }
}
/*========================== .ind_news ==========================*/
.ind_news {
    padding: 65px 0;
}
.ind_news .comtit1 {
    margin-bottom: 50px;
}
@media (max-width: 1024px) {
    .ind_news {
        padding: 6% 0;
    }
    .ind_news .comtit1 {
        margin-bottom: 5%;
    }
}
.ind_news_one {
    float: left;
    width: 62.5%;
}
.ind_news_one a {
    display: block;
    width: 100%;
}
.ind_news_one figure {
    position: relative;
}
.ind_news_one figure .img-box {
    float: left;
    width: 53.5%;
    padding: 18.45% 0;
}
.ind_news_one figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.ind_news_one a:hover figure .img-box img {
    transform: scale(1.05, 1.05);
}
.ind_news_one figcaption {
    float: right;
    width: 42.8%;
    padding: 2% 0;
}
.ind_news_one figcaption .xtit {
    margin-bottom: 10%;
    font-size: 14px;
    line-height: 2;
    font-weight: bold;
    color: #161616;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.ind_news_one a:hover figcaption .xtit {
    color: #d39e52;
}
.ind_news_one figcaption time {
    display: inline-block;
    padding: 10px 16px;
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: "Calibri", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background: #d39e52;
}
.ind_news_one figcaption time span {
    display: block;
    font-size: 30px;
    font-weight: bold;
}
.ind_news_one figcaption .xtext {
    margin-bottom: 20%;
    font-size: 14px;
    line-height: 24px;
    color: #585858;
    max-height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.ind_news_one figcaption .xbtn {
    display: block;
    width: 128px;
    height: 40px;
    border: 1px solid #a0a0a0;
    padding: 0 4px;
    font-size: 16px;
    line-height: 40px;
    color: #000;
    text-align: center;
    cursor: pointer;
    transition: .5s ease-in-out;
}
.ind_news_one a:hover figcaption .xbtn {
    border: 1px solid #d39e52;
    color: #fff;
    background: #d39e52;
}
@media (max-width: 1024px) {
    .ind_news_one {
        float: none;
        width: 100%;
    }
    .ind_news_one figcaption .xtit {
        margin-bottom: 6%;
        font-size: 15px;
        line-height: 1.75;
    }
    .ind_news_one figcaption time {
        padding: 8px;
        top: 9px;
        left: 9px;
        font-size: 15px;
        line-height: 28px;
    }
    .ind_news_one figcaption time span {
        font-size: 28px;
    }
    .ind_news_one figcaption .xtext {
        margin-bottom: 12%;
    }
    .ind_news_one figcaption .xbtn {
        width: 120px;
        height: 38px;
        font-size: 15px;
        line-height: 38px;
    }
}
@media (max-width: 768px) {
    .ind_news_one {
        float: none;
        width: 100%;
    }
    .ind_news_one figure .img-box {
        float: none;
        width: 100%;
        padding: 34.5% 0;
    }
    .ind_news_one figcaption {
        float: none;
        width: 100%;
    }
    .ind_news_one figcaption .xtit {
        margin-bottom: 2%;
        font-size: 14px;
        line-height: 1.5;
    }
    .ind_news_one figcaption time {
        padding: 4px;
        top: 2%;
        left: 2%;
        font-size: 14px;
        line-height: 25px;
    }
    .ind_news_one figcaption time span {
        font-size: 24px;
    }
    .ind_news_one figcaption .xtext {
        margin-bottom: 2%;
    }
    .ind_news_one figcaption .xbtn {
        width: 112px;
        height: 35px;
        margin: auto;
        font-size: 14px;
        line-height: 35px;
    }
}
.ind_news_ul {
    float: right;
    width: 35.5%;
    height: 320px;
    border-top: 1px solid #c6c6c6;
    overflow: hidden;
}
.ind_news_ul li {
    border-bottom: 1px solid #c6c6c6;
}
.ind_news_ul li a {
    display: block;
    padding: 13px 6px 13px 36px;
    position: relative;
}
.ind_news_ul li a:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url("../images/ind_news-blo01.png") no-repeat center center / contain;
    position: absolute;
    left: 10px;
    top: 20px;
    transition: .35s ease-in-out;
}
.ind_news_ul li.on a:before {
    background: url("../images/ind_news-blo02.png") no-repeat center center / contain;
}
.ind_news_ul li .xtit {
    margin-right: 75px;
    font-size: 16px;
    line-height: 1.5;
    color: #131313;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .35s ease-in-out;
}
.ind_news_ul li a:hover .xtit {
    color: #d39e52;
}
.ind_news_ul li time {
    display: inline-block;
    width: 75px;
    font-size: 12px;
    line-height: 2;
    text-align: center;
    color: #888;
    position: absolute;
    top: 13px;
    right: 0;
}
.ind_news_ul li .xtext {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #767676;
    height: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: .35s ease-in-out;
}
.ind_news_ul li.on .xtext {
    height: 75px;
}
@media (min-width: 1025px) and (max-width: 1230px) {
    .ind_news .container {
        max-width: 100%;
        padding: 0 2%;
    }
}
@media (max-width: 1024px) {
    .ind_news_ul {
        float: none;
        width: 100%;
        height: auto;
        margin-bottom: 4%;
    }
    .ind_news_ul li a {
        padding: 12px 6px 12px 36px;
    }
    .ind_news_ul li a:before {
        background: url("../images/ind_news-blo02.png") no-repeat center center / contain !important;
    }
    .ind_news_ul li .xtit {
        font-size: 15px;
        font-weight: bold;
    }
    .ind_news_ul li time {
        top: 10px;
        text-align: left;
    }
    .ind_news_ul li .xtext {
        margin-top: 1%;
        height: auto !important;
        max-height: 75px;
    }
}
@media (max-width: 768px) {
    .ind_news_ul li a {
        padding: 2%;
    }
    .ind_news_ul li a:before {
        display: none;
    }
    .ind_news_ul li .xtit {
        margin-right: 0;
        font-size: 14px;
    }
    .ind_news_ul li time {
        display: block;
        width: 100%;
        position: static;
    }
}
/*========================== .ind_news ==========================*/
.pub_footer {
    color: #dadada;
    background: #1e1e1e;
}
.pub_footer a {
    transition: .5s ease-in-out;
}
.pub_footer a:hover {
    color: #fff;
}
.pub_footer .container {
    width: 100%;
    max-width: 100%;
    padding: 0 3.125%;
}
.pub_footer .f_top {
    padding: 14px 0;
}
.pub_footer .f_nav {
    float: left;
}
.pub_footer .f_nav li {
    display: inline-block;
    font-size: 14px;
    line-height: 2;
    position: relative;
}
.pub_footer .f_nav li + li {
    margin-left: 16px;
}
.pub_footer .f_nav li + li:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 9px;
    background: #55595c;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
    margin-left: -8px;
}
.pub_footer .f_nav li a {
    display: block;
    padding: 0 5px;
}
.pub_footer .f_share {
    float: right;
    padding: 5px 0;
}
.pub_footer .f_share a {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
}
.pub_footer .f_share .bshare-qqim {
    background: url("../images/foot_qq.png") no-repeat center center;
}
.pub_footer .f_share .bshare-weixin {
    background: url("../images/foot_weixin.png") no-repeat center center;
}
.pub_footer .f_share .bshare-sinaminiblog {
    background: url("../images/foot_weibo.png") no-repeat center center;
}
#bsWXBox, #bsWXBox * {
    box-sizing: content-box;
}
.pub_footer .f_copyright {
    padding: 10px 0;
    font-size: 13px;
    line-height: 2;
    color: #fff;
    background: #0b0b0b;
}
.pub_footer .f_row {
    position: relative;
    padding: 2% 0;
    border-top: 1px solid #424242;
    border-bottom: 1px solid #424242;
}
.pub_footer .f_row .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pub_footer .f_row:before, .pub_footer .f_row:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #424242;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 31%;
}
.pub_footer .f_row:after {
    left: 69%;
}
.pub_footer .f_logo {
    float: left;
    width: 30%;
    padding-right: 2%;
}
.pub_footer .f_logo .logo {
    max-height: 100px;
}
.pub_footer .f_contact {
    float: left;
    width: 40%;
    padding: 0 2%;
    font-size: 14px;
    line-height: 2;
    color: #fff;
}
.pub_footer .f_contact i {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: text-bottom;
}
.pub_footer .f_contact .icon-phone {
    background: url("../images/foot_phone.png") no-repeat center center;
}
.pub_footer .f_contact .icon-email {
    background: url("../images/foot_email.png") no-repeat center center;
}
.pub_footer .f_contact .icon-address {
    background: url("../images/foot_adress.png") no-repeat center center;
}
.pub_footer .f_messages {
    float: right;
    width: 30%;
    padding-left: 2%;
    font-size: 14px;
    line-height: 2;
    color: #cbcccd;
}
.pub_footer .f_messages form {
    margin-top: 8px;
}
.pub_footer .f_messages form .form-group {
    overflow: hidden;
}
.pub_footer .f_messages form .text-input {
    float: left;
    display: block;
    width: 49%;
    height: 50px;
    padding: 0 14px;
    margin-right: 2%;
    margin-bottom: 8px;
    border: 1px solid #cbcccd;
    outline: none;
    font-size: 14px;
    line-height: 50px;
    color: #cbcccd;
    background: transparent;
}
.pub_footer .f_messages form .text-input:nth-of-type(2n) {
    margin-right: 0;
}
.pub_footer .f_messages form textarea {
    display: block;
    width: 100%;
    height: 100px;
    padding: 14px;
    margin-bottom: 8px;
    border: 1px solid #cbcccd;
    outline: none;
    font-size: 14px;
    color: #cbcccd;
    background: transparent;
}
.pub_footer .f_messages form .submit-btn {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #cbcccd;
    outline: none;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: #0b0b0b;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.pub_footer .f_messages form .submit-btn:hover {
    border-color: #d39e52;
    background: #d39e52;
}
@media (max-width: 1230px) {
    .pub_footer .container {
        padding: 0 2%;
    }
    .pub_footer .f_top {
        padding: 1.5% 0;
    }
    .pub_footer .f_nav {
        float: none;
        text-align: center;
    }
    .pub_footer .f_nav li + li {
        margin-left: 12px;
    }
    .pub_footer .f_nav li + li:before {
        margin-left: -6px;
    }
    .pub_footer .f_nav li a {
        padding: 0 4px;
    }
    .pub_footer .f_share {
        float: none;
        padding: 4px 0;
        text-align: center;
    }
    .pub_footer .f_copyright {
        padding: 1% 0;
    }
    .pub_footer .f_logo {
        padding-right: 1.5%;
    }
    .pub_footer .f_logo .logo {
        max-height: 70px;
    }
    .pub_footer .f_contact {
        padding: 0 1.5%;
    }
    .pub_footer .f_contact i {
        margin-right: 6px;
    }
    .pub_footer .f_messages {
        padding-left: 1.5%;
    }
    .pub_footer .f_messages form {
        margin-top: 6px;
    }
    .pub_footer .f_messages form .text-input {
        height: 45px;
        margin-bottom: 6px;
        line-height: 45px;
    }
    .pub_footer .f_messages form textarea {
        height: 90px;
        margin-bottom: 6px;
    }
    .pub_footer .f_messages form .submit-btn {
        height: 45px;
        line-height: 45px;
    }
}
@media (max-width: 768px) {
    .pub_footer .f_nav li {
        font-size: 13px;
    }
    .pub_footer .f_nav li + li {
        margin-left: 8px;
    }
    .pub_footer .f_nav li + li:before {
        margin-left: -4px;
    }
    .pub_footer .f_row .container {
        display: block;
    }
    .pub_footer .f_row:before, .pub_footer .f_row:after {
        display: none;
    }
    .pub_footer .f_logo {
        float: none;
        width: 100%;
        padding: 1% 0;
        text-align: center;
    }
    .pub_footer .f_logo .logo {
        max-height: 40px;
    }
    .pub_footer .f_contact {
        float: none;
        width: 100%;
        padding: 1% 0;
        font-size: 13px;
    }
    .pub_footer .f_contact i {
        margin-right: 4px;
    }
    .pub_footer .f_messages {
        float: none;
        width: 100%;
        padding: 1% 0;
        font-size: 13px;
    }
    .pub_footer .f_messages form {
        margin-top: 4px;
    }
    .pub_footer .f_messages form .text-input {
        height: 40px;
        padding: 0 13px;
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 40px;
    }
    .pub_footer .f_messages form textarea {
        height: 80px;
        padding: 13px;
        margin-bottom: 4px;
        font-size: 13px;
    }
    .pub_footer .f_messages form .submit-btn {
        height: 40px;
        padding: 0 13px;
        font-size: 13px;
        line-height: 40px;
    }
}

.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: #d39e52;
}
.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: #d39e52;
    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_copyright {
        margin-bottom: 60px;
    }
    .f-bottom {
        display: block;
        width: 100%;
        height: 60px;
        background: #1f1f1f;
        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_bannner ==========================*/
.pub_banner {
    position: relative;
    overflow: hidden;
}
.pub_banner img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}
.pub_banner_text {
    max-width: 1200px;
    padding: 0 5%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    color: #fff;
    transform: translate(0, -50%);
}
.pub_banner_text small {
    display: block;
    font-size: 12px;
}
.pub_banner_text h2 {
    margin-bottom: 3%;
    font-size: 38px;
}
.pub_banner_text p {
    margin-bottom: 8%;
    font-size: 20px;
}
.pub_banner_text hr {
    width: 28px;
    height: 2px;
    border: none;
    margin: 0;
    background: #fff;
}
@media (max-width: 1024px) {
    .pub_banner img {
        min-height: 300px;
    }
    .pub_banner_text h2 {
        font-size: 32px;
    }
    .pub_banner_text p {
        margin-bottom: 6%;
        font-size: 18px;
    }
    .pub_banner_text hr {
        width: 24px;
    }
}
@media (max-width: 768px) {
    .pub_banner img {
        min-height: 200px;
    }
    .pub_banner_text h2 {
        font-size: 22px;
    }
    .pub_banner_text p {
        margin-bottom: 4%;
        font-size: 16px;
    }
    .pub_banner_text hr {
        width: 20px;
    }
}
/*========================== .pub_main & .comtit2 ==========================*/
.pub_main {
    padding: 40px 0;
}
.comtit2 {
    text-align: center;
}
.comtit2 h3 {
    font-size: 36px;
    line-height: 1.2;
    color: #333;
}
.comtit2 p {
    font-size: 16px;
    line-height: 1.5;
    color: #6b6b6b;
    text-transform: uppercase;
}
.comtit2 hr {
    width: 65px;
    height: 2px;
    border: 0;
    margin-top: 10px;
    background: #1f1f1f;
}
@media (max-width: 1024px) {
    .pub_main {
        padding: 4% 0;
    }
    .comtit2 h3 {
        font-size: 28px;
    }
    .comtit2 p {
        font-size: 15px;
    }
    .comtit2 hr {
        width: 45px;
        margin-top: 1%;
    }
}
@media (max-width: 768px) {
    .comtit2 h3 {
        font-size: 20px;
    }
    .comtit2 p {
        font-size: 14px;
    }
    .comtit2 hr {
        width: 25px;
    }
}
/*========================== .breadcrumb ==========================*/
.breadcrumb {
    padding: 9px 0;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px dotted #dcdcdc;
    margin-bottom: 25px;
    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: #d39e52;
}
@media (max-width: 1024px) {
    .breadcrumb {
        padding: 1% 0;
        margin-bottom: 2.5%;
    }
}
@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-bottom: 25px;
}
.type-nav .swiper-slide {
    float: left;
    width: 16.66%;
}
.type-nav .swiper-slide a {
    display: block;
    width: 100%;
    padding: 0 4px;
    height: 56px;
    font-size: 18px;
    line-height: 56px;
    text-align: center;
    color: #5f5f5f;
    background: #f4f4f4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
    position: relative;
}
.type-nav .swiper-slide a:after {
    content: "";
    display: block;
    width: 20px;
    height: 10px;
    margin: auto;
    background: url("../images/pub_nav_block.png") no-repeat center center / cover;
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    transition: .5s ease-in-out;
}
.type-nav .swiper-slide.on a, .type-nav .swiper-slide a:hover {
    color: #fff;
    background: #d39e52;
}
.type-nav .swiper-slide.on a:after, .type-nav .swiper-slide a:hover:after {
    bottom: 0;
}
@media (max-width: 1024px) {
    .type-nav {
        margin-bottom: 2.5%;
    }
    .type-nav .swiper-slide a {
        height: 48px;
        font-size: 16px;
        line-height: 48px;
    }
    .type-nav .swiper-slide a:after {
        width: 16px;
        height: 8px;
        margin: auto;
        bottom: -6px;
    }
}
@media (max-width: 768px) {
    .type-nav .swiper-slide {
        float: left;
        width: 33.33%;
    }
    .type-nav .swiper-slide a {
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }
    .type-nav .swiper-slide a:after {
        width: 12px;
        height: 6px;
        bottom: -6px;
    }
}
/*========================== .about_intro  ==========================*/
.about_intro {
    padding: 30px 0;
    border-bottom: 1px solid #f3f3f3;
}
.about_intro .comtit2 {
    margin-bottom: 20px;
}
.about_intro_img {
    margin-bottom: 60px;
}
.about_intro_img img {
    width: 100%;
    height: auto;
}
.about_intro_word {
    font-size: 15px;
    line-height: 1.6;
    color: #454545;
}
.about_intro_word .xtit, .about_intro_word h4 {
    font-size: 20px;
    line-height: 1.2;
    color: #1f1f1f;
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .about_intro {
        padding: 3% 0;
    }
    .about_intro .comtit2 {
        margin-bottom: 5%;
    }
    .about_intro_img {
        margin-bottom: 5%;
    }
    .about_intro_word {
        font-size: 14px;
    }
    .about_intro_word .xtit, .about_intro_word h4 {
        font-size: 18px;
        margin-bottom: 3%;
    }
}
@media (max-width: 768px) {
    .about_intro_word .xtit, .about_intro_word h4 {
        font-size: 16px;
    }
}
/*========================== .about_culture  ==========================*/
.about_culture {
    padding: 60px 0 30px 0;
}
.about_culture .comtit2 {
    margin-bottom: 30px;
}
.about_culture_ul li {
    float: left;
    width: 33.33%;
}
.about_culture_ul li figure {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.about_culture_ul li figure .img-box {
    height: 100%;
    padding: 33.60% 0;
}
.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_ul li figcaption {
    padding: 2%;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
}
.about_culture_ul li figcaption .xicon {
    width: 48px;
    height: 48px;
    object-fit: cover;
}
.about_culture_ul li figcaption .xtit {
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 2%;
}
.about_culture_ul li figcaption .xtit em {
    display: block;
    font-size: 24px;
    line-height: 1.25;
    margin-top: 2%;
}
.about_culture_ul li figcaption .xtext {
    max-width: 275px;
    margin: auto;
    font-size: 14px;
    line-height: 2;
}
@media (max-width: 1024px) {
    .about_culture {
        padding: 6% 0 3% 0;
    }
    .about_culture .comtit2 {
        margin-bottom: 3%;
    }
    .about_culture_ul li figcaption {
        top: 50%;
        transform: translate(0, -50%);
    }
    .about_culture_ul li figcaption .xicon {
        width: 40px;
        height: 40px;
    }
    .about_culture_ul li figcaption .xtit {
        font-size: 16px;
    }
    .about_culture_ul li figcaption .xtit em {
        font-size: 20px;
    }
    .about_culture_ul li figcaption .xtext {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.5;
    }
}
@media (max-width: 768px) {
    .about_culture_ul li {
        float: none;
        width: 100%;
        margin-bottom: 1%;
    }
    .about_culture_ul li figcaption .xicon {
        width: 36px;
        height: 36px;
    }
    .about_culture_ul li figcaption .xtit {
        font-size: 14px;
    }
    .about_culture_ul li figcaption .xtit em {
        font-size: 18px;
    }
    .about_culture_ul li figcaption .xtext {
        font-size: 13px;
    }
}
/*========================== .pages ==========================*/
.pages {
    font-size: 16px;
    line-height: 2;
    text-align: center;
    color: #3f3f3f;
    margin-top: 30px;
}
.pages a {
    margin: 4px;
    display: inline-block;
    transition: .5s ease-in-out;
}
.pages a.page-num-current, .pages a:hover {
    color: #d39e52;
}
.pages .prev, .pages .next {
    border: 1px solid #e1e2e3;
    border-radius: 16px;
    padding: 0 8px;
}
.pages .prev:hover, .pages .next:hover {
    color: #fff;
    border-color: #d39e52;
    background: #d39e52;
}
@media (max-width: 1024px) {
    .pages {
        font-size: 14px;
        margin-top: 3%;
    }
}
/*========================== .about_common ==========================*/
.about_common {
    padding: 30px 0;
}
.about_common .comtit2 {
    margin-bottom: 40px;
}
.about_common .pages {
    margin-top: 40px;
}
@media (max-width: 1024px) {
    .about_common {
        padding: 3% 0;
    }
    .about_common .comtit2 {
        margin-bottom: 4%;
    }
    .about_common .pages {
        margin-top: 4%;
    }
}
.about_common_ul li {
    float: left;
    width: 24%;
    margin-right: 1.33%;
    margin-top: 2.96%;
}
.about_common_ul li a {
    display: block;
    width: 100%;
}
.about_common_ul li figure .img-box {
    height: 100%;
    padding: 40% 0;
    border: 1px solid #ececec;
}
.about_common_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_common_ul li a:hover figure .img-box:after {
    left: 200%;
    opacity: 1;
    transition: all 1s;
}
.about_common_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.about_common_ul li a:hover figure .img-box img {
    transform: scale(1.05, 1.05);
}
.about_common_ul li figcaption {
    position: relative;
    background: #f0f0f0;
}
.about_common_ul li figcaption:before {
    content: "";
    width: 0;
    height: 100%;
    background: #d39e52;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}
.about_common_ul li a:hover figcaption:before {
    width: 100%;
    opacity: 1;
}
.about_common_ul li figcaption p {
    height: 50px;
    padding: 0 4px;
    overflow: hidden;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    color: #3f3f3f;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 20;
    transition: all .5s ease-in-out;
}
.about_common_ul li a:hover figcaption p {
    color: #fff;
}
@media (min-width: 1025px) {
    .about_common_ul li:nth-of-type(-n+4) {
        margin-top: 0;
    }
    .about_common_ul li:nth-of-type(4n) {
        margin-right: 0;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .about_common_ul li {
        width: 32.5%;
        margin-right: 1.25%;
        margin-top: 1.25%;
    }
    .about_common_ul li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .about_common_ul li:nth-of-type(3n) {
        margin-right: 0;
    }
    .about_common_ul li figcaption p {
        height: 45px;
        font-size: 15px;
        line-height: 45px;
    }
}
@media (max-width: 768px) {
    .about_common_ul li {
        width: 49%;
        margin-right: 2%;
        margin-top: 2%;
    }
    .about_common_ul li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .about_common_ul li:nth-of-type(2n) {
        margin-right: 0;
    }
    .about_common_ul li figcaption p {
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }
}
/*========================== .pub_content ==========================*/
.pub_content_left {
    float: left;
    width: 20%;
}
.pub_content_right {
    float: right;
    width: 77.5%;
}
@media (max-width: 1024px) {
    .pub_content_left {
        display: none;
        float: none;
        width: 100%;
    }
    .pub_content_right {
        float: none;
        width: 100%;
    }
}
.comtit3 {
    padding: 12px 40px;
    margin-bottom: 1px;
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    background: #d39e52;
}
.comtit3 em {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
}
.comul1 li {
    margin-top: 1px;
}
.comul1 li a {
    display: block;
    padding: 12px 40px;
    font-size: 18px;
    line-height: 1.5;
    color: #313131;
    background: #ececeb;
    transition: .5s ease-in-out;
}
.comul1 li a:hover, .comul1 li.on a {
    color: #fff;
    background: #d39e52;
}
@media (max-width: 1230px) {
    .comtit3 {
        padding: 12px 20px;
    }
    .comul1 li a {
        padding: 12px 20px;
    }
}
@media (max-width: 1024px) {
    .comtit3 {
        padding: 2% 0;
        margin-bottom: 1%;
        font-size: 20px;
        text-align: center;
        color: #313131;
        background: transparent;
    }
    .comtit3 em {
        font-size: 15px;
        color: rgba(49, 49, 49, .6);
    }
    .comul1 li {
        float: left;
        width: 24%;
        margin: 0.5%;
    }
    .comul1 li a {
        padding: 10px 4px;
        font-size: 16px;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}
@media (max-width: 768px) {
    .comtit3 {
        font-size: 18px;
    }
    .comtit3 em {
        font-size: 14px;
        color: rgba(49, 49, 49, .6);
    }
    .comul1 li {
        width: 49%;
    }
    .comul1 li a {
        padding: 9px 4px;
        font-size: 14px;
    }
}
/*========================== .pro ==========================*/
.pro {
    padding: 30px 0;
}
.pro .comtit2 {
    margin-bottom: 40px;
}
.pro_ul {
    margin-top: 40px;
}
@media (max-width: 1024px) {
    .pro {
        padding: 3% 0;
    }
    .pro .comtit2 {
        margin-bottom: 4%;
    }
    .pro_ul {
        margin-top: 4%
    }
}
.pro_ul li {
    float: left;
    width: 32.26%;
    margin-right: 1.61%;
    margin-top: 2.5%;
}
.pro_ul li a {
    display: block;
    width: 100%;
}
.pro_ul li figure {
    border: 1px solid #dfdfdf;
}
.pro_ul li figure .img-box {
    height: 100%;
    padding: 40.83% 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 {
    position: relative;
}
.pro_ul li figcaption:before {
    content: "";
    width: 0;
    height: 100%;
    background: #d39e52;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .5s ease-in-out;
}
.pro_ul li a:hover figcaption:before {
    width: 100%;
    opacity: 1;
}
.pro_ul li figcaption p {
    height: 50px;
    padding: 0 4px;
    overflow: hidden;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    color: #5c5c5c;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 20;
    transition: all .5s ease-in-out;
}
.pro_ul li a:hover figcaption p {
    color: #fff;
}
@media (min-width: 769px) {
    .pro_ul li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .pro_ul li:nth-of-type(3n) {
        margin-right: 0;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .pro_ul li {
        width: 32.5%;
        margin-right: 1.25%;
        margin-top: 1.25%;
    }
    .pro_ul li figcaption p {
        height: 45px;
        font-size: 15px;
        line-height: 45px;
    }
}
@media (max-width: 768px) {
    .pro_ul li {
        width: 49%;
        margin-right: 2%;
        margin-top: 2%;
    }
    .pro_ul li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .pro_ul li:nth-of-type(2n) {
        margin-right: 0;
    }
    .pro_ul li figcaption p {
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }
}
/*========================== .prov ==========================*/
.prov {
    padding: 30px 0;
    margin-left: 15px;
}
.prov_show {
    margin-bottom: 30px;
}
.prov_show_swiper {
    float: left;
    width: 46%;
}
.prov_show_swiper li a {
    display: block;
}
.prov_show_swiper li .img-box {
    height: 100%;
    padding: 40.88% 0;
}
.prov_show_swiper li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .5s ease-in-out;
}
.prov_show_swiper li a:hover .img-box img {
    transform: scale(1.05, 1.05);
}
.prov_show_word {
    float: right;
    width: 50%;
}
.prov_show_word .xtit {
    font-size: 18px;
    line-height: 1.5;
    color: #2f2f2f;
    padding: 5px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.prov_show_word .xtext {
    font-size: 14px;
    line-height: 1.75;
    color: #2f2f2f;
}
.prov_show_word .xconsult {
    margin-top: 50px;
}
.prov_show_word .xcall {
    font-size: 16px;
    line-height: 1.5;
    color: #2e2e2e;
}
.prov_show_word .xcall em {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: #1f1f1f;
}
.prov_show_word .xbtn {
    float: right;
    display: inline-block;
    height: 54px;
    min-width: 160px;
    padding: 0 4px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 54px;
    text-align: center;
    color: #fff;
    background: #2f2f2f;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.prov_show_word .xbtn .icon-consult {
    display: inline-block;
    width: 25px;
    height: 22px;
    margin-left: 16px;
    vertical-align: text-bottom;
    background: url("../images/prov_icon.png") no-repeat center center / cover;
}
.prov_show_word .xbtn:hover {
    animation-iteration-count: 1;
    animation: hover_btn_four .5s linear 0s;
    background: #d39e52;
}
.prov_row {
    margin-top: 30px;
}
.prov_row .xtit {
    font-size: 14px;
    line-height: 1.5;
    color: #232323;
    padding: 8px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 36px;
    position: relative;
}
.prov_row .xtit:after {
    content: "";
    display: block;
    width: 19.5%;
    height: 1px;
    background: #1f1f1f;
    position: absolute;
    left: 0;
    top: 100%;
}
.prov_row .xtit em {
    font-size: 18px;
    font-weight: bold;
    margin-right: 8px;
}
.prov_row img {
    width: 100%;
    height: auto;
}
@media (max-width: 1230px) {
    .prov_show_word .xconsult {
        margin-top: 25px;
    }
    .prov_show_word .xcall em {
        font-size: 25px;
    }
    .prov_show_word .xbtn {
        min-width: 150px;
    }
}
@media (max-width: 1024px) {
    .prov {
        padding: 3% 0;
        margin-left: 0;
    }
    .prov_show {
        margin-bottom: 3%;
    }
    .prov_show_word .xtit {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .prov_show_word .xtext {
        line-height: 1.7;
    }
    .prov_show_word .xconsult {
        margin-top: 25px;
    }
    .prov_show_word .xcall {
        font-size: 15px;
    }
    .prov_show_word .xcall em {
        font-size: 25px;
    }
    .prov_show_word .xbtn {
        height: 45px;
        min-width: 135px;
        font-size: 15px;
        line-height: 45px;
    }
    .prov_show_word .xbtn .icon-consult {
        width: 22px;
        height: 20px;
        margin-left: 10px;
    }
    .prov_row {
        margin-top: 3%;
    }
    .prov_row .xtit {
        padding: 6px 0;
        margin-bottom: 3.6%;
    }
    .prov_row .xtit em {
        font-size: 16px;
        margin-right: 6px;
    }
}
@media (max-width: 768px) {
    .prov_show_swiper, .prov_show_word {
        float: none;
        width: 100%;
    }
    .prov_show_word .xtit {
        font-size: 16px;
        padding: 4px 0;
        margin-bottom: 1.5%;
    }
    .prov_show_word .xtext {
        line-height: 1.65;
    }
    .prov_show_word .xconsult {
        margin-top: 2.5%;
    }
    .prov_show_word .xcall {
        font-size: 14px;
    }
    .prov_show_word .xcall em {
        font-size: 20px;
    }
    .prov_show_word .xbtn {
        float: none;
        height: 40px;
        min-width: 120px;
        font-size: 14px;
        line-height: 40px;
    }
    .prov_show_word .xbtn .icon-consult {
        width: 21px;
        height: 18px;
        margin-left: 8px;
    }
    .prov_row .xtit {
        padding: 4px 0;
    }
    .prov_row .xtit em {
        font-size: 15px;
        margin-right: 4px;
    }
}
/*========================== .news ==========================*/
.news {
    padding: 30px 0;
}
.news .comtit2 {
    margin-bottom: 40px;
}
.news_ul {
    margin: 40px 0;
}
.news_ul li {
    float: left;
    width: 32.26%;
    margin-right: 1.61%;
    margin-top: 1.61%;
}
.news_ul li a {
    display: block;
}
.news_ul li figure {
    padding: 2.4%;
    border: 1px solid #dedede;
    transition: .5s ease-in-out;
}
.news_ul li a:hover figure {
    border-color: #D39E52;
}
.news_ul li figure .img-box {
    height: 100%;
    padding: 28.10% 0;
}
.news_ul li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.news_ul li a:hover figure .img-box img {
    transform: scale(1.05);
}
.news_ul li figure figcaption .xtit {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 2;
    color: #2f2f2f;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.news_ul li a:hover figure figcaption .xtit {
    color: #D39E52;
}
.news_ul li figure figcaption .xtext {
    height: 72px;
    overflow: hidden;
    font-size: 14px;
    line-height: 24px;
    color: #797979;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.news_ul li figure figcaption .xbtn {
    display: block;
    width: 140px;
    height: 45px;
    margin-top: 4px;
    padding: 0 4px;
    border: 1px solid #aaa;
    font-size: 16px;
    line-height: 45px;
    text-align: center;
    color: #797979;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.news_ul li a:hover figure figcaption .xbtn {
    background: #D39E52;
    border-color: #D39E52;
    color: #fff;
    animation-iteration-count: 1;
    animation: hover_btn_four .5s linear 0s;
}
@media (max-width: 1024px) {
    .news {
        padding: 3% 0;
    }
    .news .comtit2 {
        margin-bottom: 4%;
    }
    .news_ul {
        margin: 4% 0;
    }
    .news_ul li figure figcaption .xtit {
        margin-bottom: 1%;
        font-size: 16px;
    }
    .news_ul li figure figcaption .xbtn {
        width: 130px;
        height: 40px;
        font-size: 15px;
        line-height: 40px;
    }
}
@media (max-width: 768px) {
    .news_ul li figure {
        padding: 2%;
    }
    .news_ul li figure figcaption .xtit {
        font-size: 15px;
    }
    .news_ul li figure figcaption .xbtn {
        margin: 4px auto 0;
        width: 120px;
        height: 36px;
        font-size: 14px;
        line-height: 36px;
    }
}
@media (min-width: 1025px) {
    .news_ul li:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .news_ul li:nth-of-type(3n) {
        margin-right: 0;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .news_ul li {
        width: 49%;
        margin-right: 2%;
        margin-top: 2%;
    }
    .news_ul li:nth-of-type(-n+2) {
        margin-top: 0;
    }
    .news_ul li:nth-of-type(2n) {
        margin-right: 0;
    }
}
@media (max-width: 768px) {
    .news_ul li {
        float: none;
        width: 100%;
        margin-right: 0 !important;
        margin-top: 2%;
    }
    .news_ul li:first-of-type {
        margin-top: 0;
    }
}
.comul2 li {
    padding: 8% 4%;
    border-bottom: 1px dotted #e0e0e0;
}
.comul2 li a {
    display: block;
}
.comul2 li figure .img-box {
    float: left;
    width: 40%;
    height: 100%;
    padding: 15.50% 0;
}
.comul2 li figure .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}
.comul2 li a:hover figure .img-box img {
    transform: scale(1.05);
}
.comul2 li figure figcaption {
    float: right;
    width: 57%;
}
.comul2 li figure figcaption h5 {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s ease-in-out;
}
.comul2 li a:hover figure figcaption h5 {
    color: #D39E52;
}
.comul2 li figure figcaption p {
    font-size: 12px;
    line-height: 1.7;
    color: #666666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
@media (max-width: 1024px) {
    .comul2 {
        display: none;
    }
}
/*========================== .newsv ==========================*/
.newsv {
    padding: 0 0 36px 36px;
}
.newsv_tit {
    margin-bottom: 40px;
    text-align: center;
}
.newsv_tit h3 {
    font-size: 24px;
    line-height: 1.6;
    color: #2f2f2f;
}
.newsv_tit p {
    font-size: 12px;
    line-height: 1.6;
    color: #aaaaaa;
}
.newsv_tit p span {
    display: inline-block;
    margin: 0 8px;
}
.newsv_content {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}
.newsv_content img {
    display: block;
    max-width: 100%;
    margin: 8px auto;
}
@media (max-width: 1230px) {
    .newsv {
        padding: 0 0 30px 30px;
    }
}
@media (max-width: 1024px ) {
    .newsv {
        padding: 0 0 3% 0;
    }
    .newsv_tit {
        margin-bottom: 3%;
    }
    .newsv_tit h3 {
        font-size: 20px;
    }
    .newsv_tit p span {
        margin: 0 6px;
    }
    .newsv_content {
        font-size: 15px;
    }
    .newsv_content img {
        margin: 6px auto;
    }
}
@media (max-width: 768px ) {
    .newsv_tit h3 {
        font-size: 16px;
    }
    .newsv_tit p span {
        margin: 0 4px;
    }
    .newsv_content {
        font-size: 14px;
    }
    .newsv_content img {
        margin: 4px auto;
    }
}
/*========================== .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: #D39E52;
}
.contact {
    padding: 25px 0 50px 0;
}
.contact_con {
    margin-top: 15px;
    padding: 0 50px;
}
.contact_ul {
    float: left;
    width: 35%;
}
.contact_ul li {
    padding: 26px 0;
    border-bottom: 1px solid #ebebeb;
}
.contact_ul li h5 {
    font-size: 18px;
    line-height: 2;
    color: #656565;
    margin-bottom: 8px;
}
.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_call.png");
}
.contact_ul li .icon-address {
    background-image: url("../images/contact_adress.png");
}
.contact_ul li .icon-email {
    background-image: url("../images/contact_email.png");
}
.contact_ul li p {
    font-size: 16px;
    line-height: 1.5;
    color: #353535;
}
.contact_ul li em {
    font-size: 24px;
    color: #1f1f1f;
}
.contact_map {
    float: right;
    margin-top: 15px;
    width: 60%;
    height: 100%;
    padding: 21% 0;
}
.contact_map img {
    max-width: none;
    max-height: none;
}
@media (max-width: 1230px) {
    .contact_con {
        padding: 0 25px;
    }
}
@media (max-width: 1024px) {
    .contact {
        padding: 2.5% 0 5% 0;
    }
    .contact_con {
        margin-top: 1.5%;
        padding: 0;
    }
    .contact_ul li {
        padding: 5% 0;
    }
    .contact_ul li h5 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .contact_ul li .icon {
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }
    .contact_ul li p {
        font-size: 14px;
    }
    .contact_ul li em {
        font-size: 20px;
    }
    .contact_map {
        margin-top: 1.5%;
    }
}
@media (max-width: 768px) {
    .contact_ul {
        float: none;
        width: 100%;
    }
    .contact_ul li {
        padding: 2.5% 0;
    }
    .contact_ul li h5 {
        font-size: 14px;
        margin-bottom: 1%;
    }
    .contact_ul li .icon {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }
    .contact_ul li p {
        font-size: 13px;
    }
    .contact_ul li em {
        font-size: 16px;
    }
    .contact_map {
        float: none;
        margin-top: 2.5%;
        width: 100%;
        padding: 35% 0;
    }
}
/*========================== .message ==========================*/
.message {
    padding: 50px 0 80px 0;
    margin-bottom: -40px;
    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: 49.75%;
    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(2n) {
    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 .submit-btn {
    display: block;
    width: 100%;
    height: 70px;
    margin: 0.5% auto 0;
    border: none;
    font-size: 16px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    background: #1f1f1f;
    transition: .5s ease-in-out;
}
.message_form .submit-btn:hover {
    background: #D39E52;
}
@media (max-width: 1024px) {
    .message {
        padding: 5% 0 8% 0;
        margin-bottom: -4%;
    }
    .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: 49.5%;
        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 .submit-btn {
        height: 55px;
        margin: 1% auto 0;
        font-size: 15px;
        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 .submit-btn {
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }
}
.pro .ind_pro_ul {
    margin-top: 40px
}
@media (max-width: 1024px) {
    .pro .ind_pro_ul  {
        margin-top: 4%;
    }
}