html {
    font-size: 12px;
    overflow-x: hidden;
}
html, body {
    position: relative;
    /*height: 100%;*/

}

a {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

em {
    font-style: normal;
}

ol,ul{list-style:none}

li{display:list-item}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

body, button, input, select, textarea {
    font: 14px/1 "HarmonyOS Sans SC","Helvetica Neue", Helvetica, Arial, sans-serif;;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.containers {
    width: 1400px;
    margin: 0 auto;
}
.containers-1600 {
    width: 1600px;
    margin: 0 auto;
}

.headers {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.headers.bg,.headers.bgs,.headers:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.headers .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headers .header .logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.headers .header .logo img {
    height: 40px;
}
.headers .header .logo .line {
    width: 1px;
    height: 20px;
    background: #000;
    margin: 0 15px;
}

.headers .header .logo span {
    font-size: 16px;
    letter-spacing: 2px;
    color: #333;
    margin-top: 2px;
}

.headers .header .navs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.headers .header .navs .nav-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
}
.headers .header .navs .nav-box .children {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    /*background: #fff;*/
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.headers .header .navs .nav-box:hover .children {
    height: auto!important;
    opacity: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 9999999;

}
.headers .header .navs .nav-box .children .cbx {
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.headers .header .navs .nav-box .children .cbx a {
    font-size: 12px;
    color: #000;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}
.headers .header .navs .nav-box .children .cbx a:last-of-type {
    border-bottom: none;
}
.headers .header .navs .nav-box .children .cbx a em {
    width: 14px;
    height: 8px;
    background-image: url("../img/icon_right_16.png");
    background-repeat: no-repeat;
    background-position: 14px 0;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}
.headers .header .navs .nav-box .children .cbx a:hover {
    color: #ff4100;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}
.headers .header .navs .nav-box .children .cbx a:hover em {
    background-position: 0 0;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}
.headers .header .nav-flex-box-width {
    position: absolute;
    left: 0;
    top: 79px;
    background: #fff;
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 0 0;
    box-shadow: 0 3px 5px #ddd;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}
.headers .header .nav-flex-box-width.flexs {
    height: auto !important;
    opacity: 1;
    padding: 20px 0 15px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.headers .header .nav-flex-box-width .nav-flex-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 1400px;
    margin: 0 auto;
}
.headers .header .nav-flex-box-width .nav-flex-box .t {
    font-size: 18px;
    color: #FF4000;
    margin-bottom: 10px;
}

.headers .header .nav-flex-box-width .nav-flex-box .menu-pros {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .cate {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 330px;
    padding-right: 30px;
    border-right: 1px solid #eee;
    margin-right: 20px;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .cate .cate-a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    padding: 10px 10px 10px 0;
    margin-bottom: 5px;

}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .cate .cate-a span {
    color: #888;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .cate .cate-a em {
    color: #888;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .cate .cate-a.active span {
    color: #000;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .cate .cate-a.active em {
    color: #FF4000;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .cate .image {
    width: 100%;
    height: 195px;
    border: 1px solid #eee;
    overflow: hidden;
    margin-top: 15px;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .cate .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: calc(100% - 360px);
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr {
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr.active {
    display: flex;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-nav {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 200px;
    margin-right: 40px;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 5px;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-nav a span {
    width: calc(100% - 18px);
    font-size: 14px;
    color: #888;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-nav a em {
    width: 14px;
    height: 8px;
    background-image: url("../img/icon_right_16.png");
    background-repeat: no-repeat;
    background-position: 14px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-nav a.active span {
    color: #000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-nav a.active em {
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 240px);
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list {
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list.active {
    display: flex;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list a {
    width: 190px;
    margin-right: calc((100% - 760px) / 3);
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list a:last-of-type {
    margin-right: 0;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list a img {
    width: 100%;
    height: 190px;
    border-radius: 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list a:hover img {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list a .t {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list a .t span {
    width: calc(100% - 18px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 4px;
    color: #333;
    font-size: 12px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list a .t em {
    width: 14px;
    height: 8px;
    background-image: url("../img/icon_right_16.png");
    background-repeat: no-repeat;
    background-position: -14px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list a:hover .t span {
    color: #FF4000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .menu-pros .menu-pros-r .mpr-list a:hover .t em {
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 260px;
    height: 190px;
    margin-right: calc((100% - (260px * 5)) / 4);
    margin-bottom: 10px;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box.n-box-1 {
    width: 330px;
    height: 230px;
    margin-right: calc((100% - (330px * 4)) / 3);
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box:nth-child(5n){
    margin-right: 0;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box.n-box-1:nth-child(5n){
    margin-right: calc((100% - (330px * 4)) / 3);
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box.n-box-1:nth-child(4n){
    margin-right: 0;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box .n-box-image {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box.n-box-1 .n-box-image {
    height: 200px;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box .n-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box:hover .n-box-image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box .tit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 30px;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box .tit span {
    max-width: calc(100% - 18px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 4px;
    font-size: 14px;
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box .tit em {
    width: 14px;
    height: 8px;
    background-image: url("../img/icon_right_16.png");
    background-repeat: no-repeat;
    background-position: -14px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box:hover .tit span {
    color: #FF4000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box:hover .tit em {
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box .tit img {
    width: 20px;
}
.headers .header .navs .nav-box .nav-item {
    height: 80px;
    line-height: 80px;
    position: relative;
    padding: 0 20px;
    font-size: 16px;
    color: #000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav-box:hover .nav-item,.headers .header .navs .nav-box.active .nav-item {
    color: #FF4000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav-box .nav-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 20px);
    width: 0;
    height: 3px;
    background: #FF4000;
    border-radius: 2px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav-box:hover .nav-item::before,.headers .header .navs .nav-box.active .nav-item::before {
    width: calc(100% - 40px);
    left: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .se-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.headers .header .navs .se-box .search {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 20px;
}
.headers .header .navs .se-box .search .icon {
    cursor: pointer;
}
.headers .header .navs .se-box .search .search-form {
    position: absolute;
    left: 0;
    top: -80px;
    background: #fff;
    border: 1px solid #ff4100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
}
.headers .header .navs .se-box .search .search-form.on {
    top: -10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.headers .header .navs .se-box .search .search-form .s-form-input {
    width: 220px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    border: none;
    font-size: 14px;
    color: #000;
    outline: none;
}
.headers .header .navs .se-box .search .search-form .s-form-close {
    width: 45px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f5f5f5;
}
.headers .header .navs .se-box .search .search-form .s-form-close img {
    width: 24px;
}


.headers .header .navs .se-box .line {
    width: 1px;
    height: 16px;
    background: #000;
    margin: 0 15px;
}
.headers .header .navs .se-box .phone {
    display: flex;
    align-items: center;
    justify-content: center;
}
.headers .header .navs .se-box .phone img {
    margin-right: 10px;
}
.headers .header .navs .se-box .phone span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    font-family: 'HarmonyOS Sans SC';
}
.banners {
    width: 100%;
}

.banners .banner {
    /*height: 100vh;*/
    height:930px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.banners .banner .swiper-wrapper .swiper-slide {
    display: inline-block;
    /*align-items: center;*/
    /*justify-content: center;*/
    position: relative;
}
.banners .banner .swiper-wrapper .swiper-slide a {
    position: absolute;
    left: calc((100% - 1400px)/2);
    top: 56%;
    background: #ff4100;
    color: #fff;
    font-size: 18px;
    border-radius: 30px;
    padding: 10px 15px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.banners .banner .swiper-wrapper .swiper-slide a:hover {
    background: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.banners .banner .swiper-wrapper .swiper-slide .image {
    width: auto;
    /*height: 100%;*/
    object-fit: cover;
}
.banners .banner .swiper-button-next {
    display: none;
    right: 50px;
    left: unset;
    top: 50%;
    bottom:unset;
    border: 1px solid #fff;
    background: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.banners .banner .swiper-button-prev {
    display: none;
    right: unset;
    left: 50px;
    top: 50%;
    bottom: unset;
    border: 1px solid #fff;
    background: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.banners .banner:hover .swiper-button-next,.banners .banner:hover .swiper-button-prev {
    display: flex;
}


.banners .banner .swiper-button-next:after,.banners .banner .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.banners .banner .swiper-button-next:hover,.banners .banner .swiper-button-prev:hover {
    border: 1px solid #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.banners .banner .swiper-button-next:hover:after,.banners .banner .swiper-button-prev:hover:after {
    color: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.banners .banner .swiper-pagination-banner {
    position: absolute;
    z-index: 999;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0;
    bottom: 30px;
}

.banners .banner .swiper-pagination-banner .swiper-pagination-bullet{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin: 0 5px;
    outline: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    opacity : 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.banners .banner .swiper-pagination-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.G-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.G-title .GT-name {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 44px;
    font-weight: bold;
    letter-spacing: 4px;
    z-index: 2;
    width: 100%;
}
.G-title .GT-name:before {
    content: '';
    width: 60px;
    height: 5px;
    background: #ff4100;
    position: absolute;
    left: calc(50% - 30px);
    bottom: -20px;
    border-radius: 3px;
}
.G-title .GT-name .c-black {
    color: #000;
}
.G-title .G-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #777;
    margin-top: 40px;
}
.G-more {
    background: #ff4100;
    color: #fff !important;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 30px;
    letter-spacing: 2px;
}
.G-more:hover {
    color: #fff !important;
    background: #333;
}


.section-love {
    padding: 80px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #F6F8FA;
}
.section-love .love {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.section-love .love .list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    margin-top: 50px;
}
.section-love .love .list .tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.section-love .love .list .tag a {
    width: 280px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    background: #fff;
    border-radius: 30px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.section-love .love .list .tag a.active {
    background: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .list .tag a:last-of-type {
    margin-right: 0;
}
.section-love .love .list .tag a i {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    background-image: url("../img/icon_love.png");
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .list .tag a i.icon-1 {
    background-position: 0 0;
}
.section-love .love .list .tag a.active i.icon-1 {
    background-position: -36px 0;
}
.section-love .love .list .tag a i.icon-2 {
    background-position: 0 -36px;
}
.section-love .love .list .tag a.active i.icon-2 {
    background-position: -36px -36px;
}
.section-love .love .list .tag a i.icon-3 {
    background-position: 0 -72px;
}
.section-love .love .list .tag a.active i.icon-3 {
    background-position: -36px -72px;
}
.section-love .love .list .tag a i.icon-4 {
    background-position: 0 -108px;
}
.section-love .love .list .tag a.active i.icon-4 {
    background-position: -36px -108px;
}
.section-love .love .list .tag a span {
    color: #000;
    font-size: 24px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .list .tag a.active span {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .love-swiper {
    height: 570px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    padding-bottom: 40px
}
.section-love .love .love-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-love .love .love-swiper .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-love .love .love-swiper .swiper-pagination-love {
    position: absolute;
    z-index: 999;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0;
    bottom: 0;
}

.section-love .love .love-swiper .swiper-pagination-love .swiper-pagination-bullet{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin: 0 5px;
    outline: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #BCBCBC;
    opacity : 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.section-love .love .love-swiper .swiper-pagination-love .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: none;
    border: 2px solid #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.section-product {
    padding: 70px 0;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.product {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.product .t-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 300px;
    margin-right: 50px;
}
.product .t-box h3 {
    font-size: 40px;
    color: #000;
    font-weight: bold;
    position: relative;
    margin-bottom: 40px;
}
.product .t-box h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 50px;
    height: 4px;
    background: #ff4100;
}
.product .t-box .intro {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    font-size: 16px;
    color: #333;
    line-height: 30px;
}
.product .t-box .pg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 40px 0;
}
.product .t-box .pg .count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.product .t-box .pg .count em {
    color: #000;
    font-weight: bold;
}
.product .t-box .pg .line {
    width: 60%;
    height: 1px;
    background: #eee;
}
.product .t-box .pg .position {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 60px;
    background: #f00;
}

.product .lists {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 350px);
}
.product .lists .pro-swiper {
    height: 460px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.product .lists .pro-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #F6F8FA;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-swiper .swiper-wrapper .swiper-slide:hover {
    background: linear-gradient(to bottom, #ffffff, #FFD7CA);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-swiper .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 360px;
   display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product .lists .pro-swiper .swiper-wrapper .swiper-slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .pro-swiper .swiper-wrapper .swiper-slide:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .pro-swiper .swiper-wrapper .swiper-slide .name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    line-height: 80px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    width: 100%;
    padding: 0 20px;
}
.product .lists .pro-swiper .swiper-wrapper .swiper-slide .name span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    letter-spacing: 2px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-swiper .swiper-wrapper .swiper-slide .name i {
    width: 25px;
    height: 25px;
    margin-right: -50px;
    background-image: url("../img/icon_right.png");
    background-repeat: no-repeat;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
}

.product .lists .pro-swiper .swiper-wrapper .swiper-slide:hover .name span {
    justify-content: flex-start;
    width: calc(100% - 30px);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .pro-swiper .swiper-wrapper .swiper-slide:hover .name i {
    margin-right: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s ease-in;
}
.product .t-box .pg .position .swiper-button-prev {
    display: flex;
    right: unset;
    left: 0;
    top: 0;
    bottom: unset;
    background: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .t-box .pg .position .swiper-button-next {
    display: flex;
    right: 0;
    left: unset;
    top: 0;
    bottom:unset;
    border: none;
    background: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .t-box .pg .position .swiper-button-next:after,.product .t-box .pg .position .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    color: #ccc;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .t-box .pg .position .swiper-button-next:hover:after,.product .t-box .pg .position .swiper-button-prev:hover:after {
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.section-ad {
    padding: 40px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
}
.section-ad.ad-bg-1 {
    background-image: url("../img/tt-bg-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-ad.ad-bg-2 {
    background-image: url("../img/tt-bg-2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-ad.ad-bg-3 {
    background-image: url("../img/tt-bg-3.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.ad {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ad .box-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.ad .box-info.box-info-width {
    justify-content:center;
    width: 100%;
}
.ad .box-info .info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.ad .box-info .info .c {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #fff;
    margin: 15px 0 20px;
}
.ad .box-info .info .c.cb {
    color: #000;
    font-size: 44px;
    font-weight: bold;
}
.ad .box-info .info .c em {
    color: #ff4100;
}
.ad .box-info .info .c1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:10px;
}
.ad .box-info .info .c1 .line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    font-size: 22px;
    letter-spacing: 2px;
    color: #fff;
}
.ad .box-info .info .c1 .line img {
    margin-right: 10px;
}
.ad .box-info .info .c2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:10px;
}

.ad .box-info .info .zx {
    font-size: 18px;
    border-radius: 20px;
    padding: 10px 20px;
    border:1px solid #ff4100;
    color: #fff;
    background: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.ad .box-info .info .zx:hover {
    border: 1px solid #333;
    background: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.ad .box-info .info .zx:before{
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.ad .box-info .info .zx1 {
    font-size: 16px;
    border-radius: 20px;
    padding: 10px 20px;
    border:1px solid #fff;
    color: #333;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.ad .box-info .info .zx1:hover {
    border: 1px solid #333;
    background: #333;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.ad .box-info .info .zx1:before{
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.ad .box-info .info .zx2 {
    font-size: 18px;
    border-radius: 20px;
    padding: 10px 20px;
    border:1px solid #ff4100;
    color: #fff;
    background: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
    margin-right: 40px;
}
.ad .box-info .info .zx2:hover {
    border: 1px solid #333;
    background: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.ad .box-info .info .zx2:before{
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.ad .box-info .info .zx3 {
    font-size: 18px;
    border-radius: 20px;
    padding: 10px 20px;
    border:1px solid #ff4100;
    color: #ff4100;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.ad .box-info .info .zx3:hover {
    border: 1px solid #333;
    background: #333;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.ad .box-info .info .zx3:before{
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}


.ad .box-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.ad .box-contact .l {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.ad .box-contact .l .icon {
    margin-right: 10px;
}

.ad .box-contact .l .tels {
    font-size: 34px;
    color: #fff;
    font-weight: bold;
}
.ad .box-contact .qr {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.ad .box-contact .qr img {
    width:120px;
    height: 120px;
}
.ad .box-contact .qr span {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    margin-top: 5px;
}

@keyframes wipes{0%{background-position:150% 150%}to{background-position:-150% -150%}}




.section-advantage {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-image: url("../img/adv-bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    margin-top:-16px
}
.advantage {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.advantage .adv-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
}
.advantage .adv-box .info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 730px);
    margin-top: 20px;
    font-family: 'HarmonyOS Sans SC';
}
.advantage .adv-box .info .info-x {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
}
.advantage .adv-box .info .info-x .info-xx {
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
}
.advantage .adv-box .info .info-x .info-xx.active {
    display: flex;
}
.advantage .adv-box .info .info-x .info-xx .t {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.advantage .adv-box .info .info-x .info-xx .line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 17px;
    font-weight: bolder;
    color: #000;
    margin-top: 30px;
    letter-spacing: 1px;
}
.advantage .adv-box .info .info-x .info-xx .line img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.advantage .adv-box .info .info-x .info-xx .line em {
    color: #ff4100;
}
.advantage .adv-box .info .list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    margin-top: 25px;
}
.advantage .adv-box .info .list .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:95%;
    padding: 5px 20px 5px 20px;
    background: #fff;
    margin-top: 25px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .adv-box .info .list .item.active {
    width: 100%;
    padding: 5px calc(5% + 20px) 5px 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: #ff4100;
}
.advantage .adv-box .info .list .item .l {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.advantage .adv-box .info .list .item .l .f1 {
    font-size: 28px;
    color: #000;
    letter-spacing: 3px;
    white-space: nowrap;
    font-weight: bold;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .adv-box .info .list .item.active .l .f1 {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .adv-box .info .list .item .l .f2 {
    font-size: 22px;
    max-width: 0;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 3px;
    height: 28px;
    line-height: 28px;
    font-weight: bold;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .adv-box .info .list .item.active .l .f2 {
    max-width: 300px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .adv-box .info .list .item .l .l-icon {
    width: 31px;
    height: 31px;
    margin-right: 10px;
    background-image: url("../img/icons.png");
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .adv-box .info .list .item.active .l .l-icon {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .adv-box .info .list .item .l .l-icon.l-icon-1 {
    background-position: 0 -108px;
}
.advantage .adv-box .info .list .item.active .l .l-icon.l-icon-1 {
    background-position: -31px -108px;
}
.advantage .adv-box .info .list .item .l .l-icon.l-icon-2 {
    background-position: 0 -139px;
}
.advantage .adv-box .info .list .item.active .l .l-icon.l-icon-2 {
    background-position: -31px -139px;
}
.advantage .adv-box .info .list .item .l .l-icon.l-icon-3 {
    background-position: 0 -170px;
}
.advantage .adv-box .info .list .item.active .l .l-icon.l-icon-3 {
    background-position: -31px -170px;
}
.advantage .adv-box .info .list .item .r-icon {
    width: 55px;
    height: 54px;
    background-image: url("../img/icons.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .adv-box .info .list .item.active .r-icon {
    background-position: 0 -54px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.advantage .adv-box .adv-swiper {
    width: 700px;
    height: 530px;
    padding-bottom: 30px;
    overflow: hidden;
    position: relative;
}
.advantage .adv-box .adv-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.advantage .adv-box .adv-swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.advantage .adv-box .adv-swiper .swiper-pagination-adv {
    bottom: 0;
}
.advantage .adv-box .adv-swiper .swiper-pagination-adv .swiper-pagination-bullet{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin: 0 5px;
    outline: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #BCBCBC;
    opacity : 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.advantage .adv-box .adv-swiper .swiper-pagination-adv .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: none;
    border: 2px solid #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.section-solution {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #fff;
}
.solution {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.solution .s-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
}
.solution .s-box .s-menu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 230px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 648px;
}
/* 改变整个滚动条的宽度 */
.solution .s-box .s-menu::-webkit-scrollbar {
    width: 3px;
}
/* 改变滚动条轨道的颜色 */
.solution .s-box .s-menu::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* 改变滚动条滑块的颜色 */
.solution .s-box .s-menu::-webkit-scrollbar-thumb {
    background: #ff4100;
}

/* 当滑块被激活（用户正在拖动它）时的颜色 */
.solution .s-box .s-menu::-webkit-scrollbar-thumb:hover {
    background: #ff4100;
}
.solution .s-box .s-menu .s-menu-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 10px);
    border: 1px solid #F5F5F5;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item {
    width: 100%;
    padding: 32px 30px 31px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #333;
    border-bottom: 1px solid #F5F5F5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active {
    position: relative;
    background: #ff4100;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.solution .s-box .s-menu .s-menu-list .s-menu-item i {
    width: 30px;
    height: 28px;
    background-image: url("../img/icon-solution.png");
    background-repeat: no-repeat;
    margin-right: 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-1 {
    background-position: 0 0;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-1 {
    background-position: -30px 0;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-2 {
    background-position: 0 -28px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-2 {
    background-position: -30px -28px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-3 {
    background-position: 0 -56px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-3 {
    background-position: -30px -56px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-4 {
    background-position: 0 -84px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-4 {
    background-position: -30px -84px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-5 {
    background-position: 0 -112px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-5 {
    background-position: -30px -112px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-6 {
    background-position: 0 -140px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-6 {
    background-position: -30px -140px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-7 {
    background-position: 0 -168px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-7 {
    background-position: -30px -168px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-8 {
    background-position: 0 -196px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-8 {
    background-position: -30px -196px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-9 {
    background-position: 0 -224px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-9 {
    background-position: -30px -224px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item i.icon-10 {
    background-position: 0 -252px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active i.icon-10 {
    background-position: -30px -252px;
}
.solution .s-con {
    width: calc(100% - 230px);
    padding: 0 0 0 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.solution .s-con .s-cons {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    height: 0;
    overflow: hidden;
}
.solution .s-con .s-cons.active {
    height: auto !important;
    overflow: unset;
}
.solution .s-con .s-cons .info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.solution .s-con .s-cons .info .image {
    width: 520px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow:  hidden;
}
.solution .s-con .s-cons .info .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.solution .s-con .s-cons .info:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.solution .s-con .s-cons .info .bx {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 540px);
}
.solution .s-con .s-cons .info .bx .bx-t {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    width: 100%;
    padding: 30px 0 0;
    letter-spacing: 4px;
}
.solution .s-con .s-cons .info .bx .intro {
    margin: 30px 0;
    height: 170px;
    width: 100%;
    font-size: 16px;
    color: #555;
    line-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}
.solution .s-con .s-cons .info .bx .intro .s-a {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #ff4100;
    font-size: 12px;
}
.solution .s-con .s-cons .info .bx .show-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    background: #ff4100;
    letter-spacing: 3px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .s-con .s-cons .info .bx .show-link:hover {
    background: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .s-con .s-cons .lists {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.solution .s-con .s-cons .lists .t {
    margin: 20px 0 0;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.solution .s-con .s-cons .lists .t .t-n {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #333;
    width: 80px;
}
.solution .s-con .s-cons .lists .t .line {
    width: calc(100% - 150px);
    background: #ddd;
    height: 1px;
}
.solution .s-con .s-cons .lists .t .t-more {
    font-size: 14px;
    color: #ff4100;
    width: 70px;
    text-align: right;
}
.solution .s-con .s-cons .lists .t .t-more:hover {
    color: #333;
}
.solution .s-con .s-cons .lists .items {
    width: 100%;
    position: relative;
    /*height: 0!important;*/
    height: auto;
    overflow: hidden;
}
.swiper-solution {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.swiper-solution .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #F6F8FA;
}
.swiper-solution .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 210px;
    overflow: hidden;
}
.swiper-solution .swiper-wrapper .swiper-slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;;
}
.swiper-solution .swiper-wrapper .swiper-slide:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;;
}
.swiper-solution .swiper-wrapper .swiper-slide span {
    width: 100%;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    color: #000;
    text-align: center;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.swiper-solution .swiper-wrapper .swiper-slide:hover span {
    color: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.swiper-solution .swiper-button-next {
    right: 20px;
    left: unset;
    top: 50%;
    bottom: unset;
    width: 40px;
    height: 40px;
    background: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.swiper-solution .swiper-button-prev {
    left: 20px;
    right: unset;
    top: 50%;
    bottom: unset;
    width: 40px;
    height: 40px;
    background: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.swiper-solution .swiper-button-prev:hover,.swiper-solution .swiper-button-next:hover {
    background: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.swiper-solution .swiper-button-next:after,.swiper-solution .swiper-button-prev:after {
    font-size: 18px;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.swiper-solution .swiper-button-next:hover:after,.swiper-solution .swiper-button-prev:hover:after {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.section-abouts {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #fff;
}
.abouts {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.abouts .box {
    width: calc(100% - 920px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.abouts .box .t {
    font-size: 44px;
    letter-spacing: 4px;
    font-weight: bold;
    margin-top: 60px;
    color: #000;
}
.abouts .box .intro {
    width: 100%;
    max-height:144px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 40px 0;
    color: #444;
    line-height: 36px;
    font-size: 16px;
}
.abouts .box .intros {
    width: 100%;
    height:480px;
    overflow-x: hidden;
    overflow-y: auto;
    color: #333;
    line-height: 36px;
    font-size: 16px;
    padding-right: 10px;
}
/* 改变整个滚动条的宽度 */
.abouts .box .intros::-webkit-scrollbar {
    width: 3px;
}
/* 改变滚动条轨道的颜色 */
.abouts .box .intros::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* 改变滚动条滑块的颜色 */
.abouts .box .intros::-webkit-scrollbar-thumb {
    background: #ff4100;
}

/* 当滑块被激活（用户正在拖动它）时的颜色 */
.abouts .box .intros::-webkit-scrollbar-thumb:hover {
    background: #ff4100;
}


.abouts .box .lk {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 20px;
}
.abouts .box .lk .more-link {
    font-size: 18px;
    border-radius: 30px;
    padding: 10px 20px;
    color: #fff;
    background: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.abouts .box .lk .more-link:hover {
    background: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.abouts .box .lk .more-link:before{
    animation: wipes 1.6s infinite;
    background-image: linear-gradient(45deg,#fff0 40%,#fff9,#fff0 60%);
    background-size: 300%;
    border-radius: 30px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.abouts .video {
    width: 870px;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.abouts .video .play {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.abouts .video .play.over {
    z-index:-1;
}
.abouts .video .play i {
    width:88px;
    height: 88px;
    background-image: url("../img/icons.png");
    background-repeat: no-repeat;
    background-position: 0 -201px;
    /*-webkit-transition: all .5s;*/
    /*-o-transition: all .5s;*/
    /*transition: all .5s;*/
}
.abouts .video .play:hover i {
    background-position: -88px -201px;
    /*-webkit-transition: all .5s;*/
    /*-o-transition: all .5s;*/
    /*transition: all .5s;*/
}
.abouts .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.abouts .image:hover img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.factory {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 40px;
}
.factory .menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 95px;
    height: 235px;
    margin-right: 15px;
    background: #F6F8FA;
}
.factory .menu-item .item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    height: calc(235px / 2);
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .item.active {
    background: #ff4100 ;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .item i {
    width: 28px;
    height: 26px;
    background-repeat: no-repeat;
    background-image: url("../img/icons.png");
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .item.active i {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .item i.icon-1 {
    background-position: 0 -315px;
}
.factory .menu-item .item.active i.icon-1 {
    background-position: -28px -315px;
}
.factory .menu-item .item i.icon-2 {
    background-position: 0 -289px;
}
.factory .menu-item .item.active i.icon-2 {
    background-position: -28px -289px;
}
.factory .menu-item .item .name {
    font-size: 14px;
    color: #000;
    margin-top: 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .item.active .name {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .lists {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 110px);
}
.factory .lists .box {
    width: 100%;
    position: relative;
    height: 0!important;
    overflow: hidden;
}
.factory .lists .box.active {
    height: auto !important;
    overflow: unset;
}
.factory-swiper {
    width: 100%;
    height: 235px;
    overflow: hidden;
}
.factory-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.factory-swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 235px
}
.factory-swiper .swiper-wrapper .swiper-slide span {
    width: 100%;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 20px;
    color: #666;
    text-align: center;
    height: 40px;
    line-height: 40px;
}

.factory .lists .box .swiper-button-next {
    right: 10px;
    left: unset;
    top: 50%;
    bottom: unset;
    /*border: 1px solid #ddd;*/
    width: 40px;
    height: 40px;
    /*border-radius: 50%;*/
    /*background: #fff;*/
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .lists .box .swiper-button-prev {
    right: unset;
    left: 10px;
    top: 50%;
    bottom: unset;
    /*border: 1px solid #ddd;*/
    /*background: #fff;*/
    width: 40px;
    height: 40px;
    /*border-radius: 50%;*/
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .lists .box .swiper-button-prev:hover,.factory .lists .box .swiper-button-next:hover {
    background: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.factory .lists .box .swiper-button-next:after,.factory .lists .box .swiper-button-prev:after {
    font-size: 16px;
    color: #ddd;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .lists .box .swiper-button-next:hover:after,.factory .lists .box .swiper-button-prev:hover:after {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-cert {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #F6F8FA;
}
.section-cert.no {
    background: #fff;
    padding: 70px 0 0;
}

.section-cert .cert-swiper {
    height: 420px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    padding-bottom: 30px;
}
.section-cert .cert-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.section-cert .cert-swiper .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section-cert .cert-swiper .swiper-wrapper .swiper-slide .t {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    margin-top: 20px;
    font-size: 16px;
}
.section-cert .cert-swiper .swiper-wrapper .swiper-slide span {
    font-size: 18px;
    margin-top: 10px;
}
.section-cert .cert-swiper .swiper-pagination-cert {
    position: absolute;
    z-index: 999;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0;
    bottom: 0;
}
.section-cert .cert-swiper .swiper-pagination-cert .swiper-pagination-bullet{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin: 0 5px;
    outline: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #BCBCBC;
    opacity : 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-cert .cert-swiper .swiper-pagination-cert .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: none;
    border: 2px solid #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-news {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.section-news .news {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.section-news .news .news-cate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.section-news .news .news-cate .t {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section-news .news .news-cate .t h3 {
    font-size: 44px;
    color: #000;
    font-weight: bold;
    letter-spacing: 4px;
    margin-right: 25px;
}
.section-news .news .news-cate .t .cate-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section-news .news .news-cate .t .cate-item a {
    font-size:16px;
    color: #333;
}
.section-news .news .news-cate .t .cate-item a:hover {
    color: #ff4100;
}
.section-news .news .news-cate .t .cate-item em {
    width:1px;
    height:12px;
    background: #000;
    margin: 0 15px;
}
.section-news .news .news-cate .more {
    font-size: 16px;
    border-radius: 30px;
    padding: 10px 20px;
    color: #fff;
    background: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-news .news .news-cate .more:hover {
    background: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-news .news .list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 40px;
}
.section-news .news .list .item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc((100% - 30px) / 3);
    border: 1px solid #eee;
    border-radius: 10px;
    margin-right: 15px;
    padding-bottom: 15px;
}
.section-news .news .list .item:last-of-type {
    margin-right: 0;
}
.section-news .news .list .item .image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.section-news .news .list .item .image img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-news .news .list .item:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-news .news .list .item .time {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    color: #555;
    margin-top: 10px;
    padding: 0 10px;
    width: 100%;
}
.section-news .news .list .item .t {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    margin-top: 15px;
}
.section-news .news .list .item .t span {
    display: inline-block;
    width: calc(100% - 60px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .list .item .t em {
    font-size: 12px;
    color: #555;
    width: 60px;
    text-align: right;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .list .item:hover .t span,.section-news .news .list .item:hover .t em {
    color: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .list .item .intro {
    font-size: 14px;
    font-weight: normal;
    color: #555;
    width: 100%;
    margin-top:15px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
    padding: 0 10px;
}


.section-footers {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
    background-color: #252525;
    padding: 0;
    width: 100%;
}
.footer {
    padding: 30px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.footer .footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.footer .footer-menu .bo-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width:500px;
}
.footer .footer-menu .bo-logo .bottom-logo {}
.footer .footer-menu .bo-logo .line {
    width:1px;
    height:20px;
    margin: 0 15px;
    background: #fff;
}
.footer .footer-menu .bo-logo .name {
    font-size: 16px;
    color: #fff;
}
.footer .footer-menu .bo-menu {
    width: calc(100% - 500px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer .footer-menu .bo-menu span {
    width: calc(100% / 6);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.footer .footer-menu .bo-menu span.width {
    width: calc((100% / 6) * 2);
}
.footer .footer-menu .bo-menu span.width1 {
    width: calc((100% / 6) + 20px);
}
.footer .footer-menu .bo-menu span.width2 {
    width: calc((100% / 6) - 20px);
}
.footer .bottom-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}
.footer .bottom-nav .bottom-contact {
    width: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}

.footer .bottom-nav .bottom-contact .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;;
}
.footer .bottom-nav .bottom-contact .item img {
    margin-right: 10px;
}
.footer .bottom-nav .bottom-contact .bottom-scan {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
}
.footer .bottom-nav .bottom-contact .bottom-scan .scan {
    width: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-right: 25px;
}
.footer .bottom-nav .bottom-contact .bottom-scan .scan img {
    width: 136px;
    height: 136px;
}
.footer .bottom-nav .bottom-contact .bottom-scan .scan span {
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: 5px;
}
.footer .bottom-menu {
    width: calc(100% - 500px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer .bottom-menu .box {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% / 6);
}
.footer .bottom-menu .box.box-width {
    width: calc((100% / 6) * 2);
}
.footer .bottom-menu .box.box-width1 {
    width: calc((100% / 6) + 20px);
}
.footer .bottom-menu .box.box-width2 {
    width: calc((100% / 6) - 20px);
}

.footer .bottom-menu .box a {
    width: 100%;
    padding-right: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}
.footer .bottom-menu .box.box-width a{
    width: 50%;
}
.footer .bottom-menu .box a:hover {
    color: #ff4100;
}

.section-links {
    /*border-top: 1px solid rgba(255,255,255,0.8);*/
    padding: 15px 0;
    width: 100%;
}
.links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.links .lab {
    font-size: 16px;
    color: #fff;
}
.links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.links a:hover {
    color: #ff4100;
}
.links em {
    width: 1px;
    height: 10px;
    margin: 0 10px;
    background: rgba(255,255,255,0.7);
}
.section-copyright {
    padding: 10px 0;
    background: #212121;
}
.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.copyright .cov {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 24px;
}
.copyright .cov a {
    color:rgba(255,255,255,0.7);
}
.copyright .cov a:hover {
    color: #ff4100;
}
.copyright .cov p {
    margin-right: 40px;
}
.copyright .cov p:last-of-type {
    margin-right: 0;
}
#toolbar {
    position: fixed;
    z-index: 99999999;
    right: 0;
    top: 25%;
}
#toolbar li {
    margin-bottom: 3px;
    font-size: 0;
    width: 57px;
    height: 57px;
    right: 0;
    position: relative;
}
#toolbar li.tool-logo {
    width: 50px;
    height: auto !important;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
#toolbar li.tool-logo img {
    width: 100%;
}
#toolbar li.tool-message {
    width: 50px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #ff4100;
    border-radius: 10px;
    cursor: pointer;
}
#toolbar li.tool-message img {
    width: 24px;
    /*height: 27px;*/
    margin-bottom: 2px;
}
#toolbar li.tool-message .span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: inherit;
    color: #fff;
    letter-spacing: 1px;
    line-height: 20px;
    /*padding-left: 5px;*/

}
#toolbar li.wx {
    border: 2px solid #ff4100;
    border-radius: 10px 10px 0 0;
    width: 50px;
    height: 90px;
    background: #fff;
}
#toolbar li.wx.wx-1 {
    margin-top: 5px;
    border-bottom: none;
}
#toolbar li.wx.wx-2 {
    margin-top: -5px;
    border-radius: 0 0 10px 10px;
    border-top: none;
    position: relative;
}
#toolbar li.wx.wx-2 .line {
    width: 20px;
    height: 2px;
    background: #eee;
    left: 15px;
    top: 3px;
    position: absolute;
}

#toolbar li.wx a {
    width: 50px;
    height: 90px;
}
#toolbar li.wx a .span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 50px;
    height: 90px;
}
#toolbar li.wx a .span img {
    width: 24px;
    margin-bottom: 5px;
    /*margin-right: 2px;*/
    /*height: 28px;*/
}
#toolbar li.wx a em {
    font-size: 14px;
    color: #444;
    letter-spacing: 1px;
    padding-left: 0;
    line-height: 16px;
    font-weight: inherit;
}


#toolbar li .wz {
    position: absolute;
    width: 00px;
    height: 50px;
    line-height: 50px;
    right: 100%;
    top: 25px;
    font-size: 20px;
    color: #333;
    background: #fff;
    box-shadow: 0 0 10px #888;
    overflow: hidden;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    text-align: center;
}
#toolbar li.wx-2:hover .wz {
    width: 180px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#toolbar li .ewm-box {
    position: absolute;
    z-index: 1;
    padding: 0 5px;
    width: 90px;
    height: 90px;
    right: 100%;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s;
    transition: all .7s;
}

#toolbar li.ewm .ewm-box p {
    margin-bottom: 0;
}

#toolbar li.wx-1 .ewm-box img {
    width: 90px;
    height: 90px;
}

#toolbar li.ewm .ewm-box:after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: 20px;
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 5px;
    cursor: pointer;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #ff4100;
    border-right: none;
}

#toolbar li.ewm:hover .icon {
    background-position: -57px -180px;
}

#toolbar li.wx-1:hover .ewm-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#toolbar li.backtop {
    cursor: pointer;
    border: 2px solid #ff4100;
    border-radius: 10px;
    width: 50px;
    height: 90px;
    background: #fff;
    margin-top: 5px;
}
#toolbar li.backtop.no-back {
    display: none;
}

#toolbar li.backtop .iconfont {
    color: #fff;
    background-color: #ff4100;
}

#toolbar li:hover a {
    /*width: 200px;*/
}

#toolbar li:hover .icon-font {
    background-color: #ff4100;
}
#toolbar li:hover .icon-font:after {
    left: 15px;
}
#toolbar li:hover .icon-qq:after {
    background-position: -30px -150px;
}

#toolbar li:hover .icon-phone:after {
    background-position: -30px -90px;
}

#toolbar li:hover .icon-ewm:after {
    background-position: -30px -30px;
}

#toolbar li:hover .icon-message:after {
    background-position: -30px -120px;
}

#toolbar li:hover .icon-wangwang:after {
    background-position: -30px 0;
}

#toolbar li:hover .icon-top:after {
    background-position: -30px -60px;
}

.modal-header-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-header-message::before,.modal-header-message::after {
    display: none;
}

.modal-dialog-message {
    width:540px;
}
.form-message .form-group label {
    margin-bottom: 10px;
}
.form-message .form-group .code-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.form-message .form-group .code {
    width: 200px;
    margin-right: 10px;
}
.form-message .form-group .codeimg {
    height: 30px;
}
.form-message .message-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px 0 10px;
}

.page-banners .page-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    width: 100%;
    position: relative;
    margin-top: 80px;
}
.page-banners .page-banner .image {
    width: auto;
    max-width: 100%;
}
.section-position {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}
.page-position {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto;

}
.page-position .l {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-position .icon-home {
    margin-right: 5px;
    margin-top: -3px;
}
.page-position span {
    color: #888;
    font-size: 14px;
}
.page-position a {
    font-size: 14px;
    color: #888;
}
.page-position a:hover {
    color: #ff4100;
}

.page-position .fm {
    /*border: 1px solid #eee;*/
    height: 28px;
    line-height: 28px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-position .fm .search-input {
    width: calc(100% - 36px);
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    outline: unset;
    background: none;
    font-size: 14px;
    color: #000;
    border: 1px solid #eee;
    border-right: none;
}
.page-position .fm .search-input::placeholder {
    color: #999;
}
.page-position .fm .search-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 28px;
    cursor: pointer;
    background: unset;
    border: unset;
    background: #ff4100;
}
.page-position .fm .search-icon-box img {
    width: 16px;
    height: 15px;
}
.section-history {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #F6F8FA;
    padding: 40px 0;
}
.history {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.history .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.history .item .t {
    display: flex;
    align-items: center;
    justify-content: center;
}
.history .item .t span {
    font-size: 44px;
    font-weight: bold;
    color: #ff4100;
}
.history .item .t em {
    font-size: 18px;
    /*font-weight: lighter;*/
    color: #ff4100;
    margin-top: 10px;
}
.history .item .n {
    font-size:16px;
    color: #000;
    margin-top: 15px;
}
.history .line {
    width: 1px;
    height: 60px;
    background: #D6D6D6;

}
.history .line:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width:1px;
    height: 25px;
    /*background: #ff4100;*/
}

.section-laboratory {
    padding: 70px 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #fff;
}
.laboratory {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
}
.laboratory .laboratory-swiper {
    height: 420px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
    padding-bottom: 30px;
}
.laboratory .laboratory-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.laboratory .laboratory-swiper .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.laboratory .laboratory-swiper .swiper-wrapper .swiper-slide .t {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    margin-top:20px;
    font-size:16px;
    
}
.laboratory .laboratory-swiper .swiper-pagination-laboratory ,.laboratory .laboratory-swiper .swiper-pagination-factory {
    position: absolute;
    z-index: 999;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0;
    bottom: 0;
}
.laboratory .laboratory-swiper .swiper-pagination-laboratory  .swiper-pagination-bullet,.laboratory .laboratory-swiper .swiper-pagination-factory  .swiper-pagination-bullet{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin: 0 5px;
    outline: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #BCBCBC;
    opacity : 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.laboratory .laboratory-swiper .swiper-pagination-laboratory  .swiper-pagination-bullet.swiper-pagination-bullet-active,.laboratory .laboratory-swiper .swiper-pagination-factory  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: none;
    border: 2px solid #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.laboratory .swiper-button-next {
    right: -50px;
    left: unset;
    top: calc(50% + 50px);
    bottom: unset;
    width: 40px;
    height: 40px;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.laboratory .swiper-button-prev {
    left: -50px;
    right: unset;
    top: calc(50% + 50px);
    bottom: unset;
    width: 40px;
    height: 40px;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.laboratory .swiper-button-prev:hover,.laboratory .swiper-button-next:hover {
    background: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.laboratory .swiper-button-next:after,.laboratory .swiper-button-prev:after {
    font-size: 18px;
    color: #ddd;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.laboratory .swiper-button-next:hover:after,.laboratory  .swiper-button-prev:hover:after {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.section-work {
    padding: 70px 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #fff;
}
.work {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
}
.work .list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 60px;
}
.work .list a {
    width:calc((100% - 40px) / 3);
    height: 310px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 20px;
    margin-bottom: 20px;
}
.work .list a:nth-child(3n){
    margin-right: 0;
}
.work .list a .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.work .list a:hover .image {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.work .list a .t {
    position: absolute;
    left: 0;
    bottom: -60px;
    display: inline-block;
    text-align: center;
    background: #F6F8FA;
    color: #000;
    font-size: 16px;
    width: 100%;
    padding: 15px 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.work .list a .t em {
    display: inline-block;
    margin-left: 5px;
    width: 14px;
    height:8px;
    background-image: url("../img/icon_right_16.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}
.work .list a:hover .t {
   bottom: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.section-brand {
    padding: 70px 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #fff;
}
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
}
.brand .box {
    background: #EEF4FE;
    padding: 50px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    margin-top: 60px;
}
.brand .box .brand-swiper {
    height: 80px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.brand .box .mt20 {
    margin-top: 20px;
}
.brand .box .brand-swiper .swiper-wrapper{
    transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
}
.brand .box .brand-swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.brand .box .brand-swiper .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height:80px;
    object-fit: cover;
    border-radius: 5px;
}

.section-lianxi {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #fff;
}
.lianxi {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
}
.lianxi .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
}
.lianxi .box .lx {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.lianxi .box .lx .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    min-width: 480px;
    letter-spacing: 3px;
}
.lianxi .box .lx .item img {
    margin-right: 10px;
}
.lianxi .box .qr {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.lianxi .box .qr .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.lianxi .box .qr .item:first-of-type {
    margin-right: 40px;
}
.lianxi .box .qr .item img {
    width: 166px;
    height: 166px;
}
.lianxi .box .qr .item span {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
}
.cons {
    margin: 60px 0;
}

.cons .con {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.cons .con .page-menus {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 300px;
    /*margin-right: 40px;*/
}

.cons .con .page-menus .nav {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    border: 1px solid #ddd;
    background: #fff;
    margin-bottom: 20px;
}
.cons .con .page-menus .nav .nav-title {
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    background: #ff4100;
}
.cons .con .page-menus .nav  .list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 30px);
    border: 1px solid #eee;
    margin: 15px 15px 0;
}
.cons .con .page-menus .nav .list:last-of-type {
    margin-bottom: 15px;
}
.cons .con .page-menus .nav .list .cate {
    padding: 15px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eee;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.cons .con .page-menus .nav .list .children {
    padding: 15px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
    color: #000;
}
.cons .con .page-menus .nav .list .children em {
    font-weight: bold;
    color:#ddd;
}
.cons .con .page-menus .nav .list .children:last-of-type {
    border-bottom: none;
}
.cons .con .page-menus .nav .list .children:hover {
    background: #ff4100;
    border-bottom: 1px solid #ff4100;
    color: #fff;
}
.cons .con .page-menus .nav .list .children:hover em {
    color: #fff;
}

.cons .con .page-menus .boxs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    margin-bottom: 20px;
}
.cons .con .page-menus .boxs .title {
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    background: #ff4100;
}
.cons .con .page-menus .boxs .pros {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    padding: 0 20px;
    border:1px solid #ddd;
}
.cons .con .page-menus .boxs .pros a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #f7f8fa;
    margin: 15px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .page-menus .boxs .pros a:hover {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .page-menus .boxs .pros a .image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cons .con .page-menus .boxs .pros a .image img {
    width: 100%;
    height: 100%;
}
.cons .con .page-menus .boxs .pros a .image .biao {
    width: 100%;
    height: 19px;
    background: url("../img/biao.png") center center no-repeat;
    position: absolute;
    left: 0;
    bottom: -20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .page-menus .boxs .pros a:hover .image .biao {
    bottom: 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}



.cons .con .page-menus .boxs .pros a .name {
    padding:15px 10px;
    font-size: 14px;
    text-align: center;
    color: #000;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .page-menus .boxs .pros a:hover .name {
    background: #ff4100;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .page-menus .boxs .contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 15px 15px;
    border: 1px solid #ddd;
}
.cons .con .page-menus .boxs .contact .li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #eee;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    width: 100%;
    padding: 15px 20px;
}
.cons .con .page-menus .boxs .contact .li:last-of-type {
    border-top: none;
}
.cons .con .page-menus .boxs .contact .li img {
    margin-right: 10px;
}
.cons .con .page-menus .boxs .contact .qr {
    margin-top: 20px;
    width: 100%;
}
.cons .con .details {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 340px);
}
.cons .con .details .s-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    border: 1px solid #ddd;
}
.cons .con .details .s-content .sm-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:16px;
    color: #000;
    font-weight: bold;
    padding: 30px 20px 20px;
    border-bottom: 1px solid #eee;
    width: 100%;
}
.cons .con .details .s-content .sm-tag {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:14px;
    color: #777;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}
.cons .con .details .s-content .sm-tag .item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.cons .con .details .s-content .sm-tag .item img {
    margin-right: 5px;
}
.cons .con .details .s-content .cp-body {
    padding: 0 20px 40px;
}
.solution .case-cate-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}

.solution .case-cate-box .shows {
    width: 70px;
    color: #ff4100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    margin-top: 9px;
}
.solution .case-cate-box .shows span {
    width: 16px;
    height: 8px;
    background-image: url("../img/sxjt.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .case-cate-box .shows.down span {
    background-position: 0 -8px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .case-cate-box .case-cate {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 80px);
    height: 40px;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .case-cate-box .case-cate.at {
    height: unset;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .case-cate-box .case-cate a {
    /*border: 1px solid #ddd;*/
    padding: 0 20px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    /*margin-right: 27px;*/
    color: #000;
    border-radius: 30px;
    margin-bottom: 10px;
    margin-right:10px;
}
.solution .case-cate-box .case-cate a:hover,.solution .case-cate-box .case-cate a.active {
    color: #fff;
    background: #ff4100;
    /*border: 1px solid #ffc300;*/
}




.smen {
    height: 50px;
    line-height: 50px;
    width: 100%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border: 1px solid #ddd;
    border-top: none;
}
.smen:first-of-type {
    border-top: 1px solid #ddd;
}
.smen .red_x {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    letter-spacing: 2px;
}
.smen .red_x i {
    width: 20px;
    height: 20px;
    background-image: url("../img/icon-menu.png");
    background-repeat: no-repeat;
    margin-right: 10px;
}

.smen a {
    color: #666;
    font-size: 16px;
}
.smen a:hover {
    color: #ff4100;
}
.cons .con .details .pro-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px 20px;
}
.cons .con .details .pro-list .item {
    width: 320px;
    height: 370px;
    position: relative;
    margin-right: calc((100% - 960px) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 20px;
    background: #f7f8fa;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .pro-list .item:nth-child(3n){
    margin-right: 0;
}
.cons .con .details .pro-list .item:hover {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .pro-list .item .image {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .pro-list .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .pro-list .item:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .pro-list .item .image .biao {
    width: 100%;
    height: 19px;
    background: url("../img/biao.png") center center no-repeat;
    position: absolute;
    left: 0;
    bottom: -20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .pro-list .item:hover .image .biao {
    bottom: 1px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.cons .con .details .pro-list .item .name {
    height: 50px;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .pro-list .item .name .text {
    max-width: calc(100% - 14px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size:16px;
    color: #000;
}
.cons .con .details .pro-list .item .name i {
    width: 14px;
    height: 8px;
    background-image: url("../img/icon_right_16.png");
    background-repeat: no-repeat;
    background-position: 14px 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.cons .con .details .pro-list .item:hover .name i {
    background-position: 0 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.cons .con .details .gl-contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px 20px;
}
.cons .con .details .gl-contact .glc-info {
    border:1px solid #ddd;
    border-radius: 5px;
    padding: 20px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(50% - 15px);
    height:310px;
}

.cons .con .details .gl-contact .glc-info .glc-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.cons .con .details .gl-contact .glc-info .glc-line img {
    margin-right: 10px;
}

.cons .con .details .gl-contact .glc-info .form-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 15px;
}
.cons .con .details .gl-contact .glc-info .form-line input {
    outline: none;
    border: 1px solid #eee;
    height: 40px;
    line-height: 40px;
    padding:0 10px;
    font-size: 16px;
    width: 100%;
}
.cons .con .details .gl-contact .glc-info .form-line textarea {
    outline: none;
    border: 1px solid #eee;
    height: 70px;
    line-height: 24px;
    padding:10px 10px;
    font-size: 16px;
    width: 100%;
}
.cons .con .details .gl-contact .glc-info .form-line .form-btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    background: #ff4100;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.cons .con .details .gl-contact .glc-info .form-line .form-btn:hover {
    background: #333;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.cons .con .details .gl-new-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px 20px 10px;
}
.cons .con .details .gl-new-list .newsx {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 15px;
}
.cons .con .details .gl-new-list .newsx:nth-child(2n){
    margin-right: 0;
}
.cons .con .details .gl-new-list .newsx .text {
    width: calc(100% - 100px);
    font-size: 14px;
    color: #888;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .gl-new-list .newsx .time {
    text-align: right;
    width:100px;
    font-size: 15px;
    color: #999;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .gl-new-list .newsx:hover .text {
    color: #ff4100;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .gl-new-list .newsx:hover .time {
    color: #ff4100;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .pro-detail {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    border: 1px solid #ddd;
    border-top: none;
    padding: 50px 50px;
}
.cons .con .details .pro-detail .boxs {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.cons .con .details .pro-detail .boxs .photos{
    width: 400px;
    position: relative;
    display: inline-block;
    float: left;
}
.cons .con .details .pro-detail .boxs .photos .photos-box{
    overflow: hidden;
    position: relative;
    width: 400px;
    height: 400px;
}
.cons .con .details .pro-detail .boxs .photos .photos-box .images-cover{
    height: 100%;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}
.cons .con .details .pro-detail .boxs .photos .photos-box .images-cover img {
    padding: 1px;
    display: inline-block;
    float: left;
    /*border: 1px solid #cfcfcf;*/
    box-sizing: border-box;
    position: absolute;
}
.cons .con .details .pro-detail .boxs .photos .photos-box .move-view{
    width: 100px;
    height: 100px;
    position: absolute;
    background-image: url('../img/move-box.png');
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly {
    height: 92px;
    overflow: hidden;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly .magnifier-btn {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -40px;
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly .magnifier-btn span {
    line-height: 75px;
    height: 75px;
    width: 20px;
    background: #eee;
    color: #333;
    display: block;
    z-index: 9998;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: background ease .5s;
    -webkit-transition: background ease .5s;
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly .magnifier-btn .magnifier-btn-left {
    float: left;
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly .magnifier-btn .magnifier-btn-right{
    float: right;
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly .magnifier-line {
    position: relative;
    overflow: hidden;
    height: 92px;
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly .magnifier-line ul {
    overflow: hidden;
    margin: 0 auto;
    display: block;
    font-size: 0;
    width: 10000%;
    position: absolute;
    left: 0;
    z-index: 997;
}
.animation03 {
    transition: all .3s ease-in .1s;
    -ms-transition: all .3s ease-in .1s;
    -moz-transition: all .3s ease-in .1s;
    -webkit-transition: all .3s ease-in .1s;
    -o-transition: all .3s ease-in .1s;
}
.clearfix:after, .clearfix:before {
    display: table;
    line-height: 0;
    content: "";
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly .magnifier-line ul li {
    list-style: none;
    cursor: pointer;
    float: left;
    width: 84px;
    height: 84px;
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly .magnifier-line ul li img {
    padding: 1px;
    display: inline-block;
    float: left;
    box-sizing: border-box;
}
.small-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 78px;
    width: 78px;
    padding: 1px;
    margin: 5px;
    overflow: hidden;
    text-align: center;
}
.small-img img {
    width: 100%;
    height: 100%;
}
.active {
    transition: .3s;
}
.magnifier-view {
    width: 100%;
    height: 100%;
    position: absolute;
    right: -105%;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    display: none;
    overflow: hidden;
}
.magnifier-view img {
    display: block;
}
.pro_tinfo_r {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 430px);
}
.pro_tinfo_r .tit {
    color: #000;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.pro_tinfo_r .tit span {
    max-width:380px;
}
.pro_tinfo_r .tit a {
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    color: #000;
}
.pro_tinfo_r .tit a img {
    margin-right: 5px;
    width: 16px;
}
.pro_tinfo_r .tit a:hover {
    color: #ff4100;
}
.pro_tinfo_r .intro {
    color: #000;
    font-size: 14px;
    line-height: 28px;
    max-height: 224px;
    overflow: hidden;
}
.cpdh {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}
.cpdh span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    background: #eaeaea;
    font-weight: bold;
    padding: 8px 15px;
}
.cpdh span img {
    margin-right: 5px;
}
.cpdh span.message {
    background: #ff4100;
    color: #fff;
}
.diysr {
    color: #000;
    font-size: 20px;
    padding: 15px 15px;
    background: #eaeaea;
    font-weight: bold;
    width: 100%;
    margin-top: 40px;
}
.diysr i {
    font-size: 14px;
    font-family: arial;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
    padding-left: 5px;
}
.cp-body {
    margin-top: 20px;
    line-height: 28px;
    width: 100%;
}
.cp-body img {
    max-width: 100%;
}
.cp-body .downs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.cp-body .downs a {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 15px;
    background: #ff4100;
    border-radius: 30px;
    width: 170px;
}
.cp-body .downs a:hover {
    background: #333;
}
.cp-body .downs img {
    width: 16px;
    margin-left: 5px;
}
.cons .con .details .news-detail {
    width: 100%;
}
.cons .con .details .d-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #222;
    margin-top: 30px;
}
.cons .con .details .d-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 20px;
}
.cons .con .details .d-tag span {
    margin-right: 20px;
}
.cons .con .details .detail {
    margin: 40px 0;
    line-height: 36px;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}
.cons .con .details .detail img {
    max-width: 100%;
}
.gduo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.gduo .pg {
    width: 48%;
}

.cons .con .details .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.cons .con .details .title h1 {
    font-size:28px;
    font-weight: bold;
    color: #333;
}
.cons .con .details .title .line {
    width: 400px;
    height: 1px;
    position: relative;
    background-color: #ddd;
    margin: 15px 0;
}
.cons .con .details .title .line em {
    position: absolute;
    width: 20px;
    height: 5px;
    border: 1px solid #0984D1;
    left: calc((100% - 22px) / 2);
    top: -2px;
}
.cons .con .details .title h6 {
    font-size: 15px;
    color: #ccc;
}
.cons .con .details .page-about {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    font-size: 16px;
    color: #666;
    overflow: hidden;
    margin-top: 20px;
}
.cons .con .details .video-box {
    margin: 50px 0;
}
.cons .con .details .wenhua {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.cons .con .details .page-about-info {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #F4F4F4;
    border-radius: 5px;
    box-shadow:  0 0 5px #ccc;
    padding: 20px 20px;
}
.cons .con .details .page-about-info .box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cons .con .details .page-about-info .box .num {
    font-size: 64px;
    font-weight: bold;
    color: #0984D1;
    margin-right: 5px;
}
.cons .con .details .page-about-info .box .text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.cons .con .details .page-about-info .box .text em {
    font-size: 18px;
    font-weight: bold;
    color: #0984D1;
}
.cons .con .details .page-about-info .box .text span {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-top: 5px;
}
.cons .con .details .page-about-info .xie {
    position: relative;
    height: 50px;
    width: 2px;
}
.cons .con .details .page-about-info .xie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px; /* 鏂滅嚎鐨勭矖缁� */
    background-color: #0984D1; /* 鏂滅嚎鐨勯鑹� */
    transform: rotate(-345deg); /* 鏃嬭浆瑙掑害锛屾牴鎹渶瑕佽皟鏁� */
    transform-origin: left top; /* 鏃嬭浆鐨勫熀鐐� */
}
.cons .con .details .amp {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
}
.cons .con .details .amp .pro {
    width: 278px;
    height: 318px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-right: calc((100% - (278px * 3)) / 2);
    border: 1px solid #ddd;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .amp .pro:hover {
    border: 1px solid #0984D1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .amp .pro:last-of-type {
    margin-right: 0;
}
.cons .con .details .amp .pro .image {
    width: 278px;
    height: 278px;
    overflow: hidden;
}
.cons .con .details .amp .pro .image img {
    width: 278px;
    height: 278px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .amp .pro:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .amp .pro span {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    background-color: #d1d1d1;
    color: #333;
    font-size: 15px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    text-align: center;
}
.cons .con .details .amp .pro:hover span {
    background-color: #0984D1;
    color: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .gl-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    margin-top: 20px;
}
.cons .con .details .gl-box.mt50 {
    margin-bottom: 50px;
}
.cons .con .details .gl-box .gl-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    margin-bottom: 10px;
}
.cons .con .details .gl-box .gl-title .name {
    color: #000;
    font-weight: bold;
    font-size: 22px;
    padding: 0 20px 0 0;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cons .con .details .gl-box .gl-title .name em {
    color: #0868D5;
}
.cons .con .details .gl-box .gl-title .more {
    font-size: 16px;
    margin-right: 10px;
    color: #888;
}
.cons .con .details .gl-box .gl-title .more:hover {
    color: #0984D1;
}


.cons .con .details .gl-box .gl-pro-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
}

.cons .con .details .gl-box .gl-pro-list .item {
    width: 440px;
    height: 360px;
    position: relative;
    margin-right: calc((100% - 1320px) / 2);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .gl-box .gl-pro-list .item:nth-child(3n){
    margin-right: 0;
}
.cons .con .details .gl-box .gl-pro-list .item:hover {
    border: 1px solid #fff;
    box-shadow: 0 0 10px #ddd;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .gl-box .gl-pro-list .item .image {
    width: 440px;
    height: 360px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .gl-box .gl-pro-list .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .gl-box .gl-pro-list .item:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .gl-box .gl-pro-list .item .name {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    background: #F7F8FA;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size:20px;
    color: #000;
    text-align: center;
    font-weight: 500;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .gl-box .gl-pro-list .item:hover .name {
    bottom: -50px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.cons .con .details .gl-box .gl-pro-list .item .act {
    position: absolute;
    left: 0;
    bottom: -50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .gl-box .gl-pro-list .item:hover .act {
    bottom: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.cons .con .details .gl-box .gl-pro-list .item .act a {
    width: 50%;
    height: 40px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cons .con .details .gl-box .gl-pro-list .item .act a img {
    margin-left: 10px;
}
.cons .con .details .gl-box .gl-pro-list .item .act a.v-show {
    background: linear-gradient(to bottom, #151B73 5%,#0685FA 95%);
}
.cons .con .details .gl-box .gl-pro-list .item .act a.v-action {
    background: #FE6B03;
}

.cons .con .details .contact-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    border: 1px solid #ddd;
    padding:40px 20px 20px;
    border-top: none;
}
.cons .con .details .contact-box .lbox {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.cons .con .details .contact-box .lbox .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: calc((100% - 60px) / 4);
    border: 1px solid #ff4100;
    border-radius: 5px;
}
.cons .con .details .contact-box .lbox .box .name {
    width: 100%;
    font-size: 16px;
    color: #fff;
    background: #ff4100;
    text-align: center;
    padding: 15px 0;
}
.cons .con .details .contact-box .lbox .box .infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 15px 0;
}
.cons .con .details .contact-box .lbox .box .infos .icon {
    /*width: 44px;*/
    /*height: 44px;*/
    margin: 15px 0;
}
.cons .con .details .contact-box .lbox .box .infos p {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 20px;
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}
.cons .con .details .contact-box .lbox .box .infos p.num {
    font-size: 16px;
}
.cons .con .details .contact-content {
    margin: 30px 0;
}
.cons .con .details .contact-content img {
    max-width: 100%;
}
.cons .con .details .news-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    border:1px solid #ddd;
    padding: 20px 20px;
    border-top: none;
}
.cons .con .details .news-list .box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #EEE;
    margin-bottom: 30px;
}
.cons .con .details .news-list .box .image {
    width: 282px;
    height: 182px;
    overflow: hidden;
    margin-right: 20px;
    border: 1px solid #DDD;
}
.cons .con .details .news-list .box .image img {
    width: 280px;
    height: 180px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .news-list .box .info {
    width: calc(100% - 302px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.cons .con .details .news-list .box .info h1 {
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333;
    font-weight: 700;
    font-size: 20px;
    line-height: 55px;
    width: 100%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .news-list .box:hover .info h1 {
    color: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .news-list .box .info .tag {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    width: 100%;
    line-height: 28px;
    height: 86px;
    margin-top: 0;
    text-indent: 2rem;
    color: #888;
}
.cons .con .details .news-list .box .info .time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}
.cons .con .details .news-list .box .info .time .t {
    color: #ccc;
}
.cons .con .details .news-list .box .info .time .g {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .news-list .box:hover .info .time .g {
    color: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .news-list .box .info .time .g img {
    width: 22px;
    margin-top: 1px;
}
.section-abxx {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background-image: url(../image/ad_bg_05.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.abxx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.abxx .abxx-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0 60px;
}
.abxx .abxx-box img {
    margin-right: 30px;
}
.abxx .abxx-box .inf {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    color: #fff;

}
.abxx .abxx-box .inf .count {
    display: flex;
    align-items: center;
    justify-content: center;
}
.abxx .abxx-box .inf .count strong {
    font-size:60px;
}
.abxx .abxx-box .inf .count span {
    font-size: 20px;
    margin-top: 20px;
    margin-left: 10px;
}
.abxx .abxx-box .inf .name {
    margin-top: 10px;
    font-size: 20px;
}
.abxx .abxx-line {
    width:1px;
    height:70px;
    background: rgba(255,255,255,0.6);
}
.yuanjings {
    padding: 70px 0;
}
.yuanjings .yuanjing {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.yuanjings .yuanjing .boxs {
    width: calc((100% - 20px) / 3);
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.yuanjings .yuanjing .boxs .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 550px;
    z-index: 1;
}
.yuanjings .yuanjing .boxs .tm {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 550px;
    z-index: 2;
    background: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.yuanjings .yuanjing .boxs.active .tm {
    background: #1760AD;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.yuanjings .yuanjing .boxs .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    height:550px;
    position: relative;
    z-index:3;
}
.yuanjings .yuanjing .boxs .box img {
    width: 153px;
    height: 153px;
}

.yuanjings .yuanjing .boxs .box h3 {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0;
}
.yuanjings .yuanjing .boxs .box p {
    font-size: 18px;
    color: #fff;
    line-height: 28px;
}
.certs {
    padding: 60px 0 150px;
    display: inline-block;
    width: 100%;
    /*background-image: url(../images/about_bg.png);*/
    /*background-position: center bottom;*/
    /*background-repeat: repeat-y;*/
}
.certs .cert {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.certs .cert .cert-cate {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 130px;
    margin-right: 20px;
}
.certs .cert .cert-cate .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    height: 210px;
    border-bottom: 1px solid #ddd;
    background: #eee;
    cursor: pointer;
}
.certs .cert .cert-cate .item.active {
    background: #1760AD;
}
.certs .cert .cert-cate .item:last-of-type {
    border-bottom: none;
}
.certs .cert .cert-cate .item .icon {
    width: 44px;
    height: 50px;
    background: url("../image/icon_honor.png");
    background-repeat: no-repeat;
    margin-bottom: 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.certs .cert .cert-cate .item.active .icon {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.certs .cert .cert-cate .item .icon.icon-1 {
    background-position: 0 0;
}
.certs .cert .cert-cate .item.active .icon.icon-1 {
    background-position: -44px 0;
}
.certs .cert .cert-cate .item .icon.icon-2 {
    background-position: 0 -50px;
}
.certs .cert .cert-cate .item.active .icon.icon-2 {
    background-position: -44px -50px;
}
.certs .cert .cert-cate .item span {
    font-size: 20px;
    color: #666;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.certs .cert .cert-cate .item.active span {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.certs .cert .lists {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 150px);
    /*padding-bottom: 100px;*/
}


.certs .cert .lists .box {
    width: 100%;
    position: relative;
    height: 0!important;
    overflow: hidden;
}
.certs .cert .lists .box.on {
    height: auto !important;
    overflow: unset;
}
.swiper-bxbx {
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.swiper-bxbx .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.swiper-bxbx .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 420px
}
.swiper-bxbx .swiper-wrapper .swiper-slide span {
    width: 100%;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 20px;
    color: #000;
    text-align: center;
    height: 30px;
    line-height: 30px;
}

.certs .cert .lists .box .swiper-button-next {
    right: unset;
    left: calc((100% / 2) + 5px);
    top: unset;
    bottom: -80px;
    border: 1px solid #ddd;
    background: #fff;
    width: 44px;
    height: 44px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.certs .cert .lists .box .swiper-button-prev {
    right: unset;
    left: calc((100% / 2) - 49px);
    top: unset;
    bottom: -80px;
    border: 1px solid #ddd;
    background: #fff;
    width: 44px;
    height: 44px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.certs .cert .lists .box .swiper-button-prev img {
    width: 24px;
}
.certs .cert .lists .box .swiper-button-prev:hover,.certs .cert .lists .box .swiper-button-next:hover {
    border: 1px solid #1760AD;
    background: #1760AD;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.certs .cert .lists .box .swiper-button-next:after,.certs .cert .lists .box .swiper-button-prev:after {
    font-size:16px;
    color:#999;
}
.certs .cert .lists .box .swiper-button-next:hover:after,.certs .cert .lists .box .swiper-button-prev:hover:after {
    color:#fff;
}
.section-team {
    padding: 0 0 70px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.team {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.team .lists {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    margin-top:30px;
    position: relative;
}

.swiper-team-bbx {
    width: 100%;
    height: 430px;
    overflow: hidden;
}
.swiper-team-bbx .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    position: relative;
}
.swiper-team-bbx .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 430px
}
.swiper-team-bbx .swiper-wrapper .swiper-slide span {
    width: 100%;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 20px;
    color: #000;
    background: #f2f2f2;
    text-align: center;
    height: 40px;
    line-height: 40px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.swiper-team-bbx .swiper-wrapper .swiper-slide:hover span {
    background: #1760AD;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.team .lists .swiper-button-next {
    right: -60px;
    left: unset;
    top: 50%;
    bottom: unset;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.team .lists .swiper-button-prev {
    right: unset;
    left: -60px;
    top: 50%;
    bottom: unset;
    border: 1px solid #ddd;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.team .lists .swiper-button-prev:hover,.team .lists .swiper-button-next:hover {
    border: 1px solid #1760AD;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.team .lists .swiper-button-next:after,.team .lists .swiper-button-prev:after {
    font-size: 18px;
    color: #ddd;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.team .lists .swiper-button-next:hover:after,.team .lists .swiper-button-prev:hover:after {
    color: #1760AD;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}








































.section-xuanze {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #F6F8FA;
}
.xuanze {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.xuanze .lists {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.xuanze .lists .box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: calc(50% - 25px);
    margin-right: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.xuanze .lists .box:nth-child(1),.xuanze .lists .box:nth-child(2) {
    margin-bottom: 50px;
}
.xuanze .lists .box:nth-child(2n) {
    margin-right: 0;
}
.xuanze .lists .box .l {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 368px);
    height: 276px;
    position: relative;
    background: #fff;

}

.xuanze .lists .box .l .bg {
    position: absolute;
    left: -16px;
    top: 20px;
    z-index: 1;
}
.xuanze .lists .box .l .active-bg {
    position: absolute;
    left: -16px;
    top: 20px;
    display: none;
    z-index: 1;
}
.xuanze .lists .box.active .l .bg {
    display: none;
}
.xuanze .lists .box.active .l .active-bg {
    display: flex;
}
.xuanze .lists .box .l .ta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 40px 0 0 20px;
}
.xuanze .lists .box .l .ta .num {
    width: 34px;
    height: 25px;
    overflow: hidden;

    background-position: 0 0;
    background-repeat: no-repeat;
    margin-right: 10px;
    margin-top: 2px;
}
.xuanze .lists .box .l .ta .num.num1 {
    background-image: url("../images/h_1.png");
}
.xuanze .lists .box .l .ta .num.num2 {
    background-image: url("../images/h_2.png");
}
.xuanze .lists .box .l .ta .num.num3 {
    background-image: url("../images/h_3.png");
}
.xuanze .lists .box .l .ta .num.num4 {
    background-image: url("../images/h_4.png");
}

.xuanze .lists .box.active .l .ta .num {
    background-position: -34px 0;
}
.xuanze .lists .box .l .ta .text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    font-size: 26px;
    letter-spacing: 2px;
    color: #333;
    font-weight: bold;
}
.xuanze .lists .box.active .l .ta .text {
    color: #fff;
}
.xuanze .lists .box .l .ta .text span:first-of-type {
    margin-bottom: 5px;
}
.xuanze .lists .box .l .tc {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin: 60px 0 0 50px;
    font-size: 22px;
    line-height: 40px;
    color: #333;
}
.section-page-position {
    padding: 20px 0;
}



.section-detail {
    padding:0 0 70px;
}
.section-detail .product .lists {
    margin-top: 0;
}
.product .lists .left .boxs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    margin-top: 20px;
}
.product .lists .left .boxs .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #FE6B03;
    padding: 15px 20px;
}
.product .lists .left .boxs .title h1 {
    font-size: 30px;
    color: #fff;
    letter-spacing: 2px;
}
.product .lists .left .boxs .title h6 {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}
.product .lists .left .boxs .list {
    border: 1px solid #ddd;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    padding: 0 20px;
    margin-top: 10px;
}
.product .lists .left .boxs .list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 15px 15px;
}
.product .lists .left .boxs .list a:last-of-type {
    border-bottom: none;
}
.product .lists .left .boxs .list a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 5px;
}

.product .lists .left .boxs .list a span {
    font-size: 18px;
    color: #333;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .left .boxs .list a:hover span {
    color: #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .left .boxs .contact {
    border: 1px solid #ddd;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 20px 20px;
}
.product .lists .left .boxs .contact p {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}
.product .lists .left .boxs .contact .qr {
    width: 154px;
    height: 154px;
    margin-top: 15px;
}
.product .lists .left .boxs .contact .sao {
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
    width: 100%;
    color: #555;
}
.section-detail .gl-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    margin-top: 50px;
}
.section-detail .gl-box.mt50 {
    margin-bottom: 50px;
}
.section-detail .gl-box .gl-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    border: 1px solid #ddd;
    border-right:2px solid #FE6B03;
    border-bottom: 2px solid #FE6B03;
}
.section-detail .gl-box .gl-title .name {
    background: #FE6B03;
    color: #fff;
    font-size: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-detail .gl-box .gl-title .name img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    /*margin-right: 5px;*/
}
.section-detail .gl-box .gl-title .more {
    font-size: 16px;
    margin-right: 10px;
    color: #888;
}
.section-detail .gl-box .gl-title .more:hover {
    color: #FE6B03;
}
.section-detail .gl-box .gl-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.section-detail .gl-box .gl-contact img {
    width: 100%;
}
.section-detail .gl-box .gl-pro-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
}
.section-detail .gl-box .gl-pro-list .pro {
    width: 390px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-right: calc((100% - (390px * 3)) / 2);
    border: 1px solid #ddd;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:hover {
    border: 1px solid #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:last-of-type {
    margin-right: 0;
}
.section-detail .gl-box .gl-pro-list .pro .image {
    width: 390px;
    height: 390px;
    overflow: hidden;
}
.section-detail .gl-box .gl-pro-list .pro .image img {
    width: 390px;
    height: 390px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro .name {
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    background:#DDDDDD;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro .name .text {
    display: inline-block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro .name .icon {
    width: 0px;
    height: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:hover .name{
    background: #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-pro-list .pro:hover .name .text {
    width: calc(100% - 44px);
    color: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    text-align: left;

}
.section-detail .gl-box .gl-pro-list .pro:hover .name .icon {
    width: 44px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-new-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}
.section-detail .gl-box .gl-new-list .newsx {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(50% - 10px);
    border-bottom: 1px solid #ddd;
    margin-right: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.section-detail .gl-box .gl-new-list .newsx:nth-child(2n){
    margin-right: 0;
}
.section-detail .gl-box .gl-new-list .newsx .text {
    width: calc(100% - 90px);
    font-size: 18px;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-new-list .newsx .time {
    text-align: right;
    width:90px;
    font-size: 16px;
    color: #666;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-new-list .newsx:hover .text {
    color: #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .gl-box .gl-new-list .newsx:hover .time {
    color: #FE6B03;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-detail .contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.section-detail .contact-title h1 {
    font-size:44px;
    font-weight: bold;
    color: #333;
}
.section-detail .contact-title .line {
    width: 400px;
    height: 1px;
    position: relative;
    background-color: #ddd;
    margin: 15px 0;
}
.section-detail .contact-title .line em {
    position: absolute;
    width: 20px;
    height: 5px;
    border: 1px solid #FE6B03;
    left: calc((100% - 22px) / 2);
    top: -2px;
}
.section-detail .contact-title h6 {
    font-size: 18px;
    color: #333;
}
.section-detail .contact-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}
.section-detail .contact-box .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: calc((100% - 40px) / 3);
    border: 1px solid #FE6B03;
    border-radius: 5px;
}
.section-detail .contact-box .box .name {
    width: 100%;
    font-size: 18px;
    color: #fff;
    background: #FE6B03;
    text-align: center;
    padding: 15px 0;
}
.section-detail .contact-box .box .infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 20px 0;
}
.section-detail .contact-box .box .infos .icon {
    width: 44px;
    height: 44px;
    margin: 15px 0;
}
.section-detail .contact-box .box .infos p {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 20px;
    width: 100%;
    padding: 0 10px;
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}
.section-detail .contact-box .box .infos p.num {
    font-size: 22px;
}

.services-apps {
    padding: 70px 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.apps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.apps .boxs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 60px;
}
.apps .boxs .box {
    width:360px;
    height: 410px;
    margin-right: calc((100% - (360px * 4)) / 3);
    background: #F2F2F2;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box:hover {
    background: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box:nth-child(4n){
    margin-right: 0;
}
.apps .boxs .box .image {
    width: 360px;
    height: 360px;
    overflow: hidden;
    position: relative;
}
.apps .boxs .box .image img {
    width: 360px;
    height: 360px;
}
.apps .boxs .box .image .bg {
    position: absolute;
    left: 0;
    top: 0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box:hover .image .bg {
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box .image .more {
    width: 160px;
    height: 160px;
    border: 1px solid #FE6B03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 100px;
    top: 100px;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box .image .more {
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box .image .more .s-more {
    width: 150px;
    height:150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #FE6B03;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    line-height: 28px;
}
.apps .boxs .box .bottom-title {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #333;
    font-size: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.apps .boxs .box:hover .bottom-title {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.services-yyal {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #F6F8FA;
}

.yyal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.yyal .boxs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 60px;
}
.yyal .boxs .box {
    width:488px;
    height: 426px;
    margin-right: calc((100% - (488px * 3)) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 20px;
}
.yyal .boxs .box:nth-child(3n){
    margin-right: 0;
}
.yyal .boxs .box .image {
    width:488px;
    height: 376px;
}
.yyal .boxs .box .bottom-title {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #333;
    font-size: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: #fff;
}
.yyal .boxs .box:hover .bottom-title {
    background: #FE6B03;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.yyal .boxs .more {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.section-cooperation {
    padding: 70px 0 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.cooperation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.cooperation .cooperation-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #fff;
    margin-top: 60px;
    position: relative;
}
.swiper-cooperation {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.swiper-cooperation .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    height: 200px;
    background: #F6F8FA;
}
.swiper-cooperation .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 150px;
}
.swiper-cooperation .swiper-wrapper .swiper-slide .cont {
    width: 100%;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    font-size: 18px;
    text-align: center;
}
.cooperation-box .swiper-button-next {
    right: -50px;
    left: unset;
    top: 100px;
    bottom:unset;
    background: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.cooperation-box .swiper-button-next img {
    width: 24px;
}

.cooperation-box .swiper-button-prev {
    right: unset;
    left: -50px;
    top: 100px;
    bottom: unset;
    background: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.cooperation-box .swiper-button-prev img {
    width: 24px;
}

.cooperation-box .swiper-button-next:after,.cooperation-box .swiper-button-prev:after {
    display: none;
}

.services-abs {
    padding: 40px 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.abs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.abs .boxs{
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.abs .boxs .video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.abs .boxs .video .video-image {
    width: 100%;
}
.abs .boxs .ab-title {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.abs .boxs .ab-title em {
    width: calc((100% - 132px) / 2);
    height: 1px;
    background: #ddd;
}
.abs .boxs .ab-title .icon {
    margin: 0 20px;
}
.abs .boxs .ab-intro {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    color: #333;
}
.abs .boxs .ab-list {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.abs .boxs .ab-list .bx {
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #F6F8FA;
}
.abs .boxs .ab-list .bx .image {
    width: 132px;
    height: 121px;
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.abs .boxs .ab-list .bx .image.image1 {
    background-image: url("../images/icon_45.png");
}
.abs .boxs .ab-list .bx .image.image2 {
    background-image: url("../images/icon_46.png");
}
.abs .boxs .ab-list .bx .image.image3 {
    background-image: url("../images/icon_47.png");
}
.abs .boxs .ab-list .bx.active .image {
    background-position: -132px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.abs .boxs .ab-list .bx h3 {
    font-size: 28px;
    color:#333;
    font-weight: bold;
    margin: 20px 0 40px;
    width: 100%;
    text-align: center;
}
.abs .boxs .ab-list .bx .t {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    font-size: 22px;
    color: #333;
    line-height: 32px;
}
.solution {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.solution .t {
    font-size: 40px;
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 20px

}
.solution .lists {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.solution .lists .item {
    width: calc((100% - 60px) / 3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #f7f8fa;
    margin-right: 30px;
    margin-bottom: 30px;
}
.solution .lists .item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.solution .lists .item:nth-child(3n){
    margin-right: 0;
}
.solution .lists .item .image {
    width: 100%;
    height:calc(((1400px - 60px) / 3) / 3 * 2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.solution .lists .item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.solution .lists .item:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.solution .lists .item .name {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding:15px 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #000;
    margin-top: 15px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .item .name.nm {
    margin-top: 0;
}
.solution .lists .item:hover .name {
    color: #ff4100;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .item .intro {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    font-size: 16px;
    color: #555;
    line-height: 28px;
    height: 84px;
    padding: 0 15px;
}
.solution .lists .item .more {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding:0 15px;
    margin: 50px 0 30px;
    font-size:16px;
    color: #555;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .item:hover .more {
    color: #000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .item .more i {
    width: 14px;
    height: 8px;
    margin-left: 10px;
    background-image: url("../img/icon_right_16.png");
    background-repeat: no-repeat;
    background-position: -14px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .lists .item:hover .more i {
    background-position: 0 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}



.solution .down-lists {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.solution .down-lists .item {
    width: calc((100% - 160px) / 5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-right: 40px;
    margin-bottom: 40px;
}

.solution .down-lists .item:nth-child(5n){
    margin-right: 0;
}
.solution .down-lists .item .image {
    width: 100%;
    height:308px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.solution .down-lists .item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.solution .down-lists .item:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.solution .down-lists .item .name {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding:10px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #555;
    margin-top: 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .down-lists .item:hover .name {
    color: #000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.solution .down-lists .item .d {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size:16px;
    color: #555;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .down-lists .item:hover .d {
    color: #000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .down-lists .item .d i {
    width: 19px;
    height: 19px;
    margin-right: 10px;
    background-image: url("../img/icon-down2.png");
    background-repeat: no-repeat;
    background-position: -19px 0;
    /*-webkit-transition: all .5s;*/
    /*-o-transition: all .5s;*/
    /*transition: all .5s;*/
}
.solution .down-lists .item:hover .d i {
    background-position: 0 0;
    /*-webkit-transition: all .5s;*/
    /*-o-transition: all .5s;*/
    /*transition: all .5s;*/
}




    /* ----- page ----- */
.pagebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.pagebar .pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 3px;
}
.pagination span {
    color: #000;
    font-size: 14px;
    padding: 6px 2px;
    margin: 0 5px;
    border-radius: 3px;
}
.pagination a:hover {
    color: #ff4100;
    border: 1px solid #ff4100;
}
.pagination a.page-num-current {
    color: #fff;
    background: #ff4100;
    border: 1px solid #ff4100;
}
/* ----- page ----- */

.s-pro-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px 20px
}
.s-pro-list .s-pro-item {
    padding: 40px 20px;
    background: #F7F8FA;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(50% - 10px);
    margin-right: 20px;
    position: relative;
    margin-bottom: 20px;
}
.s-pro-list .s-pro-item:nth-child(3),.s-pro-list .s-pro-item:nth-child(4) {
    margin-bottom: 0;
}
.s-pro-list .s-pro-item:nth-child(2n){
    margin-right: 0;
}
.s-pro-list .s-pro-item:before {
    position: absolute;
    content: '';
    left: 0;
    top: 34px;
    width: 4px;
    height: 30px;
    background: #ff4100;
}
.s-pro-list .s-pro-item .t {
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    text-align: left;
    font-size:16px;
    color: #000;
    margin-bottom: 10px;
}
.s-pro-list .s-pro-item .intro {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    text-align: left;
    font-size:14px;
    height:56px;
    line-height: 28px;
    color: #888;
    margin-bottom: 20px;
}
.s-pro-list .s-pro-item .image-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width:100%;
}
.s-pro-list .s-pro-item .image-list img {
    width:120px;
    height:120px;
    margin-right: 30px;
}
.s-pro-list .s-pro-item .image-list img:last-of-type {
    margin-right: 0;
}

.comment-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px 20px
}
.comment-list .item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.comment-list .item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.comment-list .item .nick_name {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: #888;
    margin-bottom: 15px;
}
.comment-list .item .nick_name span {
    margin-right: 40px;
}
.comment-list .item .intro {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: #333;
    line-height: 24px;
}
.comment-list .item .reply {
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    color: #333;
    margin-top: 20px;
    border: 1px dashed #ff4100;
    padding:10px 10px;
}
.comment-list .item .reply .n {
    width:100px;
    line-height: 24px;
    color: #ff4100;
}
.comment-list .item .reply .c {
    width:calc(100% - 100px);
    line-height: 24px;
}
.comment-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px 20px
}
.comment-box form {
    width: 100%;
}
.comment-box .control {
    border: 1px dashed #333;
    padding: 10px 10px;
    border-radius: 5px;
    outline: none;
    width: 100%;
}
.comment-box .comment-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    margin-top:10px;
}
.comment-box .comment-code .codes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.comment-box .comment-code .codes .code {
    width: 150px;
    padding: 5px 10px;
    border: 1px dashed #333;
    outline: none;
    margin-right: 20px;
}
.comment-box .comment-code .codes .codeimg {
    height:30px;
    cursor: pointer;
}
.comment-box .comment-code .p {
    font-size:12px;
    color: #888;
    height: 30px;
    line-height: 30px;
}
.comment-box .comment-btn {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width:100%;
}
.comment-box .comment-btn button {
    font-size: 16px;
    padding: 8px 30px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    cursor: pointer;
}
.comment-box .comment-btn button:first-of-type {
    margin-right: 20px;
}
.comment-box .comment-btn button.submit {
    background: #ff4100;
    color: #fff;
    border: 1px solid #ff4100;
}
.pgx {
    border: 1px solid #ddd;
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px;
    border-top: none;
}
