* {
    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(0, 54, 142,1);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
}

.mobile-inner-header-icon {
    color: #fff;
    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(255, 255, 255, 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(255, 255, 255, 1);
}

.mobile-inner-header img {
    height: 45%;
}

.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(0, 54, 142, 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: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 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(255, 255, 255, 0.4);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.banner img {
    width: 100%;
}

.head {
    width: 100%;
    background: #00368e;
    height: 140px;
}

.heads {
    max-width: 1705px;
    margin: auto;
}

.logo {
    float: left;
    height: 140px;
    line-height: 140px;
    width: 28.8%;
}

.logo img {
    width: 100%;
}

.search {
    float: right;
    cursor: pointer;
    height: 140px;
    line-height: 140px;
}

.search-box {
    width: 28%;
    position: fixed;
    right: 0;
    top: 140px;
    display: none;
    z-index: 9999;
    background: rgba(0, 54, 142, 0.7);
    padding: 18px 2%;
}

.search-box .close {
    float: right;
    width: 35px;
    height: 35px;
    background: url(../images/wel26.png) no-repeat center;
    background-size: 100%;
    margin-top: 2px;
    opacity: 1;
}

.search-box form {
    width: 76%;
    height: 40px;
    line-height: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 1);
}

.search-box form .text {
    font-size: 12px;
    border: none;
    background: none;
    padding: 0 28px 0 18px;
    width: 100%;
    height: 40px;
    color: #fff;
    line-height: 40px;
    outline: none;
}

.search-box form .submit {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -15px;
    background: url(../images/search.png) no-repeat center;
    border: none;
}

.search-box form .text::-webkit-input-placeholder {
    color: #fff;
}

.search-box form .text:-moz-placeholder {
    color: #fff;
}

.search-box form .text::-moz-placeholder {
    color: #fff;
}

.search-box form .text:-ms-input-placeholder {
    color: #fff;
}

.nav {
    float: right;
    width: 65%;
}

.nav ul {
    margin-bottom: 0;
}

.nav ul li {
    width: calc(100% /9);
    float: left;
    text-align: center;
    height: 140px;
    line-height: 140px;
    position: relative;
}

.nav ul li a {
    display: block;
    color: #fff;
    font-size: 19px;
}

.nav ul li .detailnav {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    z-index: 999;
    display: none;
}

.nav ul li .detailnav li {
    width: 100%;
    padding: 0;
    text-align: center;
    height: 41px;
    line-height: 40px;
    background: #00368e;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.nav ul li .detailnav li a {
    font-size: 14px;
}

.nav ul li:hover .detailnav {
    display: block;
}

.title {
    text-align: center;
}

.maintitle {
    text-transform: uppercase;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.titles {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    margin-top: -35px;
}

.about {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.right_ab {
    float: right;
    width: 50%;
}

.right_ab img {
    width: 100%;
}

.left_ab {
    float: left;
    width: 42.5%;
    margin-left: 5.5%;
}

.abtitle {
    font-size: 28px;
    color: #000;
}

/*.abtitle span {
    color: #03479a;
    font-weight: bold;
}*/

.abcon {
    text-indent: 2em;
    font-size: 20px;
    color: #000;
    line-height: 2.5;
    margin-top: 25px;
}

.shuju {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.sj {
    width: 25%;
    float: left;
    text-align: center;
}

.sj_top {
    font-size: 29px;
    color: #000;
}

.sj_top b {
    font-size: 60px;
}

.sj_bot {
    font-size: 29px;
    color: #000;
}

#product .maintitle {
    color: rgba(255, 255, 255, 0.1);
}

#product .titles {
    color: #fff;
}

.pronav_main {
    text-align: center;
    font-size: 0;
    max-width: 1705px;
    margin: 40px auto 0;
}

.pronav_main a {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 30px;
    height: 50px;
    line-height: 48px;
    background: #03479a;
    font-size: 24px;
    color: #fff;
    margin: 0 40px;
    width: 13%;
}

.pronav_main a.active {
    background: #4baafc;
}

.procontainer {
    max-width: 1705px;
    margin: 40px auto 0;
}

.proitem {
    display: none;
}

.proitem_nav {
    text-align: center;
    font-size: 0;
}

.proitem_nav a {
    font-size: 24px;
    color: #fff;
    padding: 0 15px;
}

.proitem_nav a.active {
    font-weight: bold;
}

.prolist {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.prolists a {
    display: block;
    width: 23.5%;
    float: left;
    margin-right: 2%;
}

.prolists a:nth-child(4n) {
    margin-right: 0;
}

.prolists a img {
    width: 100%;
}

.prolists a p {
    background: #fff;
    margin-top: 15px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    font-size: 20px;
    color: #03479a;
}

.prolists {
    display: none;
}

.promore {
    text-align: center;
    margin-top: 40px;
}

.promore a {
    display: inline-block;
    width: 142px;
    height: 43px;
    line-height: 43px;
    background: #00368e;
    border-radius: 30px;
    font-size: 13px;
    color: #fff;
}

.promore a img {
    margin-right: 3px;
}

.application {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.app {
    float: left;
    position: relative;
    height: 813px;
    width: 12.625%;
    transition: all 0.6s;
}

.app.active {
    width: 36.875%;
}

.app a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.appname {
    position: absolute;
    right: 0;
    top: 45%;
    height: 74px;
    line-height: 74px;
    border-radius: 50px 0 0 50px;
    background: #00368e;
    font-size: 30px;
    color: #fff;
    padding: 0 35px;
}

#certify {
    position: relative;
    width: 100%;
    margin: 30px auto 0
}

#certify .swiper-container {
    margin: auto;
}

#certify .swiper-slide {
    width: 504px;
    text-align: center;
}

#certify .swiper-slide img {
    display: block;
    margin: auto;
    width: 100%;
}

#certify .swiper-slide p {
    font-size: 18px;
    color: #000;
    margin-top: 20px;
    display: none;
}

#certify .swiper-slide-active p {
    display: block;
}

#partner .maintitle {
    color: rgba(255, 255, 255, 0.1);
}

#partner .titles {
    color: #fff;
}

.partner {
    max-width: 1705px;
    margin: 50px auto 0;
    overflow: hidden;
    background: #fff;
    padding: 40px 40px 0;
    border-radius: 20px;
}

.partner a {
    float: left;
    margin-bottom: 40px;
    width: 18%;
    margin-right: 2.5%;
}

.partner a:nth-child(5n) {
    margin-right: 0;
}

.partner a img {
    width: 100%;
}

.parmore {
    text-align: center;
    margin-top: 60px;
}

.parmore a {
    display: inline-block;
    width: 142px;
    height: 43px;
    line-height: 43px;
    background: #00368e;
    border-radius: 30px;
    font-size: 13px;
    color: #fff;
}

.parmore a img {
    margin-right: 3px;
}

.new {
    max-width: 1705px;
    margin: 50px auto 0;
    overflow: hidden;
}

.nw {
    background: #fff;
    width: 23.5%;
    margin-right: 2%;
    float: left;
    padding: 25px;
}

.nw:nth-child(4n) {
    margin-right: 0;
}

.newdate {
    overflow: hidden;
    height: 35px;
    line-height: 35px;
}

.newtime {
    float: left;
    font-size: 25px;
    color: #0162d3;
}

.newyear {
    font-size: 14px;
    color: #0162d3;
    float: right;
}

.newtitle {
    text-align: center;
    font-size: 16px;
    color: #646464;
    margin-top: 12px;
}

.newcon {
    font-size: 13px;
    color: #adadad;
    margin-top: 12px;
}

.newpic img {
    width: 100%;
    transition: all 0.8s linear;
}

.newpic {
    margin-top: 22px;
    overflow: hidden;
}

.newmore {
    position: relative;
    margin-top: 20px;
}

.newmore p {
    display: inline-block;
    height: 42px;
    line-height: 42px;
    border-left: 1px solid #adadad;
    padding-left: 10px;
    font-size: 15px;
    color: #0162d3;
    transition: all 0.8s linear;
    position: relative;
    z-index: 2;
}

.newmore span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 42px;
    width: 0;
    transition: all 0.8s linear;
    z-index: 0;
}

.nw:hover .newpic img {
    transform: scale(1.1);
}

.nw:hover .newmore p {
    color: #fff;
    border-left: 1px solid #0162d3;
}

.nw:hover .newmore span {
    width: 100%;
    background: #0162d3;
}

.newmore:hover span {
    background: #000 !important;
}

.nwmore {
    text-align: center;
    margin-top: 60px;
}

.nwmore a {
    display: inline-block;
    width: 142px;
    height: 43px;
    line-height: 43px;
    background: #00368e;
    border-radius: 30px;
    font-size: 13px;
    color: #fff;
}

.nwmore a img {
    margin-right: 3px;
}

.foot {
    width: 100%;
    height: 619px;
    background: url(../images/fbg.jpg) center no-repeat;
}

.foots {
    height: 512px;
    max-width: 1705px;
    margin: auto;
    padding-top: 110px;
}

.copy {
    width: 100%;
    border-top: 1px solid #646464;
    height: 107px;
    line-height: 106px;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.copy a {
    font-size: 18px;
    color: #fff;
    margin-left: 10px;
}

.ftitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.fcontact {
    float: left;
}

.fcon p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 18px;
}

.fnav {
    float: left;
    margin-left: 15%;
}

.flist a {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 18px;
}

.sm img {
    width: 188px;
    margin-right: 20px;
}

.sm img:last-child {
    margin-right: 0;
}

.saoma {
    float: right;
}

.inbanner img {
    width: 100%;
}

.bread {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #dcdcdc;
    height: 82px;
    line-height: 81px;
}

.breads {
    max-width: 1705px;
    margin: auto;
}

.left_bread {
    float: left;
    line-height: 81px;
    height: 81px;
}

.left_bread a,
.left_bread span {
    font-size: 20px;
    color: #000;
    float: left;
}

.right_bread {
    float: right;
    line-height: 81px;
    height: 81px;
}

.right_bread a {
    font-size: 20px;
    color: #000;
}

.inproduct {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.inproducts {
    max-width: 1705px;
    margin: auto;
}

.left_inpro {
    float: left;
    width: 23.4%;
    border: 1px solid #dcdcdc;
    padding: 8px;
    position: relative;
}

.right_inpro {
    float: right;
    width: 74.6%;
}

.rinpro_top {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0 url(../images/ptip.png) left center no-repeat;
    height: 39px;
    line-height: 39px;
    padding: 0 25px;
}

.rinpro_top span {
    float: left;
    font-size: 16px;
    color: #fff;
}

.rinpro_top a {
    float: right;
    font-size: 14px;
    color: #999;
}

.rinpro_list {
    width: 100%;
    overflow: hidden;
}

.rinpro_list a {
    width: 32%;
    float: left;
    margin-right: 2%;
    display: block;
    margin-top: 40px;
}

.rinpro_list a:nth-child(3n) {
    margin-right: 0;
}

.rinpro_list a img {
    width: 100%;
    border: 1px solid #dcdcdc;
}

.rinpro_list a p {
    text-align: center;
    margin-top: 15px;
    border: 1px solid #dcdcdc;
    height: 54px;
    line-height: 52px;
    font-size: 20px;
    color: #03479a;
}

.linprolist {
    background: #f2f2f2;
    padding: 170px 25px 15px;
}

.linprotop {
    width: calc(100% - 2px);
    overflow: hidden;
    height: 148px;
    background: url(../images/ptop.png) bottom center no-repeat;
    position: absolute;
    top: 1px;
    left: 1px;
    text-align: center;
    padding-top: 30px;
}

.linprotop_title {
    font-size: 35px;
    color: #fff;
    font-weight: bold;
}

.linprotop_title img {
    margin-right: 10px;
    margin-top: -3px;
}

.linprotop_titles {
    text-transform: uppercase;
    font-family: "Arial";
    font-size: 20px;
    color: rgba(255, 255, 255, 0.32);
}

.linprolist_item {
    margin-bottom: 25px;
}

.linprolist_item .linprolist_item_levelone {
    display: block;
    width: 100%;
    border: 1px solid #dadada;
    background: url(../images/plist.png) center no-repeat #e5e5e5;
    padding-left: 70px;
    height: 57px;
    line-height: 55px;
	font-weight:bold;
}

.linprolist_item .linprolist_item_levelone.active {
    background: url(../images/plist_active.png) center no-repeat #e5e5e5;
}

.linprolist_item_leveltwo {
    width: 100%;
    background: #03479a;
    padding: 25px 0;
    margin-top: 15px;
    display: none;
}

.linprolist_item_leveltwo a {
    display: block;
    width: 100%;
    font-size: 20px;
    color: #fff;
    padding-left: 60px;
    margin-bottom: 35px;
}

.linprolist_item_leveltwo a:hover {
    background: url(../images/pdown.png) left 30px center no-repeat;
}

.proshow {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
}

.proshow_top {
    width: 100%;
    overflow: hidden;
}

.proshow_top_fl {
    float: left;
    width: 51.9%;
}

.proshow_top_fl img {
    width: 100%;
    border: 1px solid #dadada;
}

.proshow_top_fr {
    float: right;
    width: 45.5%;
}

.proshow_top_fr_title {
    font-size: 32px;
    color: #000;
    font-weight: bold;
}

.proshow_top_fr_titles {
    font-size: 18px;
    color: #000;
    margin-top: 40px;
	display:none;
}

.proshow_top_fr_con {
    font-size: 18px;
    color: #474747;
    line-height: 3;
    margin-top: 10px;
}

.proshow_top_fr_tel {
    font-size: 20px;
    color: #000;
}

.proshow_top_fr_telnum {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    margin-top: 13px;
}

.proshow_top_fr_more {
    margin-top: 30px;
}

.proshow_top_fr_more a {
    display: block;
    width: 190px;
    border-radius: 30px;
    height: 47px;
    line-height: 47px;
    background: #0068b7;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.proshow_bot {
    width: 100%;
    overflow: hidden;
    margin-top: 25px;
}

.proshow_bot_title {
    width: 100%;
    overflow: hidden;
    height: 56px;
    line-height: 56px;
    background: #eeeeee;
}

.proshow_bot_title span {
    display: inline-block;
    position: relative;
    font-size: 21px;
    color: #000;
    width: 117px;
    text-align: center;
}

.proshow_bot_title span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #0068b7;
}

.proshow_bot_con {
    line-height: 2;
    font-size: 21px;
    color: #000;
    margin-top: 30px;
}

.proshow_adv_title {
    margin-top: 25px;
    font-size: 21px;
    color: #000;
    font-weight: bold;
}

.proshow_adv_con {
    line-height: 2;
    font-size: 21px;
    color: #000;
    margin-top: 15px;
}

.proshow_adv_con img {
    max-width: 100%;
}

.inapplication {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.inapplications {
    max-width: 1705px;
    margin: auto;
}

.inapp {
    width: 49.5%;
    margin-right: 1%;
    margin-bottom: 25px;
    position: relative;
    float: left;
}

.inapp:nth-child(2n) {
    margin-right: 0;
}

.inapp_pic img {
    width: 100%;
}

.inapp_name {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    font-size: 36px;
    color: #fff;
    padding: 20px 35px;
}

.g-gywm {
    max-width: 1705px;
    margin: 30px auto;
    overflow: hidden;
}

.wm-l {
    width: 40%;
    float: left;
    color: #fff;
    height: 460px;
    overflow: hidden;
    background: #17588e;
    padding: 60px 0 0 40px;
}

.wm-l h4 {
    font: 20px "Microsoft YaHei";
    line-height: 60px;
    padding-bottom: 30px;
    margin: 0;
}

.wm-l li {
    font: 16px "Microsoft YaHei";
    color: #fff;
    line-height: 40px;
}

.wm-l li b {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.wm-r {
    float: left;
    width: 60%;
}

.innew {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.innews {
    max-width: 1705px;
    margin: auto;
}

.innewlists {
    width: 100%;
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 20px;
    -webkit-box-shadow: #e9e9e9 0px 0px 10px;
    -moz-box-shadow: #e9e9e9 0px 0px 10px;
    box-shadow: #e9e9e9 0px 0px 10px;
    margin-top: 30px;
    overflow: hidden;
}

.innewpic {
    float: left;
    width: 24.5%;
}

.innewpic img {
    width: 100%;
}

.innewintro {
    float: right;
    width: 71%;
}

.innewtitle {
    font-size: 20.5px;
    color: #000000;
    font-weight: bold;
    margin-top: 15px;
}

.innewdate {
    font-size: 14.4px;
    color: #b1b1b1;
    margin-top: 8px;
}

.innewcon {
    font-size: 16.8px;
    color: #333333;
    margin-top: 15px;
    line-height: 28px;
}

.innewmore {
    margin-top: 50px;
    width: 115px;
    height: 36px;
    line-height: 34px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    text-align: center;
    font-size: 14.4px;
    color: #3f3f3f;
}

.news_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
}

.news_info {
    text-align: center;
    color: #999;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
}

#art_content {
    word-break: break-all;
    font-size: 13px;
    padding: 0 0 10px 0;
}

#art_content img {
    max-width: 920px;
}

.newshow {
    width: 100%;
    overflow: hidden;
}

.newshows {
    max-width: 1705px;
    margin: 30px auto 40px;
}

.job {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.jobs {
    max-width: 1705px;
    margin: auto;
}

.injobitem {
    width: 49%;
    float: left;
    margin-right: 2%;
    margin-bottom: 20px;
}

.injobitem:nth-child(2n) {
    margin-right: 0;
}

.injob_top {
    width: 100%;
    overflow: hidden;
    height: 83px;
    background: #fff;
    -webkit-box-shadow: #e8e8e8 0px 0px 10px;
    -moz-box-shadow: #e8e8e8 0px 0px 10px;
    box-shadow: #e8e8e8 0px 0px 10px;
    border-radius: 10px;
}

.injob_num {
    float: left;
    text-align: center;
    width: 83px;
    height: 83px;
    line-height: 83px;
    border-radius: 10px;
    background: #00368e;
    font-size: 48px;
    color: #fff;
    font-weight: bold;
}

.injob_name {
    float: left;
    padding-right: 10px;
    margin-left: 40px;
}

.injob_place {
    font-size: 14px;
    color: #6b6b6b;
    margin-top: 15px;
}

.injob_info {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    margin-top: 5px;
}

.injob_bot {
    background: #fbfbfb;
    padding: 25px;
    overflow: hidden;
}

.injob_bots {
    margin-bottom: 30px;
}

.injob_title {
    height: 32px;
    line-height: 32px;
    padding-left: 10px;
    font-size: 20px;
    color: #000;
    font-weight: bold;
    position: relative;
}

.injob_title::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 2px;
    height: 32px;
    background: #000;
}

.injob_con {
    font-size: 16px;
    color: #000;
    line-height: 45px;
    margin-top: 10px;
}

.inabnav {
    width: 100%;
    margin-top: -50px;
    position: relative;
    z-index: 999;
    margin-bottom: 50px;
}

.inabnavs {
    max-width: 1705px;
    margin: auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
    height: 128px;
    line-height: 128px;
    border-radius: 15px;
    text-align: center;
    font-size: 0;
}

.inabnavs a {
    display: inline-block;
    font-size: 22px;
    color: #000;
    margin: 0 65px;
}

.inabnavs a:hover {
    color: #0065b0;
}

.inabout {
    width: 100%;
    overflow: hidden;
}

.inabouts {
    max-width: 1705px;
    margin: 55px auto 0;
}

.inab .left_ab {
    width: 47.5%;
    margin-left: 0;
}

.inab .right_ab {
    width: 50.2%;
}

.culture {
    width: 100%;
    overflow: hidden;
    margin-top: 35px;
}

.cultures {
    max-width: 1705px;
    margin: 40px auto 0;
}

.cul_left {
    height: 495px;
    padding-left: 75px;
    padding-top: 35px;
    width: 49.5%;
    float: left;
}

.cul_right {
    height: 495px;
    padding-left: 75px;
    padding-top: 35px;
    width: 47.6%;
    float: right;
}

.cul_title {
    font-size: 26px;
    color: #000;
    font-weight: bold;
}

.cul_con {
    font-size: 19px;
    color: #000;
    line-height: 2.3;
    margin-top: 10px;
    max-width: 440px;
}

.environment {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.environments {
    max-width: 1705px;
    margin: 60px auto 0;
}

.environmentswiper img {
    width: 100%;
}

.inpartner {
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
    margin-top: 35px;
    padding: 40px 0;
}

.inpartners {
    max-width: 1705px;
    margin: 30px auto 0;
}

.inpartners img {
    float: left;
    margin-bottom: 25px;
    border-radius: 10px;
    border: 1px solid #bfbfbf;
    width: 15%;
    margin-right: 2%;
}

.inpartners img:nth-child(6n) {
    margin-right: 0;
}

.history {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    background: url(../images/hisbg.jpg) center no-repeat;
    background-size: cover;
}

.historys {
    max-width: 1705px;
    margin: auto;
}

.historys .swiper-container {
    overflow: unset;
}

.history_year {
    width: 155px;
    height: 155px;
    border-radius: 100%;
    background: #007dbc;
    font-size: 31px;
    color: #fff;
    font-weight: bold;
    border: 8px solid #fff;
    line-height: 139px;
    text-align: center;
    margin: auto;
}

.historyswiper .swiper-slide {
    padding: 260px 0;
}

.historyswiper .swiper-slide:nth-child(2n) .history_year {
    background: #f19149;
}

.hisline {
    position: absolute;
    width: 150%;
    top: 160px;
    left: -25%;
    text-align: center;
}

.historyswiper .swiper-slide:nth-child(2n+1) .hisline {
    bottom: 160px;
    top: auto;
    transform: rotate(180deg);
}

.hisintro {
    font-size: 26px;
    color: #fff;
    position: absolute;
    width: 150%;
    top: 65px;
    left: -25%;
    text-align: center;
}

.historyswiper .swiper-slide:nth-child(2n+1) .hisintro {
    bottom: 65px;
    top: auto;
}

.inhonor {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.inhonors {
    max-width: 1705px;
    margin: auto;
}

.inhon {
    width: 23.5%;
    float: left;
    margin-bottom: 35px;
    margin-right: 2%;
}

.inhon img {
    width: 100%;
    border: 1px solid #dcdcdc;
}

.inhon:nth-child(4n) {
    margin-right: 0;
}

.customer {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.customers {
    max-width: 1705px;
    margin: auto;
}

.custom {
    float: left;
    margin-bottom: 25px;
    width: 15%;
    margin-right: 2%;
}

.custom:nth-child(6n) {
    margin-right: 0;
}

.custom img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #bfbfbf;
}