    /* 公共样式 */
    
    @font-face {
        font-family: 'youshe';
        src: url(../font/YouSheBiaoTiHei-2.ttf);
    }
    
     ::-webkit-scrollbar {
        /*滚动条整体样式*/
        width: 0px;
        /*高宽分别对应横竖滚动条的尺寸*/
        height: 0px;
    }
    
     ::-webkit-scrollbar-thumb {
        /*滚动条里面小方块*/
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        background: #535353;
    }
    
     ::-webkit-scrollbar-track {
        /*滚动条里面轨道*/
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        background: #EDEDED;
    }
    
    .container .titledemo {
        padding: 60px 0;
        animation-name: fadeInUp;
        visibility: visible;
    }
    
    .container .titledemo p {
        width: fit-content;
        margin: 10px auto;
        font-size: 32px;
        color: #010101;
        font-weight: bold;
        position: relative;
    }
    
    .container .titledemo p::before {
        content: '';
        width: 127px;
        height: 3px;
        background: url(../images/title-icon.png) no-repeat center;
        position: absolute;
        left: -160px;
        top: 26px;
    }
    
    .container .titledemo p::after {
        content: '';
        width: 127px;
        height: 3px;
        background: url(../images/title-icon.png) no-repeat center;
        position: absolute;
        right: -160px;
        top: 26px;
    }
    
    .pagination {
        display: flex;
        justify-content: center;
        margin: 20px auto 30px;
    }
    
    .pagination li {
        width: 30px;
        height: 30px;
        margin: 10px 10px;
        border: 1px solid #ccc;
        text-align: center;
        line-height: 26px;
    }
    
    .pagination .disabled {
        opacity: 0.5;
    }
    
    .pagination .active {
        background: #60180a;
        color: #fff;
    }
    
    .empty {
        height: 100px;
        background: #fff;
    }
    
    .container {
        min-width: 1170px;
        max-width: 1400px;
        margin: 0 auto;
        /* overflow: hidden; */
        padding: 0 calc(1vw + 20px);
    }
    /* 头部样式 */
    
    header {
        height: 100px;
        z-index: 99;
        position: absolute;
        width: 100%;
    }
    
    header .container {
        display: flex;
        justify-content: space-between;
        animation-name: fadeInDown;
        visibility: visible;
        max-width: 100%;
        padding: 0 13.545%;
    }
    
    header .logobox {
        max-width: 410px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* header .logobox img {
    height: 63px;
    margin: 32px 0 0 0;
} */
    
    header nav {
        height: 100px;
        line-height: 100px;
    }
    
    header .navbox {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    
    header .navbox .langbox {
        position: relative;
        padding: 30px 0 30px 33px;
    }
    
    header .navbox .langbox::before {
        content: '';
        width: 18px;
        height: 18px;
        background: url(../images/language.png) no-repeat center;
        position: absolute;
        left: 46px;
        top: 33px;
        cursor: pointer;
    }
    
    header .navbox .langbox::after {
        content: '';
        width: 8px;
        height: 5px;
        background: url(../images/corner.png) no-repeat center;
        position: absolute;
        right: 18px;
        top: 40px;
        cursor: pointer;
    }
    
    header .navbox .langbox ul li {
        text-align: center;
        width: 120px;
        cursor: pointer;
        position: relative;
    }
    
    header .navbox .langbox ul li a {
        font-size: 16px;
    }
    
    header .navbox .langbox ul li .subnav {
        display: none;
        position: absolute;
        width: 100%;
        padding: 20px 0;
        text-align: center;
        background: #fff;
        border-radius: 10px;
        animation: fadeOut 0.8s;
    }
    
    header .navbox .langbox ul li:hover .subnav {
        display: block;
        /* height: fit-content; */
        animation: fadeInDown 0.8s;
    }
    /* header .navbox .langbox .active .subnav {
    display: block;
    animation: fadeUp 0.4s;
} */
    
    header nav .mainnav {
        display: flex;
        justify-content: flex-end;
        /* position: relative; */
    }
    
    header nav .mainnav::after {
        content: '';
        height: 19px;
        width: 1px;
        background-color: #ccc;
        position: absolute;
        right: -15px;
        top: 40px;
    }
    
    header nav .mainnav .subnav {
        background: rgba(255, 255, 255, 0.9);
        line-height: 1;
        display: none;
        width: 100%;
        position: absolute;
        left: 0;
    }
    
    header nav .mainnav .subnav .container {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
        justify-content: flex-start;
    }
    
    header nav .mainnav .subnav a {
        padding: 20px 10px;
        display: block;
        font-size: 16px;
        width: calc(100% / 5 - 20px);
    }
    
    header nav .mainnav .subnav a:hover {
        color: #60180a;
    }
    
    header nav .mainnav li {
        flex-grow: 1;
        height: 97px;
        /* position: relative; */
    }
    
    header nav .mainnav li:hover .subnav {
        display: block;
        animation: fadeInDown 0.8s;
    }
    
    header nav .mainnav li:hover {
        border-bottom: 3px solid #60180a;
    }
    
    header nav .mainnav li:hover>a {
        color: #60180a;
        font-weight: 700;
    }
    
    header nav .mainnav li a {
        font-size: calc(1vw - 3px);
        color: #000;
        padding: 0 14px;
    }
    
    header nav .mainnav li a:hover {
        text-decoration: none;
    }
    
    header .container .phonebox {
        position: relative;
        padding: 17px 0 0 50px;
    }
    
    header .container .phonebox::before {
        content: '';
        width: 34px;
        height: 34px;
        background: url(../images/phoneicon.png)no-repeat center;
        position: absolute;
        left: 0px;
        top: 32px;
    }
    
    header .container .phonebox p {
        font-size: 24px;
        font-weight: bolder;
        color: #2864be;
    }
    
    header .searchbox {
        width: 260px;
        height: 53px;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        border: 1px solid #60180a;
        border-radius: 26px;
        overflow: hidden;
    }
    
    header .searchbox>div {
        width: 60px;
        background: #60180a;
        height: 53px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    
    header .searchbox input {
        outline: 0;
        border: 0;
        margin: 0;
        height: 28px;
        background: none;
        color: #333;
        width: 120px;
        transition: all 0.4s;
        padding: 0 0 0 20px;
    }
    /* header .searchbox .search-close {
        position: absolute;
        right: 5px;
        top: 5px;
        display: none;
    }
    
    header .searchbox-active .search-close {
        display: block;
        z-index: 9;
    } */
    
    header .searchbox-active input {
        /* width: 120px; */
        transition: all 0.4s;
        margin: 0 10px 0 0;
        padding: 0 0 0 20px;
        border-radius: 25px;
        border: 1px solid #efefef;
    }
    
    header .searchbox input::placeholder {
        color: #333;
        font-size: 12px;
    }
    
    .banner {
        position: relative;
    }
    
    .banner .swiper-pagination-bullet {
        background: #333333;
    }
    
    .banner .btn-a {
        width: 120px;
        height: 40px;
        display: block;
        /* border: 1px solid #000; */
        position: absolute;
        z-index: 9;
        top: 58%;
        left: 8.3%;
    }
    
    .banner img {
        max-width: 100%;
        min-width: 1250px;
        display: block;
        margin: 0 auto;
    }
    
    footer {
        max-height: 320px;
        background-color: #010101;
        padding: 60px 0;
        clear: both;
    }
    
    footer .container {
        animation-name: fadeInDown;
        visibility: visible;
    }
    
    footer .container .btm-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
    }
    
    footer .container .btm-nav .btm-logo {
        width: 14%;
        height: 39px;
        background: url(../images/btm-logo.png) no-repeat center;
        margin-right: 3%;
    }
    
    footer .container .btm-nav ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-wrap: nowrap;
        padding: 0;
    }
    
    footer .container .btm-nav ul .active a {
        color: #60180a;
        font-weight: bolder;
    }
    
    footer .container .btm-nav ul li {
        display: inline;
    }
    
    footer .container .btm-nav ul li a {
        font-size: 18px;
        color: #c1c1c1;
        text-decoration: none;
    }
    
    footer .container .btm-info {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        color: #c1c1c1;
        align-items: flex-end;
    }
    
    footer .container .btm-info .btm-contact {
        flex-grow: 1;
        display: flex;
        flex-wrap: wrap;
        max-width: 60%;
        padding-left: 2%;
    }
    
    footer .container .btm-info .btm-contact .info-detail {
        margin-right: 3%;
    }
    
    footer .container .btm-info .btm-contact .info-detail span {
        font-size: 16px;
    }
    
    footer .container .btm-info .btm-contact .info-detail p {
        font-size: 16px;
        /* text-transform: uppercase; */
    }
    
    footer .container .btm-info .qr-code-box {
        display: flex;
    }
    
    footer .container .btm-info .qr-code-box img {
        margin: 0 5px 0;
        max-width: 49%;
    }
    
    footer .container .btm-info .qr-code-box p {
        font-size: 16px;
        color: #fff;
        margin: 10px 0;
    }
    
    footer .container .btm-support {
        min-width: 13.4%;
    }
    
    footer .container .btm-support .imgbox {
        width: 100%;
        border-bottom: 1px solid #c1c1c1;
        float: right;
        text-align: right;
        padding-bottom: 35px;
        margin-bottom: 30px;
    }
    
    footer .container .btm-support p {
        text-align: right;
        font-size: 14px;
    }
    
    footer .backtotop {
        position: fixed;
        right: 5%;
        bottom: 10%;
        cursor: pointer;
    }
    
    .indexpro .container {
        position: relative;
    }
    
    .indexpro .leftarr {
        position: absolute;
        left: -60px;
        height: 69px;
        width: 69px;
        top: 64%;
        cursor: pointer;
    }
    
    .indexpro .rightarr {
        position: absolute;
        right: -60px;
        height: 69px;
        width: 69px;
        top: 64%;
        cursor: pointer;
    }
    
    .indexpro .swiper-button-prev {
        opacity: 0;
    }
    
    .indexpro .swiper-button-next {
        opacity: 0;
    }
    
    .indexpro .container .swiper .item img {
        max-width: 100%;
    }
    
    .indexpro .container .swiper .item .titlebox {
        position: absolute;
        top: 22px;
        width: 78%;
        text-align: left;
        left: 5.5%;
    }
    
    .indexpro .container .swiper .item .titlebox .title {
        font-size: 26px;
        color: #333;
        font-family: 'youshe';
    }
    
    .indexpro .container .swiper .item .titlebox .line {
        display: block;
        margin: 4px 0;
        width: 220px;
        height: 1px;
        background: #b8b8b8;
    }
    
    .indexpro .container .swiper .item .titlebox .desc {
        font-size: 16px;
        color: #b8b8b8;
        font-family: 'youshe';
    }
    
    .indexpro .container .swiper .item .txtbox {
        width: 113px;
        position: absolute;
        top: 110px;
        left: 5.5%;
    }
    
    .indexpro .container .swiper .item .txtbox p {
        font-size: 14px;
        color: #666;
    }
    
    .indexpro .container .swiper .item .circle {
        width: 37px;
        height: 37px;
        border-radius: 50%;
        border: 1px solid #60180a;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 7.5%;
        top: 229px
    }
    
    .indexpro .container .swiper .active .circle {
        background: #60180a;
    }
    
    .indexpro .container .swiper .item .circle .ar1 {
        display: block;
    }
    
    .indexpro .container .swiper .item .circle .ar2 {
        display: none;
    }
    
    .indexpro .container .swiper .active .circle .ar1 {
        display: none;
    }
    
    .indexpro .container .swiper .active .circle .ar2 {
        display: block;
    }
    
    .indexpro .container .swiper .active .titlebox .title {
        color: #60180a;
    }
    
    .indexpro .container .swiper .active .titlebox .desc {
        color: rgba(96, 24, 10, 0.4)
    }
    
    .indexpro .container .swiper .swiper-wrapper {
        padding: 30px 0;
    }
    
    .indexpro .container .swiper .swiper-wrapper .swiper-slide {
        transition: all 0.4s;
        cursor: pointer;
    }
    
    .indexpro .container .swiper .swiper-wrapper .swiper-slide:hover {
        margin: -30px 0 0 0;
        transition: all 0.4s;
    }
    /* 间隔广告 */
    
    .g-adv img {
        max-width: 100%;
        min-width: 1200px;
        display: block;
        margin: 0 auto;
    }
    /* 首页关于我们 */
    
    .indexabout {
        position: relative;
        min-height: 380px;
        height: 32.3vw;
        max-height: 620px;
    }
    
    .indexabout .aboutbg {
        position: absolute;
        max-width: 100%;
        min-width: 1170px;
        z-index: -1;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .indexabout .container .txtbox {
        max-width: 700px;
        float: right;
    }
    
    .indexabout .container .txtbox .title {
        font-size: 29px;
        color: #000;
        font-weight: bold;
    }
    
    .indexabout .container .txtbox .cont {
        font-size: 14px;
        color: #666;
        line-height: 32px;
        margin: 20px 0;
    }
    
    .indexabout .container .txtbox .more {
        width: 195px;
        height: 58px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 29.8px;
        border: 1px solid #60180a;
        color: #60180a;
        font-size: 18px;
    }
    
    .indexabout .container .txtbox .more img {
        margin: 0 0 0 10px;
    }
    
    .indexabout .container .titledemo {
        padding: 30px 0;
    }
    /* 资质证书 */
    
    .certifi {
        background: url(../images/picture/certifi/bg.jpg) no-repeat center;
        position: relative;
        background-size: cover;
    }
    /* 企业资讯 */
    
    .indexnews .container .newslist {
        display: flex;
        justify-content: flex-start;
        padding: 0 0 50px 0;
    }
    
    .indexnews .container .newslist .item {
        width: calc(100% / 3 - 20px);
        margin: 0 20px 0 0;
    }
    
    .indexnews .container .newslist .item:last-child {
        margin: 0 0 0 0;
    }
    
    .indexnews .container .newslist .item .picbox {
        width: 100%;
        height: 262px;
        overflow: hidden;
    }
    
    .indexnews .container .newslist .item .picbox img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s;
    }
    
    .indexnews .container .newslist .item .picbox:hover img {
        transition: all 0.4s;
        transform: scale(1.05);
    }
    
    .indexnews .container .newslist .item .txtbox {
        padding: 10px 0;
    }
    
    .indexnews .container .newslist .item .txtbox .name {
        font-size: 24px;
        color: #333;
        font-weight: bold;
        width: 90%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .indexnews .container .newslist .item .txtbox .desc {
        font-size: 14px;
        color: #999;
        line-height: 26px;
        margin: 6px 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    
    .indexnews .container .newslist .item .txtbox .func {
        display: flex;
        justify-content: space-between;
        padding: 4px 0;
    }
    
    .indexnews .container .newslist .item .txtbox .func .more {
        font-size: 16px;
        color: #333;
    }
    
    .indexnews .container .newslist .item .txtbox .func .more img {
        width: 26px;
        height: 26px;
    }
    
    .indexnews .container .newslist .item .txtbox .func .date {
        font-size: 14px;
        color: #999;
    }
    /* 表单 */
    
    .indexform .formbg {
        max-width: 100%;
        min-width: 1200px;
        position: absolute;
        z-index: -1;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .indexform .container .box {
        height: 315px;
        /* background: url(../images/formbg.png) no-repeat center; */
        background-size: contain;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px 0 0 0;
        /* background-color: #f5f5f5; */
        background-position-y: bottom;
    }
    
    .indexform .container .box .wrap {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 33vw;
        margin: 0 auto;
        flex-wrap: wrap;
        padding: 6vw 0 0 0;
        max-width: 630px;
    }
    
    .indexform .container .box .wrap input {
        height: 2.5vw;
        border: 1px solid #dddddd;
        background-color: #fff;
        width: calc(100% / 2 - 30px);
        margin: 0px 8px 5px 0;
        outline: none;
        padding: 0 0 0 20px;
        min-height: 35px;
        max-height: 48px;
    }
    
    .indexform .container .box .wrap input::placeholder {
        color: #bebebe;
    }
    
    .indexform .container .box .wrap input:nth-child(2n) {
        margin: 0 0 5px 0;
    }
    
    .indexform .container .box .wrap input:last-child {
        background: #60180a;
        color: #fff;
        width: calc(100% / 2 - 8px);
    }
    /* 底部导航 */
    
    .btm-bar {
        border-bottom: 1px solid #333;
        background: #010101;
    }
    
    .btm-bar .container .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
    }
    
    .btm-bar .container .wrap ul li {
        display: inline-block;
        margin: 0 30px 0;
    }
    
    .btm-bar .container .wrap ul li a {
        font-size: 16px;
        color: #c1c1c1;
    }
    
    .infobar {
        font-size: 16px;
        color: #c1c1c1;
        text-align: center;
        height: 56px;
        background: #010101;
        line-height: 56px;
        border-top: 1px solid #333;
    }
    
    .infobar a {
        color: #c1c1c1;
        font-size: 16px;
    }
    
    .about {
        background: url(../images/picture/about/aboutbg2.jpg) no-repeat center;
        background-position-y: bottom;
    }
    
    .about .container .wrap {
        display: flex;
        justify-content: space-between;
        padding: 120px 0;
    }
    
    .about .container .wrap .txt {
        max-width: 49%;
    }
    
    .about .container .wrap .txt .name {
        font-size: 28px;
        color: #000;
        font-weight: bold;
    }
    
    .about .container .wrap .txt .desc {
        font-size: 14px;
        line-height: 38px;
        color: #000;
        margin: 30px 0 80px 0;
        max-width: 90%;
    }
    
    .about .container .wrap .txt .line {
        display: block;
        height: 5px;
        width: 26px;
        background: #60180a;
    }
    
    .about .container .wrap .picbox {
        width: 49%;
        overflow: hidden;
    }
    
    .about .container .wrap .picbox img {
        max-width: 100%;
        width: fit-content;
    }
    /* 产品中心分类页面 */
    
    .pro-cate-page .container .procate {
        display: flex;
        flex-wrap: wrap;
        padding: 70px 0;
    }
    
    .pro-cate-page .container .procate .item {
        width: calc(100% / 4 - 5px);
        margin: 0 5px 15px 0;
        position: relative;
        cursor: pointer;
    }
    
    .pro-cate-page .container .procate .item:nth-child(4n) {
        margin: 0 0 15px 0;
    }
    
    .pro-cate-page .container .procate .item img {
        max-width: 100%;
    }
    
    .pro-cate-page .container .procate .item .titlebox {
        position: absolute;
        top: 22px;
        width: 78%;
        text-align: left;
        left: 5.5%;
    }
    
    .pro-cate-page .container .procate .item .titlebox .title {
        font-size: calc(1vw + 8px);
        color: #333;
        font-family: 'youshe';
    }
    
    .pro-cate-page .container .procate .item .titlebox .line {
        display: block;
        margin: 4px 0;
        width: 220px;
        height: 1px;
        background: #b8b8b8;
    }
    
    .pro-cate-page .container .procate .item .titlebox .desc {
        font-size: 16px;
        color: #b8b8b8;
        font-family: 'youshe';
    }
    
    .pro-cate-page .container .procate .item .txtbox {
        width: 113px;
        position: absolute;
        top: 110px;
        left: 5.5%;
    }
    
    .pro-cate-page .container .procate .item .txtbox p {
        font-size: 14px;
        color: #666;
    }
    
    .pro-cate-page .container .procate .item .circle {
        width: 37px;
        height: 37px;
        border-radius: 50%;
        border: 1px solid #60180a;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 7.5%;
        top: 229px
    }
    
    .pro-cate-page .container .procate .active .circle {
        background: #60180a;
    }
    
    .pro-cate-page .container .procate .item .circle .ar1 {
        display: block;
    }
    
    .pro-cate-page .container .procate .item .circle .ar2 {
        display: none;
    }
    
    .pro-cate-page .container .procate .active .circle .ar1 {
        display: none;
    }
    
    .pro-cate-page .container .procate .active .circle .ar2 {
        display: block;
    }
    
    .pro-cate-page .container .procate .active .titlebox .title {
        color: #60180a;
    }
    
    .pro-cate-page .container .procate .active .titlebox .desc {
        color: rgba(96, 24, 10, 0.4)
    }
    /* 产品中心 */
    
    .procenter {
        background: #fafafa;
    }
    
    .procenter .container .wrap {
        padding: 50px 0;
        display: flex;
        justify-content: space-between;
    }
    
    .procenter .container .wrap .left {
        width: 19.714%;
        padding: 30px 1% 30px 5%;
        background: #fff;
        height: fit-content;
    }
    
    .procenter .container .wrap .left .catelist {}
    
    .procenter .container .wrap .left .catelist .cate {}
    
    .procenter .container .wrap .left .catelist .cate a {
        display: block;
        position: relative;
        font-size: 18px;
        padding: 20px 0;
        border-bottom: 1px solid #efefef;
    }
    
    .procenter .container .wrap .left .catelist .cate a::before {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background-size: contain;
        left: -45px;
        top: 19px;
        filter: brightness(0.5);
    }
    
    .procenter .container .wrap .left .catelist .cate:last-child a {
        border-bottom: 0;
    }
    
    .procenter .container .wrap .left .catelist .cate a:hover {
        color: #60180a;
    }
    
    .procenter .container .wrap .left .catelist .cate a:hover::before {
        filter: brightness(1)
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(1) a::before {
        background: url(../images/picture/pro/icon1.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(2) a::before {
        background: url(../images/picture/pro/icon2.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(3) a::before {
        background: url(../images/picture/pro/icon3.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(4) a::before {
        background: url(../images/picture/pro/icon4.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(5) a::before {
        background: url(../images/picture/pro/icon5.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(6) a::before {
        background: url(../images/picture/pro/icon6.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(7) a::before {
        background: url(../images/picture/pro/icon7.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(8) a::before {
        background: url(../images/picture/pro/icon8.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(9) a::before {
        background: url(../images/picture/pro/icon9.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(10) a::before {
        background: url(../images/picture/pro/icon10.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(11) a::before {
        background: url(../images/picture/pro/icon11.png) no-repeat center;
    }
    
    .procenter .container .wrap .left .catelist .cate:nth-child(12) a::before {
        background: url(../images/picture/pro/icon12.png) no-repeat center;
    }
    
    .procenter .container .wrap .right {
        width: 68.857%;
        background: #fff;
        padding: 2%;
    }
    
    .procenter .container .wrap .right .list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .procenter .container .wrap .right .item {
        width: calc(100% / 3 - 10px);
        margin: 0 10px 10px 0;
    }
    
    .procenter .container .wrap .right .picbox {
        width: 99.5%;
        height: 15.625vw;
        min-height: 250px;
        border-bottom: 1px solid #fff;
        background: #fff;
        overflow: hidden;
        border: 1px solid #f7f7f7;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .procenter .container .wrap .right .picbox img {
        width: 90%;
        height: 90%;
        object-fit: contain;
        transition: all 0.4s;
    }
    
    .procenter .container .wrap .right .picbox:hover img {
        transition: all 0.4s;
        transform: scale(1.08);
    }
    
    .procenter .container .wrap .right .txt {
        padding: 10px 0;
        text-align: center;
        background: #f7f7f7;
        height: 56px;
        line-height: 56px;
    }
    
    .procenter .container .wrap .right .txt .name {
        font-size: 16px;
        width: 99%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: pre-wrap;
        line-height: 32px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    /* 新闻详情 */
    
    .procenter .container .wrap .right .newsdetail-show {
        padding: 50px 0 0 0;
    }
    
    .procenter .container .wrap .right .newsdetail-show .detailtitle {
        font-size: 29px;
        color: #333;
        text-align: center;
        margin: 0 auto;
        font-weight: bold;
    }
    
    .procenter .container .wrap .right .newsdetail-show .desc {
        display: block;
        margin: 0 auto;
        border-bottom: 1px solid #cdcdcd;
    }
    
    .procenter .container .wrap .right .newsdetail-show .desc .time {
        font-size: 16px;
        font-weight: 400px;
        color: #999999;
        display: inline-block;
        text-align: left;
        margin: 20px 30px 20px 0;
    }
    
    .procenter .container .wrap .right .newsdetail-show .desc .read {
        font-size: 16px;
        font-weight: 400px;
        color: #999999;
        display: inline-block;
        text-align: left;
        ;
    }
    
    .procenter .container .wrap .right .newsdetail-show .detailcontent {
        /*padding: 0 0 50px 0;*/
        /*max-width: 1200px;*/
        /*margin: 0 auto;*/
    }
    
    .procenter .container .wrap .right .newsdetail-show .detailcontent .txt-detail {
        /*padding: 30px 0;*/
        /* background: rgb(196, 189, 151); */
    }
    
    .procenter .container .wrap .right .newsdetail-show .detailcontent img {
        max-width: 100%;
        display: block;
        margin: 10px auto;
    }
    
    .procenter .container .wrap .right .newsdetail-show .detailcontent p {
        font-size: 16px;
        /*color: #000;*/
        /*font-weight: 300;*/
        /*line-height: 36px;*/
        /*line-height: 0px;*/
        /*text-indent: 32px;*/
        /*margin: 20px 0;*/
    }
    
    .container .prevnext {
        max-width: 1200px;
        display: flex;
        margin: 0 auto;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        border-top: 1px solid #cdcdcd;
        padding: 20px 0;
    }
    
    .container .prevnext .prev,
    .next {
        font-size: 16px;
        color: #333;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 48%;
    }
    
    .container .prevnext .next {
        text-align: right;
    }
    /* .procenter .container .wrap .right .newsdetail-show .hot-pro {
        padding: 50px 0;
    } */
    
    .procenter .container .wrap .right .newsdetail-show .hot-pro .line {
        height: 17px;
        width: 106%;
        display: block;
        background: #fafafa;
        margin: 0 0 0 -3%;
    }
    
    .procenter .container .wrap .right .newsdetail-show .hot-pro .title {
        font-size: 20px;
        color: #333;
        padding: 20px 0 10px;
    }
    
    .procenter .container .wrap .right .newsdetail-show .hot-pro .list .item {
        width: calc(100% / 4 - 10px);
        margin: 0 10px 0 0;
    }
    
    .procenter .container .wrap .right .newsdetail-show .hot-pro .list .item .picbox {
        height: 12.625vw;
        min-height: 208px;
    }
    
    .procenter .container .wrap .right .newsdetail-show .hot-pro .list .item .txt .name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 90%;
    }
    
    .procenter .container .wrap .right .newsdetail-show .hot-pro .list .item:last-child {
        margin: 0;
    }
    
    .contact {
        background: #fafafa;
    }
    
    .contact .container .wrap {
        display: flex;
        justify-content: flex-start;
    }
    
    .contact .container .wrap .left {
        width: 46%;
        padding: 30px 2%;
        height: 400px;
        background: url(../images/picture/contact/1.jpg) no-repeat center;
    }
    
    .contact .container .wrap .left .name {
        font-size: 18px;
        color: #fff;
        margin: 39px 0 10px
    }
    
    .contact .container .wrap .left .line {
        display: block;
        width: 25px;
        height: 2px;
        background: #fff;
        margin: 20px 0 50px;
    }
    
    .contact .container .wrap .left .item {
        padding: 0 0 0 90px;
        position: relative;
        margin: 0 0 32px 0;
    }
    
    .contact .container .wrap .left .item:before {
        content: '';
        position: absolute;
        width: 57px;
        height: 57px;
        background-size: contain;
        left: 0;
    }
    
    .contact .container .wrap .left .item:nth-child(3)::before {
        background: url(../images/picture/contact/icon1.png);
    }
    
    .contact .container .wrap .left .item:nth-child(4)::before {
        background: url(../images/picture/contact/icon2.png);
    }
    
    .contact .container .wrap .left .item:nth-child(5)::before {
        background: url(../images/picture/contact/icon3.png);
    }
    
    .contact .container .wrap .left .item p {
        font-size: 14px;
        color: #fff;
        margin: 5px 0;
    }
    
    .contact .container .wrap .right {
        width: 46%;
        padding: 30px 2%;
        height: 340px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        background: #fff;
        margin: 30px 0 0 0;
    }
    
    .contact .container .wrap .right .top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .contact .container .wrap .right .top .leftside .name {
        font-size: 18px;
        color: #60180a;
        font-weight: bold;
    }
    
    .contact .container .wrap .right .top .leftside .line {
        display: block;
        margin: 30px 0;
        width: 25px;
        height: 2px;
        background: #60180a;
    }
    
    .contact .container .wrap .right .top .leftside .desc {
        max-width: 220px;
        font-size: 16px;
        color: #999;
    }
    
    .contact .container .wrap .right .top .manpic {
        position: absolute;
        right: 0;
        top: -102px;
    }
    
    .contact .container .wrap .right .inputwrap {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 655px;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    
    .contact .container .wrap .right .inputwrap input {
        height: 40px;
        border: 1px solid #dddddd;
        background-color: #fff;
        width: calc(100% / 2 - 30px);
        margin: 0px 8px 5px 0;
        outline: none;
        padding: 0 0 0 20px;
        min-height: 35px;
    }
    
    .contact .container .wrap .right .inputwrap input::placeholder {
        color: #bebebe;
    }
    
    .contact .container .wrap .right .inputwrap input:nth-child(2n) {
        margin: 0 0 5px 0;
    }
    
    .contact .container .wrap .right .inputwrap input:last-child {
        background: #60180a;
        color: #fff;
        width: calc(100% / 2 - 8px);
    }
    
    #map {
        height: 460px;
        width: 100%;
    }
    /* 新闻中心 */
    
    .news-center {
        background-size: cover;
        background: #fafafa;
    }
    
    .news-center .container {
        width: 95%;
        min-width: 1200px;
    }
    
    .news-center .container .titlebox {
        padding: 50px 0;
        position: relative;
    }
    
    .news-center .container .titlebox .marktitle {
        position: absolute;
    }
    
    .news-center .container .titlebox .title1 {
        left: 15%;
    }
    
    .news-center .container .titlebox .title1-1 {
        left: 15%;
    }
    
    .news-center .container .titlebox .title2 {
        left: 36%;
    }
    
    .news-center .container .titlebox .title2-2 {
        left: 36%;
    }
    
    .news-center .container .titlebox .title3 {
        left: 56%;
    }
    
    .news-center .container .titlebox .title3-3 {
        left: 56%;
    }
    
    .news-center .container .titlebox .markitem .mark-ac {
        display: none;
    }
    
    .news-center .container .titlebox .active .marktitle {
        display: none;
    }
    
    .news-center .container .titlebox .active .mark-ac {
        display: block;
    }
    
    .news-center .container .newslist {
        width: 71.94%;
        max-width: 1036px;
        margin: 0 30px 0 0;
    }
    
    .news-center .container .newslist .newsitem {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin: 0 auto 30px;
        padding: 10px 0;
        /* border-top: 1px dashed #e5cfab; */
        display: none;
        background: #fff;
    }
    
    .news-center .container .newslist .newsitem:first-child {
        border: 0;
    }
    
    .news-center .container .newslist .newsitem:nth-child(-n+5) {
        display: flex;
    }
    
    .news-center .container .newslist .newsitem .picbox {
        width: 265px;
        height: 178px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }
    
    .news-center .container .newslist .newsitem .picbox img {
        width: 98%;
        height: 98%;
        object-fit: contain;
        border: 3px solid #efefef;
    }
    
    .news-center .container .newslist .newsitem .txtbox {
        width: 710px;
        margin: 0 0 0 30px;
        padding: 0 20px 0 0;
    }
    
    .news-center .container .newslist .newsitem .txtbox .title {
        max-width: 94%;
        display: inline;
        font-size: 20px;
        font-weight: bold;
        color: #000;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    
    .news-center .container .newslist .newsitem .txtbox .date {
        width: 30%;
        display: inline;
        font-size: 14px;
        color: #999;
    }
    
    .news-center .container .newslist .newsitem .txtbox .cont {
        font-size: 14px;
        color: #999;
        line-height: 30px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        margin: 20px 0;
        border-top: 1px solid #e5e5e5;
        padding: 10px 0 0 0;
    }
    
    .news-center .container .newslist .newsitem .txtbox>p span:last-child {
        text-align: right;
    }
    
    .news-center .container .newslist .newsitem .txtbox a {
        font-size: 14px;
        color: #fff;
        display: inline-block;
        width: 100px;
        height: 32px;
        border: 2px;
        border-style: solid;
        border-image-slice: 1;
        text-align: center;
        line-height: 32px;
        letter-spacing: 2px;
        background: #60180a;
    }
    
    .news-center .container .newslist .newsitem .txtbox .btm {
        display: flex;
        justify-content: space-between;
    }
    
    .news-center .container .newslist .newsitem:hover {
        background: #60180a;
    }
    
    .news-center .container .newslist .newsitem:hover .title {
        color: #fff;
    }
    
    .news-center .container .newslist .newsitem:hover .cont {
        color: #fff;
    }
    
    .news-center .container .newslist .newsitem:hover .txtbox .btm a {
        background: #fff;
        color: #60180a;
        border: 0;
    }
    
    .news-center .container .newslist .newsitem:hover .txtbox .btm .date {
        color: #fff;
    }
    
    .news-center .container .wrapper {
        display: flex;
        justify-content: space-between;
        padding: 50px 0;
    }
    
    .news-center .container .wrapper .hotlist {
        width: 440px;
    }
    
    .news-center .container .wrapper .hotlist img {
        width: 100%;
    }
    
    .news-center .container .wrapper .hotlist .aboutnews {
        background: #fff;
        margin: 40px 0;
        padding: 30px;
        box-shadow: 0 0 21px rgb(0 0 0 / 9%);
        /* max-width: 333px; */
    }
    
    .news-center .container .wrapper .hotlist .aboutnews .title {
        font-size: 20px;
        color: #60180a;
        font-weight: bold;
        position: relative;
    }
    
    .news-center .container .wrapper .hotlist .aboutnews .title::before {
        content: '';
        width: 9px;
        height: 26px;
        background: #60180a;
        position: absolute;
        left: -9%;
        top: 4px;
    }
    
    .news-center .container .wrapper .hotlist .aboutnews .hotitem {
        font-size: 16px;
        color: #999;
        padding: 10px 0;
        display: block;
    }
    
    .news-center .container .wrapper .hotlist .aboutnews .hotitem span {
        color: #60180a;
    }
    /* 新闻详情 */
    
    .news-center .container .newsDetail {
        background: #fff;
    }
    
    .news-center .container .newsDetail .newsdetail-show {
        padding: 20px 30px;
    }
    
    .news-center .container .newsDetail .newsdetail-show .detailtitle {
        font-size: 29px;
        color: #333;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto;
        font-weight: bold;
    }
    
    .news-center .container .newsDetail .newsdetail-show .desc {
        max-width: 1200px;
        display: block;
        margin: 0 auto;
        border-bottom: 1px solid #cdcdcd;
    }
    
    .news-center .container .newsDetail .newsdetail-show .desc .time {
        font-size: 16px;
        font-weight: 400px;
        color: #999999;
        display: inline-block;
        text-align: left;
        margin: 20px 30px 20px 0;
    }
    
    .news-center .container .newsDetail .newsdetail-show .desc .read {
        font-size: 16px;
        font-weight: 400px;
        color: #999999;
        display: inline-block;
        text-align: left;
        ;
    }
    
    .news-center .container .newsDetail .newsdetail-show .detailcontent {
        padding: 0 30px 50px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .news-center .container .newsDetail .newsdetail-show .detailcontent img {
        max-width: 100%;
        display: block;
        margin: 10px auto;
    }
    
    .news-center .container .newsDetail .newsdetail-show .detailcontent p {
        font-size: 16px;
        color: #333;
        font-weight: 300;
        line-height: 36px;
        text-indent: 32px;
        margin: 30px 0;
    }
    /* 面包屑 */
    
    .crumb {
        height: 60px;
        line-height: 60px;
        /* border-bottom: 1px solid #efefef; */
    }
    
    .crumb .container span {
        color: #000;
        font-size: 15px;
        color: #000;
        font-weight: 600;
    }
    
    .crumb .container span a {
        color: #000;
        font-size: 14px;
    }
    
    .crumb .container span:last-child a {
        color: #60180a
    }
    /* ------------------------------------------媒介查询---------------------------------------------- */
    
    @media screen and (min-width:2000px) {
        .indexform .container .box .wrap {
            padding: 100px 0 0 0;
        }
        .pro-cate-page .container .procate .item .titlebox .title {
            font-size: 26px;
        }
    }
    
    @media screen and (max-width:1650px) {
        .indexform .container .box {
            height: 267px;
        }
        .indexpro .container {
            width: 80%;
            min-width: 1024px;
        }
        .indexpro .container .swiper .item .titlebox .desc {
            font-size: 12px;
            color: #b8b8b8;
            font-family: 'youshe';
        }
        .indexpro .container .swiper .item .titlebox .line {
            display: block;
            margin: 4px 0;
            width: 166px;
            height: 1px;
            background: #b8b8b8;
        }
        .indexpro .container .swiper .item .titlebox .title {
            font-size: 20px;
            color: #333;
            font-family: 'youshe';
        }
        .indexform .container .box .wrap {
            padding: 7vw 0 0 0;
        }
    }
    
    @media screen and (max-width:1440px) {
        .indexform .container .box .wrap {
            padding: 6vw 0 0 0;
        }
        .indexpro .container .swiper .item .circle {
            top: 185px;
        }
        .indexabout .container .txtbox .cont {
            font-size: 14px;
            color: #666;
            line-height: 26px;
            margin: 10px 0;
        }
        .indexform .container .box {
            height: 234px;
        }
        footer .container .btm-info .btm-contact .info-detail p {
            font-size: 14px;
            text-transform: uppercase;
        }
    }
    
    @media screen and (max-width:1366px) {
        .contact .container .wrap .right .inputwrap {
            width: 580px
        }
        footer .container .btm-info .qr-code-box {
            display: flex;
            max-width: 250px;
        }
        .indexform .container .box {
            height: 220px;
        }
        .indexpro .container .swiper .item .circle {
            width: 25px;
            height: 25px;
        }
        .indexpro .container .swiper .item .circle img {
            width: 10px;
        }
        .indexpro .container .swiper .item .txtbox {
            width: 80px;
        }
        .indexpro .container .swiper .item .txtbox p {
            font-size: 14px;
        }
        .indexpro .leftarr {
            position: absolute;
            left: -30px;
            height: 49px;
            width: 49px;
            top: 64%;
            cursor: pointer;
        }
        .indexpro .rightarr {
            position: absolute;
            right: -30px;
            height: 49px;
            width: 49px;
            top: 64%;
            cursor: pointer;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            animation-name: fadeInDown;
            visibility: visible;
            max-width: 100%;
            padding: 0 4%;
        }
        header nav .mainnav li a {
            font-size: 15px;
            color: #000;
            padding: 0 12px;
        }
        .logobox .logoimg {
            max-width: 80%;
        }
        header .logobox {
            max-width: 310px;
        }
        .indexabout .container .txtbox {
            max-width: 550px;
            float: right;
        }
        .indexabout .container .txtbox .title {
            font-size: 24px;
            color: #000;
            font-weight: bold;
        }
        .indexabout .container .txtbox .cont {
            font-size: 13px;
            color: #666;
            line-height: 26px;
            margin: 10px 0;
        }
        .indexabout .container .txtbox .more {
            width: 153px;
            height: 39px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 29.8px;
            border: 1px solid #60180a;
            color: #60180a;
            font-size: 15px;
        }
        .indexform .container .box .wrap {
            padding: 7vw 0 0 0;
        }
    }
    
    @media screen and (max-width:1280px) {
        .contact .container .wrap .right .inputwrap {
            width: 580px
        }
        .indexform .container .box {
            height: 203px;
        }
        footer .container .btm-info .btm-contact .info-detail p {
            font-size: 12px;
            text-transform: uppercase;
        }
        .indexform .container .box .wrap {
            min-width: 410px;
            margin: 0 0 0 -8px;
        }
        header nav .mainnav li a {
            font-size: 16px;
            color: #000;
            padding: 0 14px;
        }
        .indexpro .container {
            width: 60%;
            min-width: 1024px;
        }
    }
    
    .y-kefu-box {
        position: fixed;
        right: 0;
        top: 30%;
        z-index: 999;
        font-size: 13px
    }
    
    .y-kefu-box img {
        display: block;
        width: 100%;
        height: auto
    }
    
    .y-kefu-box01 .icon {
        display: block;
        background: url("../images/icons.png") no-repeat;
        margin: 0 auto 6px
    }
    
    .y-kefu-box01 {
        width: 54px;
        color: #666;
        text-align: center
    }
    
    .y-kefu-box01 .kf-close-btn {
        width: 29px;
        height: 29px;
        background-position: -4px -114px;
        position: relative;
        cursor: pointer
    }
    
    .y-kefu-box01 .kf-close-btn:before {
        content: '';
        display: block;
        width: 1px;
        height: 12px;
        background-color: #60180a;
        position: absolute;
        bottom: -12px;
        left: 13px;
        z-index: 1
    }
    
    .y-kefu-box01 .show-status>a,
    .y-kefu-box01 .show-status>div {
        display: block;
        width: 52px;
        padding: 8px 0 12px;
        background-color: #fff;
        border-left: solid 1px #efefef;
        border-top: solid 1px #efefef;
        border-right: solid 1px #efefef;
        position: relative
    }
    
    .y-kefu-box01 .show-status {
        position: relative
    }
    
    .y-kefu-box01 .show-status .kf-zixun {
        background-color: #60180a;
        border-color: #60180a;
        color: #fff;
        margin: 10px 0 7px
    }
    
    .y-kefu-box01 .kf-zixun {
        border-radius: 2px
    }
    
    .y-kefu-box01 .kf-zixun i {
        width: 21px;
        height: 22px;
        background-position: -5px -5px
    }
    
    .y-kefu-box01 .kf-mobile {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px
    }
    
    .y-kefu-box01 .kf-mobile>i {
        width: 18px;
        height: 18px;
        background-position: -5px -32px
    }
    
    .y-kefu-box01 .kf-mobile:hover>i {
        background-position: -30px -32px
    }
    
    .y-kefu-box01 .kf-weChat>i {
        width: 22px;
        height: 19px;
        background-position: -5px -55px
    }
    
    .y-kefu-box01 .kf-weChat:hover>i {
        background-position: -30px -55px
    }
    
    .y-kefu-box01 .kf-email {
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px
    }
    
    .y-kefu-box01 .kf-email>i {
        width: 18px;
        height: 14px;
        background-position: -5px -80px
    }
    
    .y-kefu-box01 .kf-email:hover>i {
        background-position: -30px -80px
    }
    
    .y-kefu-box01 .kf-tel {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px
    }
    
    .y-kefu-box01 .kf-tel>i {
        width: 21px;
        height: 19px;
        background-position: -5px -147px
    }
    
    .y-kefu-box01 .kf-tel:hover>i {
        background-position: -30px -147px
    }
    
    .y-kefu-box01 .back-top i {
        width: 13px;
        height: 11px;
        background-position: -5px -98px
    }
    
    .y-kefu-box01 .back-top:hover i {
        background-position: -30px -98px
    }
    
    .y-kefu-box01 .kf-email,
    .y-kefu-box01 .back-top {
        border-bottom: solid 1px #efefef
    }
    
    .y-kefu-box01 .back-top {
        margin-top: 20px;
        border-radius: 2px;
        left: 55px
    }
    
    .y-kefu-box01 .hver:hover {
        background-color: #60180a;
        border-color: #60180a
    }
    
    .y-kefu-box01 .hver:hover>p {
        color: #fff
    }
    
    .y-kefu-box01 .mobile-infos,
    .y-kefu-box01 .y-ewm-box,
    .y-kefu-box01 .y-email-infos {
        background-color: #fff;
        border: solid 1px #efefef;
        position: absolute;
        right: 90px;
        z-index: 2;
        border-radius: 2px;
        display: none
    }
    
    .kf-tel>mobile-infos {
        width: 300px !important
    }
    
    .y-kefu-box01 .mobile-infos {
        width: 250px;
        text-align: left;
        top: 0
    }
    
    .y-kefu-box01 .mobile-infos>div {
        padding: 20px 0 20px 45px;
        position: relative
    }
    
    .y-kefu-box01 .mobile-infos>div i {
        width: 15px;
        height: 15px;
        background-position: -52px -32px;
        position: absolute;
        top: 22px;
        left: 20px;
        z-index: 2
    }
    
    .y-kefu-box01 .mobile-infos .online1 {
        border-bottom: solid 1px #efefef
    }
    
    .y-kefu-box01 .mobile-infos span {
        color: #999
    }
    
    .y-kefu-box01 .mobile-infos p {
        color: #60180a;
        font-size: 18px
    }
    
    .right-arrow1,
    .right-arrow2 {
        width: 0;
        height: 0;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        border-top: 6px transparent dashed;
        border-right: 6px transparent dashed;
        border-bottom: 6px transparent dashed;
        border-left: 6px white solid;
        overflow: hidden
    }
    
    .right-arrow1 {
        left: 1px;
        border-left: 6px #efefef solid
    }
    
    .right-arrow2 {
        border-left: 6px white solid
    }
    
    .y-kefu-box01 .y-ewm-box {
        width: 151px;
        top: -60px
    }
    
    .y-kefu-box01 .y-ewm-box>div {
        width: 151px
    }
    
    .y-kefu-box01 .y-ewm-box img {
        width: 140px;
        height: auto;
        margin: 0 auto
    }
    
    .y-kefu-box01 .y-ewm-box .y-ewm-img1 {
        width: 150px;
        border-right: solid 1px #efefef
    }
    
    .y-kefu-box01 .y-ewm-box .right {
        top: 84px
    }