@charset "utf-8";

/* CSS Document */
html {
    height: 100%;
    position: relative;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    /*min-width: 1300px;*/
    font-family: Tahoma, Arial, '微软雅黑', 'Microsoft YaHei';
}

.page-home {
    height: 100%;
}

input,
button,
a,
li,
img,td {
    transition: 0.2s;
}

ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
p {
    padding: 0;
    margin: 0;
    list-style: none;
    transition: 0.2s;
}

input,select,textarea {
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    color: #333;
    background: #fff;
    font-family: Tahoma, Arial, '微软雅黑', 'Microsoft YaHei';
}

input:focus,
select:focus {
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

input::placeholder {
    color: #999;
}
textarea::placeholder {
    color: #999;
}

select {
    vertical-align: middle
}

button {
    border-radius: 3px;
    box-sizing: border-box;
    border: 0;
    outline: none;
    cursor: pointer;
    font-family: Tahoma, Arial, '微软雅黑', 'Microsoft YaHei';
}

button:hover {
    opacity: 0.8;
}

button:focus {
    opacity: 1;
}

.btn-orange {
    color: #fff;
    font-size: 18px;
    background: #e0a14d;
}

.btn-red {
    color: #fff;
    font-size: 18px;
    background: #c30d23;
}

img {
    display: block;
}

a {
    color: #333;
    text-decoration: none;
}

.b_overflow {
    overflow: hidden;
}

.hide-box {
    display: none !important;
}

.show-box {
    display: block !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.clearfix:after,
.clearfix:before {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.middle {
    width: 1680px;
    margin: 0 auto;
    position: relative;
}

.home-banner {
    width: 100%;
}

.home-banner img {
    width: 100%;
}

/*通用HEADER*/
header {
    width: 100%;
    height: 120px;
    position: absolute;
    top: 0;
    z-index: 11;
    padding-top: 25px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

header.page-header {
    position: static;
}

header .middle {
    display: flex;
    position: relative;
}

header .logo {
    width: 250px;
    height: 70px;
    float: left;
}

header .logo img {
    width: auto;
    height: 70px;
}

header .nav {
    flex: 1;
    margin-left: 120px;
    line-height: 70px;
    height: 70px;
}

header .nav ul {
    width: 100%;
}

header .nav ul li {
    float: left;
    margin-right: 6%;
    font-size: 18px;
}

header .nav ul li:last-child {
    margin-right: 0;
    position: relative;
}

header .nav ul li a {
    color: #fff;
    display: inline-block;
    position: relative;
    translate: 0.2s;
}

header.page-header .nav ul li>a {
    color: #333;
}

header .nav ul li>a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #00a4ff;
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 5px;
    opacity: 0;
    transition: 0.2s;
}

header .nav ul li.on>a::after,
header .nav ul li:hover a::after {
    width: 100%;
    left: 0;
    opacity: 1;
}
.nav-more {
    width: 80%;
    position: absolute;
    left: 10%;
    top: 70px;
    padding-top: 25px;
    display: none;
    overflow: hidden;
    z-index: 1111;
    animation:fadeIn 0.5s infinite;    
    animation-iteration-count:1;
}
.nav ul li:nth-child(2) .nav-more {
    width: 70%;
    left: 15%;
    overflow: initial;
}
.nav ul li:nth-child(2) .nav-more ul li>a::after {
    display: none;
}
.nav ul li:nth-child(2) .nav-more ul li a {
    color: #000;
    font-size: 18px;
}
.nav ul li:nth-child(2) .product-class-one li {
    height: 50px;
}
.nav ul li:nth-child(2) .product-class-one li>a {
    line-height: 50px;
}
.nav ul li:nth-child(2) .product-class-two dt {
    font-size: 20px;
    font-weight: bold;
}
.nav ul li:nth-child(2) .product-class-two dd {
    margin-top: 10px;
}
.nav ul li:nth-child(2) .product-class-two dd a {
    display: block;
    line-height: 2.2;
}
.nav ul li:nth-child(2) .product-class-two dd a:hover {
    color: #1e7bda;
}









header .nav ul li:hover .nav-more {
    display: block;
}
.nav-more-box {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    padding: 0;
    display: flex;
}
.nav-more-box dl {
    min-width: 0;
    height: auto;
    overflow: hidden;
    padding: 20px 0 30px 0;
    box-sizing: border-box;
}
.nav-more-box dl dt {
    width: 100%;
    color: #333;
    border-bottom: 1px solid #eee;
    padding: 0 20px 0 20px;
    box-sizing: border-box;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
    transition: 0.2s;
}
.nav-more-box dl dd {
    width: 100%;
    margin-top: 20px;
    line-height: 2.2;
    padding: 0 20px 0 20px;
    box-sizing: border-box;
    
}
.nav-more-box dl:nth-child(1) dt {
    padding: 0 20px 0 40px;
}
.nav-more-box dl:nth-child(1) dd {
    padding: 0 20px 0 40px;
}
.nav-more-box dl dd a {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #333 !important;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
}
.nav-more-box dl:hover {
    background: #f5f5f5;
}
.nav-more-box dl dd a:hover {
    color: #1e7bda !important;
}
.nav-more-box dl:hover dt {
    border-bottom: 1px solid #e5e5e5;
}

header>.nav>ul>li:last-child {
    position: relative;
}
.home-header {
    background: rgba(0, 0, 0, 0.2);
    border: 0;
}
header .nav ul li:nth-child(3) .nav-more-box dl {
    width: 25%;
    float: left;

}
.about-us-more {
    width: 160%;
    background: #fff;
    position: absolute;
    left: -30%;
    top: 70px;
    padding-top: 25px;
    display: none;
    overflow: hidden;
    z-index: 1111;
    animation:fadeIn 0.5s infinite;    
    animation-iteration-count:1;
    line-height: 35px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    padding: 15px 0;
}
.about-us-more a {
    width: 100%;
    display: block;
    font-size: 16px !important;
    color: #333 !important;
    text-align: center;
}
.about-us-more a:hover {
    color: #00a4ff !important;
}
header .nav ul li:last-child:hover .about-us-more {
    display: block;
}

header .h-right {
    width: 370px;
    margin-top: 8px;
}

header .h-right .h-search {
    width: 280px;
    height: 70px;
    float: left;
    position: relative;
    padding-top: 8px;
}

header .h-right .h-search input {
    width: 100%;
    height: 39px;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 0 60px 0 20px;
    font-size: 16px;
}
header .h-right .h-search input:nth-child(2) {
    width: 55px;
    height: 39px;
    background: none;
    position: absolute;
    padding: 0;
    border: 0;
    right: 0;
    top: 8px;
    background: url(../images/icon_searcha.png) no-repeat 15px center;
    background-size: auto 50%;
    cursor: pointer;
}
header .h-right .en-link {
    float: right;
    text-align: right;
    height: 70px;
    line-height: 70px;
}

header .h-right .en-link a {
    width: 60px;
    font-size: 18px;
    line-height: 55px;
    height: 55px;
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 5px;
}
header .h-right .en-link a:hover {
    background: #e3e8ed;
}

header.page-header .h-right .en-link a {
    color: #333;
}

/*通用FOOTER*/
footer {
    width: 100%;
    background: #f1f1f1;
    overflow: hidden;
    margin-top: 80px;
}

footer .f-info {
    width: 100%;
    padding: 50px 0 30px 0;
}

footer .f-info .f-nav {
    width: 75%;
    float: left;
}

footer .f-info .f-nav dl {
    width: 22%;
    float: left;
}

footer .f-info .f-nav dl dt {
    width: 100%;
}

footer .f-info .f-nav dl dt a {
    font-size: 20px;
    color: #666;
    font-weight: bold;
}
footer .f-info .f-nav dl dt a:hover {
    color: #000;
}

footer .f-info .f-nav dl dd {
    width: 100%;
    margin-top: 10px;
}

footer .f-info .f-nav dl dd span {
    display: block;
}

footer .f-info .f-nav dl dd span a {
    font-size: 16px;
    line-height: 2;
    color: #666;
}
footer .f-info .f-nav dl dd span a:hover {
    color: #000;
}

footer .f-info .f-ma {
    width: 25%;
    float: right;
}

footer .f-info .f-ma div {
    width: 150px;
    float: right;
}

footer .f-info .f-ma div:nth-child(2) {
    margin-right: 70px;
}

footer .f-info .f-ma div img {
    width: 150px;
    height: 150px;
}

footer .f-info .f-ma div span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

footer .f-copyright {
    width: 100%;
    border-top: 1px solid #e8e8e8;
    padding: 40px 0;
    overflow: hidden;
}

footer .f-copyright div:nth-child(1) {
    width: 250px;
    height: 50px;
    float: left;
}

footer .f-copyright div:nth-child(1) img {
    width: auto;
    height: 100%;
}

footer .f-copyright div:nth-child(2) {
    float: left;
    font-size: 16px;
    color: #888;
    line-height: 50px;
}


/*首页轮播*/

.home-banner-cont .swiper-slide {
    width: 100%;
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.home-banner-cont .swiper-slide img {
    width: 100%;
    height: auto;
}

.home-banner-cont .main-banner-page {
    position: absolute;
    bottom: 0px;
    z-index: 11;
    left: 0;
    width: 100%;
    height: 100%;
    display: block !important;
    text-align: center;
}

.home-banner-cont .swiper-wrapper .swiper-slide {
    width: 100% !important;
    text-align: center;
}

.main-banner-page .swiper-pagination {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.main-banner-page .swiper-pagination span.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    margin: 15px;
    overflow: hidden;
    width: 60px;
    height: 4px;
    border-radius: 0;
}

.main-banner-page .swiper-pagination span.swiper-pagination-bullet-active {
    background: #00a4ff;
}

/*首页*/
.home-hot-product {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 0;
}

.home-hot-product li {
    width: 390px;
}

.home-hot-product li div:nth-child(1) {
    width: 390px;
    height: 260px;
    overflow: hidden;
}

.home-hot-product li div:nth-child(1) img {
    width: 100%;
    height: auto;
}

.home-hot-product li:hover div:nth-child(1) img {
    transform: scale(1.05);
}

.home-hot-product li div:nth-child(2) {
    width: 100%;
    margin-top: 10px;
}

.home-hot-product li div:nth-child(2) a {
    display: block;
    width: 100%;
    font-size: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-hot-product li:hover div:nth-child(2) a {
    color: #00a4ff;
}

.home-hot-product li div:nth-child(3) {
    width: 100%;
}

.home-hot-product li div:nth-child(3) a {
    display: inline-block;
    line-height: 40px;
    color: #00a4ff;
    font-size: 18px;
    padding-left: 60px;
    box-sizing: border-box;
    background: url(../images/home_right.png) no-repeat left center;
    background-size: auto 30%;
}

.home-hot-product li:hover div:nth-child(3) a {
    background: url(../images/home_right_pressed.png) no-repeat left center;
    background-size: auto 30%;
}

.home-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.home-img img {
    width: 100%;
    height: auto;
}

.home-new-product {
    width: 860px;
    float: left;
}

.item-title {
    width: 100%;
    overflow: hidden;
}

.item-title h2 {
    width: 70%;
    font-size: 48px;
    line-height: 80px;
    font-weight: normal;
    float: left;
}

.item-title span {
    display: block;
    float: right;
    width: 30%;
    float: left;
    line-height: 80px;
    text-align: right;
}

.item-title span a {
    display: inline-block;
    color: #00a4ff;
    font-size: 18px;
    padding-left: 60px;
    box-sizing: border-box;
    background: url(../images/home_right.png) no-repeat left center;
    background-size: auto 15%;
}

.item-title span a:hover {
    background: url(../images/home_right_pressed.png) no-repeat left center;
    background-size: auto 15%;
}

.item-title-2 {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #1e7bda;
    padding-bottom: 15px;
}

.item-title-2 h2 {
    width: 100%;
    font-size: 36px;
    line-height: 2;
    font-weight: bold;
    float: left;
}

.home-new-product-list {
    width: 100%;
    background: #f4f4f4;
    margin-top: 30px;
    padding: 45px 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.home-new-product-list li {
    width: 100%;
    margin-bottom: 40px;
}

.home-new-product-list li:last-child {
    margin-bottom: 0;
}

.home-new-product-list li a {
    width: 100%;
    display: flex;
}

.home-new-product-list li a div:nth-child(1) {
    width: 300px;
    height: 200px;
    overflow: hidden;
    margin-right: 50px;
}

.home-new-product-list li a div:nth-child(1) img {
    width: 100%;
    height: auto;
}

.home-new-product-list li a div:nth-child(2) {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.home-new-product-list li a div:nth-child(2) h3 {
    width: 100%;
    font-size: 30px;
    margin-top: 10px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-new-product-list li a div:nth-child(2) p {
    width: 100%;
    font-size: 18px;
    color: #666;
    margin-top: 15px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: justify;
}

.home-new-product-list li:hover a div img {
    transform: scale(1.05);
}

.home-new-product-list li:hover a div h3 {
    color: #00a4ff;
}

.home-news {
    width: 760px;
    float: right;
}

.home-news-list {
    margin-top: 30px;
}

.home-news-list li {
    width: 100%;
    margin-bottom: 34px;
}

.home-news-list li:last-child {
    margin-bottom: 0;
}

.home-news-list li a {
    width: 100%;
    display: flex;
}

.home-news-list li a div:nth-child(1) {
    width: 250px;
    height: 167px;
    overflow: hidden;
    margin-right: 20px;
}

.home-news-list li a div:nth-child(1) img {
    width: 100%;
    height: auto;
}

.home-news-list li a div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.home-news-list li a div:nth-child(2) h3 {
    width: 100%;
    height: 90px;
    overflow: hidden;
    font-size: 30px;
    font-weight: normal;
    margin-top: 10px;
    line-height: 1.5;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-news-list li a div:nth-child(2) span {
    display: block;
    width: 100%;
    font-size: 18px;
    color: #666;
    margin-top: 25px;
}

.home-news-list li:hover a div:nth-child(1) img {
    transform: scale(1.05);
}

.home-news-list li:hover a div:nth-child(2) h3 {
    color: #00a4ff;
}

.home-support {
    width: 100%;
    background: #efefef;
    overflow: hidden;
    padding: 45px 0;
    margin-top: 50px;
}

.home-support-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.home-support-list li {
    width: 380px;
}

.home-support-list li a {
    display: block;
    width: 100%;
    padding: 50px 0;
}

.home-support-list li a i {
    width: 100%;
    height: 150px;
    display: block;
}

.home-support-list li:nth-child(1) a i {
    background: url(../images/home_one.png) no-repeat center center;
    background-size: auto 80%;
}

.home-support-list li:nth-child(2) a i {
    background: url(../images/home_two.png) no-repeat center center;
    background-size: auto 80%;
}

.home-support-list li:nth-child(3) a i {
    background: url(../images/home_three.png) no-repeat center center;
    background-size: auto 80%;
}

.home-support-list li:nth-child(4) a i {
    background: url(../images/home_four.png) no-repeat center center;
    background-size: auto 80%;
}

.home-support-list li a span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 30px;
    margin-top: 20px;
    position: relative;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.home-support-list li a span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15px;
    display: block;
    background: url(../images/home_right.png) no-repeat center center;
    background-size: auto 100%;
    transition: 0.2s;
}

.home-support-list li a:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-support-list li a:hover span::after {
    background: url(../images/home_right_pressed.png) no-repeat center center;
    background-size: auto 100%;
}

.home-link {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.home-link li {
    width: 260px;
    height: 90px;
    float: left;
    margin-right: 95px;
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid #eee;
    box-sizing: border-box;
}

.home-link li:nth-child(5n) {
    margin-right: 0;
}

.home-link li a {
    width: 100%;
    height: auto;
}

.home-link li a img {
    width: 100%;
    height: 100%;
}

/*关于我们*/
.page-banner {
    width: 100%;
    height: 540px;
    overflow: hidden;
}

.page-banner .middle {
    height: 540px;
}

.page-banner .middle .location-box {
    position: absolute;
    left: 0;
    bottom: 40px;
    color: #fff;
    font-size: 24px;
}

.page-banner .middle .location-box a {
    color: #fff;
}

.page-banner-s {
    height: 330px;
}

.page-banner-s .middle {
    height: 330px;
}

.about-company-banner {
    background: url(../images/banner_two.png) no-repeat center center;
    background-size: cover;
}

.about-team-banner {
    background: url(../images/banner_four.png) no-repeat center center;
    background-size: cover;
}

.about-job-banner {
    background: url(../images/banner_news_one.png) no-repeat center center;
    background-size: cover;
}

.about-job-detail-banner {
    background: url(../images/banner_news.png) no-repeat center center;
    background-size: cover;
}

.about-contact-banner {
    background: url(../images/banner_three.png) no-repeat center center;
    background-size: cover;
}

.invest-banner {
    background: url(../images/banner_seven.png) no-repeat center center;
    background-size: cover;
}

.new-list-banner {
    background: url(../images/news_banner.png) no-repeat center center;
    background-size: cover;
}

.new-detail-banner {
    background: url(../images/news_top.png) no-repeat center center;
    background-size: cover;
}

.support-banner {
    background: url(../images/banner_five.png) no-repeat center center;
    background-size: cover;
}
.search-banner {
    background: url(../images/banner_six.png) no-repeat center center;
    background-size: cover;
}
.product-banner {
    background: url(../images/banner_one.png) no-repeat center center;
    background-size: cover;
}
.apply-banner {
    background: url(../images/banner_nine.png) no-repeat center center;
    background-size: cover;
}
.comparison-banner {
    background: url(../images/banner_enght.png) no-repeat center center;
    background-size: cover;
}
.download-banner {
    background: url(../images/banner-download.jpg) no-repeat center center;
    background-size: cover;
}
.company-box {
    display: flex;
    margin-top: 80px;
}

.company-left {
    width: 900px;
    float: left;
    margin-right: 70px;
}

.company-left img {
    width: 100%;
    height: auto;
}

.company-right {
    flex: 1;
    min-width: 0;
}

.company-right h1 {
    font-size: 36px;
    line-height: 1.5;
    margin-top: 50px;
}

.company-right .company-info {
    width: 100%;
    text-align: justify;
    font-size: 18px;
    margin-top: 20px;
    color: #666;
}

.about-company-pic {
    width: 100%;
    margin-top: 80px;
}

.about-company-pic img {
    width: 100%;
    height: auto;
}

.chairman-box {
    display: flex;
    margin-top: 80px;
}

.chairman-left {
    width: 500px;
    margin-right: 100px;
}

.chairman-box img {
    width: 100%;
    height: auto;
}

.chairman-right {
    flex: 1;
    min-width: 0;
}

.chairman-right h2 {
    width: 80%;
    margin: 0 auto;
    margin-top: 80px;
    font-size: 36px;
    line-height: 1.5;
    position: relative;
}

.chairman-right h2::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/icon-y1.png) no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    left: -40px;
    top: -40px;
}

.chairman-right .chairman-info {
    width: 80%;
    margin: 0 auto;
    font-size: 22px;
    margin-top: 40px;
    color: #666;
    text-align: justify;
    position: relative;
}

.chairman-right .chairman-info::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/icon-y2.png) no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    right: -40px;
    bottom: -40px;
}

.item-ceo {
    width: 100%;
    height: 550px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.item-ceo-info {
    width: 40%;
    margin-right: 10%;
    float: right;
    text-align: left;
    box-sizing: border-box;
    padding-top: 100px;
    color: #fff;
}

.item-ceo-info h3 {
    width: 100%;
    font-size: 36px;
}

.item-ceo-info h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #1e7bda;
    margin-top: 5px;
}

.item-ceo-info span {
    display: block;
    font-size: 24px;
    margin-top: 20px;
}

.item-ceo-info p {
    width: 100%;
    margin-top: 25px;
    text-align: justify;
}

.team-list {
    width: 100%;
    padding-top: 30px;
}

.team-list li {
    width: 47%;
    float: left;
    background: #f2f2f2;
    position: relative;
    margin-top: 110px;
    padding: 50px;
    box-sizing: border-box;
}

.team-list li:nth-child(2n) {
    float: right;
}

.team-list li div:nth-child(1) {
    width: 200px;
    position: absolute;
    left: 50px;
    top: -40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

}
.team-list li div:nth-child(1) img {
    width: 100%;
    height: auto;
}
.team-list li div:nth-child(2) {
    width: 63%;
    float: right;
}

.team-list li div:nth-child(2) h2 {
    font-size: 36px;
    line-height: 1.5;
    font-weight: normal;
}

.team-list li div:nth-child(2) h2::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: #1e7bda;
    margin-top: 15px;
}

.team-list li div:nth-child(2) span {
    display: block;
    width: 100%;
    font-size: 24px;
    color: #666;
    margin-top: 15px;
}

.team-list li div:nth-child(2) p {
    display: block;
    width: 100%;
    height: 150px;
    font-size: 16px;
    color: #666;
    margin-top: 20px;
    text-align: justify;
}
.team-list li:nth-child(-n+2) div:nth-child(2) p {
    height: 280px;
}

/*页码通用*/
.pages {
    text-align: right;
    margin-top: 40px;
}

.pages_c {
    text-align: center;
    margin-top: 20px;
}

.pagination {
    display: inline-block;
    padding: 0;
    margin: 8px 0 4px 0
}

.pagination>li {
    display: inline
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 0 8px;
    min-width: 8px;
    height: 28px;
    line-height: 28px;
    color: #666;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    margin: 0 4px;
    font-size: 14px;
    cursor: pointer
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 3;
    color: #00a4ff;
    background-color: #f7f9fb;
    border: 1px solid rgba(0, 0, 0, 0.12)
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #00a4ff;
    border-color: #00a4ff
}

.pagination.m_color>li>a:focus,
.pagination.m_color>li>a:hover,
.pagination.m_color>li>span:focus,
.pagination.m_color>li>span:hover {
    color: #00a4ff
}

.pagination.m_color>.active>a,
.pagination.m_color>.active>a:focus,
.pagination.m_color>.active>a:hover,
.pagination.m_color>.active>span,
.pagination.m_color>.active>span:focus,
.pagination.m_color>.active>span:hover {
    background-color: #00a4ff;
    border-color: #00a4ff
}

.pagination.m_color>.active>span:hover {
    color: #fff;
    border-color: #00a4ff
}

.job-box {
    margin-top: 80px;
}

.job-left {
    width: 25%;
    float: left;
}

.job-left ul {
    width: 100%;
}

.job-left ul li {
    width: 100%;
    height: 110px;
    line-height: 110px;
    font-size: 30px;
}

.job-left ul li a {
    width: 100%;
    text-align: center;
    display: block;
    background: #f1f1f1;
}

.job-left ul li.on a {
    background: #fff;
    color: #1e7bda;
}

.job-left ul li:hover a {
    color: #1e7bda;
}

.job-right {
    width: 70%;
    float: right;
}

.job-list {
    width: 100%;
}

.job-list li {
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #eee;
    font-size: 30px;
    background: url(../images/icon_right.png) no-repeat right center;
    background-size: auto 17%;
}

.job-list li a {
    display: block;
    color: #5d5d5d;
}

.job-list li a:hover {
    color: #1e7bda;
}

.job-detail-left {
    width: 68%;
    float: left;
}

.job-detail {
    width: 100%;
    overflow: hidden;
}

.job-info {
    width: 100%;
    margin-top: 50px;
    display: flex;
}

.job-info-left {
    width: 175px;
    font-size: 30px;
    color: #666;
    line-height: 1.3;
}

.job-info-right {
    flex: 1;
    min-width: 0;
    color: #666;
    text-align: justify;
}



.job-contact {
    width: 27%;
    float: right;
    background: #f1f1f1;
    border-top: 2px solid #1e7bda;
    box-sizing: border-box;
    padding: 35px;
    position: relative;
}

.job-contact h2 {
    font-size: 30px;
    font-weight: normal;
    color: #666;
}

.job-contact div {
    margin-top: 30px;
}

.job-contact div dl {
    width: 100%;
    font-size: 20px;
    display: flex;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

.job-contact div dl dt {
    width: 65px;
}

.job-contact div dl dd {
    flex: 1;
    min-width: 0;
}

.contact-map {
    width: 100%;
    height: 620px;
    padding: 13px;
    box-sizing: border-box;
    background: #f5f5f5;
}

.contact-pic {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.contact-pic img {
    width: 100%;
    height: auto;
}

.contact-list {
    width: 100%;
    overflow: hidden;

}

.contact-list li {
    width: 25%;
    height: 280px;
    float: left;
    box-sizing: border-box;
    padding: 60px 20px 0 50px;
    position: relative;
    background: #fff;
    border-bottom: 5px solid #d8d8d8;
}

.contact-list li::after {
    content: '';
    width: 0;
    opacity: 0;
    transition: 0.5s;
    height: 5px;
    background: #d8d7d7;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.contact-list li:nth-child(1) {
    background: url(../images/team_pic.png) no-repeat center center;
    background-size: cover;
}

.contact-list li:nth-child(3) {
    background: #f6f6f6;
}

.contact-list li dl {
    width: 100%;
    font-size: 24px;
}

.contact-list li dl dt {
    width: 100%;
    position: relative;
    font-size: 24px;
}

.contact-list li dl dd {
    width: 100%;
}

.contact-list li dl dt::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: #00a4ff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.contact-list li:nth-child(1) dl {
    color: #fff;
}

.contact-list li:nth-child(2) dl dt::before {
    background: #2ad2c8;
}

.contact-list li:nth-child(3) dl dt::before {
    background: #f1a52e;
}

.contact-list li:nth-child(4) dl dt::before {
    background: #00c8dc;
}

.contact-list li:hover::after {
    width: 100%;
    opacity: 1;
    background: #00a4ff;
}

.contact-list li:nth-child(2):hover::after {
    width: 100%;
    opacity: 1;
    background: #2ad2c8;
}

.contact-list li:nth-child(3):hover::after {
    width: 100%;
    opacity: 1;
    background: #f1a52e;
}

.contact-list li:nth-child(4):hover::after {
    width: 100%;
    opacity: 1;
    background: #00c8dc;
}

.invest-1 {
    width: 100%;
    display: flex;
}

.invest-1-left {
    width: 800px;
    margin-right: 80px;
}

.invest-1-left img {
    width: 100%;
    height: auto;
}

.invest-1-right {
    flex: 1;
    min-width: 0;
}

.invest-1-right h1 {
    width: 100%;
    font-size: 36px;
    color: #000;
    margin-top: 60px;
    line-height: 1.5;
}

.invest-1-right-content {
    width: 100%;
    color: #666;
    text-align: justify;
    margin-top: 40px;
}

.invest-2 {
    width: 100%;
    margin-top: 70px;
    overflow: hidden;
}

.invest-2 h2 {
    width: 100%;
    font-size: 36px;
    color: #000000;
}

.invest-2-content {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

.invest-2-content img {
    max-width: 100%;
    height: auto;
}

.invest-3 {
    width: 100%;
    display: flex;
    margin-top: 70px;
}

.invest-3-left {
    flex: 1;
    min-width: 0;
}

.invest-3-left h2 {
    width: 100%;
    font-size: 36px;
    color: #000;
    margin-top: 20px;
    line-height: 1.5;
}

.invest-3-left-content {
    width: 100%;
    color: #666;
    text-align: justify;
    margin-top: 40px;
}

.invest-3-left-content ul {
    width: 100%;
}

.invest-3-left-content li {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
    text-align: justify;
}

.invest-3-left-content li::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 7px;
    background: #c3d7eb;
}

.invest-3-right {
    width: 820px;
    margin-left: 80px;
}

.invest-3-right img {
    width: 100%;
    height: auto;
}

.new-top-box {
    width: 100%;
    overflow: hidden;
}

.new-top-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.new-top-list li {
    width: 370px;
}

.new-top-list li a div {
    width: 100%;
    height: 245px;
    overflow: hidden;
}

.new-top-list li a div img {
    width: 100%;
    height: auto;
}

.new-top-list li a span {
    display: block;
    width: 100%;
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.5;
    text-align: justify;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new-top-list li:hover a div img {
    transform: scale(1.05);
}

.new-list-box {
    width: 100%;
    margin-top: 60px;
}

.new-list {
    width: 100%;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
    overflow: hidden;
}

.new-list li {
    width: 50%;
    float: left;
    border-bottom: 1px solid #e5e5e5;
    padding: 40px 50px 40px 0;
    box-sizing: border-box;
}

.new-list li:nth-child(2n) {
    float: right;
    padding: 40px 0 40px 50px;
}

.new-left {
    width: 22%;
    float: left;
    text-align: center;
    background: #f3f3f3;
    color: #333;
    transition: 0.2s;
}

.new-right {
    width: 73%;
    float: right;
}

.new-left span {
    width: 100%;
    display: block;
}

.new-left span:nth-child(1) {
    background: #e5e5e5;
    line-height: 48px;
    font-size: 24px;
}

.new-left span:nth-child(2) {
    font-size: 46px;
    width: 100%;
    line-height: 102px;
    text-align: center;
    color: #666;
}

.new-right h2 {
    width: 100%;
    font-size: 22px;
    font-weight: normal;
    margin-top: 10px;
}

.new-right h2 a {
    display: block;
    width: 100%;
    color: #333333;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-right p {
    width: 100%;
    height: 55px;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
    color: #666;
    text-align: justify;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}



.new-list li:hover .new-left {
    background: #6d7579;
}

.new-list li:hover .new-left span:nth-child(1) {
    background: #12b7f5;
    color: #fff;
}

.new-list li:hover .new-left span:nth-child(2) {
    color: #fff;
}

.new-list li:hover .new-right h2 a {
    color: #000;
}

.news-details {
    margin-top: 60px;
    margin-bottom: 60px;
}

.news-details-left {
    width: 65%;
    float: right;
}

.news-details-title {
    width: 100%;
    font-size: 36px;
    overflow: hidden;
    line-height: 1.3;
}

.news-details-info {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 20px 0 10px 0;

}

.news-type {
    width: 50%;
    float: left;
    margin-top: 10px;
}

.news-type span {
    display: inline-block;
    text-align: center;
    line-height: 2;
    color: #888;
}

.news-type span.news-type-1 {
    background: #00be85;
}

.news-type span.news-type-2 {
    background: #61482e;
}

.news-type span.news-type-3 {
    background: #e8b800;
}

.news-details-info-right {
    width: 50%;
    float: right;
    text-align: right;
}

.news-details-date {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 14px;
    color: #666;
    float: right;
    box-sizing: border-box;
    padding-right: 3px;
}

.news-details-share {
    display: block;
    float: right;
    margin-top: 5px;
}

.news-content {
    width: 100%;
    color: #666666;
    margin-top: 20px;
    line-height: 1.8;
    text-align: justify;
}

.news-content p {
    margin: 15px 0;
}

.news-content img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.news-details-right {
    width: 29%;
    float: left;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 30px;
}

.news-details-right h3 {
    width: 100%;
    font-size: 24px;
    color: #000;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.news-details-right ol {
    width: 100%;
    margin-top: 20px;
}

.news-details-right ol li {
    width: 100%;
    border-bottom: 1px solid #eee;
    line-height: 60px;
    padding-left: 25px;
    position: relative;
    list-style: none;
    box-sizing: border-box;
}

.news-details-right ol li a {
    color: #59606c;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.2s;
}

.news-details-right ol li::before {
    content: '';
    display: block;
    background: #c0cbdd;
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    margin-top: -4px;
    left: 0;
    border-radius: 4px;
    transition: 0.2s;
}

.news-details-right ol li:hover a {
    color: #000;
}

.news-details-right ol li:hover::before {
    background: #666;
    transition: 0.2s;
}

.support-1 {
    width: 100%;
    display: flex;
}

.support-1-left {
    width: 800px;
    margin-right: 80px;
}

.support-1-left img {
    width: 100%;
    height: auto;
}

.support-1-right {
    flex: 1;
    min-width: 0;
}

.support-1-right h1 {
    width: 100%;
    font-size: 36px;
    color: #000;
    margin-top: 60px;
    line-height: 1.5;
}

.support-1-right-content {
    width: 100%;
    color: #666;
    text-align: justify;
    margin-top: 40px;
}

.support-2 {
    width: 100%;
    margin-top: 70px;
}

.support-2 h2 {
    width: 100%;
    font-size: 36px;
    color: #000000;
}

.support-2-content {
    width: 100%;
    text-align: center;
    margin-top: 70px;
}

.support-2-content ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.support-2-content ul li {
    width: 390px;
    height: 200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    position: relative;
    padding-top: 85px;
    box-sizing: border-box;
}

.support-2-content ul li i {
    position: absolute;
    display: block;
    width: 128px;
    height: 128px;
    top: -40px;
    left: 50%;
    margin-left: -64px;
}
.support-2-content ul li i img {
    width: 100%;
    height: auto;
}
.support-2-content ul li h3 {
    font-size: 24px;
    font-weight: normal;
}

.support-2-content ul li span {
    display: block;
    text-align: center;
    font-size: 20px;
}

.support-2-content ul li:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.support-3 {
    width: 100%;
    margin-top: 70px;
}

.support-3 h2 {
    width: 100%;
    font-size: 36px;
    color: #000000;
}

.support-3-content {
    width: 100%;
    text-align: center;
    margin-top: 70px;
}
.faq-list {
    width: 100%;
    margin-top: 50px;
}
.faq-list dt {
    cursor: pointer;
    font-size: 22px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 20px;
}

.faq-list dd {
    display: none;
    color: #666;
    padding: 40px 30px;
    border-radius: 5px;
    background: #f3f3f3;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-left: 40px;
    box-sizing: border-box;
    text-align: justify;
}

.faq-list dt {
    width: 100%;
    padding-left: 40px;
    position: relative;
}
.faq-list dt i {
    background: url(../images/team_add.png) no-repeat left center;
    background-size: auto 50%;
    width: 30px;
    height: 50px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.2s;
}

.faq-list dt.on i {
    background: url(../images/team_reduce.png) no-repeat left center;
    background-size: auto 50%;
}
.support-submit {
    width: 100%;
    height: 840px;
    background: url(../images/team_bj.png) no-repeat center center;
    margin-top: 60px;
    margin-bottom: -80px;
}
.support-submit-box {
    width: 815px;
    height: 700px;
    float: right;
    margin-top: 70px;
    background: rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    padding: 40px;
}
.demand-item {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}
.demand-item select {
    width: 47%;
    float: left;
    height: 65px;
    font-size: 18px;
    border-radius: 0;
    padding: 0 20px;
}
.demand-item select:nth-child(2) {
    float: right;
}
.demand-item input {
    width: 47%;
    float: left;
    height: 65px;
    font-size: 18px;
    border-radius: 0;
    padding: 0 20px;
}
.demand-item input:nth-child(2) {
    float: right;
}
.demand-item textarea {
    width: 100%;
    height: 260px;
    box-sizing: border-box;
    font-size: 18px;
    padding: 20px;
    resize: none;
}
.submit-item {
    width: 100%;
    text-align: center;
}
.submit-item button {
    width: 330px;
    height: 70px;
    color: #fff;
    background: #00a4ff;
    font-size: 24px;
}
.search-title {
    width: 100%;
    overflow: hidden;
    font-size: 36px;
}
.search-box {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}
.search-list {
    width: 100%;
    overflow: hidden;
}
.search-list li {
    width: 48%;
    float: left;
    display: flex;
    margin-bottom: 40px;
}
.search-list li:nth-child(2n) {
    float: right;
}
.s-left {
    width: 260px;
    height: 170px;
    overflow: hidden;
    float: left;
    margin-right: 35px;
}
.s-left img {
    width: 260px;
    height: auto;
}
.s-right {
    flex: 1;
    min-width: 0;
}
.s-right h3 {
    width: 100%;
    font-size: 24px;
    font-weight: normal;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
}
.s-right p {
    width: 100%;
    height: 60px;
    font-size: 16px;
    line-height: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: justify;
    color: #666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.c-box {
    width: 80px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    height: 32px;
    line-height: 32px;
    display: inline-block;
    background: #00a4ff;
}
.c-box-1 {
    background: #2ad2c8;
}
.c-box-2 {
    background: #00a4ff;
}
.c-box-3 {
    background: #00c8dc;
}
.c-box-4 {
    background: #12b7f5;
}
.c-box-5 {
    background: #f6b522;
}
.c-box-6 {
    background: #00a4ff;
}
.search-none {
    width: 100%;
    text-align: center;
    padding: 100px 0;
}
.search-none i {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
}
.search-none i img {
    width: 100%;
    height: auto;
}
.search-none span {
    display: block;
    color: #999;
    margin-top: 10px;
}
.product-box {
    display: flex;
}
.product-class {
    width: 500px;
    margin-right: 50px;
}
.product-class-one {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    box-sizing: border-box;
    position: relative;
}
.product-class-one:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.product-class-one li {
    width: 100%;
    height: 70px;
}
.product-class-one li>a {
    width: 100%;
    display: block;
    font-size: 22px;
    line-height: 70px;
    padding: 0 30px 0 45px;
    box-sizing: border-box;
    background: #fff;
}
.product-class-one li>a>span {
    width: 100%;
    display: block;
    background: url(../images/icon_right.png) no-repeat right center;
    background-size: auto 25%;
}
.product-class-one li:hover>a {
    background: #e3e8ed;
}
.product-class-two {
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    background: #f7f7f7;
    z-index: 11;
    display: none;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.25);
}
.product-class-one li:hover .product-class-two {
    display: block;
    left: 100%;
}
.product-class-two {
    box-sizing: border-box;
    padding: 30px 50px;
}
.product-class-two dt {
    width: 100%;
    font-size: 30px;
    line-height: 2;
    border-bottom: 1px solid #ddd;
}
.product-class-two dd {
    width: 100%;
    margin-top: 30px;
}
.product-class-two dd a {
    display: block;
    line-height: 3;
    font-size: 20px;
}
.product-class-two dd a:hover {
    color: #1e7bda;
}



















.product-help {
    width: 100%;
    margin-top: 40px;
    background: #4e5860;
    padding: 40px 30px;
    box-sizing: border-box;
    overflow: hidden;
}
.product-help span {
    display: block;
    width: 50%;
    float: left;
    color: #fff;
    line-height: 70px;
    font-size: 24px;
}
.product-help a {
    display: block;
    width: 185px;
    height: 70px;
    line-height: 70px;
    float: right;
    color: #fff;
    background: #2ad2c8;
    text-align: center;
    font-size: 24px;
}
.product-help a:hover {
    background: #1bb9b0;
}
.product-list-box {
    flex: 1;
    min-width: 0;
}
.product-list {
    width: 100%;
}
.product-list li {
    width: 48%;
    float: left;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 32px;
    margin-bottom: 40px;
}
.product-list li:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
.product-list li:nth-child(2n) {
    float: right;
}
.p-item-1 {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.p-item-1 a {
    width: 100%;
    display: flex;
    overflow: hidden;
}
.p-item-1 a div:nth-child(1) {
    width: 205px;
    height: 135px;
    overflow: hidden;
    margin-right: 30px;
}
.p-item-1 a div:nth-child(1) img {
    width: 100%;
    height: auto;
}
.product-list li:hover .p-item-1 a div:nth-child(1) img {
    transform: scale(1.05);
}
.p-item-1 a div:nth-child(2) {
    flex: 1;
    min-width: 0;
}
.p-item-1 a div:nth-child(2) h3 {
    width: 100%;
    height: 80px;
    font-size: 28px;
    line-height: 40px;
    font-weight: normal;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: justify;
}
.p-item-1 a div:nth-child(2) span {
    display: block;
    width: 100%;
    margin-top: 20px;
}
.p-item-2 {
    width: 100%;
    margin-top: 30px;
}
.p-item-2 h4 {
    font-size: 18px;
    line-height: 1.5;
}
.p-item-2 div {
    width: 100%;
    height: 320px;
    font-size: 16px;
    line-height: 2;
    margin-top: 10px;
    overflow: hidden;
}
.p-item-3 {
    width: 100%;
    overflow: hidden;
}
.p-item-3 a {
    width: 45%;
    height: 70px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    float: left;
    background: #2ad2c8;
    font-size: 20px;
}
.p-item-3 a:nth-child(2) {
    float: right;
    background: #00a4ff;
}
.p-item-3 a:hover {
    background: #1bb9b0;
}
.p-item-3 a:nth-child(2):hover {
    background: #0092e3;
}
/*产品对比*/
.select-class {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
}
.select-class-title {
    width: 270px;
    font-size: 36px;
    line-height: 1.2;
}
.select-class-box {
    flex: 1;
    min-width: 0;
    display: flex;
}
.select-class-box dl {
    flex: 1;
    min-width: 0;
    height: auto;
    overflow: hidden;
    padding: 10px 0 30px 0;
    box-sizing: border-box;
}
.select-class-box dl dt {
    width: 100%;
    color: #333;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
    transition: 0.2s;
    padding-right: 40px;
    font-weight: bold;
}
.select-class-box dl dd {
    width: 100%;
    margin-top: 20px;
    line-height: 2.2;
    box-sizing: border-box;
    padding-right: 40px;
}
.select-class-box dl dd a {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #333 !important;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
}
.select-class-box dl dd a:hover {
    color: #1e7bda !important;
}
.select-class-box dl:hover dt {
    border-bottom: 1px solid #e5e5e5;
    font-weight: bold;
}
.comparison-box {
    width: 100%;
}
.comparison-btn {
    width: 100%;
}
.comparison-btn-1 {
    width: auto;
    float: right;
}
.comparison-btn-1 button {
    width: 200px;
    height: 48px;
    color: #fff;
    background: #00a4ff;
    font-size: 20px;
}
.comparison-btn-2 {
    width: auto;
    float: right;
    text-align: right;
    margin-right: 50px;
}
.comparison-btn-2 a {
    display: block;
    float: right;
    color: #666;
    height: 48px;
    line-height: 48px;
    padding-left: 40px;
    margin-left: 50px;
}
.comparison-btn-2 a:nth-child(1) {
    background: url(../images/icon_clear.png) no-repeat left center ;
    background-size: auto 35%;
}
.comparison-btn-2 a:nth-child(2) {
    background: url(../images/icon_delete.png) no-repeat left center ;
    background-size: auto 35%;
}
.comparison-btn-2 a:hover {
    color: #00a4ff;
}
.comparison-title {
    width: 60%;
    float: left;
}
.comparison-title>div {
    float: left;
}
.comparison-title div:nth-child(1) {
    line-height: 48px;
    font-size: 20px;
}
.comparison-title div:nth-child(2) {
    line-height: 48px;
    font-size: 20px;
}
.comparison-title div:nth-child(2) span.sel-btn {
    line-height: 48px;
    display: block;
    margin-left: 30px;
    color: #00a4ff;
    background: url(../images/icon-sel.png) no-repeat left center;
    background-size: auto 40%;
    padding-left: 30px;
    cursor: pointer;
    padding-right: 20px;
}

.comparison-title-2 {
    position: relative;
}
.comparison-p-list {
    display: none;
    z-index: 111;
    left: 95%;
    top: -80px;
    width: 400%;
    padding: 10px;
}


.comparison-p-list .product-class {
    width: 350px;
    height: 800px;
}

.comparison-p-list ul li a {
    color: #000;
    font-size: 16px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.comparison-p-list .product-class-one li {
    height: 35px;
}
.comparison-p-list .product-class-one li>a {
    line-height: 35px;
    padding-left: 35px;
}
.comparison-p-list .product-class-one li>a>span {
    display: block;
    width: 100%;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.comparison-p-list .product-class-two dt {
    font-size: 16px;
    font-weight: bold;
}
.comparison-p-list .product-class-two dd {
    margin-top: 10px;
}
.comparison-p-list .product-class-two dd a {
    display: block;
    line-height: 2;
}
.comparison-p-list .product-class-two dd a:hover {
    color: #1e7bda;
}








.comparison-list {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.comparison-list table {
    width: 100%;
    border: 1px solid #e2e2e2;
    border-bottom: 0;
    line-height: 60px;
    word-wrap: break-word; 
    word-break: break-all;
}
.comparison-list table tr th {
    background: #f0f0f0;
    border-bottom: 1px solid #e2e2e2;
    text-align: left;
    line-height: 1.2;
    padding: 15px 0;
    box-sizing: border-box;
}
.comparison-list table tr td {
    background: #fff;
    border-bottom: 1px solid #e2e2e2;
    text-align: left;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
    overflow: hidden;
}
.comparison-list table tr th:nth-child(-n+3) ,.comparison-list table tr td:nth-child(-n+3) {
    text-align: center;
}
.comparison-list table tr th:nth-child(1) {
    width: 50px;
}
.comparison-list table tr th:nth-child(2) {
    width: 50px;
}
.comparison-list table tr th:nth-child(3) {
    width: 100px;
}
.comparison-list table tr th:nth-child(4) , .comparison-list table tr td:nth-child(4) {
    width: 260px;
    padding-left: 2%;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
}
.comparison-list table tr td:nth-child(3) a {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: url(../images/icon-download.png) no-repeat center center;
    background-size: auto 45%;
    overflow: hidden;
}
.comparison-list table tr td:nth-child(3) a:hover {
    transform: scale(1.2);
}
.comparison-list table tr:hover td {
    background: #f7f7f7;
}
.comparison-list table tr td:nth-child(1) input {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.comparison-none {
    width: 100%;
    text-align: center;
    padding: 100px 0;
}
.comparison-none i {
    display: block;
    margin: 0 auto;
    width: 150px;
    height: 150px;
}
.comparison-none i img {
    width: 100%;
    height: auto;
}
.comparison-none span {
    display: block;
    color: #999;
    margin-top: 10px;
}
.my-comparison {
    width: 100%;
    overflow: hidden;
}
.my-comparison-1 {
    width: 30%;
    float: left;
    font-size: 36px;
    line-height: 1.2;
}
.my-comparison-2 {
    width: 50%;
    float: right;
    text-align: right;
}
.my-comparison-2 button {
    width: 140px;
    height: 48px;
    font-size: 20px;
    margin-left: 25px;
}
.my-comparison-2 button:nth-child(2) {
    background: #00a4ff;
    color: #fff;
}
.my-comparison-box {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}
.my-comparison-box table {
    width: 100%;
    border: 1px solid #e2e2e2;
    border-bottom: 0;
    line-height: 60px;
}
.my-comparison-box table tr th {
    background: #f0f0f0;
    border-bottom: 1px solid #e2e2e2;
    text-align: center;
}
.my-comparison-box table tr td {
    background: #fff;
    border-bottom: 1px solid #e2e2e2;
    text-align: center;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
    overflow: hidden;
    color: #666;
}

.my-comparison-box table tr th:nth-child(1) {
    width: 7%;
}
.my-comparison-box table tr td:nth-child(1) {
    background: #fef8f2;
}
.my-comparison-box table tr:hover td {
    background: #fef8f2;
}
.p-title {
    width: 100%;
    font-size: 36px;
    line-height: 1.5;
    padding: 10px 0 30px 0;
    text-align: center;
}
.p-content {
    width: 100%;
    overflow: hidden;
    color: #666;
    text-align: justify;
}
.p-content img {
    max-width: 100%;
    height: auto;
}
.p-parameters {
    margin-top: 30px;
}
.p-item-title {
    width: 100%;
    overflow: hidden;
}
.p-item-title span {
    display: block;
    float: left;
    width: 50%;
    font-size: 28px;
    line-height: 60px;
    height: 60px;
    font-weight: bold;
}
.p-item-title a {
    float: right;
    display: block;
    width: 200px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #00a4ff;
    color: #fff;
    text-align: center;
}
.p-item-title a:hover {
    background: #1e7bda;
}
.p-item-content {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    text-align: justify;
}
.p-item-content dl {
    width: 100%;
    overflow: hidden;
    line-height: 2.5;
}
.p-item-content dl dt {
    float: left;
    margin-right: 10px;
}
.p-item-content dl dd {
    float: left;
}
.p-apply {
    width: 100%;
    margin-top: 30px;
}
.p-download {
    width: 100%;
    margin-top: 30px;
}
.p-download-btn a {
    display: block;
    width: 300px;
    height: 80px;
    line-height: 76px;
    border: 2px solid #2ad2c8;
    float: left;
    margin-right: 50px;
    text-align: center;
    box-sizing: border-box;
    padding-left: 50px;
    font-size: 24px;
}
.p-download-btn a:nth-child(1) {
    background: url(../images/icon_book.png) no-repeat 25% center;
    background-size: auto 60%;
}
.p-download-btn a:nth-child(2) {
    border: 2px solid #00a4ff;
    background: url(../images/icon_guid.png) no-repeat 25% center;
    background-size: auto 60%;
}
.p-download-btn a:nth-child(1):hover {
    background: url(../images/icon_book.png) no-repeat 25% center #f7f7f7;
    background-size: auto 60%;
    color: #2ad2c8;
}
.p-download-btn a:nth-child(2):hover {
    border: 2px solid #00a4ff;
    background: url(../images/icon_guid.png) no-repeat 25% center #f7f7f7;
    background-size: auto 60%;
    color: #00a4ff;
}
.p-case {
    width: 100%;
    margin-top: 30px;
}
.p-case-list {
    width: 100%;
}
.p-case-list li {
    width: 100%;
    
}
.p-case-list li a {
    color: #333840;
    padding-left: 25px;
    box-sizing: border-box;
    position: relative;
    line-height: 50px;
}
.p-case-list li a::before {
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 4px;
    background: #becbe1;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -4px;
    transition: 0.2s;
}
.p-case-list li a:hover {
    color: #1e7bda;
}
.p-case-list li a:hover::before {
    background: #1e7bda;
}

.p-none {
    width: 100%;
    text-align: center;
    padding: 100px 0;
    margin-top: 150px;
}
.p-none i {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
}
.p-none i img {
    width: 100%;
    height: auto;
}
.p-none span {
    display: block;
    color: #999;
    margin-top: 10px;
}
/*0930*/
.download-s-box {
    width: 100%;
    background: #f6f6f6;
    box-sizing: border-box;
    padding: 30px 50px;
}
.download-s-a {
    width: 100%;
    text-align: center;
}
.download-s-a input {
    width: 800px;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    padding: 0 20px;
    font-size: 18px;
}
.download-s-a button {
    width: 150px;
    height: 50px;
    font-size: 18px;
    background: #0092e3;
    color: #fff;
}
.download-s-b {
    width: 100%;
    margin-top: 30px;
    font-size: 22px;
    text-align: center;
}
.download-list {
    width: 100%;
    margin-top: 50px;
}
.download-list ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 30px;
    box-sizing: border-box;
}
.download-list ul li:hover {
    background: #f8f8f8;
}
.download-list ul li dl {
    width: 100%;
    display: flex;
}
.download-list ul li dl dt {
    width: 60%;
    font-size: 22px;
    line-height: 80px;
}
.download-list ul li dl dd {
    flex: 1;
    min-width: 0;
    text-align: left;
}


.p-d-a-1 , .p-d-a-2 {
    display: block;
    width: 47%;
    height: 80px;
    line-height: 76px;
    border: 2px solid #2ad2c8;
    text-align: center;
    box-sizing: border-box;
    padding-left: 50px;
    font-size: 24px;
}
.p-d-a-1 {
    background: url(../images/icon_book.png) no-repeat 25% center;
    background-size: auto 60%;
    float: left;
}
.p-d-a-2 {
    border: 2px solid #00a4ff;
    background: url(../images/icon_guid.png) no-repeat 25% center;
    background-size: auto 60%;
    float: right;
}
.p-d-a-1:hover {
    background: url(../images/icon_book.png) no-repeat 25% center #f7f7f7;
    background-size: auto 60%;
    color: #2ad2c8;
}
.p-d-a-2:hover {
    border: 2px solid #00a4ff;
    background: url(../images/icon_guid.png) no-repeat 25% center #f7f7f7;
    background-size: auto 60%;
    color: #00a4ff;
}
.job-btn {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -100px;
    
}
.job-btn a {
    display: block;
    width: 100%;
    background: #fff;
    color: #0092e3;
    line-height: 2.5;
    text-align: center;
    font-size: 25px;
    box-sizing: border-box;
    border: 2px solid #0092e3;
}
.job-btn a:hover {
    background: #0092e3;
    color: #fff;
}
.current-product-class {
    width: 100%;
    font-size: 22px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 40px;
    padding-bottom: 15px;
}
.current-product-class a {
    color: #666;
}
.current-product-class a:hover {
    color: #00a4ff;
}
.nav ul li:nth-child(3) .nav-more dl dt a {
    color: #000;
}
.nav ul li:nth-child(3) .nav-more dl:hover dt a {
    font-weight: bold;
}

/*弹出通用样式*/
.t-box {
    display: none;
}
.cover {
    position: fixed;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    filter: alpha(opacity=80);
    opacity: 0.7;
    z-Index: 9999;
}
.t-content {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-Index: 99999;
    overflow: hidden;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}
.t-section {
    margin: auto;
    width: 770px;
    height: auto;
    background-color: #fff;
    z-Index: 9999;
    overflow: hidden;
    padding: 40px 0 20px 0;
    box-sizing: border-box;
    position: relative;
    border: 3px solid #e0cd9f;
}
.t-section2 {
    margin: auto;
    width: 500px;
    height: auto;
    background-color: #fff;
    z-Index: 9999;
    overflow: hidden;
    padding:0 0 20px 0;
    box-sizing: border-box;
    position: relative;
    border: 0;
}
.t-close {
    width: 100%;
    text-align: center;
    font-size: 24px;
    margin-top: 40px;
}
.t-close2 {
    width: 100%;
    text-align: center;
    font-size: 24px;
    margin-top: 40px;
}
.t-close2 {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: -20px;
}
.t-close2 a {
    width: 100%;
    height: 100%;
    display: block;
    background: url(../images/close.png) no-repeat;
    background-size: 100% 100%;
}
.t-title {
    width: 100%;
    font-size: 36px;
    line-height: 1.5;
    text-align: center;
}
.t-title2 {
    width: 100%;
    margin: 0 auto;
    font-size: 24px;
    line-height: 2.5;
    text-align: left;
    color: #fff;
    padding: 0 30px;
}
.t-info {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}
.t-info2 {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 30px;
}
.t-info2 ul {
    margin-top: 20px;
}
.t-info2 ul li {
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 2.5;
    background: #fff;
}
.t-info2 ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #333;
    transition: 0.2s;
}
.t-info2 ul li a:hover {
    color: #d7b155;
}
.t-send-email {
    width: 100%;
}
.t-send-email span {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.t-send-email span:nth-child(1) {
    font-size: 24px;
}
.t-send-email .copy-email {
    background: #f3f3f3;
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
    padding: 10px 0;
    box-sizing: border-box;
    cursor: pointer;
}
.t-send-email .copy-email span:nth-child(1) {
    font-size: 25px;
    white-space: nowrap; 
}
.t-send-email .copy-email span:nth-child(2) {
    font-size: 18px;
}
.t-upload {
    width: 100%;
    margin-top: 30px;
}
.t-upload>span {
    color: #d7b155;
    font-size: 24px;
}
.t-upload>div>input {
    display: none;
}
.t-upload>div>span {
    display: block;
    margin: 0 auto;
    font-size: 30px;
    background: #d7b155;
    width: 250px;
    line-height: 70px;
    color: #fff;
    cursor: pointer;
    margin-top: 8px;
}




/*分辨率兼容*/
/*
@media screen and (max-width : 1800px) {
    body {
        zoom: 0.9;
    }
}
@media screen and (max-width : 1700px) {
    body {
        zoom: 0.85;
    }
}
@media screen and (max-width : 1600px) {
    body {
        zoom: 0.8;
    }
}
@media screen and (max-width : 1500px) {
    body {
        zoom: 0.77;
    }
}
*/
@media screen and (max-width : 1681px) {

    body {
        zoom: 1;
        font-size: 16px;
    }

    .btn-orange {
        font-size: 16px;
    }

    .btn-red {
        font-size: 16px;
    }

    .mt20 {
        margin-top: 15px !important;
    }

    .mt30 {
        margin-top: 20px !important;
    }

    .mt40 {
        margin-top: 20px !important;
    }

    .mt50 {
        margin-top: 30px !important;
    }

    .mt60 {
        margin-top: 40px !important;
    }

    .mt70 {
        margin-top: 50px !important;
    }

    .mt80 {
        margin-top: 60px !important;
    }

    .middle {
        width: 1200px;
        margin: 0 auto;
        position: relative;
    }

    .home-banner {
        width: 100%;
    }

    .home-banner img {
        width: 100%;
    }

    /*通用HEADER*/
    header {
        height: 100px;
        padding-top: 15px;
    }

    header .logo {
        width: 200px;
        height: 70px;
    }

    header .logo img {
        height: 50px;
        margin-top: 10px;
    }

    header .nav {
        margin-left: 50px;
        line-height: 70px;
        height: 70px;
    }


    header .nav ul li {
        font-size: 16px;
    }

    .nav-more {
        top: 60px;
        padding-top: 25px;
    }
    .comparison-p-list {
        display: none;
        z-index: 111;
        left: 95%;
        top: -80px;
        width: 400%;
        padding: 10px;
    }

    .nav-more-box dl {
        padding: 20px 0 30px 0;
    }

    .nav-more-box dl dt {
        padding: 0 20px 0 20px;
    }

    .nav-more-box dl dd {
        margin-top: 20px;
        padding: 0 20px 0 20px;

    }

    .nav-more-box dl:nth-child(1) dt {
        padding: 0 20px 0 40px;
    }

    .nav-more-box dl:nth-child(1) dd {
        padding: 0 20px 0 40px;
    }

    .nav-more-box dl dd a {
        font-size: 14px;
    }

    .nav ul li:nth-child(2) .nav-more ul li a {
        color: #000;
        font-size: 14px;
    }
    .nav ul li:nth-child(2) .product-class-one li {
        height: 40px;
    }
    .nav ul li:nth-child(2) .product-class-one li>a {
        line-height: 40px;
    }
    .nav ul li:nth-child(2) .product-class-two dt {
        font-size: 16px;
        font-weight: bold;
    }


    .about-us-more {
        left: -30%;
        top: 70px;
        padding-top: 25px;
        line-height: 35px;
        padding: 15px 0;
    }

    .about-us-more a {
        font-size: 14px !important;
    }


    header .h-right {
        width: 280px;
        margin-top: 8px;
    }

    header .h-right .h-search {
        width: 200px;
        height: 70px;
        padding-top: 8px;
    }

    header .h-right .h-search input {
        width: 100%;
        height: 39px;
        padding: 0 60px 0 20px;
        font-size: 16px;
    }

    header .h-right .h-search input:nth-child(2) {
        width: 55px;
        height: 39px;
    }

    header .h-right .en-link {
        height: 70px;
        line-height: 70px;
    }

    header .h-right .en-link a {
        width: 60px;
        font-size: 16px;
        line-height: 55px;
        height: 55px;
    }


    /*通用FOOTER*/
    footer {
        width: 100%;
        background: #f1f1f1;
        overflow: hidden;
        margin-top: 70px;
    }

    footer .f-info {
        width: 100%;
        padding: 40px 0 20px 0;
    }

    footer .f-info .f-nav {
        width: 70%;
    }

    footer .f-info .f-nav dl {
        width: 22%;
    }

    footer .f-info .f-nav dl dt a {
        font-size: 18px;
    }

    footer .f-info .f-nav dl dd span a {
        font-size: 14px;
    }

    footer .f-info .f-ma {
        width: 30%;
    }

    footer .f-info .f-ma div {
        width: 120px;
        float: right;
    }

    footer .f-info .f-ma div:nth-child(2) {
        margin-right: 40px;
    }

    footer .f-info .f-ma div img {
        width: 120px;
        height: 120px;
    }

    footer .f-info .f-ma div span {
        font-size: 14px;
    }

    footer .f-copyright {
        padding: 30px 0;
    }

    footer .f-copyright div:nth-child(1) {
        width: 200px;
        height: 40px;
    }





    /*首页*/
    .home-hot-product {
        padding: 30px 0;
    }

    .home-hot-product li {
        width: 280px;
    }

    .home-hot-product li div:nth-child(1) {
        width: 280px;
        height: 185px;
    }

    .home-hot-product li div:nth-child(2) a {
        font-size: 20px;
    }

    .home-hot-product li div:nth-child(3) a {
        font-size: 14px;
        padding-left: 50px;
    }

    .home-img {
        height: auto;
    }

    .home-new-product {
        width: 55%;
    }

    .item-title h2 {
        width: 70%;
        font-size: 30px;
        line-height: 60px;
    }

    .item-title span {
        line-height: 60px;
    }

    .item-title span a {
        font-size: 14px;
    }


    .item-title-2 h2 {
        font-size: 26px;
    }

    .home-new-product-list {
        margin-top: 15px;
        padding: 25px 20px;
    }

    .home-new-product-list li {
        margin-bottom: 30px;
    }

    .home-new-product-list li a div:nth-child(1) {
        width: 250px;
        height: 165px;
        margin-right: 30px;
    }

    .home-new-product-list li a div:nth-child(2) h3 {
        width: 100%;
        font-size: 20px;
        margin-top: 20px;
    }

    .home-new-product-list li a div:nth-child(2) p {
        width: 100%;
        font-size: 16px;
        color: #666;
        margin-top: 15px;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        text-align: justify;
    }

    .home-news {
        width: 42%;
    }

    .home-news-list {
        margin-top: 15px;
    }

    .home-news-list li {
        margin-bottom: 24px;
    }

    .home-news-list li a div:nth-child(1) {
        width: 200px;
        height: 133px;
        margin-right: 20px;
    }

    .home-news-list li a div:nth-child(2) h3 {
        width: 100%;
        height: 50px;
        font-size: 18px;
        margin-top: 15px;
    }

    .home-support {
        padding: 30px 0;
        margin-top: 40px;
    }

    .home-support-list {
        margin-top: 20px;
    }

    .home-support-list li {
        width: 280px;
    }

    .home-support-list li a {
        padding: 20px 0;
    }

    .home-support-list li a i {
        height: 100px;
    }

    .home-support-list li a span {
        font-size: 20px;
        margin-top: 20px;
        padding-bottom: 30px;
    }

    .home-support-list li a:hover span::after {
        background: url(../images/home_right_pressed.png) no-repeat center center;
        background-size: auto 100%;
    }

    .home-link {
        margin-top: 30px;
    }

    .home-link li {
        width: 200px;
        height: 70px;
        margin-right: 40px;
        margin-bottom: 30px;
    }

    /*关于我们*/
    .page-banner {
        height: 300px;
    }

    .page-banner .middle {
        height: 300px;
    }

    .page-banner .middle .location-box {
        bottom: 30px;
        font-size: 18px;
    }

    .page-banner-s {
        height: 250px;
    }

    .page-banner-s .middle {
        height: 250px;
    }

    .company-box {
        margin-top: 50px;
    }

    .company-left {
        width: 500px;
        margin-right: 50px;
    }




    .company-right h1 {
        font-size: 30px;
        margin-top: 0px;
    }

    .company-right .company-info {
        font-size: 16px;
        margin-top: 20px;
    }

    .about-company-pic {
        width: 100%;
        margin-top: 50px;
    }

    .chairman-box {
        margin-top: 50px;
    }

    .chairman-left {
        width: 400px;
        margin-right: 100px;
    }

    .chairman-right h2 {
        margin-top: 80px;
        font-size: 26px;
    }


    .chairman-right .chairman-info {
        font-size: 18px;
        margin-top: 40px;
    }


    .item-ceo {
        height: 390px;
    }

    .item-ceo-info {
        width: 45%;
        margin-right: 8%;
        padding-top: 50px;
    }

    .item-ceo-info h3 {
        font-size: 30px;
    }

    .item-ceo-info span {
        font-size: 20px;
        margin-top: 15px;
    }

    .item-ceo-info p {
        margin-top: 20px;
        font-size: 14px;
    }

    .team-list {
        width: 100%;
        padding-top: 20px;
    }

    .team-list li {
        margin-top: 80px;
        padding: 30px;
    }

    .team-list li div:nth-child(1) {
        width: 130px;
        left: 30px;
        top: -30px;

    }

    .team-list li div:nth-child(2) {
        width: 68%;
    }

    .team-list li div:nth-child(2) h2 {
        font-size: 24px;
    }

    .team-list li div:nth-child(2) span {
        font-size: 20px;
        margin-top: 10px;
    }

    .team-list li div:nth-child(2) p {
        width: 100%;
        height: 150px;
        font-size: 14px;
        margin-top: 20px;
    }

    .team-list li:nth-child(-n+2) div:nth-child(2) p {
        height: 280px;
    }

    /*页码通用*/
    .pages {
        text-align: right;
        margin-top: 40px;
    }

    .pages_c {
        text-align: center;
        margin-top: 20px;
    }

    .pagination {
        display: inline-block;
        padding: 0;
        margin: 8px 0 4px 0
    }

    .pagination>li {
        display: inline
    }

    .pagination>li>a,
    .pagination>li>span {
        position: relative;
        float: left;
        padding: 0 8px;
        min-width: 8px;
        height: 28px;
        line-height: 28px;
        color: #666;
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.12);
        margin: 0 4px;
        font-size: 14px;
        cursor: pointer
    }

    .pagination>li>a:focus,
    .pagination>li>a:hover,
    .pagination>li>span:focus,
    .pagination>li>span:hover {
        z-index: 3;
        color: #00a4ff;
        background-color: #f7f9fb;
        border: 1px solid rgba(0, 0, 0, 0.12)
    }

    .pagination>.active>a,
    .pagination>.active>a:focus,
    .pagination>.active>a:hover,
    .pagination>.active>span,
    .pagination>.active>span:focus,
    .pagination>.active>span:hover {
        z-index: 2;
        color: #fff;
        cursor: default;
        background-color: #00a4ff;
        border-color: #00a4ff
    }

    .pagination.m_color>li>a:focus,
    .pagination.m_color>li>a:hover,
    .pagination.m_color>li>span:focus,
    .pagination.m_color>li>span:hover {
        color: #00a4ff
    }

    .pagination.m_color>.active>a,
    .pagination.m_color>.active>a:focus,
    .pagination.m_color>.active>a:hover,
    .pagination.m_color>.active>span,
    .pagination.m_color>.active>span:focus,
    .pagination.m_color>.active>span:hover {
        background-color: #00a4ff;
        border-color: #00a4ff
    }

    .pagination.m_color>.active>span:hover {
        color: #fff;
        border-color: #00a4ff
    }

    .job-box {
        margin-top: 50px;
    }

    .job-left ul li {
        width: 100%;
        height: 70px;
        line-height: 70px;
        font-size: 20px;
    }

    .job-list li {
        width: 100%;
        height: 70px;
        line-height: 70px;
        font-size: 18px;
    }



    .job-info {
        width: 100%;
        margin-top: 30px;
        display: flex;
    }

    .job-info-left {
        width: 130px;
        font-size: 20px;
    }

    .job-contact {
        padding: 20px;
    }

    .job-contact h2 {
        font-size: 20px;
    }

    .job-contact div {
        margin-top: 20px;
    }

    .job-contact div dl {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .job-contact div dl dt {
        width: 55px;
    }

    .contact-map {
        height: 500px;
        padding: 10px;
    }

    .contact-pic {
        margin-top: 30px;
    }

    .contact-list li {
        width: 25%;
        height: 200px;
        padding: 50px 10px 0 30px;
    }

    .contact-list li dl {
        font-size: 18px;
    }

    .contact-list li dl dt {
        font-size: 18px;
    }

    .contact-list li dl dt::before {
        width: 30px;
        height: 30px;
        margin-bottom: 15px;
    }

    .invest-1-left {
        width: 500px;
        margin-right: 50px;
    }

    .invest-1-right h1 {
        font-size: 30px;
        margin-top: 0;
    }

    .invest-1-right-content {
        margin-top: 20px;
    }

    .invest-2 {
        margin-top: 50px;
    }

    .invest-2 h2 {
        font-size: 30px;
    }

    .invest-2-content {
        margin-top: 30px;
    }

    .invest-3 {
        margin-top: 50px;
    }

    .invest-3-left h2 {
        font-size: 30px;
        margin-top: 0;
    }

    .invest-3-left-content {
        margin-top: 10px;
        font-size: 14px;
    }

    .invest-3-left-content li {
        margin-bottom: 15px;
        padding-left: 30px;
    }

    .invest-3-right {
        width: 600px;
        margin-left: 50px;
    }

    .new-top-list li {
        width: 260px;
    }

    .new-top-list li a div {
        height: 173px;
    }

    .new-top-list li a span {
        margin-top: 15px;
        font-size: 16px;
    }

    .new-list-box {
        width: 100%;
        margin-top: 30px;
    }

    .new-list li {
        padding: 30px 40px 30px 0;
    }

    .new-list li:nth-child(2n) {
        padding: 30px 0 30px 40px;
    }

    .new-left span:nth-child(1) {
        line-height: 40px;
        font-size: 20px;
    }

    .new-left span:nth-child(2) {
        font-size: 30px;
        width: 100%;
        line-height: 70px;
    }

    .new-right h2 {
        font-size: 20px;
        margin-top: 0;
    }

    .new-right p {
        width: 100%;
        height: 50px;
        font-size: 16px;
        line-height: 1.5;
        margin-top: 10px;
    }

    .news-details {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .news-details-left {
        width: 65%;
    }

    .news-details-title {
        font-size: 26px;
    }

    .news-details-date {
        font-size: 14px;
    }

    .news-content {
        margin-top: 20px;
    }

    .news-content p {
        margin: 15px 0;
    }

    .news-details-right {
        width: 29%;
        padding: 20px;
    }

    .news-details-right h3 {
        width: 100%;
        font-size: 20px;
        padding-bottom: 10px;
    }

    .news-details-right ol {
        width: 100%;
        margin-top: 10px;
    }

    .news-details-right ol li {
        line-height: 45px;
        padding-left: 25px;
    }

    .support-1-left {
        width: 500px;
        margin-right: 50px;
    }

    .support-1-right h1 {
        width: 100%;
        font-size: 30px;
        color: #000;
        margin-top: 0;
    }

    .support-1-right-content {
        margin-top: 20px;
    }

    .support-2 {
        margin-top: 50px;
    }

    .support-2 h2 {
        font-size: 30px;
    }

    .support-2-content {
        margin-top: 50px;
    }

    .support-2-content ul li {
        width: 280px;
        height: 150px;
        padding-top: 60px;
    }

    .support-2-content ul li i {
        width: 100px;
        height: 100px;
        top: -40px;
        left: 50%;
        margin-left: -50px;
    }

    .support-2-content ul li h3 {
        font-size: 20px;
    }

    .support-2-content ul li span {
        font-size: 16px;
    }

    .support-3 {
        margin-top: 50px;
    }

    .support-3 h2 {
        font-size: 30px;
    }

    .support-3-content {
        margin-top: 20px;
    }

    .faq-list {
        margin-top: 20px;
    }

    .faq-list dt {
        font-size: 18px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .faq-list dd {
        padding: 20px 20px;
        margin-bottom: 10px;
        margin-left: 40px;
    }

    .faq-list dt {
        padding-left: 40px;
    }

    .faq-list dt i {
        width: 30px;
        height: 40px;
    }

    .support-submit {
        width: 100%;
        height: 500px;
        background: url(../images/team_bj.png) no-repeat center center;
        background-size: 100% auto;
        margin-top: 50px;
        margin-bottom: -80px;
    }

    .support-submit-box {
        width: 650px;
        height: 430px;
        margin-top: 30px;
        padding: 30px;
    }

    .demand-item {
        margin-bottom: 10px;
    }

    .demand-item select {
        height: 50px;
        font-size: 16px;
        padding: 0 20px;
    }

    .demand-item input {
        height: 50px;
        font-size: 16px;
        padding: 0 20px;
    }

    .demand-item textarea {
        height: 120px;
        font-size: 16px;
        padding: 20px;
    }

    .submit-item button {
        width: 300px;
        height: 50px;
        font-size: 20px;
    }

    .search-title {
        width: 100%;
        overflow: hidden;
        font-size: 24px;
    }

    .search-box {
        margin-top: 30px;
    }

    .search-list li {
        margin-bottom: 30px;
    }

    .s-left {
        width: 200px;
        height: 133px;
        margin-right: 30px;
    }

    .s-left img {
        width: 200px;
    }

    .s-right h3 {
        font-size: 20px;
    }

    .s-right p {
        width: 100%;
        height: 50px;
        font-size: 14px;
        line-height: 25px;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .c-box {
        font-size: 14px;
    }

    .product-class {
        width: 350px;
        margin-right: 40px;
    }

    .product-class-one {
        padding: 20px 0;
    }

    .product-class-one li {
        width: 100%;
        height: 50px;
    }

    .product-class-one li>a {
        font-size: 18px;
        line-height: 50px;
        padding: 0 20px 0 30px;
    }

    .product-class-two {
        padding: 20px 30px;
    }

    .product-class-two dt {
        font-size: 20px;
    }

    .product-class-two dd {
        margin-top: 20px;
    }

    .product-class-two dd a {
        display: block;
        line-height: 2.5;
        font-size: 18px;
    }

    .product-help {
        margin-top: 30px;
        padding: 30px 20px;
    }

    .product-help span {
        line-height: 50px;
        font-size: 16px;
    }

    .product-help a {
        width: 45%;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }

    .product-list li {
        width: 48%;
        padding: 20px;
        margin-bottom: 30px;
    }

    .p-item-1 {
        padding-bottom: 20px;
    }

    .p-item-1 a div:nth-child(1) {
        width: 150px;
        height: 100px;
        margin-right: 20px;
    }

    .p-item-1 a div:nth-child(2) h3 {
        width: 100%;
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }

    .p-item-1 a div:nth-child(2) span {
        margin-top: 10px;
    }

    .p-item-2 {
        margin-top: 20px;
    }

    .p-item-2 h4 {
        font-size: 16px;
    }

    .p-item-2 div {
        width: 100%;
        height: 280px;
        font-size: 16px;
    }

    .p-item-3 a {
        width: 45%;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }

    .select-class-title {
        width: 200px;
        font-size: 30px;
    }

    .select-class-box dl {
        padding: 10px 0 10px 0;
    }

    .select-class-box dl dt {
        padding-right: 30px;
    }

    .select-class-box dl dd {
        margin-top: 10px;
        padding-right: 30px;
    }

    .select-class-box dl dd a {
        font-size: 16px;
    }

    .comparison-box {
        width: 100%;
        margin-top: 20px;
    }

    .comparison-btn-1 button {
        width: 180px;
        height: 50px;
        font-size: 20px;
    }

    .comparison-btn-2 a {
        height: 50px;
        line-height: 50px;
        padding-left: 30px;
        margin-left: 50px;
    }

    .comparison-list {
        margin-top: 20px;
    }

    .comparison-list table {
        line-height: 50px;
        font-size: 14px !important;
    }

    .comparison-list table tr td:nth-child(3) a {
        display: block;
        width: 50px;
        height: 50px;
    }

    .my-comparison-1 {
        font-size: 30px;
    }

    .my-comparison-2 button {
        width: 140px;
        height: 48px;
        font-size: 18px;
        margin-left: 25px;
    }

    .my-comparison-box {
        margin-top: 20px;
    }

    .my-comparison-box table {
        line-height: 50px;
    }

    .p-title {
        width: 100%;
        font-size: 26px;
        padding: 10px 0 20px 0;
    }

    .p-parameters {
        margin-top: 20px;
    }

    .p-item-title span {
        width: 50%;
        font-size: 20px;
        line-height: 50px;
        height: 50px;
    }

    .p-item-title a {
        width: 180px;
        height: 50px;
        line-height: 50px;
    }

    .p-item-content {
        margin-top: 10px;
    }

    .p-apply {
        margin-top: 20px;
    }

    .p-download {
        margin-top: 20px;
    }

    .p-download-btn a {
        display: block;
        width: 260px;
        height: 60px;
        line-height: 56px;
        margin-right: 50px;
        padding-left: 40px;
        font-size: 18px;
    }

    .p-case {
        margin-top: 20px;
    }

    .p-case-list li a {
        padding-left: 25px;
        line-height: 40px;
    }

    .download-s-box {
        padding: 20px 30px;
    }

    .download-s-a input {
        width: 600px;
    }

    .download-s-a button {
        width: 150px;
        height: 50px;
        font-size: 16px;
    }

    .download-s-b {
        width: 100%;
        margin-top: 20px;
        font-size: 20px;
    }

    .download-list {
        margin-top: 30px;
    }

    .download-list ul li {
        padding: 20px;
    }

    .download-list ul li dl dt {
        width: 60%;
        font-size: 18px;
        line-height: 60px;
    }

    .download-list ul li dl dd {
        flex: 1;
        min-width: 0;
        text-align: left;
    }


    .p-d-a-1,
    .p-d-a-2 {
        height: 60px;
        line-height: 56px;
        padding-left: 50px;
        font-size: 18px;
    }

    .job-btn {
        width: 100%;
        position: absolute;
        left: 0;
        bottom: -60px;

    }

    .job-btn a {
        display: block;
        width: 100%;
        background: #fff;
        color: #0092e3;
        line-height: 2;
        text-align: center;
        font-size: 20px;
        box-sizing: border-box;
        border: 2px solid #0092e3;
    }

    .job-btn a:hover {
        background: #0092e3;
        color: #fff;
    }

    /*弹出通用样式*/

    .t-section {
        width: 600px;
        padding: 30px 0 20px 0;
    }

    .t-section2 {
        width: 400px;
    }

    .t-close {
        width: 100%;
        text-align: center;
        font-size: 18px;
        margin-top: 30px;
    }

    .t-close2 {
        width: 100%;
        text-align: center;
        font-size: 24px;
        margin-top: 40px;
    }

    .t-title {
        font-size: 26px;
    }

    .t-title2 {
        font-size: 20px;
    }

    .t-info2 {
        padding: 0 20px;
    }

    .t-info2 ul {
        margin-top: 20px;
    }

    .t-info2 ul li {
        font-size: 16px;
    }

    .t-send-email span:nth-child(1) {
        font-size: 24px;
    }

    .t-send-email .copy-email span:nth-child(1) {
        font-size: 25px;
    }

    .t-send-email .copy-email span:nth-child(2) {
        font-size: 16px;
    }

    .t-upload {
        margin-top: 20px;
    }

    .t-upload>span {
        color: #d7b155;
        font-size: 18px;
    }

    .t-upload>div>span {
        font-size: 18px;
        width: 200px;
    }
    .comparison-title div:nth-child(1) {
        font-size: 16px;
    }
    .comparison-title div:nth-child(2) span.sel-btn {
        font-size: 16px;
    }

}

@media screen and (min-width : 2100px) {
    body {
        zoom: 1.1;
    }
}
@media screen and (min-width : 2300px) {
    body {
        zoom: 1.2;
    }
}
@media screen and (min-width : 2600px) {
    body {
        zoom: 1.3;
    }
}
@media screen and (min-width : 2800px) {
    body {
        zoom: 1.4;
    }
}
@media screen and (min-width : 3000px) {
    body {
        zoom: 1.5;
    }
}
@media screen and (min-width : 3300px) {
    body {
        zoom: 1.6;
    }
}

