@charset "utf-8";
.position-full{position: absolute;top:0;left: 0;width: 100%;height: 100%;}
/*header*/
.header {
    position: absolute;
    z-index: 999;
    width: 100%;
    left: 0;
    top: 0;
    height: 90px;
    transition: all .4s;
    box-shadow: 0 1px 2px #ddd;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    transition: all .4s;
    width: 166px;
}

.logo-fff {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
}

.header-con{
    width: 44%;
}
.header .nav {
    transition: all .4s;
    display: flex;
    justify-content: space-between;
}

.header .nav li {
    display: inline-block;
    position: relative;
}

.nav-yi {
    display: inline-block;
    line-height: 90px;
    color: #333;
    position: relative;
    transition: all .4s;
    font-size: 18px;
}

.nav-yi:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    background: #C51C1F;
    transition: all .4s;
    width: 100%;
    transform: scale(0);
    opacity: 0;
}
.nav li:hover .nav-yi{
    color: #C51C1F;
}
.nav li:hover .nav-yi::after{
    transform: scale(1);
    opacity: 1;
}

.nav-hide {
    position: absolute;
    width: 100%;
    left: 0;
    min-width: 100px;
}

.nav-hide-warp {
    display: none;
}

.nav-hide-warp:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -10000%;
    width: 20000%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    z-index: -1;
}

.nav-er {
    text-align: left;
    position: relative;
    padding: 10px 0 20px;
}

.nav-er a {
    display: block;
    line-height: 32px;
    white-space: nowrap;
    transition: all .4s;
    color: #999;
}

.nav-er a:hover {
    color: #C51C1F !important;
}

/*.nav li.active .nav-er a{color: #333;}*/

.search-con {
    overflow: hidden;
    transition: all .4s;
    box-sizing: border-box;
    width: 186px;
    height: 40px;
    border: 1px solid #333333;
    border-radius: 20px;
    position: relative;
}

.search-con .text {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 12px;
    background: none;
    outline: none;
    border: none;
    padding: 0 45px 0 20px;
    box-sizing: border-box;

}

.search-con .text::-webkit-input-placeholder {
    color: #999;
}

.search-con .text:-moz-placeholder {
    color: #999;
}

.search-con .text::-moz-placeholder {
    color: #999;
}

.search_box .text:-ms-input-placeholder {
    color: #999;
}

.search-btn {
    width: 18px;
    height: 18px;
    background: url(../img/search.svg) no-repeat center/cover;
    z-index: 5;
    position: absolute;
    right: 15px;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}


.language-val {
    color: #333;
    font-size: 18px;
    transition: all .4s;
}

.search-opean {
    display: none;
}

.quxiao {
    color: #fff;
    width: 30px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    position: absolute;
    right: 3%;
    top: 50%;
    margin-top: -16px;
    display: none;
}

.header_r {
    min-width: 20.3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.is-scroll .header {
    background: #fff;
    box-shadow: 0 1px 2px #ddd;
}
.is-scroll .nav-yi{color: #333;}
.is-scroll .search-con{border: 1px solid #333;}
.is-scroll .language-val{
     color: #333;
}

.menu-handler {
    width: 30px;
    height: 32px;
    cursor: pointer;
    position: absolute;
    right: 3%;
    top: 50%;
    margin-top: -16px;
    transition: all 0s cubic-bezier(0.445, 0.145, 0.355, 1);
    -webkit-transition: all 0s cubic-bezier(0.445, 0.145, 0.355, 1);
    -moz-transition: all 0s cubic-bezier(0.445, 0.145, 0.355, 1);
    display: none;
}

.menu-handler .burger {
    height: 2px;
    background: #333;
    display: block;
    width: 20px;
    position: absolute;
    z-index: 5;
    left: 5px;
    transform-origin: center;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -o-transform-origin: center;
    -ms-transform-origin: center;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    top: 8px;
    transition: all .4s;
}

.menu-handler .burger-2 {
    top: 15px;
}

.menu-handler .burger-3 {
    top: 22px;
}

.menu-handler.active .burger-1 {
    top: 15px;
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

.menu-handler.active .burger-2 {
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    filter: alpha(opacity=0);
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
}

.menu-handler.active .burger-3 {
    top: 15px;
    -moz-transform: rotate(-225deg);
    -webkit-transform: rotate(-225deg);
    -o-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg);
}

/*header e*/
/*footer s*/
.footer {
    padding: 25px 0;
    background: #49505a;
}

.footer-page h5 {
    font-size: 14px;
    color: #C51C1F;
    margin-bottom: 20px;
}

.lx-page p {
    color: #fff;
    font-size: 12px;
}

.lx-page span {
    color: #fff;
    font-size: 12px;
}

.lx-page span {
    font-size: 10px;
}

.lx-bot {
    margin-top: 12px;
}

.footer-page1 {
    width: 61.5%;
}

.lx-page {
    width: 42%;
    margin-right: 2%;
}

.lx-page:last-child {
    margin-right: 0;
    width: 56%;
}

.lx-page:last-child .tec {
    display: none;
}

.tec a {
    color: #fff;
}

.qrcode {
    width: 80px;
    margin-top: 25px;
}


.lx-bot:last-child p {
    display: inline-block;
    margin-right: 20px;
}

.lx-bot:last-child p:nth-child(3) {
    margin-right: 0;
}

.footer-page2 {
    width: 33%;
}

.lyb-list {
    border: 1px solid #fff;
    position: relative;
    margin-bottom: 16px;
}

.lyb-list span {
    position: absolute;
    left: 5px;
    top: 0;
    font-size: 10px;
    line-height: 28px;
    color: #ddd;
}

.lyb-con {
    padding: 0 1em;
}

.lyb-con .text {
    display: block;
    height: 28px;
    line-height: 28px;
    font-size: 10px;
    width: 100%;
    background: none;
    color: #fff;
}

.tjly {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    line-height: 32px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    background: #C51C1F;
    text-align: center;
}

.lyb-tip p {
    margin-left: 96px;
    line-height: 32px;
    color: #fff;
    font-size: 10px;
}

.lyb-con textarea {
    display: block;
    color: #fff;
    font-size: 10px;
    width: 100%;
    resize: none;
    background: none;
    margin: 6px 0;
    height: 46px;
}

.return_top {
    position: absolute;
    z-index: 999;
    top: -110px;
    left: 100%;
    width: 58px;
    height: 58px;
    background: url("../images/top58.png") no-repeat center;
    background-size: cover;
    cursor: pointer;
}

.lyb-con .text::-webkit-input-placeholder {
    color: #fff;
}

.lyb-con .text:-moz-placeholder {
    color: #fff;
}

.lyb-con .text::-moz-placeholder {
    color: #fff;
}

.lyb-con .text:-ms-input-placeholder {
    color: #fff;
}

.lyb-con textarea::-webkit-input-placeholder {
    color: #fff;
}

.lyb-con textarea:-moz-placeholder {
    color: #fff;
}

.lyb-con textarea::-moz-placeholder {
    color: #fff;
}

.lyb-con textarea:-ms-input-placeholder {
    color: #fff;
}

.footer-gou {
    position: absolute;
    left: 30px;
    top: 4px;
    width: 24px;
    height: 24px;
    background: url(../images/gou.png) no-repeat center;
    background-size: cover;
    display: none;
}

/*footer e*/


/*index s*/
.swiper-container1 {
    height: 100%;
}

.footer-slide {
    height: auto !important;
}


.index-title h2 {
    font-size: 70px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 0 12px 10px rgba(25, 27, 35, .4);
}


.index-fixed {
    position: fixed;
    z-index: 99;
    right: 200px;
    bottom: 100px;
}

.index-fixed li {
    position: relative;
    width: 6px;
    height: 19px;
    margin-bottom: 10px;
    cursor: pointer;
}

.index-fixed li:last-child {
    margin-bottom: 0;
}

.index-fixed li p {
    transition: all .4s;
    color: #B5B5B5;
    position: absolute;
    right: 100%;
    top: 0;
    white-space: nowrap;
    margin-right: 6px;
    opacity: 0;
}

.index-fixed li .i {
    transition: all .4s;
    border-top: 2px solid #9DAC9F;
    width: 6px;
    position: absolute;
    right: 0;
    top: 50%;
}

.index-fixed li.active p {
    color: #fff;
    margin-right: 12px;
    opacity: 1;
}

.index-fixed li.active .i {
    border-color: #fff;
    width: 12px;
}

.index-fixed li:hover p {
    color: #fff;
}

.index-fixed li:hover .i {
    background: #fff;
}

.mouse {
    position: fixed;
    z-index: 20;
    right: 50px;
    bottom: 50px;
    width: 42px;
}

.mouse .i {
    width: 25px;
    height: 48px;
    border-radius: 25px;
    border: 1px solid #ddd;
    margin: 20px auto;
    position: relative;
}

.mouse p {
    color: #FBFCFB;
    font-size: 12px;
    white-space: nowrap;
}

.mouse .i div {
    position: absolute;
    left: 50%;
    height: 6px;
    top: 10px;
    border-right: 1px solid #fff;
    animation-name: drw;
    animation-delay: 0s;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

@keyframes drw {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/*index e*/


/*2.1思沃介绍 s*/
.ban-title h2 {
    font-weight: bold;
}

.ban-title h3 {
    font-weight: bold;
}

.gsjj-ban {
    text-align: center;
}

.gsjj-ban h2 {
    margin-bottom: 70px;
}

.gsjj-ban h3 {
    margin-bottom: 100px;
}

.title40 {
    margin-bottom: 30px;
}

.title40 h2 {
    font-size: 36px;
}

.jtjs-top {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

.jtjs-top p {
    font-size: 16px;
    color: #777;
}

.jtjs-bot p {
    margin-top: 15px;
    font-size: 16px;
    color: #777;
}

.ckxq {
    font-size: 24px;
    color: #C51C1F;
    display: inline-block;
    position: relative;
    padding-right: 24px;
}

.ckxq:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 12px;
    background: url("../images/dbx10.png") no-repeat center;
    background-size: cover;
    right: 0;
    top: 50%;
    margin-top: -6px;
}

.margin-b50 {
    margin-bottom: 50px;
}

.margin-b70 {
    margin-bottom: 70px;
}

/*.tmj li{float: left;width: 33.33%;}*/
.tmj h3 {
    text-align: center;
    line-height: 32px;
}

.tmj .swiper-slide1 h3 {
    background: url("../images/c1.jpg") no-repeat center;
    background-size: 100% 100%;
}

.tmj .swiper-slide2 h3 {
    background: url("../images/c2.jpg") no-repeat center;
    background-size: 100% 100%;
}

.tmj .swiper-slide3 h3 {
    background: url("../images/c3.jpg") no-repeat center;
    background-size: 100% 100%;
}

.tmj .swiper-slide .img100 {
    padding: 10px;
}

.tmj-bot {
    padding: 38px 45px;
    min-height: 274px;
    box-sizing: border-box;
}

.tmj-bot p {
    font-size: 12px;
    color: #b5b5b5;
    margin-bottom: 12px;
}

.tmj-bot p:nth-child(2) {
    width: 130px;
    max-width: 100%;
}

.tmj-box {
    padding: 40px 150px 104px;
}

.padding-t80 {
    padding-top: 80px;
}

.title30 {}

.title30 h3 {
    font-size: 30px;
}

.ppsp {
    height: 1080px;
}

.spBig {
    width: 1078px;
    max-width: 100%;
    margin: 0 auto;
}

.spBig .swiper-slide {}

.spBt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(0, 0, 0, .5);
}

.spBt p {
    color: #fff;
    margin: 0 25px;
    position: relative;
    padding-left: 15px;
}

.spBt p:before {
    content: '';
    width: 6px;
    height: 6px;
    left: 0;
    top: 9px;
    position: absolute;
    background: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.spBtn div {
    position: absolute;
    width: 52px;
    height: 48px;
    top: 50%;
    margin-top: -24px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .5);
    z-index: 9;
}

.spBtn1 {
    left: 60px;
}

.spBtn2 {
    right: 60px;
}

.spBtn div:hover {
    background-color: rgba(242, 114, 0, .8);
}

.spBtn div.swiper-button-disabled {
    display: none;
}

.ppsp-r {
    position: absolute;
    right: 0;
    width: 500px;
    height: 100%;
    top: 0;
    z-index: 9;
}

.ppsp-r:before {
    position: absolute;
    top: 0;
    left: 5px;
    background: #585c62;
    z-index: -1;
    right: 0;
    height: 100%;
    content: '';
}

.spSm {
    position: absolute;
    left: 0;
    width: 100%;
    top: 70px;
    bottom: 40px;
}

.spSm .img {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    top: 0;
}

.spSm .img .i {
    position: absolute;
    top: 0;
    height: 100%;
    right: 14px;
    left: 20px;
}

.spSm .img .i i {
    position: absolute;
    width: 48px;
    height: 48px;
    background: url("../images/play48.png") no-repeat center;
    background-size: cover;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px;
}

.spSm .swiper-container {
    height: 100%;
}

.spcon {
    position: absolute;
    width: 50%;
    box-sizing: border-box;
    top: 0;
    right: 0;
    height: 100%;
    padding: 10px 14px;
}

.spcon p {
    font-size: 12px;
    color: #fff;
    transition: all .4s;
}

.spSm .swiper-slide:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
    background: #C51C1F;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
}

.spSm .active-nav:after {
    display: block;
}

.spSm .swiper-slide {
    cursor: pointer;
}

.spBig .swiper-slide {
    cursor: pointer;
}

.swjs {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 35px;
    color: #fff;
    font-size: 16px;
}

.spBig .swiper-slide i {
    position: absolute;
    width: 85px;
    height: 85px;
    background: url("../images/play85.png") no-repeat center;
    background-size: cover;
    top: 50%;
    left: 50%;
    margin: -42px 0 0 -42px;
}

.sptc {
    position: fixed;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
}

.video_t {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 1200px;
    max-width: 90%;
}

.video_t a {
    position: absolute;
    width: 38px;
    height: 38px;
    right: -19px;
    top: -19px;
    z-index: 9;
}

.video_t a img {
    width: 100%;
    vertical-align: bottom;
}

.video_t video {
    width: 100%;
    vertical-align: bottom;
}

.spSm .swiper-slide.active-nav p {
    color: #C51C1F;
    font-size: 14px;
}

/*2.1思沃介绍 e*/

/*发展历程 s*/
.size60 {
    font-size: 60px;
}

.size80 {
    font-size: 80px;
}

.colorfff {
    color: #fff;
}

.his-ban h2 {
    margin: 30px 0;
}

.h700 {
    height: 700px;
}

.des16 p {
    color: #626262;
    font-size: 16px;
}

.lb-des {
    width: 858px;
    max-width: 100%;
}

.lb-des p {
    font-size: 18px;
    color: #fff;
}

.lb-top {
    margin-bottom: 30px;
}

.lb-top p {
    line-height: 60px;
    text-indent: 2em;
}

.text-right {
    text-align: right;
}

.lb-bot p {
    line-height: 48px;
}

.lb-bot p:last-child:before {
    width: 85px;
    border-bottom: 1px solid #fff;
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
    opacity: 0.7;
}


.his-con {
    margin-left: 140px;
    box-sizing: border-box;
    border-left: 2px solid #f9f9f9;
    padding-bottom: 100px;
    padding-left: 40px;
}

.margin-b100 {
    margin-bottom: 100px;
}

.his-con p {
    font-size: 18px;
    line-height: 40px;
    width: 800px;
    max-width: 100%;
}

.his li:last-child .his-con {
    padding-bottom: 0;
}

.his li:first-child .his-con {
    border-color: #ffc0c0;
    padding-bottom: 80px;
}

.his li:first-child {
    margin-bottom: 20px;
}

/*发展历程 e*/
/*荣誉愿景 s*/
.ry-ban .ban-title {
    display: flex;
    justify-content: space-between;
}

.des18 p {
    font-size: 18px;
    color: #626262;
    line-height: 1.8em;
}

.rj-page {
    margin-bottom: 140px;
}

.rj-page .des18 {
    width: 790px;
    max-width: 100%;
    margin: 0 auto;
}

.max100 img {
    height: auto !important;
    max-width: 100%;
    vertical-align: bottom;
}

.w1420 {
    width: 1420px;
    max-width: 92%;
    margin: 0 auto;
}

.title50 h2 {
    font-size: 50px;
}

.title50 {
    margin-bottom: 40px;
}

.zldes p {
    font-size: 24px;
    color: #fff;
    line-height: 1.8em;
}

.zl-con {
    width: 54%;
}

.title50-fff h2 {
    color: #fff;
}

.ry {
    font-size: 0;
}

.ry li {
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
    width: 12.75%;
    margin-right: 4.7%;
    margin-bottom: 4.7%;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
    cursor: pointer;
    transition: all .4s;
}

.ry li:nth-child(6n) {
    margin-right: 0;
}

.ry li:hover {
    box-shadow: 0 3px 12px 0 rgba(255, 0, 0, .16);
}

.fixed-style {
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.ry-pay {
    max-width: 92%;
    margin: 0 auto;
    width: 1000px;
}

.ry-pay .swiper-container {
    margin: 0 60px;
}

.ry-pay .img {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ry-pay .img img {
    max-width: 100%;
    max-height: 100%;
}

.rybtn div {
    width: 28px;
    height: 48px;
    position: absolute;
    top: 50%;
    margin-top: -24px;
    cursor: pointer;
    z-index: 9;
}

.rybtn div.swiper-button-disabled {
    cursor: default;
    opacity: 0.6;
}

.rybtn1 {
    background: url("../images/lll.png") no-repeat center;
    background-size: cover;
    left: 0;
}

.rybtn2 {
    background: url("../images/ddd.png") no-repeat center;
    background-size: cover;
    right: 0;
}

.ryclose {
    position: absolute;
    width: 48px;
    height: 48px;
    background: url("../images/gb128.png") no-repeat center;
    background-size: cover;
    right: -10px;
    top: -48px;
    cursor: pointer;
    filter: g
}

.page {
    padding: 0 40px;
    line-height: 70px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
    border-radius: 70px;
    margin: 50px auto 0;
    text-align: center;
    display: inline-block;
}

.pages {
    font-size: 20px;
    color: #dbdbdb;
    transition: all .4s;
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}

.pages.active {
    color: #C51C1F;
}

.pages:hover {
    color: #C51C1F;
}

.page-btn {
    display: inline-block;
    width: 12px;
    height: 10px;
    vertical-align: middle;
}

.page-left {
    background: url("../images/page-left.png") no-repeat center;
    background-size: cover;
    margin-right: 20px;
}

.page-right {
    background: url("../images/page-right.png") no-repeat center;
    background-size: cover;
    margin-left: 20px;
}

.page-first {
    width: 10px;
    height: 12px;
    background: url("../images/page-first.png") no-repeat center;
    background-size: cover;
    margin-right: 25px;
}

.page-last {
    width: 10px;
    height: 12px;
    background: url("../images/page-last.png") no-repeat center;
    background-size: cover;
    margin-left: 25px;
}

.page input {
    display: inline-block;
    border: 1px solid #DBDBDB;
    height: 21px;
    color: #DBDBDB;
    width: 30px;
    margin-left: 20px;
    text-align: center;
    vertical-align: middle;
    transition: all .4s;
}

.page input.active {
    color: #C51C1F;
}

/*荣誉愿景 e*/

/*产品中心-硬板贴膜机 s*/
.margin-b40 {
    margin-bottom: 40px;
}

.jides p {
    color: #B5B5B5;
    line-height: 42px;
}

.pro li {
    float: left;
    width: 49.5%;
    margin-right: 1%;
    margin-top: 1%;
    position: relative;
}

.pro li:nth-child(1) {
    margin-top: 0;
}

.pro li:nth-child(2) {
    margin-top: 0;
}

.pro li:nth-child(even) {
    margin-right: 0;
}

.pro-hide {
    background: url("../images/se.png") no-repeat center;
    background-size: cover;
    opacity: 0;
    transition: all .8s;
}

.pro-des {
    width: 490px;
    max-width: 92%;
    margin: 0 auto;
}

.pro-des h3 {
    font-size: 40px;
    color: #fff;
    text-align: center;
}

.pro-des p {
    font-size: 18px;
    color: #ddd;
    line-height: 2em;
    text-indent: 2em;
}

.pro li:hover .pro-hide {
    opacity: 1;
}

.mn-top {
    width: 92%;
    margin: 0 auto;
    text-align: center;
}

.mn-top p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.mn-top span {
    color: #fff;
    font-size: 18px;
}

.mn .swiper-container {
    overflow: visible;
}

.mn .swiper-container .swiper-slide a {
    opacity: 0.6;
    display: block;
    transition: all .4s;
}

.mn .swiper-container .swiper-slide-active a {
    opacity: 1;
}

.btn60 div {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: absolute;
    z-index: 9;
    transition: all .4s;
}

.btn601 {
    background: url("../images/left60.png") no-repeat center;
    background-size: cover;
}

.btn601:hover {
    background: url("../images/left60-1.png") no-repeat center;
    background-size: cover;
}

.btn602 {
    background: url("../images/right60.png") no-repeat center;
    background-size: cover;
}

.btn602:hover {
    background: url("../images/right60-1.png") no-repeat center;
    background-size: cover;
}

.mnBtn div {
    top: 40px;
    position: absolute;
}

.mnBtn .btn601 {
    left: 150px;
}

.mnBtn .btn602 {
    right: 150px;
}

.mndot {
    position: absolute;
    width: 100%;
    z-index: 9;
    bottom: 40px;
}

.mndot .swiper-pagination-bullet {
    width: 50px;
    height: 3px;
    border-radius: 0;
    opacity: 1;
    margin: 0 15px;
    background: #ddd;
}

.mndot .swiper-pagination-bullet-active {
    background: #fff;
}

/*产品中心-硬板贴膜机 e*/
/*产品中心 – 内页 s*/
.pro2 li {
    float: left;
    width: 41.66%;
    margin-right: 16.68%;
    margin-bottom: 74px;
    text-align: center;
}

.pro2 li:nth-child(even) {
    margin-right: 0;
}

.pro2 li p {
    font-size: 30px;
    margin-top: 30px;
    transition: all .4s;
}

.pro2 li:hover p {
    color: #C51C1F;
}

.pro2 li .img100 {
    overflow: visible;
}

/*产品中心 – 内页 e*/
/*产品中心-产品特性 s*/
.ny-nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 75px;
    z-index: 998;
    background: #fff;
    height: 75px;
    border-bottom: 1px solid #f1f1f1;
}

.ny-navs {
    height: 75px;
    background: #fff;
}

.body-top150 {
    padding-top: 150px;
}

.body-top150 .header {
    background: #fff;
}

.body-top150 .logo-fff {
    opacity: 0;
    filter: alpha(opacity=0);
}

.body-top150 .logo-color {
    opacity: 1;
    filter: alpha(opacity=100);
}

.body-top150 .nav-yi {
    color: #000;
}

.body-top150 .search-con {
    border-color: #b5b5b5;
}

.body-top150 .search-btn {
    background: url("../images/search-333.png") no-repeat center;
    background-size: cover;
}

.body-top150 .language-val {
    color: #000;
}

.body-top150 .search-con .text::-webkit-input-placeholder {
    color: #999;
}

.body-top150 .search-con .text:-moz-placeholder {
    color: #999;
}

.body-top150 .search-con .text::-moz-placeholder {
    color: #999;
}

.body-top150 .search_box .text:-ms-input-placeholder {
    color: #999;
}

.body-top150 .nav-yi:after {
    background: #C51C1F;
}

.body-top150 .menu-handler .burger {
    background: #000;
}

.body-top150 .quxiao {
    color: #000;
}


.body-top75 {
    padding-top: 150px;
}

.body-top75 .header {
    background: #fff;
}

.body-top75 .logo-fff {
    opacity: 0;
    filter: alpha(opacity=0);
}

.body-top75 .logo-color {
    opacity: 1;
    filter: alpha(opacity=100);
}

.body-top75 .nav-yi {
    color: #000;
}

.body-top75 .search-con {
    border-color: #b5b5b5;
}

.body-top75 .search-btn {
    background: url("../images/search-333.png") no-repeat center;
    background-size: cover;
}

.body-top75 .language-val {
    color: #000;
}

.body-top75 .search-con .text::-webkit-input-placeholder {
    color: #999;
}

.body-top75 .search-con .text:-moz-placeholder {
    color: #999;
}

.body-top75 .search-con .text::-moz-placeholder {
    color: #999;
}

.body-top75 .search_box .text:-ms-input-placeholder {
    color: #999;
}

.body-top75 .nav-yi:after {
    background: #C51C1F;
}

.body-top75 .menu-handler .burger {
    background: #000;
}

.body-top75 .quxiao {
    color: #000;
}

.ny-nav-con {
    text-align: center;
    margin: 0 80px;
}

.ny-nav-con a {
    display: inline-block;
    line-height: 75px;
    font-size: 20px;
    color: #ddd;
    margin: 0 50px;
    transition: all .4s;
}

.ny-nav-con a.active {
    color: #000;
}

.ny-nav-con a:hover {
    color: #000;
}

.back {
    position: absolute;
    width: 58px;
    height: 58px;
    background: url("../images/back58.png") no-repeat center;
    background-size: cover;
    left: 0;
    top: 50%;
    margin-top: -29px;
}

.tishi {
    font-size: 18px;
    color: #A2A2A2;
    padding: 30px 0 20px;
}

.tdms p {
    margin-top: 10px;
    color: #818181;
}

.jubu li {
    float: left;
    width: 49%;
    margin-right: 2%;
    position: relative;
    margin-bottom: 2%;
}

.jubu li:nth-child(1) {
    width: 32%;
}

.jubu li:nth-child(2) {
    width: 32%;
}

.jubu li:nth-child(3) {
    width: 32%;
    margin-right: 0;
}

.jubu li:nth-child(5) {
    margin-right: 0;
}

.jubu li:nth-child(7) {
    margin-right: 0;
}

.jubu li:nth-child(9) {
    margin-right: 0;
}

.jubu li:nth-child(11) {
    margin-right: 0;
}

.jubu-con {
    margin: 0 40px;
}

.jubu .position-full {
    background: url("../images/se2.png") no-repeat center;
    background-size: cover;
    transition: all .4s;
    opacity: 0;
}

.jubu li:hover .position-full {
    opacity: 1;
}

.jubu-con h3 {
    font-size: 24px;
    color: #fff;
}

.jubu-con p {
    color: #fff;
}

.jubu-con p span {
    font-family: "Microsoft YaHei", "PingFang SC" !important;
}

.margin-b20 {
    margin-bottom: 20px;
}

.play78 {
    width: 78px;
    height: 78px;
    background: url("../images/play85.png") no-repeat center;
    background-size: cover;
    display: inline-block;
}

.shipin {
    cursor: pointer;
}

.padding-b80 {
    padding-bottom: 80px;
}

/*产品中心-产品特性 e*/
/*产品中心-产品特性 – 1 s*/
.cpxgt p {
    font-size: 16px;
    margin-top: 20px;
    color: #818181;
    text-align: center;
}

.margin-b80 {
    margin-bottom: 80px;
}

.cpcs1 li {
    padding: 2px 0;
}

.cpcs1 li:nth-child(odd) {
    background: #b5bcc3;
}

.cpcs1 li:nth-child(even) {
    padding: 10px 0;
}

.cpcs-name {
    width: 48%;
    min-height: 28px;
}

.cpcs-con {
    width: 52%;
}

.cpcs1 p {
    font-size: 18px;
}

.cpcs-name p {
    width: 72px;
    margin: 0 auto;
    white-space: nowrap;
}

/*产品中心-产品特性 – 1 e*/
/*产品中心-产品特性 – 2 s*/
.cpcs2 {
    font-size: 0;
}

.cpcs2 li {
    width: 33.33%;
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
    text-align: center;
    margin-bottom: 50px;
}

.cpcs2 li img {
    max-width: 100%;
    width: 120px;
}

.cpcs2-con {
    margin: 0 1%;
}

.cpcs2-con h3 {
    font-size: 18px;
    margin: 13px 0;
}

.cpcs2-con p {
    font-size: 16px;
    color: #A6B0B0;
}

/*产品中心-产品特性 – 2 e*/
/*思沃服务-技术方案 s*/
.fuwu-ban {
    text-align: center;
}

.dz {
    width: 840px;
    max-width: 100%;
    margin: 0 auto;
}

.dz li {
    width: 33.33%;
    text-align: center;
    box-sizing: border-box;
    padding: 0 1%;
    float: left;
    margin-bottom: 62px;
}

.dz li img {
    width: 80px;
    max-width: 100%;
}

.dz li p {
    font-size: 16px;
    color: #818181;
    margin-top: 17px;
}

.margin-b160 {
    margin-bottom: 160px;
}

.dots div {
    background: #A6B0B0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin: 15px auto;
}

.dots div:nth-child(2) {
    background: #ff0000;
}

.dots div:nth-child(3) {
    background: #0b2338;
}

.xuqiu {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

.xuqiu-list {
    border: 1px solid #e7e7e7;
    position: relative;
    margin-bottom: 30px;
}

.xuqiu-list .text {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-indent: 10px;
}

.margin-b60 {
    margin-bottom: 60px;
}

.xing {
    position: absolute;
    top: 0;
    left: -17px;
    line-height: 52px;
    color: #C51C1F;
}

.textarea {
    padding: 3px 10px;
}

.textarea textarea {
    font-size: 14px;
    display: block;
    resize: none;
    height: 130px;
    width: 100%;
}

.tjxq {
    margin: 0 100px;
}

.tjxq-btn {
    display: block;
    line-height: 56px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: #C51C1F;
    border-radius: 10px;
}

.xuqiu-bot {
    padding: 20px 0;
}

.gou {
    width: 46px;
    height: 46px;
    background: url("../images/gou.png") no-repeat center;
    background-size: cover;
    top: 50%;
    left: 100%;
    display: none;
    margin: 0 auto;
}

.xuqiu-bot p {
    color: #a2a2a2;
    text-align: center;
    margin-top: 17px;
}

.scfj {
    position: absolute;
    left: 100%;
    bottom: 20px;
    width: 56px;
    text-align: center;
    cursor: pointer;
    margin-left: 40px;
    z-index: 4;
}

.scfj label {
    display: block;
    cursor: pointer;
}

.scfj img {
    width: 40px;
    vertical-align: bottom;
}

.scfj p {
    color: #a2a2a2;
    margin-top: 10px;
}

.scfj2 {
    background: #ddd;
    line-height: 32px;
    width: 70px;
    text-align: center;
    border-radius: 4px;
    position: absolute;
    left: 100%;
    margin-left: 40px;
    top: 50%;
    margin-top: -16px;
    cursor: pointer;
    transition: all .4s;
}

.scfj2:hover {
    background: #C51C1F;
    color: #fff;
}

.xuqiu-list-fj {
    display: none;
}

#file {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    z-index: -1;
}

/*思沃服务-技术方案 e*/
/*思沃服务-维修服务 s*/
.body-top75 {
    padding-top: 75px;
}

.w890 {
    width: 890px;
    max-width: 92%;
    margin: 0 auto;
}

.wx-code {
    width: 36%;
    text-align: center;
}

.wx {
    width: 50%;
}

.wx li {
    position: relative;
    margin-bottom: 70px;
}

.wx img {
    position: absolute;
    width: 60px;
    left: 0;
    top: 0;
}

.wx p {
    font-size: 24px;
    color: #0B2338;
    margin-left: 80px;
    line-height: 60px;
}

.wx-code p {
    font-size: 20px;
    color: #0B2338;
}

.wx-code .img100 {
    margin-bottom: 20px;
}

.wx-step {
    font-size: 0;
    text-align: center;
    border-top: 2px dashed #e9e9e9;
    margin-top: 42px;
    padding: 50px 0;
}

.wx-step li {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    margin: 0 50px;
}

.wx-step li img {
    width: 80px;
}

.wx-step li p {
    font-size: 16px;
    color: #0B2338;
    margin-top: 25px;
}

/*思沃服务-维修服务 e*/
/*思沃服务-设备服务查询 s*/
.sbcx {
    width: 600px;
    max-width: 100%;
    height: 600px;
    background: #fff;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 70px;
}

.sbcx-top {
    text-align: center;
}

.sbcx-dots span {
    display: inline-block;
    background: #A6B0B0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin: 0 7px;
}

.sbcx-dots span:nth-child(2) {
    background: #C51C1F;
}

.sbcx-dots span:nth-child(3) {
    background: #0B2338;
}

.sbcx-top h3 {
    font-size: 30px;
}

.sbbh-list {
    border-bottom: 1px solid #c0c0c0;
    position: relative;
    margin-bottom: 15px;
}

.sbbh-list .text {
    display: block;
    height: 38px;
    line-height: 38px;
    width: 100%;
}

.error-tip {
    position: absolute;
    bottom: 100%;
    width: 100%;
    left: 0;
    border-bottom: 2px solid #f2c0c0;
    color: #C51C1F;
    line-height: 38px;
}

.how {
    transition: all .4s;
}

.how:hover {
    color: #C51C1F;
}

.chaxun {
    display: block;
    margin: 60px auto 0;
    transition: all .4s;
    width: 164px;
    text-align: center;
    line-height: 45px;
    background: #A6B0B0;
    border-radius: 23px;
    color: #fff;
}

.chaxun:hover {
    background: #C51C1F;
}

/*思沃服务-设备服务查询 e*/
/*思沃服务-设备服务查询 –查询 s*/
.h58 {
    height: 58px;
}

.ckjx {
    padding-top: 30px;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

.jixing .img100 {
    width: 53.5%;
}

.jxcs {
    padding-top: 30px;
    width: 36%;
}

.jxcs li {
    position: relative;
    margin: 35px 0;
}

.jxcs li span {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    line-height: 1.6em;
}

.jxcs li p {
    font-size: 20px;
    margin-left: 160px;
}

/*思沃服务-设备服务查询 –查询 e*/
/*客户 s*/
.kehu-ban .ban-title {
    display: flex;
    justify-content: space-around;
    width: 880px;
    margin: 0 auto;
    max-width: 100%;
}

.hezuo .img {
    text-align: center;
}

.hezuo .img img {
    width: 400px;
    max-width: 100%;
}

.hezuo-bot {
    background: #2a70ad;
    padding: 60px 0;
}

li:nth-child(2) .hezuo-bot {
    background: #e46713;
}

li:nth-child(3) .hezuo-bot {
    background: #3f395d;
}

li:nth-child(4) .hezuo-bot {
    background: #023590;
}

.hezuo-des {
    width: 690px;
    margin: 0 auto;
    max-width: 92%;
}

.hezuo-des h3 {
    color: #fff;
    text-align: center;
}

.hezuo-des p {
    color: #fff;
    text-indent: 2em;
    font-size: 17px;
    line-height: 2em;
}

/*客户 e*/
/*新闻资讯 s*/
.qyxw {
    font-size: 0;
}

.qyxw li {
    width: 47.5%;
    display: inline-block;
    vertical-align: top;
    margin-right: 5%;
    margin-bottom: 5%;
    font-size: 14px;
    box-shadow: 0 3px 6px 0 #ddd;
}

.qyxw li:nth-child(even) {
    margin-right: 0;
}

.qyxw-bot {
    padding: 20px;
}

.qyxw-bot h3 {
    font-size: 20px;
    line-height: 1.5em;
    min-height: 3em;
    transition: all .4s;
}

.qyxw-bot p {
    font-size: 16px;
    color: #dbdbdb;
}

.qyxw li:hover h3 {
    color: #C51C1F;
}

.new-mid {
    position: relative;
    z-index: 9;
}

.new-date {
    margin-top: 6px;
}

.new-date,
.new-search,
.new-date img,
.dates {
    display: inline-block;
    vertical-align: middle;
}

.new-date img {
    margin-right: 7px;
    width: 30px;
}

.dates {
    margin-right: 20px;
    position: relative;
    padding-right: 25px;
    cursor: pointer;
    z-index: 9;
}

.nian {
    position: absolute;
    line-height: 30px;
    right: 0;
    top: 0;
    font-size: 20px;
    color: #818181;
}

.dateSelect {
    position: relative;
}

.dates-val {
    line-height: 30px;
    height: 30px;
    font-size: 20px;
    padding: 0 10px;
    position: relative;
    z-index: 9;
    transition: all .4s;
    color: #C51C1F;
}

.dates-val:before {
    height: 3px;
    background: #fff;
    left: 0;
    bottom: 0;
    position: absolute;
    content: '';
    width: 100%;
}

.dates-list {
    position: absolute;
    background: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 100%;
    left: 0;
    padding: 9px 0;
    max-height: 300px;
    overflow: auto;
    display: none;
}

.dates-list a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #DBDBDB;
    line-height: 25px;
    transition: all .4s;
}

.dates-list a:hover {
    color: #C51C1F;
}

.dates.active .dateSelect {
    box-shadow: 0 3px 7px 0 rgba(184, 184, 184, 0.5);
}

.dates.active .dates-list {
    box-shadow: 0 3px 7px 0 rgba(184, 184, 184, 0.5);
}

.dates:hover .dates-val {
    color: #C51C1F;
}

.dates.active .dates-val {
    color: #C51C1F;
}

.scrollBar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scrollBar::-webkit-scrollbar-thumb:hover {
    border: 1px solid #636363;
    background-color: #929292;
}

.scrollBar::-webkit-scrollbar-thumb {
    background-color: #cfcfd2;
    border-radius: 8px;
    background-clip: padding-box;
    min-height: 28px;
}

.scrollBar::-webkit-scrollbar-track-piece {
    background: #f3f3f3;
}

.new-search .text {
    height: 40px;
    line-height: 40px;
    text-indent: 1em;
    display: block;
    width: 100%;
    font-size: 16px;
    color: #C51C1F;
}

.new-search-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -15px;
    background: url("../images/search2.png") no-repeat center;
    background-size: cover;
    transition: all .4s;
}

.new-search-btn:hover {
    background: url("../images/search2-1.png") no-repeat center;
    background-size: cover;
}

.new-search {
    padding-right: 50px;
}

.new-search-con {
    width: 170px;
    border: 1px solid #DBDBDB;
}

/*新闻资讯 e*/

/*业内新闻 s*/
.ynxw li {
    position: relative;
}

.ynxw .qyxw-bot {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    box-sizing: border-box;
}

.ynxw .qyxw-bot h3 {
    color: #fff;
}

.ynxw .qyxw-bot p {
    color: #DBDBDB;
}

/*业内新闻 e*/
/*展会新闻s*/
.zhxw li {
    width: 100%;
    margin-bottom: 70px;
}

.zhxw .qyxw-bot {
    padding: 35px 20px 28px;
}

.zhxw .qyxw-bot h3 {
    min-height: 4.5em;
}

/*展会新闻e*/
/*新闻详情 s*/
.xwxq-date {
    font-size: 20px;
    color: #DBDBDB;
    margin-top: 50px;
}

.margin-b90 {
    margin-bottom: 90px;
}

.xwxq-top {
    border-bottom: 1px solid #DBDBDB;
    padding-bottom: 32px;
}

.fhsyj {
    display: inline-block;
    width: 140px;
    line-height: 36px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 16px;
    border-radius: 36px;
}

.share span {
    display: inline-block;
    vertical-align: middle;
    line-height: 30px;
    font-size: 16px;
    color: #818181;
}

.share a {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.share a:last-child {
    margin-right: 0;
}

.share .s-wx {
    background: url("../images/s-wx.png") no-repeat center;
    background-size: cover;
}

.share .s-qq {
    background: url("../images/s-qq.png") no-repeat center;
    background-size: cover;
}

.share .s-wb {
    background: url("../images/s-wb.png") no-repeat center;
    background-size: cover;
}

.ermbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.ermwarp {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -131px 0 0 -139px;
    padding: 10px;
    background: #fff;
    width: 242px;
    height: 277px;
    border: 1px solid #d8d8d8;
}

#erm {
    width: 185px;
    height: 185px;
    margin: 15px auto;
}

.erlgh span {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    line-height: 16px;
    height: 16px;
    position: relative;
    color: #000;
}

.ermwarp_close {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 0;
    color: #999;
    text-decoration: none;
    font-size: 16px;
}

.erlgh_footer {
    font-size: 12px;
    text-align: left;
    line-height: 22px;
    color: #666;
}

.xqxq-logo {
    width: 180px;
    position: absolute;
    left: 50%;
    bottom: -30px;
    margin-left: -90px;
}

.edit p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.edit img {
    display: block;
    margin: 0 auto !important;
    max-width: 100%;
    height: auto !important;
    vertical-align: bottom;
}

.xwxq-bot {
    margin-bottom: 38px;
}

.edit video {
    width: 882px !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto !important;
    float: none !important;
}

/*新闻详情 e*/
/*关于我们 s*/
.zindex5 {
    z-index: 5;
}

.lyb .xuqiu-list {
    margin-bottom: 15px;
}

.lyb .textarea textarea {
    height: 40px;
}

.lyb .xuqiu-list .text {
    height: 30px;
    line-height: 30px;
}

.lyb .xing {
    line-height: 32px;
}

.lyb .xuqiu-bot {
    padding: 0;
}

.lyb .tjxq-btn {
    height: 36px;
    line-height: 36px;
    border-radius: 36px;
    font-size: 14px;
    margin-top: 35px;
}

.lyb {
    width: 380px;
}

.lyb .gou {
    position: static;
    width: 32px;
    height: 32px;
    margin: 22px auto 0;
}

.lyb .xuqiu-bot p {
    font-size: 12px;
    margin-top: 0;
}

.sbcx2 {
    padding-top: 40px;
}

.title30-line h2 {
    font-size: 30px;
    display: inline-block;
    position: relative;
}

.title30-line h2:before {
    content: '';
    position: absolute;
    width: 100px;
    top: 50%;
    border-top: 1px solid #dbdbdb;
    right: 100%;
    margin-right: 30px;
}

.title30-line h2:after {
    content: '';
    position: absolute;
    width: 100px;
    top: 50%;
    border-top: 1px solid #dbdbdb;
    left: 100%;
    margin-left: 30px;
}

.map-r {
    width: 52.5%;
}

.map-logo {
    width: 47.5%;
    text-align: center;
}

.mapcon {
    height: 393px;
    background: #ddd;
}

.map-logo img {
    width: 360px;
    max-width: 90%;
}

.map-list li {
    padding: 75px 0;
}

.mapcon {
    margin-bottom: 45px;
}

.map-ms {
    position: relative;
    padding-left: 40px;
    margin-top: 15px;
    line-height: 24px;
}

.map-ms img {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
}

.map-ms h5 {
    font-size: 18px;
}

.map-ms span {
    color: #626262;
    display: inline-block;
    margin-right: 33px;
}

.map-ms span:last-child {
    margin-right: 0;
}

.map-ms p {
    color: #626262;
}

.w94 {
    width: 94%;
    margin: 0 auto;
}

.w94 .w1200 {
    max-width: 100%;
}

.map-a {
    border-bottom: 1px dashed #ededed;
}

/*关于我们 e*/

/*思沃服务-解决办法 s*/
.fa-ban .ban-title {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.fa-ban .ban-title h2 {
    line-height: 1.5em;
}

.fa1 {
    height: 400px;
}

.fa1 h2 {
    font-size: 50px;
    color: #fff;
}

.fangan li {
    float: left;
    width: 49%;
    margin-right: 2%;
    margin-top: 2%;
    position: relative;
}

.fangan li:nth-child(even) {
    margin-right: 0;
}

.fa-hide {
    text-align: center;
}

.fa-hide-bg {
    background: url("../images/se3.png") no-repeat center;
    background-size: cover;
    transition: all .4s;
    opacity: 0;
}

.fa-hide h3 {
    font-size: 40px;
    color: #fff;
}

.fangan li:hover .fa-hide-bg {
    opacity: 1;
}

/*思沃服务-解决办法 e*/


.faxq-list li {
    background: #fff;
    margin-bottom: 45px;
    transition: all .4s;
}

.faxq-list li .img100 {
    box-sizing: border-box;
    padding: 0 50px;
    width: 49%;
}

.faxq-list li:nth-child(odd) .img100 {
    float: left;
}

.faxq-list li:nth-child(odd) .faxq-con {
    float: right;
}

.faxq-list li:nth-child(even) .img100 {
    float: right;
}

.faxq-list li:nth-child(even) .faxq-con {
    float: left;
}

.faxq-con {
    padding: 80px;
    box-sizing: border-box;
    width: 51%;
}

.faxq-des {
    position: relative;
}

.faxq-des:after {
    position: absolute;
    width: 3px;
    height: 26px;
    top: 2px;
    background: #ff0000;
    content: '';
}

.faxq-list li:nth-child(odd) .faxq-des:after {
    right: -80px;
}

.faxq-list li:nth-child(even) .faxq-des:after {
    left: -80px;
}

.faxq-des h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    transition: all .4s;
}

.faxq-des p {
    color: #666;
    font-size: 16px;
}

.faxq-des {
    margin-bottom: 20px;
    min-height: 240px;
}

.faxq-bot h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.faxq-bot span {
    font-size: 16px;
    color: #666666;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.faxq-list li:hover {
    box-shadow: 0 0 20px #ddd;
}

.faxq-list li:hover h3 {
    color: #C51C1F;
}

.big-show {
    display: block;
}

.sm-show {
    display: none;
}

.tmjdot {
    width: 100%;
    text-align: center;
}

.tmjdot .swiper-pagination-bullet {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 0;
    margin: 0 5px;
}

.ljxq {
    display: block;
    width: 134px;
    line-height: 40px;
    margin: 35px auto 0;
    background: #000000;
    color: #fff;
    font-size: 16px;
    transition: all .4s;
}

.ljxq:hover {
    background: #C51C1F;
}

.ss-a {
    padding: 60px 0;
}

.ss-a h3 {
    font-family: "dincondregular";
    letter-spacing: 4px;
    text-indent: 4px;
}

.ss-a p {
    font-size: 22px;
}

.ssbox {
    width: 600px;
    margin: 0 auto;
    max-width: 94%;
}

.ssingput {
    border-radius: 6px;
    overflow: hidden;
    margin-right: 100px;
}

.ssingput input {
    display: block;
    width: 100%;
    height: 54px;
    text-indent: 1em;
    font-size: 16px;
}

.sbmint {
    position: absolute;
    right: 0;
    width: 92px;
    height: 100%;
    top: 0;
    background: #c52724;
    line-height: 54px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
}

.ssingput:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 63px;
    background-image: url("../images/fdj.png");
    left: 0;
    top: 0;
}

.ssdh a {
    float: left;
    line-height: 54px;
    position: relative;
    font-size: 13px;
    color: #a2a2a2;
    margin-right: 55px;
}

.ssdh a:after {
    position: absolute;
    width: 100%;
    bottom: 0;
    border-top: 2px solid #c52724;
    content: '';
    left: 0;
    display: none;
}

.result {
    margin-bottom: 35px;
}

.ssdh a.active {
    color: #c52724;
}

.ssdh a.active:after {
    display: block;
}

.ssdh a:hover {
    color: #c52724;
}

.ssdh a:hover:after {
    display: block;
}

.ssjecon {
    padding: 40px 0 80px;
}

.conrt {
    padding: 40px;
}

.result {
    font-size: 18px;
    color: #aeaeae;
}

.result span {
    color: #c52724;
}

.sslb-tabs {
    display: none;
}

.sslb-tabs.active {
    display: block;
}

.size30 {
    font-size: 30px;
}

.size36 {
    font-size: 36px;
}

.size38 {
    font-size: 38px;
}

.index-out .swiper-slide {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.index-out .swiper-slide.active {
    z-index: 5 !important;
}

.index-out .swiper-slide.prev {
    z-index: 99;
}

.index-out .swiper-slide:nth-child(1).prev {
    animation: toup 2s cubic-bezier(0.89, 0.04, 0.21, 0.93) both;
}

@keyframes toup {
    0% {
        top: 0;
        transform: scale(1);
    }

    30% {
        transform: scale(0.75);
    }

    60% {
        transform: scale(0.75);
    }

    80% {
        top: -100%;
    }

    100% {
        top: -100%;
    }
}

.index-out .swiper-slide:nth-child(2).prev {
    animation: toleft 1s cubic-bezier(0.89, 0.04, 0.21, 0.93) both;
}

@keyframes toleft {
    0% {
        top: 0;
    }

    100% {
        left: -100%;
    }
}

.index-out .swiper-slide:nth-child(3).prev {
    animation: tobottom 2s cubic-bezier(0.89, 0.04, 0.21, 0.93) both;
}

@keyframes tobottom {
    0% {
        top: 0;
        transform: scale(1);
    }

    30% {
        transform: scale(0.75);
    }

    60% {
        transform: scale(0.75);
    }

    80% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

.index-out .swiper-slide:nth-child(4).prev {
    animation: toleft 1s cubic-bezier(0.89, 0.04, 0.21, 0.93) both;
}

.index-out .swiper-slide:nth-child(5).prev {
    animation: tobottom 2s cubic-bezier(0.89, 0.04, 0.21, 0.93) both;
}

.sptbn {
    cursor: pointer;
}

.sptbn .i1 {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    top: 0;
    left: 0;
}

.sptbn .i2 {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    background-image: url("../images/play.png");
    top: 50%;
    left: 50%;
    margin: -32px 0 0 -32px;
}

.jiguang {
    width: 940px;
    margin: 0 auto;
    max-width: 100%;
}

.jiguang-con {
    margin: 42px;
    background: #e8e8e8;
    border-radius: 30px;
    overflow: hidden;
}

.jiguang-bot th {
    background: #0c2438;
    height: 36px;
    line-height: 36px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    padding-left: 20px;
}

.jiguang-bot td {
    border-right: 1px dashed #a3a3a3;
    padding: 0 20px;
    height: 40px;
}

.jiguang-bot thead {
    margin-bottom: 15px;
}





.maodian {
    position: absolute;
    top: -75px;
    left: 0;
}










.imgscale .img100 {
    overflow: hidden;
}

.imgscale .img100 img {
    transition: all .4s;
}

.imgscale:hover .img100 img {
    transform: scale(1.1);
}

.background-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.index-title {
    animation-delay: 1s !important;
}

.index-title p,
.dots div:nth-child(2) {
    animation-delay: 300ms !important;
}

.dots div:nth-child(3) {
    animation-delay: 600ms !important;
}

.slideUp,
.swiper-slide-active .index-title h2,
.swiper-slide-active .index-title p,
.active .index-title {
    animation: slideUp 1s both;
    -webkit-animation: slideUp 1s both;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(60px);
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.slideLeft {
    animation: slideLeft 1s both;
    -webkit-animation: slideLeft 1s both;
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-60px);
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.slideRight {
    animation: slideRight 1s both;
    -webkit-animation: slideRight 1s both;
}

@keyframes slideRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(60px);
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.tobig {
    animation: tobig 1s both;
    -webkit-animation: tobig 1s both;
}

@keyframes tobig {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}



.position-full_advice{
    display: flex;
    align-items: center;

    
}
.index_line{
    margin: 28px 0 22px;
}
.index_line_item{
    height: 6px;
    background: #D1151C;
}
.index_line_item:nth-child(1){
    width: 44px;
}
.index_line_item:nth-child(2){
    width: 6px;
    margin-left: 5px;
}
.index_title_tit{
    text-shadow: 0 12px 10px rgba(25, 27, 35, .4);
}
.index_title_desc{
    color: rgba(255, 255, 255, .6);
    margin-top: 15px;
    letter-spacing: 1px;
    color: #fff; /*设置文字颜色*/
    text-shadow: 0 12px 10px rgba(25, 27, 35, .4);/*添加字体文字的阴影*/
}
.index_title_con {
    margin-top: 26px;
    text-shadow: 0 12px 10px rgba(25, 27, 35, .4);
}

.index-title_one{
    max-width: 670px;
    margin-left: auto;
}
.index-title_two{
    max-width: 700px;
    margin-left: 5.15%;
    box-sizing: border-box;
}
.index-title_two .index_title_desc{
    padding-right: 16%;
    box-sizing: border-box;


    -moz-transform: matrix( 0.99999972592804,0.00074036737273,-0.00074036737273,0.99999972592804,0,0);
    -webkit-transform: matrix( 0.99999972592804,0.00074036737273,-0.00074036737273,0.99999972592804,0,0);
    -ms-transform: matrix( 0.99999972592804,0.00074036737273,-0.00074036737273,0.99999972592804,0,0);
      
}


.index-title_three{
    max-width: 640px;
    margin-left: 7.5%;
}
.index-title_four{
    max-width: 640px;
    margin-left: 7.5%;
}

@media (max-width:1440px){
	.header-con {
        width: 50%;
    }
}
@media (max-width: 1366px){
    .index-title h2 {
        font-size: 64px;
    }
}
@media (max-width: 1280px){
    .header-con {
        width: 50%;
    }
    .nav-yi{
        font-size: 16px;
    }
    .language-val{
        font-size: 16px;
    }
    .search-con{
        width: 158px;
        height: 36px;
    }
    .index-title h2 {
        font-size: 54px;
    }
}
@media (max-width: 1200px){
    .header{
        display: none;
    }

    .index-title_one {
        max-width: 470px;
    }
}
@media (max-width: 768px){
    .index-title h2 {
        font-size: 26px;
    }
    .index-title_three {
        max-width: 80%;
        margin-left: 10%;
    }
    .index-title_four {
        max-width: 80%;
        margin-left: 10%;
    }
    .index-title_two {
        max-width: 80%;
        margin-left: 10%;
    }
    .index_title_con{
        line-height: 1.72;
    }
    .index_title_con{
        display: none;
    }
    .index-title_one {
        max-width: 80%;
        margin-left: 10%;
    }
    .sm-show {
        display: block;
    }
    .big-show {
        display: none;
    }
    .mouse{
        bottom: 80px;
    }
}