* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    clear: both;
    overflow: hidden;
}

.mobile-inner-header {
    background-color: rgba(243, 243, 245, 0.7);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 22px;
}

.mobile-inner-header-icon {
    color: #333;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(51, 51, 51, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgba(51, 51, 51, 1);
}

.mobile-inner-header img {
    height: 65%;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(243, 243, 245, 0.9);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #333;
    border-bottom: solid 1px rgba(51, 51, 51, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(51, 51, 51, 0.4);
    border-bottom: solid 1px rgba(51, 51, 51, 0.2);
}

.html5zoo-nav-0 {
    background: none !important;
    padding: 0 !important;
    margin-top: -40px !important;
}

.html5zoo-bullet-wrapper-0 {
    width: 100% !important;
    text-align: center;
}

.html5zoo-nav-container-0 .html5zoo-bullet-wrapper-0 div {
    background: #fff !important;
    border-radius: 100% !important;
    margin-right: 10px !important;
    float: none !important;
    display: inline-block !important;
}

.html5zoo-arrow-left-0 {
    background: url(../images/left_arrow.png) center no-repeat !important;
    width: 32px !important;
    height: 32px !important;
    z-index: 99999999 !important;
    top: 50% !important;
    left: 30px !important;
    display: block !important;
    opacity: 1 !important;
    background-size: 100% !important;
}

.html5zoo-arrow-right-0 {
    background: url(../images/right_arrow.png) center no-repeat !important;
    width: 32px !important;
    height: 32px !important;
    z-index: 99999999 !important;
    top: 50% !important;
    right: 30px !important;
    display: block !important;
    opacity: 1 !important;
    background-size: 100% !important;
}

#banner {
    width: 100%;
    overflow: hidden;
}

.head {
    width: 100%;
    height: 80px;
    background: #fff;
    position: relative;
}

.heads {
    max-width: 1610px;
    margin: auto;
}

.logo {
    float: left;
    height: 80px;
    line-height: 80px;
}

.language {
    float: right;
    height: 80px;
    line-height: 80px;
    font-size: 0;
}

.language a {
    padding: 0 10px;
    font-size: 15.8px;
    color: #87CADC;
}

.language a:first-child {
    border-right: 1px solid #87CADC;
    padding-left: 0;
}

.language a:last-child {
    padding-right: 0;
}

.search {
    float: right;
    margin-right: 25px;
    margin-top: 27px;
}

.search input[type=text] {
    float: left;
    width: 176px;
    height: 26px;
    border: 1px solid #d9d9d9;
    padding-left: 8px;
    background: none;
    outline: none;
}

.search input[type=submit] {
    float: left;
    width: 48px;
    height: 26px;
    border: none;
    background: url(../images/search.png) center no-repeat;
    outline: none;
}

.nav {
    float: right;
}

.nav ul {
    margin-bottom: 0;
}

.nav ul li {
    float: left;
    height: 80px;
    line-height: 80px;
    font-size: 14px;
    color: #333;
    margin: 0 50px;
}

.nav ul li a {
    display: block;
    font-size: 14px;
    color: #333;
}

.detailnav {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 999;
    background: #fff;
    width: 100%;
    display: none;
}

.detailnavs {
    max-width: 1200px;
    margin: auto;
}

.detailnavs a {
    display: block;
    height: 80px;
    line-height: 80px;
    font-size: 14px;
    color: #333;
    padding: 0;
    margin-right: 50px;
    float: left;
}

.prodetailnav a {
    width: 20%;
    float: left;
    margin-right: 0;
    text-align: center;
}

.prodetailnav_pic {
    height: 40px;
    line-height: 40px;
}

.prodetailnav_name {
    height: 40px;
    line-height: 40px;
}

.about {
    width: 100%;
    overflow: hidden;
    background: url(../images/abbg.jpg) center no-repeat;
    height: 601px;
    margin-top: 30px;
    padding-top: 95px;
}

.abouts {
    max-width: 1215px;
    margin: auto;
}

.abtitle {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
}

.abcon {
    font-size: 17px;
    color: #fff;
    line-height: 2.2;
    margin-top: 30px;
}

.abmore {
    margin-top: 105px;
}

.abmore a {
    display: block;
    width: 180px;
    height: 47px;
    line-height: 47px;
    border-radius: 30px;
    background: #266F99;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.new {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 50px;
}

.news {
    max-width: 1300px;
    margin: 45px auto 0;
}

.title {
    text-align: center;
}

.maintitle {
    font-size: 30px;
    color: #333;
}

.titles {
    font-size: 14px;
    color: #87CADC;
    margin-top: 10px;
}

.newitem {
    float: left;
    width: 24.5%;
    margin-right: calc(2% / 3);
}

.newitem:nth-child(4n) {
    margin-right: 0;
}

.newpic {
    width: 100%;
    overflow: hidden;
}

.newpic img {
    width: 100%;
    transition: all 0.6s;
}

.newitem:hover .newpic img {
    transform: scale(1.1);
}

.newtitle {
    font-size: 15px;
    color: #333;
    margin-top: 10px;
}

.newdate {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.newcon {
    font-size: 13.7px;
    color: #666;
    line-height: 1.7;
    margin-top: 5px;
}

.foot {
    width: 100%;
    overflow: hidden;
    background: url(../images/fbg.jpg) center no-repeat;
    height: 440px;
}

.foots {
    max-width: 1215px;
    margin: auto;
    height: 380px;
    padding-top: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.copy {
    max-width: 1215px;
    margin: auto;
    height: 60px;
    line-height: 60px;
}

.left_copy {
    float: left;
    font-size: 12px;
    color: #fff;
}

.right_copy {
    float: right;
}

.right_copy a {
    font-size: 12px;
    color: #fff;
}

.flogo {
    float: left;
}

.saoma {
    float: right;
    text-align: center;
}

.saoma img {
    width: 128px;
}

.saoma p {
    font-size: 12px;
    color: #fff;
    margin-top: 10px;
}

.fnav {
    float: left;
    margin-left: 90px;
}

.ftitle {
    font-size: 16px;
    color: #fff;
}

.flists a {
    font-size: 14px;
    color: #fff;
    margin-top: 22px;
    display: block;
}

.flists {
    float: left;
    margin-right: 80px;
}

.fcontact {
    float: left;
    margin-left: 50px;
}

.fcons {
    width: 100%;
    overflow: hidden;
    margin-top: 22px;
}

.fcon_pic {
    float: left;
}

.fcon_intro {
    float: left;
    font-size: 14px;
    color: #fff;
    margin-left: 10px;
}

.insidebanner img {
    width: 100%;
}

.bread {
    width: 100%;
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    background-color: rgb(240, 245, 249);
}

.breads {
    max-width: 1200px;
    margin: auto;
}

.breads a {
    float: left;
    font-size: 12px;
    color: rgb(38, 111, 153);
}

.breads span {
    float: left;
    font-size: 12px;
    color: rgb(38, 111, 153);
    padding: 0 5px;
}

.inabout {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.inabouts {
    max-width: 1200px;
    margin: auto;
}

.insidetitle {
    font-size: 28px;
    color: rgb(38, 111, 153);
    font-weight: bold;
    padding-bottom: 21px;
    border-bottom: 1px solid rgb(229, 229, 229);
}

.inabout_con {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 2.4;
    margin-top: 20px;
}

.abswiper.swiper-container {
    margin-top: 20px;
}

.abswiper img {
    width: 100%;
}

.inhonor {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.inhonors {
    max-width: 1200px;
    margin: auto;
}

.inhonlist {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.inhon {
    float: left;
    width: 19%;
    margin-right: 1.25%;
    margin-bottom: 20px;
    text-align: center;
}

.inhon:nth-child(5n) {
    margin-right: 0;
}

.inhon img {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
}

.inhon p {
    font-size: 15px;
    color: #5a5a5a;
    margin-top: 10px;
}

.inproduct {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.inproducts {
    max-width: 1200px;
    margin: auto;
}

.inpro_left {
    float: left;
    width: 21.3%;
}

.inpro_right {
    float: right;
    width: 77%;
}

.inpro_left_top {
    width: 100%;
    position: relative;
    height: 70px;
    background-color: rgb(135, 202, 220);
    padding-left: 15px;
    line-height: 70px;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.inpro_left_top span {
    position: absolute;
    right: 0;
    top: -12px;
    font-size: 60px;
    color: #fff;
    opacity: 0.2;
    font-weight: bold;
}

.lpro_left_list a {
    display: block;
    height: 55px;
    line-height: 54px;
    background-color: rgb(135, 202, 220);
    border-top: 1px solid #fff;
    padding-left: 15px;
    font-size: 14px;
    color: #fff;
}

.lpro_left_list a img {
    width: 25px;
    margin-right: 20px;
}

.inpro {
    width: 32%;
    margin-right: 2%;
    text-align: center;
    margin-bottom: 10px;
    float: left;
}

.inpro img {
    transition: all 0.6s;
    width: 100%;
}

.inpro_pic {
    overflow: hidden;
}

.inpro:nth-child(3n) {
    margin-right: 0;
}

.inpro p {
    font-size: 15px;
    color: #434343;
    margin-top: 8px;
}

.inpro:hover img {
    transform: scale(1.1);
}

.proshow {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.proshows {
    max-width: 1200px;
    margin: auto;
}

.proshow_top {
    width: 100%;
    overflow: hidden;
}

.proshow_top_fl {
    float: left;
    width: calc(100% / 3);
}

.proshow_top_fl_pic{
	overflow:hidden;
}

.proshow_top_fl_pic img {
    width: 100%;
	transition:all 0.6s;
}

.proshow_top_fl_pic:hover img{
	transform:scale(1.1);
}

.proshow_top_fl_list {
    width: 100%;
    overflow: hidden;
    padding: 0 15px;
    position: relative;
    margin-top: 20px;
}

.proshow_top_fl_list img {
    width: 100%;
    padding: 7px 0;
    border: 1px solid #eee;
}

.proshow_top_fl_list .swiper-button-prev {
    width: 12px;
    height: 43px;
    background: url(../images/wp-new-cart-background.png) no-repeat -574px -199px;
    left: 0;
    top: 5px;
    margin-top: 0;
    opacity: 1;
    cursor: pointer;
    pointer-events: all;
}

.proshow_top_fl_list .swiper-button-prev:hover {
    background: url(../images/wp-new-cart-background.png) no-repeat -598px -199px;
}

.proshow_top_fl_list .swiper-button-next {
    width: 12px;
    height: 43px;
    background: url(../images/wp-new-cart-background.png) no-repeat -586px -199px;
    right: 0;
    top: 5px;
    margin-top: 0;
    opacity: 1;
    cursor: pointer;
    pointer-events: all;
}

.proshow_top_fl_list .swiper-button-next:hover {
    background: url(../images/wp-new-cart-background.png) no-repeat -610px -199px;
}

.proshow_top_fr {
    float: right;
    width: 60%;
}

.proshow_top_fr_title {
    font-size: 22px;
    color: #000;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 15px;
}

.proshow_top_fr_con {
    text-indent: 2em;
    color: #454545;
    font-size: 14px;
    line-height: 2;
    margin-top: 8px;
}

.proshow_bot {
    width: 100%;
    overflow: hidden;
}

.proshow_bot_title {
    color: rgb(135, 202, 220);
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}

.proshow_bot_con {
    margin-top: 5px;
    font-size: 14px;
    color: #000;
    line-height: 30px;
}

.proshow_bot_con img {
    max-width: 100%;
}

.innew {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.innews {
    max-width: 1200px;
    margin: auto;
}

.innw {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px dashed #e7e7e7;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.innewpic {
    width: 25%;
    float: left;
}

.innewpic img {
    width: 100%;
}

.innewintro {
    float: right;
    width: 73%;
}

.innewtitle {
    font-size: 18px;
    color: #333333;
}

.innewtitle span {
    font-size: 12px;
    color: #87cadc;
    margin-right: 8px;
}

.innw:hover .innewtitle {
    color: #87cadc;
}

.innewdate {
    font-size: 13px;
    padding-top: 8px;
    color: #929292;
}

.innewcon {
    font-size: 15px;
    line-height: 1.7;
    padding-top: 8px;
}

.newshow {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.newshows {
    max-width: 1200px;
    margin: auto;
}

.newshow_title {
    text-align: center;
    font-size: 22px;
    color: #000000;
}

.newshow_item {
    text-align: center;
    margin-top: 10px;
}

.newshow_item span {
    margin-right: 20px;
    font-size: 12px;
    color: #5A5A5A;
}

.newshow_container {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2;
}

.newshow_container img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.download {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.downloads {
    max-width: 1200px;
    margin: auto;
}

.download_left {
    float: left;
    width: 76%;
}

.download_left_title {
    color: rgb(38, 111, 153);
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.download_left_list a {
    display: block;
    border-bottom: 1px dashed #ddd;
    line-height: 50px;
    color: rgb(67, 67, 67);
    font-size: 14px;
}

.download_right {
    float: right;
    width: 20%;
}

.download_right_top {
    height: 45px;
    line-height: 45px;
    width: 100%;
    background-color: rgb(135, 202, 220);
    text-align: center;
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.download_right_list a {
    display: block;
    border-bottom: 1px dashed #ddd;
    height: 51px;
    line-height: 50px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.download_right_list a.active,
.download_right_list a:hover {
    color: #87cadc;
}

.job {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.jobs {
    max-width: 1200px;
    margin: auto;
}

.job_top {
    width: 100%;
    overflow: hidden;
}

.job_bot {
    width: 100%;
    overflow: hidden;
    margin-top: 25px;
}

.job_title {
    color: rgb(38, 111, 153);
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.job_top_container {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.job_top_container_fl {
    float: left;
    width: 45.8%;
}

.job_top_container_fl img {
    width: 100%;
}

.job_top_container_fr {
    float: right;
    width: 51.6%;
}

.job_top_container_fr_intro {
    position: relative;
    padding-left: 15px;
}

.job_top_container_fr_intro p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.job_top_container_fr_intro::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 5px;
    height: 20px;
    background: #87cadc;
}

.job_top_container_fr_advantage {
    width: 100%;
    overflow: hidden;
    background: rgb(135, 202, 220);
    padding: 25px;
    margin-top: 45px;
}

.job_top_container_fr_advantage p {
    padding: 0 25px;
    margin-bottom: 28px;
    font-size: 14px;
    color: #fff;
    line-height: 2;
    position: relative;
}

.job_top_container_fr_advantage p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #fff;
}

.job_bot_list {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.job_bot_list_top {
    width: 100%;
    overflow: hidden;
    background: #87cadc;
    height: 51px;
    line-height: 50px;
    padding: 0 50px;
    position: relative;
    border-bottom: 1px solid #f2f2f2;
}

.job_bot_lists:hover .job_bot_list_top,
.job_bot_lists.active .job_bot_list_top {
    background: #266f99;
}

.job_bot_list_top::before {
    content: "+";
    position: absolute;
    left: 15px;
    top: -2px;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
}

.job_bot_lists.active .job_bot_list_top::before {
    content: "-";
}

.job_bot_list_top_title {
    float: left;
    font-size: 15px;
    color: #fff;
}

.job_bot_list_top_date {
    float: right;
    font-size: 12px;
    color: #fff;
}

.job_bot_list_bot {
    padding: 20px 60px;
    font-size: 14px;
    line-height: 2;
    background-color: #f2f2f2;
    display: none;
}

.contact {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.contacts {
    max-width: 1200px;
    margin: auto;
}

.contact_top {
    width: 100%;
    overflow: hidden;
}

.contact_bot {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
}

.contact_title {
    color: rgb(38, 111, 153);
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.contact_title span {
    margin-left: 20px;
    font-size: 15px;
    color: rgb(67, 67, 67);
    font-weight: normal;
}

.contact_top_detail {
    width: 100%;
    overflow: hidden;
    background-color: rgb(135, 202, 220);
    padding: 30px;
    margin-top: 25px;
}

.contact_top_title {
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    border-bottom: 1px solid #fff;
    padding-bottom: 16px;
}

.contact_top_cons {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.contact_top_con_item {
    float: left;
    margin-right: 40px;
}

.contact_top_con_item:last-child {
    margin-right: 0;
}

.contact_top_con_pic {
    float: left;
}

.contact_top_con_pic img {
    width: 20px;
}

.contact_top_con_intro {
    float: left;
    margin-left: 10px;
}

.contact_top_con_top {
    font-size: 14px;
    color: #fff;
}

.contact_top_con_bot {
    font-size: 20px;
    color: #fff;
}

.contact_top_map {
    width: 100%;
    margin-top: 15px;
    overflow: hidden;
}

.form_item {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.form_items {
    width: 48%;
    margin-right: 4%;
    float: left;
}

.form_items:nth-child(2n) {
    margin-right: 0;
}

.form_items label {
    font-weight: normal;
    display: block;
    color: #5a5a5a;
    font-size: 13px;
}

.form_items label span {
    color: #ff0000;
}

.form_items input[type=text] {
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    background: none;
    outline: none;
    border: 1px solid #dedede;
    height: 40px;
    padding-left: 5px;
}

.form_items textarea {
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    background: none;
    outline: none;
    border: 1px solid #dedede;
    height: 124px;
    padding-left: 5px;
    padding-top: 5px;
}

.form_items input[type=submit] {
    width: 100%;
    border-radius: 5px;
    background-color: #87cadc;
    outline: none;
    border: none;
    height: 40px;
    color: #fff;
}

.con {
    width: auto !important;
    height: auto !important;
}