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 "Helvetica Neue", Helvetica, Arial, sans-serif;;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.containers {
    width: 1680px;
    margin: 0 auto;
}
.containers-x {
    width: 1460px;
    margin: 0 auto;
}

.headers {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1040;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers.bg, .headers:hover {
    box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headers .header .logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.headers .header .logo img {
    height: 64px;
}
.headers .header .logo .line {
    width: 1px;
    height: 40px;
    background: #000;
    margin: 0 10px;
}
.headers .header .logo .l-div {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-top: 2px;
}
.headers .header .logo .l-div span {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 3px;
}
.headers .header .logo .l-div em {
    font-size: 17px;
    color: #000;
    letter-spacing: 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: 74px;
    position: relative;
}
.headers .header .navs .nav-box .children {
    position: absolute;
    left: -30px;
    top: 73px;
    width: calc(100% + 60px);
    /*border-top: 1px solid #ddd;*/
    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;
    padding: 20px 30px;
}
.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px #ccc;
}
.headers .header .navs .nav-box .children .cbx a {
    font-size: 15px;
    color: #000;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.headers .header .navs .nav-box .children .cbx a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #0E4BB1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .navs .nav-box .children .cbx a:first-of-type {
    border-radius: 10px 10px 0 0;
}
.headers .header .navs .nav-box .children .cbx a:last-of-type {
    border-radius: 0 0 10px 10px;
}
.headers .header .navs .nav-box .children .cbx a:hover {
    /*border-bottom: 1px solid #0E4BB1;*/
    /*color: #0E4BB1;*/
    /*-webkit-transition: all .5s;*/
    /*-o-transition: all .5s;*/
    /*transition: all .5s;*/
}
.headers .header .navs .nav-box .children .cbx a:hover:before {
    width: 100%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .nav-flex-box-width {
    position: absolute;
    left: 0;
    top: 72px;
    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;
    -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;
}

.headers .header .nav-flex-box-width .nav-flex-box .t {
    font-size: 22px;
    background: -webkit-linear-gradient(#151B73, #0682F6); /* Safari 5.1 到 6.0 */
    -webkit-background-clip: text; /* Safari */
    -webkit-text-fill-color: transparent; /* Safari 和 Chrome */
    background-clip: text;
    color: transparent; /* 标准属性 */
    /*font-weight: bold;*/
    margin-bottom: 20px;
}
.headers .header .nav-flex-box-width .nav-flex-box.nav-flex-boxs .t {
    width: 90%;
    margin-left: 5%;
}
.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-listx {
    width: 90%;
    margin: 0 auto;
}
.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: 340px;
    height: 220px;
    margin-right: calc((100% - (340px * 4)) / 3);
    margin-bottom: 20px;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list.n-box-listx .n-box {
    margin-right: calc((100% - (340px * 3)) / 2);
    margin-bottom: 20px;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box:nth-child(4n){
    margin-right: 0;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list.n-box-listx .n-box:nth-child(4n){
    margin-right: calc((100% - (340px * 3)) / 2);
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list.n-box-listx .n-box:nth-child(3n){
    margin-right: 0;
}
.headers .header .nav-flex-box-width .nav-flex-box .n-box-list .n-box .n-box-image {
    width: 100%;
    height: 190px;
    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-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% - 24px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 4px;
    font-size: 15px;
    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:hover .tit span {
    color: #0E4BB1;
    -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: 74px;
    line-height: 74px;
    position: relative;
    padding: 0 20px;
    font-size: 17px;
    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: #fff;
    background: linear-gradient(to bottom, #151B73, #0685FA);
    -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% - 22px);
    width: 0;
    height: 4px;
    background: #fff;
    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 .head-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 0 20px;
    background: linear-gradient(to bottom, #151B73, #0685FA);
    height: 74px;
    margin-left: 5px;

}
.headers .header .navs .head-phone .text {
    font-size: 17px;
    color: #fff;
}
.headers .header .navs .head-phone .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-top: 5px;*/
}
.headers .header .navs .head-phone .phone img {
    margin-right: 3px;
}
.headers .header .navs .head-phone .phone span {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #fff;
}
.banners {
    width: 100%;
}

.banners .banner {
    height: calc(100vh - 74px);
    width: 100%;
    overflow: hidden;
    position: relative;
}
.banners .banner .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.banners .banner .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banners .banner .swiper-button-next {
    right: 50px;
    left: unset;
    top: 50%;
    bottom:unset;
    border: 1px solid #ccc;
    background: none;
    width: 50px;
    height: 50px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.banners .banner .swiper-button-prev {
    right: unset;
    left: 50px;
    top: 50%;
    bottom: unset;
    border: 1px solid #ccc;
    background: none;
    width: 50px;
    height: 50px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.banners .banner .swiper-button-next:after,.banners .banner .swiper-button-prev:after {
    font-size: 16px;
    color: #ccc;
    -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 #1760AD;
    -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: #1760AD;
    -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: 15px;
}

.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: linear-gradient(to bottom, #151B73, #0685FA);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.search-box {
    display: inline-block;
    width: 100%;
    height: 60px;
    background: #fff;
}
.search-box.search-box-x {
    background: #F6F8FA;
}
.search-box.search-box-bg {
    /*background: linear-gradient(to bottom, #014790, #0170BB);*/
}
.search-box .search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.search-box .search-container .l {
    /*border: 1px solid #eee;*/
    height: 36px;
    line-height: 36px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.search-box .search-container .l .search-input {
    width: calc(100% - 30px);
    height: 32px;
    line-height: 32px;
    padding: 3px 10px;
    outline: unset;
    background: none;
    font-size: 14px;
    color: #333;
    border: 1px solid #eee;
    border-right: none;
}
.search-box .search-container .l .search-input::placeholder {
    color: #999;
}
.search-box.search-box-bg .search-container .l .search-input::placeholder  {
    color: #fff;
}
.search-box .search-container .l .search-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: unset;
    border: unset;
    background: linear-gradient(to bottom, #151B73, #0685FA);
    border-radius: 0 0 5px 0;
}
.search-box.search-box-bg .search-container .l .search-icon-box {
    background: #fff;
}
.search-box .search-container .l .search-icon-box img {
    width: 16px;
    height: 15px;
}
.search-box .search-container .r {
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.search-box .search-container .r .hot-icon {
    width: 19px;
    height: 23px;
    margin-right: 8px;
}
.search-box .search-container .r .lab {
    font-size: 16px;
    color: #333;
}
.search-box.search-box-bg .search-container .r .lab {
    color: #fff;
}
.search-box .search-container .r a {
    font-size: 16px;
    color: #333;
}
.search-box.search-box-bg .search-container .r a{
    color: #fff;
}
.search-box .search-container .r a:hover{
    color: #0E4BB1;
}
.search-box .search-container .r em {
    width: 1px;
    height: 14px;
    background: #888;
    margin: 0 8px;
}


.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: 48px;
    font-weight: bold;
    letter-spacing: 4px;
    z-index: 2;
    width: 100%;
}
.G-title .GT-name .en {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 78px;
    font-weight: bold;
    color: #F7F7F9;
}
.G-title .GT-name .c-black {
    color: #333;
    position: relative;
    z-index: 2;
}
.G-title .GT-name .c-blue {
    background: -webkit-linear-gradient(#151B73, #0682F6); /* Safari 5.1 到 6.0 */
    -webkit-background-clip: text; /* Safari */
    -webkit-text-fill-color: transparent; /* Safari 和 Chrome */
    background-clip: text;
    color: transparent; /* 标准属性 */
    position: relative;
    z-index: 2;
}
.G-title .GT-name .c-white {
    color: #ffffff;
    position: relative;
    z-index: 2;
}
.G-title .G-line {
    margin-top: 5px;
}


.G-title .G-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
    margin-top: 6px;
}
.section-love {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-image: url("../images/love_bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-love .love {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.section-love .love .s-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 90px;
}
.section-love .love .s-title .tag-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}
.section-love .love .s-title .tag-ms {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-top: 6px;
}
.section-love .love .s-title .tag-ms em {
    width: 10px;
    height: 10px;
    background:#fff;
}
.section-love .love .s-title .tag-ms em:first-of-type {
    margin-right: 20px;
}
.section-love .love .s-title .tag-ms em:last-of-type {
    margin-left: 20px;
}
.section-love .love .s-title .tag-ms strong {
    font-size: 50px;
    margin: 0 6px;
}

.section-love .love .s-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 752px;
    height: 510px;
    position: relative;
}
.section-love .love .s-box .box {
    position: absolute;
    width: 389px;
    height: 159px;
    cursor: pointer;
    background-image: url("../images/love_s_bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .s-box .box.active {
    background-image: url("../images/love_s_on_bg.png");
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .s-box .box.box-1 {
    left: -348px;
    top: 0;
}
.section-love .love .s-box .box.box-2 {
    left: -506px;
    top: 244px;
}
.section-love .love .s-box .box.box-3 {
    left: 704px;
    top: 0;
}
.section-love .love .s-box .box.box-4 {
    left: 856px;
    top: 244px;
}
.section-love .love .s-box .box .box-con {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    position: relative;
}
.section-love .love .s-box .box .box-con .t {
    font-size: 26px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #32363E;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .s-box .box .box-con .s {
    font-size: 22px;
    margin-top: 10px;
    color: #32363E;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .s-box .box.active .box-con .t,.section-love .love .s-box .box.active .box-con .s {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .s-box .box .box-con .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    position: absolute;
    right: -32px;
    top: 0;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-love .love .s-box .box.box-3 .box-con .icon,.section-love .love .s-box .box.box-4 .box-con .icon{
    right: unset;
    left: -32px;
}
.section-love .love .s-box .box .box-con .icon em {
    width: 44px;
    height: 44px;
    background-image: url("../images/icon_love.png");
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.section-love .love .s-box .box.active .box-con .icon em {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-love .love .s-box .box .box-con .icon.icon-1 em {
    background-position: 0 0;
}
.section-love .love .s-box .box.active .box-con .icon.icon-1 em {
    background-position: -44px 0;
}
.section-love .love .s-box .box .box-con .icon.icon-2 em {
    background-position: 0 -44px;
}
.section-love .love .s-box .box.active .box-con .icon.icon-2 em {
    background-position: -44px -44px;
}
.section-love .love .s-box .box .box-con .icon.icon-3 em {
    background-position: 0 -88px;
}
.section-love .love .s-box .box.active .box-con .icon.icon-3 em {
    background-position: -44px -88px;
}
.section-love .love .s-box .box .box-con .icon.icon-4 em {
    background-position: 0 -132px;
}
.section-love .love .s-box .box.active .box-con .icon.icon-4 em {
    background-position: -44px -132px;
}
.section-love .love .s-box .more-link {
    position: absolute;
    left: calc((100% - 240px) / 2);
    top: calc(100% - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 10px;
    background: #FF7E00;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #fff;
    width: 240px;
}
.section-love .love .more-link em {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #FF7E00;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.section-product {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.product {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.product .cate-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.product .cate-list a {
    width: 148px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #F9F9F9;
    color: #555;
    font-size: 20px;
    margin-right: 60px;
}
.product .cate-list a:last-of-type {
    margin-right: 0;
}
.product .cate-list a.a-more:hover {
    border:1px solid #0E4BB1;
    color: #0E4BB1;
}
.product .cate-list a.active {
    background: url("../images/cate-bg.png") center no-repeat;
    border: none;
    color: #fff;
    border-radius: 0;
}

.product .lists {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}
.product .lists .item-list {
    display: none;
    flex-wrap: wrap;
    width: 100%;
}
.product .lists .item-list.active {
    display: flex;
}
.product .lists .item-list .item {
    width: 408px;
    height: 330px;
    position: relative;
    margin-right: calc((100% - 1632px) / 3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}
.product .lists .item-list .item:nth-child(4n){
    margin-right: 0;
}
.product .lists .item-list .item .image {
    width: 408px;
    height: 330px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .item-list .item:hover .image {
    height: 310px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .item-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;
}
.product .lists .item-list .item:hover .image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.product .lists .item-list .item .name {
    position: absolute;
    left: 0;
    top: 25px;
    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;
}
.product .lists .item-list .item:hover .name {
    top: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .item-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;
}
.product .lists .item-list .item:hover .act {
    bottom: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.product .lists .item-list .item .act a {
    width: 50%;
    height: 40px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product .lists .item-list .item .act a img {
    margin-left: 10px;
}
.product .lists .item-list .item .act a.v-show {
    background: linear-gradient(to bottom, #151B73 5%,#0685FA 95%);
}
.product .lists .item-list .item .act a.v-action {
    background: #FE6B03;
}

.show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #FE6B03;
    background: #FE6B03;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    position: relative;
}
.show-more.no-top {
    margin-top: 0;
}
.show-more:hover {
    background: #fff;
    color: #FE6B03;
}
.show-more: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%;
}
@keyframes wipes{0%{background-position:150% 150%}to{background-position:-150% -150%}}


.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("../images/tt-bg-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-ad.ad-bg-2 {
    background-image: url("../images/tt-bg-2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-ad.ad-bg-3 {
    background-image: url("../images/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.adx {
    justify-content: center;
    flex-flow: column;
    padding: 20px 0;
}
.ad .adx-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    font-size: 40px;
    color: #fff;
    letter-spacing: 4px;
}
.ad .box-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.ad .box-info .image {
    width: 380px;
    height: 120px;
    position: relative;
}
.ad .box-info .image img {
    position: absolute;
    left: 0;
    bottom: -32px;
}
.ad .box-info.box-info2 .image img {
    bottom: -64px;
}
.ad .box-info .info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 740px;
}

.ad .box-info .info .t {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #fff;
    padding: 10px 30px;
    font-size: 22px;
    color: #fff;
    letter-spacing: 2px;
}
.ad .box-info .info .ts {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    font-size: 38px;
    color: #fff;
    letter-spacing: 2px;
}
.ad .box-info .info .c {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    letter-spacing: 3px;
    color: #fff;
    margin: 15px 0 20px;
}
.ad .box-info .info .cs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin: 15px 0 20px;
}
.ad .box-info .info .cs span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 60px;
}
.ad .box-info .info .cs span:last-of-type {
    margin-right: 0;
}
.ad .box-info .info .cs span img {
    margin-right: 5px;
}
.ad .box-info .info .zx {
    font-size: 20px;
    border-radius: 10px;
    padding: 8px 20px;
    border:1px solid #FE6B03;
    color: #fff;
    background: #FE6B03;
    font-weight: bold;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.ad .box-info .info .zx:hover {
    border: 1px solid #FE6B03;
    background: #fff4e6;
    color: #FE6B03;
    -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 .ad-zx {
    font-size: 20px;
    margin-top: 10px;
    border-radius: 10px;
    padding: 8px 20px;
    border:1px solid #FE6B03;
    color: #fff;
    background: #FE6B03;
    font-weight: bold;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.ad .ad-zx:hover {
    border: 1px solid #FE6B03;
    background: #fff4e6;
    color: #FE6B03;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.ad .ad-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-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.ad .box-contact .l {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.ad .box-contact .l .icon {
    margin-right: 15px;
}
.ad .box-contact .l .tels {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.ad .box-contact .l .tels span {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}
.ad .box-contact .l .tels em {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}
.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;
}

.section-advantage {
    padding: 112px 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-image: url("../images/adv-bg-1.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: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    margin-top: 40px;
}
.advantage .adv-box.adv-box-2 {
    background-image: url("../images/adv-bg-2.png");
    background-repeat: no-repeat;
    background-position: center top;
    margin-top: 0;
    padding-top: 70px;
}
.advantage .adv-box.adv-box-3 {
    background-image: url("../images/adv-bg-3.png");
    background-repeat: no-repeat;
    background-position: center top;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 80px;
}
.advantage .adv-box .box  {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.advantage .adv-box .box .info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 770px;
    margin-top: 60px;
}
.advantage .adv-box .box .info .t {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: relative;
}
.advantage .adv-box .box .info .t img {
    position: absolute;
    left: 115px;
    bottom: -12px;
}
.advantage .adv-box.adv-box-2 .box .info .t img {
    left: 88px;
}
.advantage .adv-box .box .info .t .tt {
    margin-left: 240px;
    padding: 20px 20px;
    width: 488px;
    height: 116px;
    background:#F9F9F9 url("../images/icon-adv-line-1.png") center no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column;
}
.advantage .adv-box .box .info .t .tt span {
    font-size: 26px;
    font-weight: bold;
    background: -webkit-linear-gradient(#151B73, #0682F6); /* Safari 5.1 到 6.0 */
    -webkit-background-clip: text; /* Safari */
    -webkit-text-fill-color: transparent; /* Safari 和 Chrome */
    background-clip: text;
    color: transparent; /* 标准属性 */
}
.advantage .adv-box .box .info .t .tt em {
    font-size: 22px;
    color:#333;
    margin-top: 10px;
}
.advantage .adv-box .box .info .list {
    margin-left: 240px;
    padding: 45px 30px;
    width: 456px;
    height: 213px;
    background:url("../images/icon-adv-line-2.png") center no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-top: 30px;
}
.advantage .adv-box .box .info .list .line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width:100%;
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}
.advantage .adv-box .box .info .list .line:last-of-type {
    margin-bottom: 0;
}
.advantage .adv-box .box .info .list .line img {
    margin-right: 10px;
}


.section-solution {
    padding: 80px 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%;
    box-shadow: 0 0 20px #ccc;
    margin-top: 40px;
}
.solution .s-box .s-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 230px;
}
.solution .s-box .s-menu .t {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(to bottom, #151B73, #0685FA);
}
.solution .s-box .s-menu .t .n {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-top: 8px;
}
.solution .s-box .s-menu .t .n em {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    margin: 0 5px;
}
.solution .s-box .s-menu .s-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    border: 1px solid #F5F5F5;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 24px;
    font-size: 18px;
    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:before {
    content: '';
    position: absolute;
    left: -1px;
    top: -1px;
    width: 0;
    background: linear-gradient(to bottom, #151B73, #0685FA);
    height: 62px;
    -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: #F1F4F9;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item.active:before {
    width: 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item .yuan {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.solution .s-box .s-menu .s-menu-list .s-menu-item .yuan span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #333;
}
.solution .s-box .s-menu .s-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #0079E9;
    padding: 20px 15px;
}
.solution .s-box .s-menu .s-contact .tag {
    width: 100%;
    font-size: 18px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.solution .s-box .s-menu .s-contact .tx {
    width: 100%;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    margin: 5px 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solution .s-box .s-menu .s-contact .tx img {
    margin-right: 5px;
}
.solution .s-box .s-menu .s-contact .tel {
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.solution .s-box .s-menu .s-contact .s-btn {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #FE6B03;
    padding: 4px 10px;
}
.solution .s-box .s-menu .s-contact .s-btn img {
    margin-right: 5px;
}
.solution .s-box .s-menu .s-contact .s-btn span{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #FF7E00;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.solution .s-con {
    width: calc(100% - 230px);
    padding: 15px 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: 27px;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding: 10px 0 10px;
    position: relative;
}
.solution .s-con .s-cons .info .bx .bx-t:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height:4px;
    background: #0868D5;
    width: 300px;
}
.solution .s-con .s-cons .info .bx .tags {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 6px;
}
.solution .s-con .s-cons .info .bx .tags span {
    font-size: 15px;
    color: #555;
    margin-right: 10px
}
.solution .s-con .s-cons .info .bx .tags em {
    font-size: 14px;
    font-weight: bold;
    color: #DEDFE9;
    letter-spacing: 2px;
}
.solution .s-con .s-cons .info .bx .intro {
    margin: 30px 0;
    height: 160px;
    width: 100%;
    font-size: 20px;
    color: #000;
    line-height: 40px;
    padding-left: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.solution .s-con .s-cons .info .bx .show-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(to bottom, #151B73, #0685FA);
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
}
.solution .s-con .s-cons .info .bx .show-link img {
    margin-right: 10px;
}
.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 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.solution .s-con .s-cons .lists .t .t-n {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
    background: -webkit-linear-gradient(#151B73, #0682F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    width: 150px;
}
.solution .s-con .s-cons .lists .t .line {
    width: calc(100% - 270px);
    background: #ddd;
    height: 1px;
}
.solution .s-con .s-cons .lists .t .t-more {
    font-size: 20px;
    background: -webkit-linear-gradient(#151B73, #0682F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    width: 120px;
    text-align: right;
}
.solution .s-con .s-cons .lists .items {
    width: 100%;
    position: relative;
    /*height: 0!important;*/
    height: auto;
    overflow: hidden;
}
.swiper-solution {
    width: 100%;
    height: 270px;
    overflow: hidden;
}
.swiper-solution .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    height: 270px;
    position: relative;
    overflow: hidden;
}
.swiper-solution .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-solution .swiper-wrapper .swiper-slide span {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -40px;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 20px;
    color: #fff;
    background: #0868D5;
    text-align: center;
    height: 40px;
    line-height: 40px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.swiper-solution .swiper-wrapper .swiper-slide:hover span {
    bottom: 0;
    -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: #fff;
    -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: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.swiper-solution .swiper-button-prev:hover,.swiper-solution .swiper-button-next:hover {
    background: #0868D5;
    -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: #ddd;
    -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: 76px 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-image: url(../images/about-bg.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -16px;
}
.section-abouts.no {
    margin-top: 0;
}
.abouts {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.abouts .box {
    width: 680px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    position: relative;
    height: 620px;
}
.abouts .box .t {
    font-size: 44px;
    letter-spacing: 4px;
    font-weight: bold;
    margin-top: 40px;
    background: -webkit-linear-gradient(#151B73, #0682F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.abouts .box .t.t-about {
    margin-top: 0;
}
.abouts .box .s {
    font-size: 24px;
    letter-spacing: 2px;
    color: #0868D5;
    margin-top: 15px;
}
.abouts .box .intro {
    width: 100%;
    height:180px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 30px 0;
    color: #333;
    line-height: 36px;
    font-size: 18px;
}
.abouts .box .intro.intro-about {
    display: inline-block;
    -webkit-line-clamp:unset;
    -webkit-box-orient:unset;
    overflow-y: auto;
    height: auto !important;
    line-height: 34px;
}
.abouts .box .more-link {
    font-size: 20px;
    border-radius: 10px;
    padding: 8px 20px;
    border: 1px solid #FE6B03;
    color: #fff;
    background: #FE6B03;
    font-weight: bold;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
}
.abouts .box .tags {
    position: absolute;
    left: 0;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
    background: #fff;
    box-shadow: 0 0 4px #eee;
    padding: 30px 0;
}
.abouts .box .tags.tags-about {
    bottom: -70px;
}
.abouts .box .tags .tag-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: calc(100% / 3);
    /*padding-left: 50px;*/
}
.abouts .box .tags .tag-item.tag-item-1 {
    /*background: url("../images/icon-about-1.png") 83% 10px no-repeat;*/
}
.abouts .box .tags .tag-item.tag-item-2 {
    /*background: url("../images/icon-about-2.png") 83% 10px no-repeat;*/
}
.abouts .box .tags .tag-item.tag-item-3 {
    /*background: url("../images/icon-about-3.png") 83% 10px no-repeat;*/
}
.abouts .box .tags .tag-item .nm {
    display: flex;
    align-items: center;
    justify-content: center;
}
.abouts .box .tags .tag-item .nm .count {
    position: relative;
    font-size: 52px;
    font-weight: bold;
    color: #1760AD;
}
.abouts .box .tags .tag-item .nm .count em {
    position: absolute;
    right: -14px;
    top: -4px;
    font-size: 28px;
    font-weight: normal;
}
.abouts .box .tags .tag-item .nm .unit {
    font-size: 20px;
    color: #333;
    margin-top: 18px;
    padding-left: 5px;
}
.abouts .box .tags .tag-item .name {
    font-size: 20px;
    color: #333;
    margin-top: 10px;
}
.abouts .box .tags .tag-line {
    width: 1px;
    height: 70px;
    background: #eee;
}


.abouts .image {
    width: 930px;
    height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.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;
}

.section-news {
    padding: 80px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.section-news .news .new-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
    width: 100%;
}
.section-news .news .new-box .left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 1140px;
    background: #F9F9F9;
}
.section-news .news .new-box .left .tit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    background: #F1F4F9;
}
.section-news .news .new-box .left .tit .name {
    width: calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #333;
    background: none;
    padding: 18px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .new-box .left .tit .name.active {
    background: #0685FA;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .new-box .left .tit .name .span {
    width: 35px;
    height: 35px;
    margin-right: 20px;
    background-image: url("../images/icon-news.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-news .news .new-box .left .tit .name.active .span {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .new-box .left .tit .name .span.span-1 {
    background-position: 0 0;
}
.section-news .news .new-box .left .tit .name.active .span.span-1 {
    background-position: -35px 0;
}
.section-news .news .new-box .left .tit .name .span.span-2 {
    background-position: 0 -35px;
}
.section-news .news .new-box .left .tit .name.active .span.span-2 {
    background-position: -35px -35px;
}
.section-news .news .new-box .left .tit .name .span.span-3 {
    background-position: 0 -70px;
}
.section-news .news .new-box .left .tit .name.active .span.span-3 {
    background-position: -35px -70px;
}
.section-news .news .new-box .left .box {
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width:100%;
    padding: 30px 30px;
}
.section-news .news .new-box .left .box.active {
    display: flex;
}
.section-news .news .new-box .left .box .hd {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    background: #fff;
}
.section-news .news .new-box .left .box .hd .image {
    width: 510px;
    height: 300px;
    overflow: hidden;
}
.section-news .news .new-box .left .box .hd .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;
}
.section-news .news .new-box .left .box .hd:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-news .news .new-box .left .box .hd .inf {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 510px);
    padding: 15px 15px;
}
.section-news .news .new-box .left .box .hd .inf .inf-title {
    font-size: 22px;
    font-weight: normal;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    padding-top: 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-news .news .new-box .left .box .hd:hover .inf .inf-title {
    color: #0868D5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .new-box .left .box .hd .inf .inf-intro {
    font-size: 16px;
    font-weight: normal;
    color: #555;
    width: 100%;
    margin: 10px 0;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 160px;
}
.section-news .news .new-box .left .box .hd .inf .inf-time {
    font-size: 20px;
    font-weight: normal;
    color: #333;
    width: 100%;
    text-align: right;
    margin-top: 20px;
}
.section-news .news .new-box .left .box .lists {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}
.section-news .news .new-box .left .box .lists a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(50% - 20px);
    margin-right: 40px;
    color: #333;
    padding: 19px 0;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-news .news .new-box .left .box .lists a:nth-child(2n) {
    margin-right: 0;
}
.section-news .news .new-box .left .box .lists a:hover {
    color: #0868D5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .new-box .left .box .lists a .dian {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #666;
    margin-right: 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .new-box .left .box .lists a:hover .dian {
    background: #0F7FCB;
    border-radius: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.section-news .news .new-box .left .box .lists a .tits {
    display: inline-block;
    width: calc(100% - 110px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.section-news .news .new-box .left .box .lists a .time {
    width: 95px;
    text-align: right;
}


.section-news .news .new-box .que {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 510px;
    background: #F9F9F9;
}
.section-news .news .new-box .que .que-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #333;
    background: none;
    padding: 18px 0;
    background: #F1F4F9;
}
.section-news .news .new-box .que .que-title img {
    margin-right: 20px;
}
.section-news .news .new-box .que .que-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    padding: 30px 20px;
}
.section-news .news .new-box .que .que-list .box {
    border-bottom:1px solid #ddd;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    margin-bottom: 16px;
}
.section-news .news .new-box .que .que-list .box:last-of-type {
    margin-bottom: 0;
}
.section-news .news .new-box .que .que-list .box .qw {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 15px;
}
.section-news .news .new-box .que .que-list .box .qw .f {
    width: 41px;
    height: 41px;
    background: #8C8C8C;
    color:#fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.section-news .news .new-box .que .que-list .box .qw .f.d {
    background: linear-gradient(to bottom, #01468F, #016FBA);
}
.section-news .news .new-box .que .que-list .box .qw .text {
    width: calc(100% - 60px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    color: #444;
}
.section-news .news .new-box .que .que-list .box .qw .text.text1 {
    color: #888;
}

.section-footers {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
    background-color: #212121;
    background-image: url(../images/bottom-bg.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    width: 100%;
}
.footer {
    padding: 50px 0 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer .bottom-menu {
    width: calc(100% - 730px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer .bottom-menu .box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
}
.footer .bottom-menu .box::last-of-type {
	margin-right: 0;
}
.footer .bottom-menu .box h3 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.footer .bottom-menu .box a {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-top: 20px;
}
.footer .bottom-menu .box a:hover {
    color: #0868D5;
}
.footer .bottom-contact {
    width: 630px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
	border-right:1px solid rgba(255,255,255,0.5);
}
.footer .bottom-contact .bo-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer .bottom-contact .bo-logo .line {
    width: 1px;
    height: 60px;
    background: #fff;
    margin: 0 15px;
}
.footer .bottom-contact .bo-logo .bo-intro {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-top: 2px;
}
.footer .bottom-contact .bo-logo .bo-intro span {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 6px;
    margin-top:4px;
}
.footer .bottom-contact .bo-logo .bo-intro em {
    font-size: 25px;
    color: #fff;
    letter-spacing: 2px;
}
.footer .bottom-contact .bottom-logo {

}
.footer .bottom-contact .bottom-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
	padding-left: 100px;
	margin-top:10px;
}
.footer .bottom-contact .bottom-item .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
    font-size: 20px;
    color: #fff;
	letter-spacing: 1px;;
}
.footer .bottom-contact .bottom-item .item img {
    margin-right: 10px;
}
.footer .bottom-contact .bottom-scan {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
	padding-left:100px;
}
.footer .bottom-contact .bottom-scan .scan {
    width: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-right: 25px;
}
.footer .bottom-contact .bottom-scan .scan img {
    width: 136px;
    height: 136px;
}
.footer .bottom-contact .bottom-scan .scan span {
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: 5px;
}
.section-links {
    border-top: 1px solid #fff;
    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: 16px;
}
.links a:hover {
    color: #0868D5;
}
.links em {
    width: 1px;
    height: 14px;
    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.3);
    line-height: 32px;
}
.copyright .cov a {
    color: rgba(255,255,255,0.3);
}
.copyright .cov a:hover {
    color: #0868D5;
}
.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: linear-gradient(to bottom, #151B73, #0685FA);
    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 #0868D5;
    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 #0984D1;
    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 #1786CC;
    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: #0984D1;
}

#toolbar li:hover a {
    width: 200px;
}

#toolbar li:hover .icon-font {
    background-color: #0984D1;
}
#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;
}
.page-banners .page-banner .image {
    width: auto;
    max-width: 100%;
}

.page-position {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 15px auto;
}
.page-position .icon-home {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.page-position span {
    color: #333;
    font-size: 16px;
}
.page-position a {
    font-size: 16px;
    color: #333;
}
.page-position a:hover {
    color: #1760AD;
}
.page-position .icon-r {
    width: 18px;
    height: 18px;
    margin: 0 5px;
}
.section-factory {
    padding: 80px 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.factory {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #F9F9F9;
}
.factory .menu-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    position: relative;
}
.factory .menu-item .items {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    background: #F1F4F9;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .items.active {
    background: #0685FA ;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .items .icon {
    width: 42px;
    height: 36px;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-image: url("../images/icon-factory.png");
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .items.active .icon {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .items .icon.icon-1 {
    background-position: 0 0;
}
.factory .menu-item .items.active .icon.icon-1 {
    background-position: -42px 0;
}
.factory .menu-item .items .icon.icon-2 {
    background-position: 0 -36px;
}
.factory .menu-item .items.active .icon.icon-2 {
    background-position: -42px -36px;
}
.factory .menu-item .items .name {
    font-size: 22px;
    color: #313640;
    margin-top: 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .items.active .name {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.factory .menu-item .tx {
    position: absolute;
    right: 20px;
    top: 28px;
    font-size: 18px;
    color: #76797E;
}

.factory .lists {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    padding: 20px 20px;
}


.factory .lists .box {
    width: 100%;
    position: relative;
    height: 0!important;
    overflow: hidden;
}
.factory .lists .box.active {
    height: auto !important;
    overflow: unset;
}
.swiper-bbx {
    width: 100%;
    height: 430px;
    overflow: hidden;
}
.swiper-bbx .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.swiper-bbx .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 390px
}
.swiper-bbx .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: -70px;
    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;
}
.factory .lists .box .swiper-button-prev {
    right: unset;
    left: -70px;
    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 {
    border: 1px solid #1760AD;
    -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: 18px;
    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: #1760AD;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section-culture {
    padding: 70px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-image: url("../images/culture-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-culture .culture {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.section-culture .culture .s-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 40px;
}
.section-culture .culture .s-title .tag-title {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-culture .culture .s-title .tag-title em {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    margin: 0 5px 0 0;
}
.section-culture .culture .s-title .tag-ms {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
}

.section-culture .culture .s-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:80%;
    padding: 50px 50px;
    background: #fff;
    margin-bottom: 90px;
}
.section-culture .culture .s-box .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: calc(100% / 3);
}
.section-culture .culture .s-box .box img {
    margin-top: 20px;
}
.section-culture .culture .s-box .box .t {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    margin: 20px 0 10px;
}
.section-culture .culture .s-box .box .s {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.section-culture .culture .s-box .box .s p {
    font-size: 20px;
    color: #000;
    line-height: 32px;
}
.section-culture .culture .s-box .line {
    width: 2px;
    height: 190px;
    background: linear-gradient(to bottom, #fff, #D7D7D7, #fff);
}
.cons {
    margin-bottom: 40px;
}

.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: 20px;
}

.cons .con .page-menus .nav {
    width: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    border: 1px solid #eee;
    background: #fff;
    margin-bottom: 20px;
}
.cons .con .page-menus .nav .nav-title {
    width: 100%;
    padding: 15px 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    background: #0884D3 url(../images/icon-prp.png) 94% 22px no-repeat;
}
.cons .con .page-menus .nav .nav-title.nav-title-case {
    background: #0884D3 url(../images/icon-case.png) 94% 22px no-repeat;
}
.cons .con .page-menus .nav .nav-title.nav-title-solution {
    background: #0884D3 url(../images/icon-ff.png) 94% 22px no-repeat;
}
.cons .con .page-menus .nav .nav-title.nav-title-about {
    background: #0884D3 url(../images/icon-home.png) 94% 22px no-repeat;
}
.cons .con .page-menus .nav .nav-title .icons {
    margin-bottom: 10px;
}
.cons .con .page-menus .nav .nav-title .name {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.cons .con .page-menus .nav .nav-title .name .cn {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}
.cons .con .page-menus .nav .nav-title .name .en {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
    font-weight: normal;
}
.cons .con .page-menus .nav .n-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 15px;
}
.cons .con .page-menus .nav .n-box  .list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    border: 1px solid #eee;
    margin-bottom: 15px;
}
.cons .con .page-menus .nav .n-box  .list:last-of-type {
    margin-bottom: 0;
}
.cons .con .page-menus .nav .list .cate {
    padding: 15px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0884D3;
    font-size: 18px;
    color: #fff;
    -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 solid #eee;
    font-size: 16px;
    color: #333;
}
.cons .con .page-menus .nav .list .children:last-of-type {
    border-bottom: none;
}
.cons .con .page-menus .nav .list .children:hover {
    color: #0868D5;
}

.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: 15px 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    background: #0884D3 url(../images/icon-tuijian.png) 94% 22px no-repeat;
}
.cons .con .page-menus .boxs .title.title-c-icon {
    background: #0884D3 url(../images/icon-lianxi.png) 94% 22px no-repeat;
}
.cons .con .page-menus .boxs .title .cn {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}
.cons .con .page-menus .boxs .title .en {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
    font-weight: normal;
}
.cons .con .page-menus .boxs .list {
    border: 1px solid #ddd;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    padding: 0 20px;
}
.cons .con .page-menus .boxs .list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border-bottom: 1px dashed #ddd;
    padding: 15px 0;
}
.cons .con .page-menus .boxs .list a:last-of-type {
    border-bottom: none;
}
.cons .con .page-menus .boxs .list a .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0984D1;
    border-radius: 50px;
    margin-right: 5px;
}
.cons .con .page-menus .boxs .list a .icon img {
    width: 14px;
}
.cons .con .page-menus .boxs .list a span {
    font-size: 16px;
    color: #888;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .page-menus .boxs .list a:hover span {
    color: #0984D1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .page-menus .boxs .list.left-pro-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.cons .con .page-menus .boxs .list.left-pro-list  a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.cons .con .page-menus .boxs .list.left-pro-list  a .image {
    width: 100%;
    height: 190px;
    overflow: hidden;
}
.cons .con .page-menus .boxs .list.left-pro-list  a .image img {
    width: 100%;
    height: 190px;
}
.cons .con .page-menus .boxs .list.left-pro-list  a .name {
    display: inline-block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .page-menus .boxs .list.left-pro-list  a:hover .name {
    color: #0b5ed7;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .page-menus .boxs .contact {
    border: 1px solid #ddd;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 20px 20px;
}
.cons .con .page-menus .boxs .contact p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.cons .con .page-menus .boxs .contact p.p {
    font-size: 32px;
    font-weight: bold;
    color: #0868D5;
    margin-bottom: 10px;
}
.cons .con .page-menus .boxs .contact .qr {
    width: 160px;
    height: 160px;
}
.cons .con .page-menus .boxs .contact .sao {
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
    width: 100%;
    color: #555;
}
.smen {
    height: 50px;
    line-height: 50px;
    width: 100%;
    background: #0884D3;
    margin-bottom: 20px;
}

.plc, .plc2 {
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    color: #666;
    overflow: hidden;
    font-size: 16px;
    border-bottom: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.plc-so .red_x {
    color: #ffffff !important;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    letter-spacing: 2px;
}
.plc a {
    color: #fff;
}
.red_x .em-icon {
    background-image: url("../image/icon_04.png");
    background-repeat: no-repeat;
    margin-right: 5px;
}
.red_x .em-icon.em-icon-1 {
    background-position: 0 0;
    width: 20px;
    height: 24px;
}
.red_x .em-icon.em-icon-2 {
    background-position: 0 -24px;
    width: 23px;
    height: 24px;
}
.red_x .em-icon.em-icon-3 {
    background-position:  0 -48px;
    width: 24px;
    height: 24px;
}
.red_x .em-icon.em-icon-4 {
    background-position:  0 -72px;
    width: 38px;
    height: 22px;
}
.cons .con .details {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 320px);
}

.cons .con .details .pro-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.cons .con .details .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 .pro-list .item:nth-child(3n){
    margin-right: 0;
}
.cons .con .details .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 .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 .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 .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 .pro-list .item:hover .name {
    bottom: -50px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.cons .con .details .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 .pro-list .item:hover .act {
    bottom: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.cons .con .details .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 .pro-list .item .act a img {
    margin-left: 10px;
}
.cons .con .details .pro-list .item .act a.v-show {
    background: linear-gradient(to bottom, #151B73 5%,#0685FA 95%);
}
.cons .con .details .pro-list .item .act a.v-action {
    background: #FE6B03;
}
.cons .con .details .case-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
}
.cons .con .details .case-list .item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #dddd;
}
.cons .con .details .case-list .item .time {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width:160px;
    height: 270px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .case-list .item .time .day {
    font-size: 66px;
    font-weight: bold;
    color: #0884D3;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .case-list .item .time .month {
    font-size: 24px;
    margin-top: 5px;
    color: #0884D3;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .case-list .item:hover .time {
    background: #0884D3;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .case-list .item:hover .time .day,.cons .con .details .case-list .item:hover .time .month {
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .case-list .item .info {
    width:calc(100% - 520px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    padding: 0 30px;
}
.cons .con .details .case-list .item .info .c {
    font-size:22px;
    margin-bottom: 10px;
    color: #000;
    font-weight: bold;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .case-list .item:hover .info .c {
    color:#0884D3;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .case-list .item .info .intro {
    width: 100%;
    line-height: 28px;
    font-size:17px;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cons .con .details .case-list .item .image {
    width:360px;
    height: 250px;
    overflow: hidden;
}
.cons .con .details .case-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 .case-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 .solu-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.cons .con .details .solu-list .item {
    width: 440px;
    height: 360px;
    padding: 15px 15px 0;
    background: #F7F8FA;
    margin-right: calc((100% - 1320px) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .solu-list .item:nth-child(3n){
    margin-right: 0;
}
.cons .con .details .solu-list .item:hover {
    background: #0884D3;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .solu-list .item .image {
    width: 410px;
    height: 305px;
    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 .solu-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 .solu-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 .solu-list .item .name {
    height: 40px;
    line-height: 40px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size:20px;
    color: #000;
    text-align: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .solu-list .item:hover .name {
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}








.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-contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    background: #FCFDFE;
    border: 1px solid #ddd;
    padding: 30px 30px;
}
.cons .con .details .gl-box .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:342px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-title h4 {
    font-size: 18px;
    color: #1760AD;
    font-weight: bold;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-title span {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    position: relative;
    margin-top: 10px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 18px;
    color: #000;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-line:nth-child(1),.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-line:nth-child(2) {
    width: calc(100% - 120px);
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-qr {
    position: absolute;
    right: 0;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-qr img {
    width: 100px;
    height: 100px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-qr span {
    font-size: 16px;
    color: #888;
    margin-top: 5px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-line .icon {
    width:30px;
    height: 30px;
    background-image: url("../images/icon_contact.png");
    background-repeat: no-repeat;
    margin-right: 10px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-line .icon.icon-1 {
    background-position: 0 0;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-line .icon.icon-2 {
    background-position: 0 -30px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-line .icon.icon-3 {
    background-position: 0 -60px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-list .glc-line .icon.icon-4 {
    background-position: 0 -90px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-form {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-form .form-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 15px;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-form .form-line input {
    outline: none;
    border: 1px solid #ddd;
    height: 40px;
    line-height: 40px;
    padding:0 10px;
    font-size: 16px;
    width: 100%;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-form .form-line textarea {
    outline: none;
    border: 1px solid #ddd;
    height: 70px;
    line-height: 24px;
    padding:10px 10px;
    font-size: 16px;
    width: 100%;
}
.cons .con .details .gl-box .gl-contact .glc-info .glc-form .form-line .form-btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    background: linear-gradient(to bottom, #01468F, #016FBA);
    cursor: pointer;
}

.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;
    padding: 0 10px;
}
.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 .gl-box .gl-new-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}
.cons .con .details .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;
}
.cons .con .details .gl-box .gl-new-list .newsx:nth-child(2n){
    margin-right: 0;
}
.cons .con .details .gl-box .gl-new-list .newsx .text {
    width: calc(100% - 90px);
    font-size: 16px;
    color: #888;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .gl-box .gl-new-list .newsx .time {
    text-align: right;
    width:90px;
    font-size: 15px;
    color: #999;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .gl-box .gl-new-list .newsx:hover .text {
    color: #0984D1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .gl-box .gl-new-list .newsx:hover .time {
    color: #0984D1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.cons .con .details .contact-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}
.cons .con .details .contact-box .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: calc((100% - 60px) / 3);
    border: 1px solid #0984D1;
    border-radius: 5px;
}
.cons .con .details .contact-box .box .name {
    width: 100%;
    font-size: 16px;
    color: #fff;
    background: #0884D3;
    text-align: center;
    padding: 15px 0;
}
.cons .con .details .contact-box .box .infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 15px 0;
}
.cons .con .details .contact-box .box .infos .icon {
    /*width: 44px;*/
    /*height: 44px;*/
    margin: 15px 0;
}
.cons .con .details .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: 14px;
    color: #333;
    margin-bottom: 15px;
}
.cons .con .details .contact-box .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%;
}
.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:#1760AD;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .news-list .box .info .tag {
    display: block;
    font-size: 16px;
    width: 100%;
    line-height: 28px;
    height: 86px;
    overflow: hidden;
    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: #1760AD;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .news-list .box .info .time .g .icons {
    width: 14px;
    height: 12px;
    background-image: url("../images/rights.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cons .con .details .news-list .box:hover .info .time .g .icons {
    background-position: -14px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.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;
}

    /* ----- PB分页数字条效果 结束 ----- */
.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: 18px;
    padding: 10px 14px;
    margin: 0 5px;
    border-radius: 3px;
}
.pagination span {
    color: #000;
    font-size: 14px;
    padding: 8px 2px;
    margin: 0 5px;
    border-radius: 3px;
}
.pagination a:hover {
    color: #0884D3;
    border: 1px solid #0884D3;
}
.pagination a.page-num-current {
    color: #fff;
    background: #0884D3;
    border: 1px solid #0884D3;
}
/* ----- PB分页数字条效果 结束 ----- */

.cons .con .details .pro-detail {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
}
.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('../images/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: #0884D3;
    color: #ffffff;
    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: 115px;
    height: 99px;
}
.cons .con .details .pro-detail .boxs .photos .magnifier-assembly .magnifier-line ul li img {
    padding: 1px;
    display: inline-block;
    float: left;
    border: 1px solid #cfcfcf;
    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: inline-block;
    float: left;
    width: calc(100% - 430px);
}
.pro_tinfo_r .tit {
    color: #222222;
    line-height: 39px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 20px;
    display: block;
    width: 100%;
}
.pro_tinfo_r p {
    color: #424242;
    font-size: 18px;
    line-height: 30px;
    margin-top: 23px;
}
.cpdh {
    font-size: 33px;
    color: #000;
    margin-top: 26px;
    /*line-height: 45px;*/
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.cpdh span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    color: #666;
}
.cpdh span img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.cpdh em {
    padding-top:20px;
}
.diysr {
    line-height: 49px;
    color: #ffffff;
    font-size: 23px;
    padding-left: 50px;
    background: #0884D3;
    font-weight: initial;
    position: relative;
    height: 49px;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    margin-top: 30px;
}
.diysr i {
    font-size: 14px;
    font-family: arial;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
    padding-left: 5px;
}
.i-isdbt:after, .diysr:after {
    width: 47px;
    height: 48px;
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background: url('../images/sanjiao2.png') no-repeat 9px 5px;
    background-size: 40px;
}
.cp-body {
    margin-top: 20px;
    line-height: 28px;
    width: 100%;
}
.cp-body img {
    max-width: 100%;
}
.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%;
}