* {
    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 {
    overflow: hidden;
    clear: both;
}


/* 手机端导航 */

.mobile-inner-header {
    background-color: rgba(255, 255, 255, 0.7);
    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(0, 0, 0, 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(0, 0, 0, 1);
}

.mobile-inner-header img {
    height: 90%;
}

.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(255, 255, 255, 0.9);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #000;
    border-bottom: solid 1px rgba(0, 0, 0, 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(0, 0, 0, 0.2);
}


/* 网页头部 */

.header {
    width: 100%;
    height: 112px;
    line-height: 112px;
    background: url(../images/header_bg.png) center right no-repeat;
    background-size: 63%;
}

.header_main {
    max-width: 1500px;
    height: 112px;
    margin: auto;
}

.logo {
    float: left;
    width: 26.46%;
    overflow: hidden;
}

.logo img {
    width: 100%;
}

.nav {
    width: 40%;
    height: 112px;
    line-height: 112px;
    float: right;
}

.nav ul {
    margin-bottom: 0;
}

.nav li {
    float: left;
    width: calc(100% / 7);
    text-align: center;
    font-size: 0px;
    position: relative;
}

.nav li a {
    display: block;
    color: #fff;
    font-size: 16px;
    position: relative;
}

.nav li:hover {
    font-weight: 700;
}

.nav li:hover::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 30px;
    left: 30px;
}


/* banner */

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.banner_01 .swiper-pagination-bullet {
    background: #fff;
    width: 42px;
    height: 10px;
    opacity: 1;
    border-radius: 0;
}

.banner_01 .swiper-pagination-bullet-active {
    width: 42px;
    height: 10px;
    background-color: #fff;
    border-radius: 0;
}


/* 关于我们 */

.about {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.title {
    width: 100%;
    overflow: hidden;
}

.title_ch {
    font-size: 32px;
    color: #333333;
    font-weight: 700;
    float: left;
}

.title_eng {
    float: right;
    font-size: 32px;
    color: #CCCCCC;
    font-weight: 700;
    text-transform: uppercase;
}

.about_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.about_left {
    float: left;
    width: 54.8%;
    overflow: hidden;
}

.about_content {
    font-size: 16px;
    color: #666666;
    line-height: 2;
}

.about_honor {
    width: 100%;
    font-size: 20px;
    color: #333333;
    font-weight: 700;
    margin-top: 40px;
}

.about_honor p {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.about_honor p::before {
    content: "";
    width: 12px;
    height: 12px;
    background: url(../images/about_02.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 10px;
}

.about_button {
    width: 100%;
    overflow: hidden;
    margin-top: 90px;
}

.about_button a {
    display: block;
    width: 160px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #014FA1;
    color: #fff;
    border-radius: 2px;
    font-size: 16px;
}

.about_right {
    float: right;
    width: 43.3%;
}

.about_right img {
    width: 100%;
}


/* 产品中心 */

.product {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.pro_more {
    float: right;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
}

.pro_more a {
    color: #014FA1;
}

.pro_main {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.pro_main_01 {
    width: 100%;
    overflow: hidden;
}

.pro_left {
    float: left;
    width: 40.6%;
    overflow: hidden;
}

.pro_left img {
    width: 100%;
}

.product_right {
    float: right;
    width: 49.5%;
    overflow: hidden;
    margin-right: 5%;
}

.pro_title {
    width: 100%;
    padding-bottom: 20px;
    font-size: 24px;
    color: #333333;
    font-weight: 700;
    border-bottom: 1px solid #707070;
}

.product_content {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    line-height: 2;
    font-size: 16px;
    color: #666666;
}

.pro_button {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.pro_button a {
    display: block;
    width: 160px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #014FA1;
    color: #fff;
    border-radius: 2px;
    font-size: 16px;
}

.pro_switch {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.pro_01 {
    width: 100%;
    overflow: hidden;
}

.pro_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
    background: #F7F7F7;
}

.pro_pic {
    width: 100%;
    height: auto;
	overflow:hidden;
    text-align: center;
	position:relative;
}

.pro_pic img {
    max-width: 100%;
}

.pro_word {
    width: 100%;
    height: 55px;
    background: #014FA1;
    text-align: center;
    line-height: 55px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

/*.pro_01 .swiper-slide.active {
    background: #014FA1;
}*/
.pro_01 .swiper-slide:hover .pro_pic::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(1, 79, 161, 0.3);
    position: absolute;
    top: 0;
    left: 0;
}


/* 企业环境 */

.eve {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.eve_nav {
    float: right;
    font-size: 0;
    margin-top: 10px;
}

.eve_nav a {
    display: inline-block;
    width: 100px;
    height: 40px;
    margin-left: 10px;
    border: 1px solid #014FA1;
    color: #014FA1;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
}

.eve_nav a.activer {
    background: #014FA1;
    color: #fff;
}

.eve_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.eve_01 {
    width: 100%;
    overflow: hidden;
    display: none;
}

.eve_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
}

.eve_01 .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.eve_biao {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.eve_pic {
    width: 100%;
    overflow: hidden;
}

.eve_pic img {
    width: 100%;
}

.eve_word {
    width: 100%;
    height: 48px;
    line-height: 48px;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 20px;
    color: #333333;
    text-align: center;
    transition: all 0.6s;
    font-weight: 700;
}

.eve_li {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 60px;
    padding-top: 80px;
    text-align: center;
    opacity: 0;
    transition: all 0.6s;
}

.eve_li_title {
    font-size: 20px;
    color: #333333;
    font-weight: 700;
}

.eve_li_content {
    font-size: 16px;
    color: #666666;
    line-height: 2;
    margin-top: 10px;
}

.eve_01 .swiper-slide:hover .eve_word {
    opacity: 0;
}

.eve_01 .swiper-slide:hover .eve_li {
    opacity: 1;
}

.eve_button {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    text-align: center;
}

.eve_button a {
    display: inline-block;
    width: 160px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #014FA1;
    color: #fff;
    border-radius: 2px;
    font-size: 16px;
}


/* 荣誉资质 */

.honor {
    width: 100%;
    height: 900px;
    background: url(../images/honor_bg.jpg) center no-repeat;
    margin-top: 40px;
}

.honor_main {
    max-width: 1500px;
    margin: auto;
}

.honor_left {
    width: 18.6%;
    overflow: hidden;
    float: left;
    margin-top: 100px;
}

.honor_title {
    width: 100%;
    overflow: hidden;
}

.honor_eng {
    font-size: 42px;
    line-height: 1;
    color: #F4D186;
}

.honor_ch {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    margin-top: 30px;
}

.honor_data {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.honor_data_01 {
    width: 100%;
    color: #fff;
    font-size: 20px;
    margin-bottom: 60px;
    position: relative;
}

.counter {
    font-size: 80px;
    font-weight: 700;
    color: #F4D186;
}

.honor_data_01:first-child::after {
    content: "";
    width: 28px;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: -30px;
    left: 0;
}

.honor_right {
    width: 68%;
    overflow: hidden;
    float: right;
    margin-top: 100px;
}

.honor_01 {
    width: 100%;
    overflow: hidden;
}

.honor_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
}

.honor_01 .swiper-slide img {
    width: 100%;
    overflow: hidden;
}


/* 新闻资讯 */

.news {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    padding: 30px 0;
}

.news_main {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.news_left {
    width: 40.6%;
    float: left;
}

.news_left_pic {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.news_left_pic img {
    width: 100%;
}

.news_lc_date {
    float: left;
    width: 13.6%;
    text-align: center;
    background: #014FA1;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
}

.news_lcd_day {
    font-size: 32px;
    font-weight: 700;
}

.news_lcd_year {
    font-size: 16px;
}

.news_left_content {
    width: 84%;
    float: right;
}

.news_left_title {
    font-size: 20px;
    color: #333333;
    font-weight: 700;
}

.news_lc_word {
    font-size: 16px;
    color: #666666;
    margin-top: 10px;
}

.news_right {
    float: right;
    width: 57.4%;
    overflow: hidden;
}

.news_right_01 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.news_right_pic {
    float: left;
    width: 22.6%;
    overflow: hidden;
}

.news_right_pic img {
    width: 100%;
}

.news_right_word {
    float: right;
    width: 75%;
    overflow: hidden;
}

.news_rw_top {
    width: 100%;
    overflow: hidden;
}

.news_right_title {
    font-size: 20px;
    color: #333;
    float: left;
    font-weight: 700;
}

.news_rwt_day {
    float: right;
    font-size: 20px;
    color: #666666;
    font-weight: 700;
}

.news_right_content {
    font-size: 16px;
    color: #666666;
    margin-top: 15px;
}


/* 联系我们 */

.contact {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.ctitle {
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}

.ctitle img {
    width: 30%;
}

.contact_main {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.contact_left {
    width: 44%;
    overflow: hidden;
    float: left;
    font-size: 14px;
    color: #000;
    line-height: 2.2;
}

.map{
	width:100%;
	margin-top:10px;
}

.BMap_mask{
	height:200px !important;
}

.contact_right {
    width: 48.3%;
    overflow: hidden;
    float: right;
}

.contact_right form {
    width: 100%;
    overflow: hidden;
}

.contact_right input[type=text] {
    width: 100%;
    height: 52px;
    line-height: 52px;
    margin-bottom: 60px;
    outline: none;
    border: none;
    border-bottom: 2px solid #666666;
    background: none;
}

.contact_right textarea {
    width: 100%;
    height: 52px;
    padding-top: 10px;
    margin-bottom: 60px;
    outline: none;
    border: none;
    border-bottom: 2px solid #666666;
    background: none;
}

.contact_right input[type=submit] {
    width: 160px;
    height: 40px;
    outline: none;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 40px;
    background: #014FA1;
}

.contact_left_bottom {
    margin-top: 10px;
}


/* 页尾 */

.foot {
    width: 100%;
    overflow: hidden;
    background: #014FA1;
    margin-top: 40px;
    padding: 40px 0;
}

.foot_main {
    max-width: 970px;
    overflow: hidden;
    margin: auto;
}

.foot_left {
    float: left;
    width: 164px;
    overflow: hidden;
}

.foot_left img {
    width: 100%;
}

.foot_nav {
    float: left;
    margin-left: 120px;
    width: 180px;
    overflow: hidden;
    font-size: 0;
}

.foot_nav a {
    width: 50%;
    display: block;
    float: left;
    font-size: 16px;
    line-height: 3;
    color: #fff;
}

.foot_right {
    float: right;
    color: #fff;
    line-height: 3;
    font-size: 16px;
}

.foot_right a {
    display: block;
    color: #fff;
}

.copy {
    width: 100%;
    height: 80px;
    line-height: 80px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    background: #014FA1;
    display: none;
}

.copy a {
    color: #fff;
    padding: 0 10px;
}


/* 内页大图 */

.inbanner {
    width: 100%;
    overflow: hidden;
}

.inbanner img {
    width: 100%;
}

.innav {
    width: 100%;
    height: 75px;
    line-height: 75px;
    border-bottom: 1px solid #e5e5e5;
}

.innav_main {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
}

.innav a {
    font-size: 16.5px;
    color: #000;
}

.innav a::after {
    content: ">";
}

.innav a:last-child:after {
    content: "";
}


/* 产品展示内页 */

.inpro {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.intitle {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    background: url(../images/intitle.png) center top 30px no-repeat;
}

.intitle_ch {
    font-size: 36px;
    color: #000000;
    font-weight: 700;
}

.intitle_min {
    font-size: 20px;
    color: #8f8f8f;
}

.inpro_nav {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 0 150px;
    text-align: center;
    font-size: 0;
}

.inpro_nav a {
    display: inline-block;
    padding: 10px 25px;
    margin-right: 40px;
    background: #014FA1;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
    border-radius: 30px;
}

.inpro_nav a:hover {
    background: #0269d1;
}

.inpro_main {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.inpro_main_01 {
    width: 23.5%;
    overflow: hidden;
    margin-right: 2%;
    margin-bottom: 20px;
    float: left;
}

.inpro_main_01:nth-child(4n) {
    margin-right: 0;
}

.inpro_pic {
    width: 100%;
    overflow: hidden;
}

.inpro_pic img {
    width: 100%;
}

.inpro_title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #eeeeee;
    font-size: 16px;
    color: #000;
    margin-top: 5px;
}


/* 产品详情 */

.proshow {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.proshow_main {
    width: 100%;
    overflow: hidden;
}

.proshow_left {
    width: 50%;
    overflow: hidden;
    float: left;
}

.proshow_left img {
    width: 100%;
}

.proshow_right {
    width: 46%;
    overflow: hidden;
    float: right;
}

.proshow_title {
    font-size: 24px;
    color: #333333;
}

.proshow_intr {
    width: 100%;
    margin-top: 15px;
    color: #7e7e7e;
    margin-top: 20px;
}

.proshow_sp {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.proshow_sp_ch {
    font-size: 18px;
    color: #333333;
}

.proshow_yuan {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.proshow_yuan_01 {
    width: 96px;
    height: 96px;
    line-height: 96px;
    text-align: center;
    border: 1px solid #1E67C8;
    border-radius: 100%;
    margin-right: 30px;
    font-size: 15px;
    color: #000;
    float: left;
    font-weight: 700;
}

.proshow_yuan_01:last-child {
    margin-right: 0;
}

.proshow_click {
    font-size: 18px;
    color: #333;
    margin-top: 30px;
}

.proshow_bottom {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
}

.proshow_ma {
    float: left;
    width: 200px;
}

.proshow_ma img {
    width: 100%;
}

.proshow_tel {
    float: left;
    margin-left: 40px;
}

.proshow_bright {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.proshow_br_ch {
    font-size: 16px;
    color: #000000;
}

.proshow_br_num {
    font-size: 27px;
    color: #000000;
    font-weight: 700;
    margin-top: 20px;
}

.proshow_br_button {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.proshow_br_button a {
    display: block;
    border-radius: 30px;
    width: 190px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    background: #0068b7;
    font-size: 24px;
}

.proshow_bcontent {
    max-width: 1700px;
    overflow: hidden;
    margin-top: 40px;
}

.proshow_nav {
    width: 100%;
    height: 62px;
    line-height: 62px;
    font-size: 16px;
    color: #000000;
    background: #eeeeee;
}

.proshow_nav span {
    display: inline-block;
    width: 100px;
    overflow: hidden;
    text-align: center;
    position: relative;
    height: 62px;
    line-height: 62px;
}

.proshow_nav span::before {
    content: "";
    width: 100%;
    height: 4px;
    background: #0068b7;
    position: absolute;
    top: 0;
    left: 0;
}

.proshow_bc_word {
    font-size: 15px;
    color: #7e7e7e;
    margin-top: 30px;
    line-height: 2.4;
}

.proshow_biao {
    margin-top: 30px;
    max-width: 667px;
    overflow: hidden;
}

.proshow_biao img {
    width: 100%;
}


/* 关于我们内页 */

.inabout {
    width: 100%;
    height: 725px;
    margin-top: 40px;
    background: url(../images/inabout_01.jpg) right top 90px no-repeat;
    background-size: 50%;
}

.inabout_title {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.inabout_title_eng {
    font-size: 48px;
    color: #000;
    opacity: 0.1;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.inabout_title_ch {
    line-height: 1;
    font-size: 36px;
    color: #000;
    margin-top: -30px;
}

.inabout_main {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.inabout_right {
    display: none;
}

.inabout_right img {
    width: 100%;
}

.inabout_left {
    width: 48%;
    overflow: hidden;
    float: left;
}

.inabout_left_title {
    font-size: 29px;
    font-weight: 700;
    color: #000;
}

.inabout_left_content {
    font-size: 20px;
    color: #000;
    line-height:2.2;
    text-indent: 2em;
    margin-top: 20px;
}

.inabout_data {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #f5f5f5;
    margin-top: 20px;
}

.inabout_data_main {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
}

.inabout_data_01 {
    float: left;
    width: 25%;
    text-align: center;
}

.inabout_data_01 p:first-child {
    font-size: 60px;
    color: #000;
    font-weight: 700;
}

.inabout_data_01 p .counter {
    font-size: 60px;
    color: #000;
}

.inabout_data_01 p:last-child {
    color: #000;
    font-size: 23px;
    margin-top: 10px;
}


/* 合作客户 */

.cooperate {
    max-width: 1540px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.cooperate_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.cooperate_main_01 {
    float: left;
    width: 385px;
    height: 385px;
    line-height: 385px;
    text-align: center;
    background: url(../images/cooperate_02.png) center no-repeat;
    margin-bottom: -150px;
    background-size: contain;
}

.cooperate_main_01:nth-child(5n) {
    margin-left: 192.5px;
}

.cooperate_main_01:nth-child(8n) {
    margin-left: 385px;
    margin-bottom: 0;
}

.cooperate_main_01 img {
    max-width: 40%;
}


/* 荣誉资质 */

.inhonor {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    padding: 40px 0;
}

.inhonor_title {
    text-align: center;
    font-size: 37px;
    color: #000;
    font-weight: 700;
}

.inhonor_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.inhonor_main_01 {
    width: 19%;
    overflow: hidden;
    float: left;
    margin-right: 1.25%;
    margin-bottom: 30px;
}

.inhonor_main_01:nth-child(5n) {
    margin-right: 0;
}

.inhonor_main_01 img {
    width: 100%;
}

.inequ_main_01 {
    width: 23.5%;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    margin-bottom: 30px;
}

.inequ_main_01:nth-child(4n) {
    margin-right: 0;
}

.inequ_main_01 img {
    width: 100%;
}


/* 新闻资讯内页 */

.newsInfo {
    width: 100%;
    /* overflow: hidden; */
    margin-top: 40px;
}

.newsInfo_main {
    max-width: 1600px;
    margin: auto;
    /* overflow: hidden; */
    margin-top: 40px;
}

.newsInfo_main_01 {
	float:left;
    width: 23.5%;
	height:350px;
    overflow: hidden;
    padding: 40px 40px 10px 40px;
	margin-right:2%;
    margin-bottom: 20px;
    box-shadow: 0 0 10px #EBEBEB;
}

.newsInfo_main_01:nth-child(4n){
	margin-right:0;
}

.newsInfo_left {
	display:none;
    float: left;
    width: 17.33%;
}

.newsInfo_left img {
    width: 100%;
}

.newsInfo_right {
    float: right;
    width: 100%;
    height: 280px;
    position: relative;
}

.newsInfo_right_top {
    font-size: 18px;
    color: #333333;
    width: 100%;
    font-weight: 700;
}

.newsInfo_right_date {
    font-size: 14px;
    color: #666666;
    margin-top: 20px;
}

.newsInfo_right_main {
    line-height: 30px;
    font-size: 14px;
    color: #333333;
}

.newsInfo_right_button {
    border: 1px solid #1E67C8;
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #1E67C8;
    border-radius: 3px;
    position: absolute;
    left: 0;
    bottom: 10px;
}

.newsInfo_right_button:hover {
    background: #1E67C8;
    color: #fff;
}


/* 新闻详情 */

.news_d_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.news_d_info {
    text-align: center;
    color: #999;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
    margin-top: 40px;
}

#art_content {
    word-break: break-all;
    font-size: 16px;
    padding: 0 0 10px 0;
    line-height: 2.2;
}

#art_content img {
    display: inline-block;
    width: 100%;
    margin: 20px 0;
}

.newshow {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.newshows {
    max-width: 1600px;
    margin: 20px auto 40px;
}


/* 联系我们 */

.insidenav {
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
    height: 115px;
    line-height: 114px;
    overflow: hidden;
    font-size: 0;
    text-align: center;
}

.insidenav a {
    display: inline-block;
    line-height: 114px;
    height: 114px;
    padding: 0 50px;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    transition: all 0.6s;
}

.insidenav a:hover {
    color: #196ab2;
    font-weight: bold;
}

.incontact {
    max-width: 1500px;
    margin: 40px auto;
}

.incontact_top {
    width: 100%;
    background: #e8e8e8;
    height: 235px;
}

.incontact_top_fl {
    float: left;
    background: #2266a4;
    width: 30%;
    height: 235px;
    padding: 60px 40px 0;
}

.incontact_top_fr {
    float: left;
    width: 70%;
    height: 235px;
    padding: 40px;
}

.incontact_top_fl_title {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
}

.incontact_top_fl_con {
    font-size: 36px;
    color: #fff;
    margin-top: 8px;
}

.incontact_top_fr {
    font-size: 23px;
    color: #000;
    line-height: 2.3;
}

.incontact_bot {
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
}

.incontact_bots {
    float: left;
    width: 33%;
    margin-right: 0.5%;
    height: 170px;
    border: 1px solid #f1f1f1;
    line-height: 168px;
    text-align: center;
    font-size: 18px;
    color: #000;
    cursor: pointer;
}

.incontact_bots:last-child {
    margin-right: 0;
}

.incontact_bots img {
    margin-right: 15px;
    margin-top: -5px;
}

.incontact_bots:hover {
    box-shadow: 0 0 10px #ddd;
}

.feedback {
    width: 100%;
    overflow: hidden;
    margin-top: 25px;
}

.feedback_title {
    font-size: 36px;
    color: #000;
}

.feedback form div {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.feedback form div input {
    float: left;
    width: 33%;
    margin-right: 0.5%;
    border: 1px solid #f1f1f1;
    background: none;
    outline: none;
    padding-left: 15px;
    font-size: 23px;
    height: 85px;
}

.feedback form div input:last-child {
    margin-right: 0;
}

.feedback form textarea {
    width: 100%;
    border: 1px solid #f1f1f1;
    background: none;
    outline: none;
    padding-left: 15px;
    font-size: 23px;
    padding-top: 20px;
    margin-top: 30px;
    height: 585px;
}

.feedback form input[type=submit] {
    width: 550px;
    border: none;
    background: #2266a4;
    outline: none;
    font-size: 23px;
    margin-top: 30px;
    height: 85px;
    color: #fff;
}