@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: Arial;
}

.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;
}

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;
}
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;
    font-weight: bold;
}

header .nav ul li:last-child {
    position: relative;
}
.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;
}

header .h-right .h-search input {
    width: 100%;
    height: 55px;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 0 60px 0 20px;
    font-size: 16px;
}
header .h-right .h-search button {
    width: 55px;
    height: 55px;
    background: none;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/icon_searcha.png) no-repeat 15px center;
    background-size: auto 40%;
}
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;
}
footer .middle {
    padding: 60px 0;
    overflow: hidden;
}
footer .footer-left {
    width: 50%;
    float: left;
    font-size: 16px;
    color: #666;
}
footer .footer-right {
    width: 40%;
    float: right;
    text-align: right;
}
footer .footer-right img {
    width: auto;
    height: 55px;
    float: right;
    margin-top: 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: 20px;
    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_nine.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;
}
.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: 30px;
}

.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: 140px;
    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(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: 220px;
    font-size: 16px;
    color: #666;
    margin-top: 20px;
    text-align: justify;
}

/*页码通用*/
.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;
}

.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: 60px;
    line-height: 1.5;
}

.invest-3-left-content {
    width: 100%;
    color: #666;
    text-align: justify;
    margin-top: 50px;
}

.invest-3-left-content ul {
    width: 100%;
}

.invest-3-left-content li {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
    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: 30%;
    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 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_en.jpg) no-repeat center center;
    margin-top: 60px;
    margin-bottom: -80px;
}
.support-submit .middle {
    display: flex;
}
.support-left-box {
    flex: 1;
    min-width: 0;
    padding-top: 280px;
}
.support-left-box h3 {
    width: 80%;
    color: #fff;
    font-size: 36px;
    font-weight: normal;
}
.support-left-box>div {
    width: 80%;
    color: #fff;
    margin-top: 30px;
    text-align: justify;
}
.support-submit-box {
    width: 815px;
    height: 700px;
    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;
}
.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: 75px;
}
.product-class-one li>a {
    width: 100%;
    display: block;
    font-size: 22px;
    line-height: 75px;
    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%;
    margin-top: 30px;
}
.comparison-btn {
    width: 100%;
    overflow: hidden;
}
.comparison-btn-1 {
    width: 30%;
    float: left;
}
.comparison-btn-1 button {
    width: 200px;
    height: 70px;
    color: #fff;
    background: #00a4ff;
    font-size: 24px;
}
.comparison-btn-2 {
    width: 30%;
    float: right;
    text-align: right;
}
.comparison-btn-2 a {
    display: block;
    float: right;
    color: #666;
    height: 70px;
    line-height: 70px;
    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-list {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.comparison-list table {
    width: 100%;
    border: 1px solid #e2e2e2;
    border-bottom: 0;
    line-height: 60px;
}
.comparison-list table tr th {
    background: #f0f0f0;
    border-bottom: 1px solid #e2e2e2;
    text-align: left;
}
.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: 7%;
}
.comparison-list table tr th:nth-child(2) {
    width: 7%;
}
.comparison-list table tr th:nth-child(3) {
    width: 10%;
}
.comparison-list table tr th:nth-child(4) ,.comparison-list table tr td:nth-child(4) {
    width: 20%;
    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: 0 0 10px 0;
    text-align: left;
    font-weight: normal;
}
.p-f-title {
    width: 100%;
    overflow: hidden;
    font-size: 22px;
}
.p-content {
    width: 100%;
    overflow: hidden;
    color: #666;
    text-align: justify;
    margin-top: 30px;
}
.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: 500px;
    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: 22px;
}
.p-download-btn a:nth-child(1) {
    background: url(../images/icon_book.png) no-repeat 20% center;
    background-size: auto 60%;
    padding-left: 50px;
}
.p-download-btn a:nth-child(2) {
    border: 2px solid #00a4ff;
    background: url(../images/icon_guid.png) no-repeat 15% center;
    background-size: auto 60%;
}
.p-download-btn a:nth-child(1):hover {
    background: url(../images/icon_book.png) no-repeat 20% 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 15% 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;
}
.en-product-box h1 {
    font-size: 40px;
    font-weight: normal;
}
.en-select-class {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}
.en-select-class select {
    width: 500px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    box-sizing: border-box;
    padding-left: 20px;
    margin-right: 20px;
}
.en-product-list-box {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}
.en-product-list {
    width: 100%;
    overflow: hidden;
}
.en-product-list ul {
    width: 100%;
    overflow: hidden;
}
.en-product-list ul li {
    width: 47%;
    float: left;
    margin-bottom: 50px;
}
.en-product-list ul li:nth-child(2n) {
    float: right;
}
.en-product-list ul li a {
    width: 100%;
    display: flex;
}
.en-p-left {
    width: 270px;
    height: 180px;
    overflow: hidden;
    margin-right: 40px;
}
.en-p-left img {
    width: 100%;
    height: auto;
}
.en-p-right {
    flex: 1;
    min-width: 0;
}
.en-p-right h3 {
    width: 100%;
    height: 80px;
    font-size: 24px;
    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;
    margin-top: 10px;
}
.en-p-right span {
    display: block;
    margin-top: 40px;
}
.en-product-list ul li a:hover img {
    transform: scale(1.05);
}
.en-product-list ul li a:hover h3 {
    color: #1e7bda;
}
.en-p-d-img {
    width: 480px;
    height: 320px;
    margin-right: 50px;
}
.en-p-d-img img {
    width: 480px;
    height: auto;
}
.parameter-table {
    width: 70%;
    overflow: hidden;
    border: 2px solid #c8c8c8;
    box-sizing: border-box;
}
.parameter-table tr td {
    line-height: 36px;
    box-sizing: border-box;
    padding: 0 20px;
    border-bottom: 1px solid #c8c8c8;
}
.parameter-table tr td:nth-child(1) {
    font-weight: bold;
    background: #e5e5e5;
    width: 35%;
}
.parameter-table tr:last-child td {
    border-bottom: 0;
}





/*分辨率兼容*/
@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 : 1441px) {
    body {
        zoom: 0.75;
    }
}
@media screen and (max-width : 1300px) {
    body {
        zoom: 0.7;
    }
}
@media screen and (max-width : 1200px) {
    body {
        zoom: 0.65;
    }
}
@media screen and (max-width : 1100px) {
    body {
        zoom: 0.57;
    }
}

@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;
    }
}
@media screen and (min-width: 640px) and (max-width: 1025px) {
    body {
        zoom: 0.6;
    }
}