﻿* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.clr {
    clear: both;
}

body {
    font-size: 16px;
    font-family: 微软雅黑, Microsoft YaHei;
    min-width: 1360px;
}

.container {
    width: 1300px;
    margin: auto;
}

header {
    width: 100%;
}

.head-left {
    float: left;
    display: table;
    padding: 13px 0;
    margin-left: 30px;
}

.logo-img {
    display: table-cell;
    vertical-align: middle;
    height: 77px;
}

.logo-img img {
    height: 100%;
}

.logo-title {
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;
    padding-left: 20px;
}

.logo-title strong {
    font-size: 18px;
}

.logo-title p {
    font-size: 16px;
}

.head-right {
    float: right;
    margin-right: 50px;
    padding: 25px 0;
    display: table;
    position: relative;
}

.right-icon {
    display: inline-block;
    vertical-align: middle;
    padding-right: 20px;
}

.head-tel {
    display: inline-block;
    vertical-align: middle;
    padding-left: 48px;
    background-image: url(../images/tel.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 38px;
}

.head-tel strong {
    display: block;
    color: #02B2B5;
    font-size: 24px;
}

.fixed-header {
    position: fixed !important;
    top: 0;
    z-index: 999;

    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;

    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;

    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;

    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    /*动画播放次数*/

}

.top-menu {
    width: 100%;
    min-width: 1300px;
    background-color: #02B2B5;
    text-align: center;
    position: relative;
}

.top-menu>ul {
    display: inline-block;
}

.top-menu>ul>li {
    display: block;
    float: left;
    position: relative;
}

.top-menu>ul>li>a {
    display: block;
    color: #fff;
    line-height: 20px;
    padding: 25px 50px 25px 38px;
    position: relative;
}

.top-menu>ul>li:first-child>a {
    padding: 25px 38px;
}

.triangle::after {
    content: '';
    position: absolute;
    top: 33px;
    right: 36px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5.5px 0 5.5px;
    border-color: #ffffff transparent transparent transparent;
}

.top-on {
    z-index: 99;
    background-color: #05c5c8;
    color: #fff !important;
}

.s-on {
    background-color: #05c5c8;
    color: #fff !important;
}

.top-on::after {
    content: '';
    position: absolute;
    top: 33px;
    right: 36px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5.5px 0 5.5px;
    border-color: #fff transparent transparent transparent;
}

.top-menu>ul>li:hover>a {
    color: #fff;
    z-index: 99;
    background-color: #05c5c8;
}

.top-menu>ul>li:hover>.triangle::after {
    border-color: #ffffff transparent transparent transparent;
}

.top-menu>ul>li:hover>ul {
    /* display: block; */
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.top-menu ul li ul {
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 70px;
    left: 0px;
    z-index: 99;
    width: 100%;
    border-top: 2px solid #05c5c8;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.top-menu ul li ul li a {
    display: block;
    width: 100%;
    background-color: #05c5c8;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    padding: 15px 0px;
}

.top-menu ul li ul li a:hover {
    background-color: #02B2B5;
    color: #fff;
}

.menu-icon {
    width: 50px;
    height: 23px;
    border-right: 1px solid #cbcbcb;
    float: left;
    overflow: hidden;
    cursor: pointer;
}

.menu-icon a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center center;
    /* background-size: 100% 100%; */
}

/* .menu-icon:hover{
    background-color: #02B2B5;
} */
/* .menu-icon:hover a{
    -webkit-filter: drop-shadow(32px 0 0 #02B2B5);
    filter: drop-shadow(32px 0 0 #02B2B5);
    left: -32px;
} */

/* banner */
.banner {
    width: 100%;
    position: relative;
}

.scroll-btn {
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: 40px;
    width: 30px;
    height: 70px;
    cursor: pointer;
    display: block;
    z-index: 20;
    animation: fadeInDown 2s infinite;
    -moz-animation: fadeInDown 2s infinite;
    -ms-animation: fadeInDown 2s infinite;
    -o-animation: fadeInDown 2s infinite;
    -webkit-animation: fadeInDown 2s infinite;
    background: url(../images/scroll-icon.png) center center no-repeat;
}

/* fullSlide */
.fullSlide {
    width: 100%;
    position: relative;
    height: 680px;
    background: #fff;
}

.fullSlide .bd {
    margin: 0 auto;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.fullSlide .bd ul {
    width: 100% !important;
}

.fullSlide .bd li {
    width: 100% !important;
    height: 680px;
    overflow: hidden;
    text-align: center;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.fullSlide .hd {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 25px;
    left: 0;
    height: 30px;
    line-height: 30px;
}

.fullSlide .hd ul {
    text-align: center;
}

.fullSlide .hd ul li {
    cursor: pointer;
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 15px;
    height: 15px;
    margin: 5px;
    border-radius: 50%;
    border: 1px solid #000;
    overflow: hidden;
    background: #000;
    /* filter: alpha(opacity=50);
    opacity: 0.5; */
    line-height: 999px;
}

.fullSlide .hd ul .on {
    background: transparent;
}

.fullSlide .prev {
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -30px;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: url(../images/arrow-left.png) no-repeat center;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: 0.5;
    display: none;
}

.fullSlide .next {
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -30px;
    left: auto;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: url(../images/arrow-right.png) no-repeat center;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: 0.5;
    display: none;
}

.fullSlide .prev:hover {
    filter: alpha(opacity=80);
    opacity: 0.8;
    transition: all 0.5s ease-in-out;
}

.fullSlide .next:hover {
    transition: all 0.5s ease-in-out;
    filter: alpha(opacity=80);
    opacity: 0.8;
}

/*end*/

.can-do {
    text-align: center;

    position: relative;
    overflow: hidden;
}

.do-title {
    text-align: center;
    padding-top: 50px;
}

.do-title h2 {
    color: #333;
    font-size: 36px;
    padding-top: 10px;
}

.do-title h2 span {
    color: #02B2B5;
}

.do-title img {
    margin-top: 10px;
}

.do-title p {
    padding-top: 10px;
    color: #333
}

.do-list {
    text-align: center;
    padding-top: 60px;
}

.do-list ul {
    display: inline-block;
}

.do-list ul li {
    width: 625px;
    height: 367px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    float: left;
    margin-right: 50px;
}

.do-list ul li:nth-child(2) {
    margin-right: 0px;
}

.do-list ul li .do-li {
    display: block;
    float: right;
    width: 50%;
    height: 100%;
    color: #4c4c4c;
    position: relative;
    text-align: left;
    padding-right: 60px;
}

.do-list-title {
    padding-top: 55px;
}

.do-list-title h3 {
    font-size: 33px;
    color: #02B2B5;
    /* font-weight: normal; */
}

.do-list-title p {
    font-size: 16px;
    color: #4c4c4c;
    font-weight: bold;
    padding: 15px 0;
}

.do-list-title b {
    display: block;
    width: 100%;
    border-bottom: 1px dashed #cbcbcb;
    margin: 0 auto;
}

.do-list-text {
    font-size: 14px;
    color: #000;
    line-height: 24px;
    padding: 20px 0px;
}

.do-list-more {
    width: 47px;
    height: 47px;
    background-image: url(../images/arrow.png);
    background-size: 100% 100%;
    position: absolute;
    bottom: 30px;
    right: 60px;
    transition: all 0.5s ease-in-out;
}


.main-about {
    width: 100%;
    height: 590px;
    background-image: url(../images/gsjj.jpg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.about-left {
    width: 1300px;
    margin: 0 auto;
}

.about-right {
    width: 610px;
    height: 590px;
    float: left;
}

.about-title {
    padding-top: 70px;
    padding-left: 15px;
    position: relative;
}

.about-title::before {
    content: '';
    width: 5px;
    height: 77px;
    background-color: #02B2B5;
    position: absolute;
    left: 0;
    top: 70px;
}

.about-title strong {
    display: block;
    color: #fff;
    font-size: 36px;
    line-height: 32px;
}

.about-title h3 {
    color: #fff;
    font-size: 36px;
}

.about-title h3 span {
    color: #02B2B5;
}

.about-right p {
    width: 100%;
    /* height: 160px; */
    color: #fff;
    font-size: 15px;
    line-height: 28px;
    padding-top: 40px;
}

.about-menu {
    padding-top: 60px;
}

.about-menu ul li {
    float: left;
    display: block;
}

.about-menu ul li a {
    display: block;
    width: 132px;
    height: 42px;
    margin-right: 2px;
    background-color: #052b62;
    color: #fff;
    line-height: 42px;
    text-align: center;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

.about-menu ul li a:hover {
    background-color: #02B2B5;
    color: #02B2B5;
}

.about-menu ul li:first-child a {
    background-color: #02B2B5;
    color: #02B2B5;
}

.main-product {
    padding: 75px 0;
    width: 1300px;
    margin: 0 auto;
}

.main-product ul {
    width: 100%;
    position: relative;
    height: 750px;
}

.main-product ul li {
    /* float: left; */
    display: block;
    height: auto;
    position: absolute;
}

.main-product ul li:nth-child(3n+1) {
    width: 400px;
    left: 0;
}

.main-product ul li:nth-child(3n+2) {
    width: 400px;
    left: 435px;
}

.main-product ul li:nth-child(3n+3) {
    width: 430px;
    right: 0;
}

.main-product ul li:nth-child(1) {
    top: 0;
    height: 200px;
    background-color: #02B2B5;
}

.pro-first-title {
    color: #fff;
    border: 1px solid #fff;
    width: 260px;
    height: 65px;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
}

.pro-first-title strong {
    display: block;
    width: 150px;
    background-color: #02B2B5;
    font-size: 30px;
    line-height: 30px;
    margin: 0 auto;
    margin-top: -15px;
}

.pro-first-title h4 {
    font-weight: normal;
    padding-top: 10px;
}

.main-product ul li:nth-child(1) p {
    color: #fff;
    font-size: 13px;
    padding: 20px 30px 0;
    text-align: center;
    line-height: 24px;
}

.main-product ul li:nth-child(2) {
    top: 0;
    height: 360px;
}

.main-product ul li:nth-child(3) {
    top: 0;
    height: 495px;
}

.main-product ul li:nth-child(4) {
    bottom: 0;
    height: 520px;
}

.main-product ul li:nth-child(5) {
    bottom: 0;
    height: 360px;
}

.main-product ul li:nth-child(6) {
    bottom: 0;
    height: 220px;
    background-image: url(../images/product-last-bg.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pro-last-title {
    width: 300px;
    height: 40px;
    background-color: #02B2B5;
    color: #fff;
    line-height: 40px;
    text-align: center;
    margin: 0 auto;
    margin-top: 65px;
}

.pro-last-more {
    width: 150px;
    height: 45px;
    display: block;
    color: #f1f1f1;
    border: 1px solid #b8b8b8;
    text-align: center;
    line-height: 43px;
    margin: 0 auto;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}

.pro-last-more:hover {
    background-color: #fff;
    color: #02B2B5;
}

.pro-item-box {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.pro-item-img {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
}

.pro-item-img img {
    max-width: 100%;
}

.pro-item-title {
    padding-left: 30px;
    padding-top: 35px;
}

.pro-item-title strong {
    font-size: 24px;
    color: #333333;
}

.pro-item-title h4 {
    font-size: 16px;
    color: #333333;
    padding-top: 10px;
    font-weight: normal;
}

.main-product ul li:hover .pro-item-box .pro-bg {
    opacity: 1;
}

.pro-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.pro-bg .pro-item-more {
    width: 120px;
    height: 40px;
    color: #fff;
    display: block;
    border: 1px solid #fff;
    text-align: center;
    line-height: 38px;
    margin: 0 auto;
    margin-top: 48%;
}


.main-case {
    background-color: #f9f9f9;
    padding-bottom: 20px;
}


.yuzhong {
    background-image: url(../images/yybg.jpg);
    height: 650px;
    background-position: center;
    background-attachment: fixed;
}

.case-title {
    width: 320px;
    height: 320px;
    background-color: rgba(255, 255, 255, .8);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#c8ffffff, endcolorstr=#c8ffffff);
    text-align: center;
    border-radius: 50%;
    padding: 90px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.case-title::before{
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 340px;
    height: 340px;
    border: 10px solid rgba(255, 255, 255, .3);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#4cffffff, endcolorstr=#4cffffff);
    border-radius: 50%;
    box-sizing: border-box;
}

.case_list {
    width: 1300px;
    height: 650px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

/* .case_list img {
    margin-top: 75px;
} */

.case_list ul li {
    padding: 20px;
    display: block;
    position: absolute;
    width: 410px;
    /* background-color: rgb(255, 255, 255, .2); */
    border-radius: 20px;
    text-align: left;
}

.case_list ul li:nth-child(1) {
    left: 60px;
    top: 50px;
}

.case_list ul li:nth-child(2) {
    left: 0px;
    top: 250px;
}

.case_list ul li:nth-child(3) {
    left: 100px;
    top: 470px;
}

.case_list ul li:nth-child(4) {
    right: 60px;
    top: 50px;
}

.case_list ul li:nth-child(5) {
    right: 0px;
    top: 180px;
}

.case_list ul li:nth-child(6) {
    right: 20px;
    top: 330px;
}
.case_list ul li:nth-child(7) {
    right: 100px;
    top: 470px;
}

/* .case_list ul li::before {
    font-size: 45px;
    line-height: 45px;
    color: #02B2B5;
    font-weight: bold;
    position: absolute;
}

.case_list ul li:nth-child(1)::before {
    content: '01';
    top: 2px;
    left: -50px;
}

.case_list ul li:nth-child(2)::before {
    content: '02';
    top: 2px;
    left: -50px;
}

.case_list ul li:nth-child(3)::before {
    content: '03';
    top: 2px;
    left: -50px;
}

.case_list ul li:nth-child(4)::before {
    content: '04';
    top: 2px;
    right: -50px;
}

.case_list ul li:nth-child(5)::before {
    content: '05';
    top: 2px;
    right: -50px;
}

.case_list ul li:nth-child(6)::before {
    content: '06';
    top: 2px;
    right: -50px;
}
.case_list ul li:nth-child(7)::before {
    content: '07';
    top: 2px;
    right: -50px;
} */

.case_list ul li strong {
    font-size: 22px;
    line-height: 30px;
    display: block;
    color: #05c5c8;
}

.case_list ul li p {
    font-size: 12px;
    line-height: 23px;
    display: block;
    margin-top: 10px;
    color: #fff;
    text-align: justify;
    /* height: 96px;
    overflow-y: auto;
    padding-right: 10px; */
}
.case_list ul li p::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 3px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
.case_list ul li p::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 3px;
    box-shadow: inset 0 0 1px rgba(216, 39, 28, 0.1);
    background: #02B2B5;
}
.case_list ul li p::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    background: #e1e1e1;
}


.main-news {
    width: 1300px;
    margin: 70px auto;
}

.news-box {
    width: 650px;
    float: left;
}

.wenti-box {
    width: 570px;
    float: right;
}

.news-title {
    position: relative;
}

.news-title strong {
    display: block;
    font-size: 24px;
    color: #333;
    line-height: 30px;
}

.news-title span {
    display: block;
    font-size: 14px;
    color: #999999;
    padding-top: 5px;
    text-transform: uppercase;
}

.news-title a {
    position: absolute;
    right: 0;
    top: 0;
    color: #02B2B5;
}

.news-title a:hover {
    text-decoration: underline;
}

.news-box ul li {
    display: block;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9e9e9;
}

.news-box ul li a:hover strong {
    color: #02B2B5
}

.wenti-box li a:hover strong {
    color: #02B2B5
}

.news-box ul li:last-child {
    border-bottom: 0px solid #e9e9e9;
}

.news-box .news-image {
    width: 140px;
    height: 90px;
    overflow: hidden;
    text-align: center;
    float: left;
}

.news-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news-r {
    float: right;
    width: 490px;
}

.news-r strong {
    color: #333;
    line-height: 24px;
}

.news-r b {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: #999;
    font-weight: normal;
}

.news-r b span {
    display: block;
    float: left;
    margin-right: 5px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.news-r b span:nth-child(1) {
    width: 12px;
    height: 12px;
    background-image: url(../images/time.png);
    margin-top: 2px;
}

.news-r b span:nth-child(2) {
    margin-right: 15px;
}

.news-r b span:nth-child(3) {
    width: 16px;
    height: 16px;
    background-image: url(../images/view.png);
}

.news-r p {
    color: #999;
    font-size: 14px;
    margin-top: 5px;
    line-height: 20px;
}


.wenti-list {
    width: 570px;
    height: 330px;
    padding: 20px;
    background-color: #f1f1f1;
    margin-top: 15px;
}

.wenti-list li {
    border-bottom: 1px dashed #d1d1d1;
    width: 49%;
    float: left;
    margin-left: 1%;
}

.wenti-list .news-image {
    width: 215px;
    height: 110px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    float: left;
}

.wenti-list .news-image img {
    height: 100%;
    width: auto;
    min-width: 100%;
    margin: 0 -100%;
}

.news-ri {
    float: right;
    width: 300px;
}

.news-ri strong {
    display: block;
    color: #333;
    font-weight: normal;
    line-height: 24px;
}

.news-ri b {
    font-size: 12px;
    color: #999;
    display: block;
    font-weight: normal;
    padding: 5px 0;
}

.news-ri p {
    font-size: 14px;
    color: #666;
    line-height: 24px;
}

.wenti-list .news-text {
    float: left;
}

.wenti-list .news-text strong {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    line-height: 36px;
    padding-left: 8px;
    position: relative;
}

.wenti-list .news-text strong::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aeaeae;
}

.wenti-list .news-date {
    float: right;
}

.wenti-list .news-date p {
    color: #999;
    font-size: 14px;
    line-height: 36px;
}

footer {
    width: 100%;
    height: 585px;
}

.foot-up {
    height: 300px;
    background-color: #02B2B5;
}

.foot-up-box {
    width: 1300px;
    margin: 0 auto;
}

.foot-menu {
    padding-top: 45px;
    text-align: center;
}

.foot-menu>ul {
    display: inline-block;
}

.foot-menu .menu-title {
    display: block;
    float: left;
    width: 216px;
    text-align: left;
    padding-left: 60px;
}

.foot-menu .menu-title ul {
    margin-top: 20px;
}

.foot-menu .menu-title .menu-list {
    font-size: 20px;
    line-height: 30px;
}

.foot-menu ul li a:hover {
    color: #f1f1f1;
}

.foot-menu ul li a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.foot-menu ul li a:hover {
    margin-left: 10px;
}

.menu-title ul li a {
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 38px;
}

.menu-title ul li a span {
    display: block;
    float: left;
    width: 12px;
    height: 15px;
    margin: 11.5px 0;
    margin-right: 5px;
    background-image: url(../images/menu-arrow.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.foot-down {
    height: 295px;
    text-align: center;
    background-color: #333;
    font-size: 14px
}

.copyright {
    width: 100%;
    font-size: 14px;
    color: #ccc;
    line-height: 30px;
    margin-top: 20px;
}

.copyright a {
    color: #ccc;
}

.copyright a:hover {
    text-decoration: underline;
}

.qr-code {
    margin-top: 40px;
    display: inline-block;
}

.qr-code-box {
    float: left;
    margin: 0 20px;
}

.qr-code-box:nth-child(1) img {
    width: 128px;
    height: auto;
    margin-bottom: 5px;

}

.qr-code-box:nth-child(2) img {
    width: auto;
    height: auto;
}

.qr-code-box:nth-child(3) img {
    width: 128px;
    height: auto;
    margin-bottom: 5px;

}

.qr-code-box p {
    font-size: 14px;
    color: #ccc;
    line-height: 20px;
}


/* search弹出框 */
.search-box {
    display: none;
    width: 280px;
    height: 90px;
    background-color: #05c5c8;
    /* border: 1px solid #02B2B5; */
    /* border-top: 2px solid #02B2B5; */
    position: absolute;
    top: 90px;
    right: 200px;
    z-index: 99;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.search-box::before {
    content: " ";
    position: absolute;
    top: -4px;
    right: 100px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #05c5c8;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.search_input {
    width: 240px;
    height: 40px;
    margin: 25px auto;
    position: relative;
}

#SearchStr {
    padding-left: 10px;
    width: 240px;
    height: 40px;
    font-size: 14px;
    background-color: #fff;
    color: #999;
    border: 1px solid #999;
    box-sizing: border-box;
}

.search-icon {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
}

/* qr-code弹出框 */
.qrcode-box {
    display: none;
    width: 280px;
    height: 240px;
    background-color: #fff;
    /* border: 1px solid #02B2B5; */
    /* border-top: 2px solid #02B2B5; */
    position: absolute;
    top: 90px;
    right: 160px;
    z-index: 999;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.qrcode-box::before {
    content: " ";
    position: absolute;
    top: -4px;
    right: 100px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #05c5c8;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.qrcode-title {
    width: 100%;
    height: 50px;
    background-color: #05c5c8;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 18px;
    border-radius: 5px 5px 0 0;
}

.qrcode-img {
    width: 160px;
    height: 160px;
    margin: 15px auto;
}

.qrcode-img img {
    width: 100%;
}

.fanyi_list ul {
    margin: 30px 0;
}

.fanyi_list li {
    width: 25%;
    float: left;
}

.fanyi_list li a {
    display: block;
    margin: 10px;
    border: 1px #f5f5f5 solid;
    background-color: #fefefe;
    height: 260px;
}

.fanyi_list li a img {
    margin-top: 42px;
}

.fanyi_list li a strong {
    display: block;
    color: #000;
    line-height: 55px;
    font-size: 18px;
}

.fanyi_list li a i {
    display: block;
    height: 1px;
    width: 60px;
    background-color: #CCC;
    margin: auto;
}

.fanyi_list li a p {
    color: #333;
    padding-top: 10px;
    font-size: 14px;
}

.sloution {
    margin: 30px auto;
    width: 1200px;
}

.sloution li {
    width: 400px;
    float: left;
}

.sloution li a {
    display: block;
    margin: 20px;
    border: 1px #f5f5f5 solid;
    background-color: #fefefe;
    padding: 20px;
}

.sloution li a img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sloution li a strong {
    display: block;
    color: #000;
    line-height: 55px;
    font-size: 18px;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.sloution li a i {
    display: block;
    height: 2px;
    width: 70px;
    background-color: #02B2B5;
    margin: auto;
    margin-bottom: 10px;
}

.sloution li a p {
    color: #333;
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
}

#scrollArrLeft2 {
    width: 60px;
    height: 60px;
    position: absolute;
    background-image: url(../images/arrow-left.png);
    cursor: pointer;
    margin-left: -80px;
    margin-top: 120px;
}

#scrollArrRight2 {
    width: 60px;
    height: 60px;
    position: absolute;
    background-image: url(../images/arrow-right.png);
    cursor: pointer;
    margin-left: 1210px;
    margin-top: 120px;
}

/* .yuzhong {
    background-image: url(../images/yybg.jpg);
    height: 667px;
    background-position: center;
    background-attachment: fixed;
}

.yuzhong ul {
    padding-top: 30px;
}

.yuzhong li {
    width: 25%;
    float: left;
}

.yuzhong li span {
    width: 50%;
    float: left;
    display: block;
    text-align: center;
    height: 127px;
    background-color: rgba(255, 255, 255, 0.6);
}

.yuzhong li span img {
    width: 102px;
    height: 74px;
    margin: auto;
    margin-top: 26px;
}

.yuzhong li .yz_text {
    background-color: rgba(20, 28, 65, 0.8);
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 127px;
}

.yuzhong li:nth-child(5) .yz_img {
    position: relative;
    margin-left: 163px;
}

.yuzhong li:nth-child(5) .yz_text {
    position: relative;
    margin-left: -326px;
}

.yuzhong li:nth-child(6) .yz_img {
    position: relative;
    margin-left: 163px;
}

.yuzhong li:nth-child(6) .yz_text {
    position: relative;
    margin-left: -326px;
}

.yuzhong li:nth-child(7) .yz_img {
    position: relative;
    margin-left: 163px;
}

.yuzhong li:nth-child(7) .yz_text {
    position: relative;
    margin-left: -326px;
}

.yuzhong li:nth-child(8) .yz_img {
    position: relative;
    margin-left: 163px;
}

.yuzhong li:nth-child(8) .yz_text {
    position: relative;
    margin-left: -326px;
} */