* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
    min-width: 1200px;
}

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_xiala {
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding: 20px 0;
    display: none;
}

.mobile_xiala a {
    display: inline-block;
    width: 13%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000;
    margin-left: 10px;
    margin-bottom: 10px;
}


/* 网页头部 */

.header {
    width: 100%;
    height: 110px;
}

.header_main {
    max-width: 1200px;
    height: 100px;
    margin: auto;
}

.header_logo {
    width: 28.75%;
    overflow: hidden;
    line-height: 100px;
    float: left;
}

.header_logo img {
    width: 100%;
}

.header_right {
    width: 45.5%;
    overflow: hidden;
    padding-top: 35px;
    float: right;
}

.header_form {
    width: 100%;
    overflow: hidden;
}

.header_form form {
    width: 100%;
}

.header_form form select {
    width: 49%;
    height: 30px;
    line-height: 30px;
    float: left;
    margin-right: 2%;
    border: 1px solid #d6d6d6;
    color: #000;
    font-size: 12px;
    padding-left: 10px;
    outline: none;
    border-radius: 30px;
}

.header_search {
    width: 49%;
    height: 30px;
    float: right;
}

.header_search input[type=text] {
    width: 90%;
    height: 30px;
    line-height: 30px;
    padding-left: 10px;
    background: none;
    border: 1px solid #d6d6d6;
    border-right: none;
    outline: none;
    border-radius: 30px 0 0 30px;
    float: left;
    font-size: 12px;
}

.header_search input[type=submit] {
    width: 10%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: none;
    background: url(../images/search_01.png) center no-repeat;
    border: 1px solid #d6d6d6;
    border-left: none;
    outline: none;
    float: left;
    border-radius: 0 30px 30px 0;
    padding-right: 10px;
}


/* 导航 */

.nav {
    width: 100%;
    height: 40px;
    background: url(../images/nav_bg.jpg) center no-repeat;
    position: relative;
}

.nav_main {
    max-width: 1200px;
    margin: auto;
}

.nav_main ul {
    margin-bottom: 0;
}

.nav_main li {
    float: left;
    width: calc(100% / 9);
    text-align: center;
    font-size: 13.5px;
    height: 40px;
    line-height: 40px;
    position: relative;
}

.language {
    position: absolute;
    width: 100%;
    top: 40px;
    left: 0;
    z-index: 999;
    display: none;
    background: url(../images/nav_bg.jpg) center;
}

.nav_main li:hover .language {
    display: block;
}

.nav_main li a {
    display: block;
    color: #000000;
    position: relative;
    border-right: 1px solid #d2d2d2;
}

.nav li a::after {
    content: "";
    width: 14px;
    height: 8px;
    background: url(../images/jiantou.png) center no-repeat;
    position: relative;
		display: inline-block;
		margin-left: 4px;
    /* right: 25px;
    top: 17px; */
}

.nav li a:hover {
    background: #fff;
}

.language a {
    color: #000000;
    border-right: none;
}

.language a::after {
    display: none;
}

.nav li:hover .xiala {
    display: block;
}

.xiala {
    width: 100%;
    overflow: hidden;
    background: rgba(250, 251, 251, 0.92);
    z-index: 999;
    /* padding-top: 40px; */
    position: absolute;
    left: 0;
    top: 40px;
    display: none !important;
}

.xiala_main {
    max-width: 1400px;
    overflow: hidden;
    margin: auto;
    /* margin-left: 10%;*/
    padding: 20px 0;
}

.xiala_rec {
    width: 38.33%;
    overflow: hidden;
    float: left;
    border-right: 1px solid #dcdcdc;
}

.xiala_rec_pic {
    width: 25.9%;
    overflow: hidden;
    float: left;
    margin-top: 50px;
}

.xiala_rec_pic img {
    width: 100%;
}

.xiala_rec_right {
    width: 74%;
    overflow: hidden;
    float: left;
    text-align: left;
    padding-left: 40px;
    line-height: 2.2;
}

.xiala_rr_title {
    font-size: 16px;
    color: #000000;
}

.xiala_rr_intr {
    font-size: 14px;
    color: #626262;
    margin-top: 10px;
}

.xiala_nav {
    width: 100%;
    overflow: hidden;
    float: right;
}

.xiala_nav ul {
    margin-bottom: 0;
}

.nav .xiala_nav .xiala_nav_01 {
    float: left;
    overflow: hidden;
    text-align: left;
    width: 20%;
}


/*.nav .xiala_nav .xiala_nav_01:first-child {
    width: 22%;
    overflow: hidden;
}*/

.nav .xiala_nav_link {
    display: none;
}

.nav .xiala_nav_link a {
    line-height: 2.5;
    padding-left: 20px;
    color: #626262;
}

.nav .xiala_nav .xiala_nav_01:first-child .xiala_nav_link a {
    width: 50%;
    display: block;
    overflow: hidden;
    float: left;
    line-height: 2.5;
}

.nav .xiala_nav .xiala_nav_01 .xiala_nav_title a:hover {
    color: #ea5405;
}

.nav .xiala_nav .xiala_nav_01 .xiala_nav_link a:hover {
    background: none;
    color: #ea5405;
}


/* 
.nav .xiala_nav .xiala_nav_01:nth-child(3) {
    float: none;
    position: absolute;
    left: 52.6%;
    top: 160px;
} */

.nav .xiala_nav .xiala_nav_title a {
    display: inline-block;
    border-right: none;
    position: relative;
    padding-left: 20px;
    line-height: 2.5;
    font-size: 16px;
    color: #000000;
}

.nav .xiala_nav .xiala_nav_title a::after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/jia.png) center no-repeat;
    position: absolute;
    left: 0px;
    top: 12px;
}

.nav .xiala_nav_title:hover a {
    background: none;
}

.xiala_nav_link {
    width: 100%;
    overflow: hidden;
}

.xiala_nav_link a {
    font-size: 13px;
    color: #626262;
}

.nav .xiala_nav_link a {
    border-right: none;
}

.nav .xiala_nav_link a::after {
    display: none;
}

.xiala_word .xiala_main {
    max-width: 1200px;
    overflow: hidden;
    text-align: center;
}

.nav .xiala_word .xiala_main a {
    display: inline-block;
    border: none;
    position: relative;
    padding: 0 20px;
}

.nav .xiala_word .xiala_main a:hover {
    background: none;
    color: #ea5405;
}

.xiala_word .xiala_main a::after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/jia.png) center no-repeat;
    position: absolute;
    left: 0px;
    top: 12px;
    /* padding: 0 50px; */
}


/* banner */

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.banner_01 .swiper-pagination-bullet {
    background: #005997;
    width: 37px;
    height: 10px;
    opacity: 1;
    border-radius: 0;
}

.banner_01 .swiper-pagination-bullet-active {
    width: 37px;
    height: 10px;
    background-color: #ea5405;
    border-radius: 0;
}


/* 热点新闻 */

.news {
    width: 100%;
    height: 60px;
    overflow: hidden;
    background: #000000;
}

.news_main {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
}

.news_left {
    width: 19.6%;
    overflow: hidden;
    float: left;
    height: 60px;
    color: #fff;
    line-height: 60px;
}

.news_eng {
    font-size: 12px;
    text-transform: uppercase;
}

.news_ch {
    font-size: 12px;
}

.news_01 {
    width: 55.4%;
    overflow: hidden;
    float: left;
    margin-left: 10%;
}

.news_01 .swiper-slide {
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.news_content {
    float: left;
    font-size: 12px;
    color: #fff;
}

.news_date {
    float: right;
    font-size: 12px;
    color: #fff;
}

.news_right {
    float: right;
    line-height: 60px;
}

.news_right a {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}


/* Product */

.product {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.product_top {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    font-size: 24px;
    color: #000000;
}

.product_top span {
    text-transform: uppercase;
    font-weight: 700;
}

.product_main {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.product_main_01 {
    width: 19.3%;
    overflow: hidden;
    float: left;
    margin-right: 0.875%;
    text-align: center;
}

.product_main_01:last-child {
    margin-right: 0;
}

.product_pic {
    width: 100%;
    overflow: hidden;
}

.product_pic img {
    width: 100%;
    transition: all 0.6s;
}

.product_word {
    width: 100%;
    line-height: 3;
    font-size: 14px;
    color: #595959;
}

.product_main_01:hover .product_pic img {
    transform: scale(1.2);
}

.product_main_01:hover .product_word {
    color: #ea5507;
}


/* 页面内容 */

.page_main {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}


/* 关于我们 */

.about {
    width: calc(100% / 3);
    overflow: hidden;
    float: left;
}

.about_main {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.about_left {
    width: 100%;
    overflow: hidden;
}

.about_left img {
    width: 100%;
}

.about_right {
    width: 100%;
    font-size: 14px;
    color: #000000;
    line-height: 2.2;
    margin-top: 15px;
}

.about_more {
    width: 100%;
    overflow: hidden;
    text-align: right;
    margin-top: 30px;
}

.about_icon {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.about_icon_01 {
    width: calc(100% / 3);
    float: left;
    text-align: center;
}


/* 企业车间 */

.workshop {
    width: calc(100% / 3);
    overflow: hidden;
    float: left;
    padding-left: 10px;
}

.workshop_main {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.workshop_main_01 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.workshop_main_01:first-child {
    border-bottom: 1px solid #ededed;
}

.workshop_left {
    float: left;
    width: 33.25%;
    overflow: hidden;
}

.workshop_left img {
    width: 100%;
    transition: all 0.6s;
}

.workshop_right {
    width: 65%;
    overflow: hidden;
    float: right;
}

.workshop_date {
    width: 100%;
    overflow: hidden;
    color: #525252;
    height: 20px;
    line-height: 20px;
}

.workshop_date span {
    padding-left: 10px;
    padding-top: 10px;
}

.workshop_content {
    width: 100%;
    overflow: hidden;
    line-height: 2.4;
    color: #000;
}

.workshop_rtitle {
    font-size: 16px;
}

.workshop_word {
    font-size: 14px;
}

.workshop_main_01:hover .workshop_left img {
    transform: scale(1.2);
}

.workshop_main_01:hover .workshop_date {
    color: #337ab7;
}

.workshop_main_01:hover .workshop_content {
    color: #337ab7;
}


/* 荣誉资质 */

.honor {
    width: calc(100% / 3);
    overflow: hidden;
    padding-left: 20px;
    float: left;
}

.honor_main {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.honor_01 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.honor_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
}

.honor_01 .swiper-slide a {
    width: 100%;
}

.honor_01 .swiper-slide a img {
    width: 100%;
}

.honor_button_left {
    position: absolute;
    left: 0;
    top: 50%;
    width: 13px;
    height: 18px;
    background: url(../images/honor_left.png);
    background-size: cover;
}

.honor_button_right {
    position: absolute;
    right: 0;
    top: 50%;
    width: 13px;
    height: 18px;
    background: url(../images/honor_right.png);
    background-size: cover;
}

.back {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 100px;
}


/* 页尾 */

.foot {
    width: 100%;
    overflow: hidden;
    background: #f3f3f3;
    padding-top: 60px;
    padding-bottom: 40px;
    margin-top: -17px;
}

.foot_main {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
}

.foot_title {
    font-size: 16px;
    color: #414141;
}

.foot_line {
    width: 40px;
    height: 2px;
    background: #f95800;
    margin: 10px 0;
}

.foot_content {
    font-size: 12px;
    color: #414141;
    line-height: 2;
}

.foot_content a {
    display: block;
    color: #414141;
}

.foot_about {
    width: 6%;
    float: left;
}

.foot_pro {
    width: 10%;
    float: left;
    margin-left: 6%;
}

.foot_bussiness {
    width: 20%;
    float: left;
    margin-left: 6%;
}

.foot_contact {
    width: 25%;
    overflow: hidden;
    float: left;
    margin-left: 6%;
}

.foot_net {
    width: 24.6%;
    overflow: hidden;
    float: left;
    margin-left: 2%;
    display: none;
}

.foot_net .foot_title {
    margin-left: 30px;
}

.foot_net .foot_content {
    margin-top: 20px;
}

.foot_ma {
    width: 13.16%;
    overflow: hidden;
    float: right;
    font-size: 14px;
    color: #414141;
    text-align: center;
    line-height: 2.2;
}

.foot_ma_title {
    font-size: 16px;
}

.foot_ma img {
    margin-top: 20px;
}

.copy {
    width: 100%;
    background: #e4e4e4;
    color: #6a6a6a;
    font-size: 14px;
    padding: 15px 0;
}

.copy_main {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    line-height: 2.2;
}

.copy span {
    padding-right: 10px;
}

.copy a {
    color: #6a6a6a;
    padding: 0 10px;
}


/* 内页大图 */

.inbanner {
    width: 100%;
    overflow: hidden;
    display: none;
}

.inbanner img {
    width: 100%;
}


/* 内页链接 */

.link {
    width: 100%;
    overflow: hidden;
    height: 80px;
    text-align: center;
    position: absolute;
    margin-top: -80px;
    display: none;
}

.link_main {
    max-width: 1200px;
    overflow: hidden;
    text-align: center;
    margin: auto;
    font-size: 0;
}

.link_main_01 {
    display: inline-block;
    width: 20%;
    height: 80px;
    text-align: left;
    border-right: 1px solid #1b1b1b;
}

.link_main_01 a {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 35px;
    padding-top: 20px;
    background: #fff;
}

.link_main_01:last-child {
    border-right: none;
}

.link_main_01 a.active {
    background: #1d2088;
}

.link_main_01 a:hover {
    background: #1d2088;
}

.link_ch {
    font-size: 15px;
    color: #1d2088;
}

.link_eng {
    font-size: 13px;
    color: #000000;
}

.link_main_01 a.active .link_ch {
    color: #fff;
}

.link_main_01 a.active .link_eng {
    color: #fff;
}

.link_main_01 a:hover .link_ch {
    color: #fff;
}

.link_main_01 a:hover .link_eng {
    color: #fff;
}


/* Product内页 */

.inpro {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.inpro_title {
    width: 100%;
    overflow: hidden;
    font-size: 27px;
    color: #1d2088;
}

.inpro_nav {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.inpro_nav a {
    font-size: 14px;
    color: #000000;
}

.inpro_nav a:last-child {
    color: #1d2088;
}

.inpro_nav a::after {
    content: ">";
}

.inpro_nav a:last-child:after {
    content: "";
}

.inpro_link {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    font-size: 0;
}

.inpro_link a {
    display: inline-block;
    padding: 5px 11px;
    font-size: 18px;
    text-align: center;
    color: #0083e0;
    border-radius: 30px;
    border: 1px solid #0083e0;
    margin-right: 10px;
    margin-bottom: 10px;
}


/*.inpro_link a::before {
    content: ">";
}*/

.inpro_link a.activer {
    background: #0083e0;
    color: #fff;
}

.inpro_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.inpro_main_01 {
    width: 19.3%;
    overflow: hidden;
    margin-right: 0.875%;
    float: left;
    margin-bottom: 10px;
}

.inpro_main_01:nth-child(5n) {
    margin-right: 0;
}

.inpro_pic {
    width: 100%;
    overflow: hidden;
}

.inpro_pic img {
    width: 100%;
    transition: all 0.6s;
}

.inpro_word {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
    color: #595959;
}

.inpro_main_01:hover .inpro_pic img {
    transform: scale(1.1);
}

.inpro_main_01:hover .inpro_word {
    color: #ea5507;
}


/* 产品展示 */

.proshow {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.proshow_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.proshow_left {
    width: 400px;
    overflow: hidden;
    float: left;
}

.proshow_left img {
    width: 100%;
}

.proshow_right {
    width: 800px;
    overflow: hidden;
    float: right;
    padding-left: 40px;
}

.proshow_name {
    font-size: 18px;
    color: #000;
    border-bottom: 1px solid #ddd;
    padding-bottom: 21px;
}

.proshow_intr {
    width: 100%;
    overflow: hidden;
    line-height: 2.2;
}

.proshow_intr_title {
    width: 100%;
    border-bottom: 1px solid #0083e0;
}

.proshow_intr_title span {
    display: inline-block;
    padding: 10px 28px 8px 13px;
    background: #0083e0;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border-radius: 0 30px 0 0;
    line-height: 1.42857143;
}

.proshow_intr_content {
    font-size: 13px;
    color: #585858;
    margin-top: 12px;
}

.proshow_word {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.proshow_content {
    width: 100%;
    overflow: hidden;
    font-size: 0;
}

.proshow_content a {
    display: inline-block;
    width: 15%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    background: #9c9da2;
    border-right: 1px solid #fff;
}

.proshow_content a:last-child {
    border-right: none;
}

.proshow_content a.bg {
    background: #1d2088;
}

.proshow_switch {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.proshow_switch_01 {
    width: 100%;
    overflow: hidden;
    font-size: 14px;
    color: #000;
    line-height: 2.4;
    display: none;
}

.proshow_switch_01 img {
    max-width: 100%;
}

.proshow_switch_01 table {
    width: 100%;
    overflow: hidden;
}

.proshow_switch_01 tr {
    width: 100%;
    overflow: hidden;
}

.proshow_switch_01 tr td {
    font-size: 16px;
    color: #666;
    height: 40px;
    line-height: 40px;
}

.proshow_switch_01 tr:first-child td {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.proshow_switch_01 tr:first-child td:first-child {
    padding-left: 0;
}

.proshow_switch_01 tr td:first-child {
    padding-left: 20px;
}


/* 新闻资讯内页 */

.info {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.info_main {
    width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
}

.info_top {
    width: 100%;
    overflow: hidden;
}

.info_top_01 {
    width: 48%;
    overflow: hidden;
    float: left;
    margin-right: 4%;
}

.info_top_01:nth-child(2n) {
    margin-right: 0;
}

.info_top_pic {
    width: 100%;
    overflow: hidden;
}

.info_top_pic img {
    width: 100%;
}

.info_top_title {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    font-size: 18px;
    color: #000000;
}

.info_date {
    font-size: 14px;
    color: #9d9d9d;
    margin-top: 10px;
}

.info_content {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.info_content_01 {
    width: 100%;
    overflow: hidden;
    border-top: 1px dashed #eeeeee;
    padding: 20px 0;
}

.info_cleft {
    float: left;
    font-size: 14px;
    color: #000000;
    float: left;
}

.info_cdate {
    font-size: 14px;
    color: #9d9d9d;
    float: right;
}


/* 新闻详情 */

.news_d_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 20px;
    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: 1200px;
    margin: 20px auto 40px;
}

.innav {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    padding: 20px 0;
}

.innav a {
    font-size: 16.5px;
    color: #333333;
}

.innav a::after {
    content: ">";
}

.innav a:last-child:after {
    content: "";
}


/* 关于我们内页 */

.inabout {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.inabout_link {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    font-size: 0;
}

.inabout_link a {
    display: inline-block;
    width: calc(100% / 6);
    background: #9c9da2;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.inabout_link a::before {
    content: ">";
}

.inabout_link a.activer {
    background: #1d2088;
}

.inabout_link a:hover {
    background: #1d2088;
}

.inabout_main {
    width: 100%;
    overflow: hidden;
}

.inabout_word {
    font-size: 16px;
    color: #000000;
    line-height: 2.4;
}

.inabout_pic {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.inabout_pic img {
    width: 100%;
}


/* 经典案例 */

.case {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.case_title {
    width: 100%;
    overflow: hidden;
    font-size: 27px;
    color: #1d2088;
}

.case_nav {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.case_nav a {
    font-size: 14px;
    color: #000000;
}

.case_nav a:last-child {
    color: #1d2088;
}

.case_nav a::after {
    content: ">";
}

.case_nav a:last-child:after {
    content: "";
}

.case_link {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    font-size: 0;
}

.case_link a {
    display: inline-block;
    width: calc(100% / 9);
    background: #9c9da2;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    text-align: center;
    color: #fff;
}

.case_link a::before {
    content: ">";
}

.case_link a.activer {
    background: #1d2088;
}

.case_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.case_main_01 {
    width: 19.3%;
    overflow: hidden;
    margin-right: 0.875%;
    float: left;
    margin-bottom: 10px;
}

.case_main_01:nth-child(5n) {
    margin-right: 0;
}

.case_pic {
    width: 100%;
    overflow: hidden;
}

.case_pic img {
    width: 100%;
    transition: all 0.6s;
}

.case_word {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
    color: #595959;
}

.case_main_01:hover .case_pic img {
    transform: scale(1.1);
}

.case_main_01:hover .case_word {
    color: #ea5507;
}

.case_big_pic {
    width: 100%;
    height: 100%;
    background: rgba(88, 88, 88, 0.7);
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 999;
    display: none;
}

.case_close {
    font-size: 80px;
    float: right;
    cursor: pointer;
    color: #fff;
}

.case_big_pic img {
    display: block;
    width: 40%;
    overflow: hidden;
    margin: auto;
    margin-top: 140px;
}


/* 联系方式 */

.contact {
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.contact_main {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.contact_left {
    width: 50%;
    overflow: hidden;
    float: left;
}

.contact_left_top {
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    background: #1d2088;
    font-size: 14px;
}

.contact_left_content {
    width: 100%;
    height: 440px;
    background: #f7f7f7;
    padding: 30px 40px;
    /* padding-left: 30px; */
}

.contact_lc_01 {
    width: 50%;
    overflow: hidden;
    float: left;
    line-height: 2.4;
}

.contact_lc_top {
    font-size: 14.5px;
    color: #414141;
}

.contact_lc_line {
    width: 30px;
    height: 1px;
    background: #f96d21;
    /* margin: 10px 0; */
}

.contact_lc_word {
    margin-top: 10px;
    font-size: 14px;
    color: #414141;
}

.contact_right {
    width: 50%;
    overflow: hidden;
    float: right;
}

.contact_right_top {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #9c9da2;
    color: #fff;
}


/* 新闻详情 */

.news_d_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 20px;
    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_content1 {
    word-break: break-all;
    font-size: 16px;
    padding: 0 0 10px 0;
    line-height: 2.2;
}

#art_content1 img {
    display: inline-block;
    width: 100%;
    margin: 20px 0;
}

.caseshow {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.caseshows {
    max-width: 1200px;
    margin: 20px auto 40px;
}

.inprolist {
    padding: 5px;
}

.inprolists {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
}

.inprolist_fl {
    float: left;
    width: 195px;
    /*	height:95px;
	line-height:95px;
	background:url(../images/prolist.jpg) left center no-repeat;
	padding-left:15px;*/
}

.inprolist_name {
    float: right;
    font-size: 20px;
    margin-left: 20px;
    height: 135px;
    display: table;
    width: 110px;
}

.inprolist_names {
    display: table-cell;
    vertical-align: middle;
}

.inprolist_num {
    float: left;
    width: 62px;
    text-align: center;
    height: 135px;
    line-height: 135px;
    color: #fff;
    font-size: 35px;
}

.inprolist_fr {
    float: right;
    width: 980px;
    text-align: center;
    height: 135px;
    display: table;
}

.inprolist_frs {
    display: table-cell;
    vertical-align: middle;
}

.inprolist_fr img {
    max-width: 100%;
}

.inprolists:nth-child(1) .inprolist_name {
    color: #5451a2;
}

.inprolists:nth-child(1) .inprolist_num {
    background: #5451a2;
}

.inprolists:nth-child(2) .inprolist_name {
    color: #c28972;
}

.inprolists:nth-child(2) .inprolist_num {
    background: #c28972;
}

.inprolists:nth-child(3) .inprolist_name {
    color: #c4809f;
}

.inprolists:nth-child(3) .inprolist_num {
    background: #c4809f;
}

.inprolists:nth-child(4) .inprolist_name {
    color: #70875a;
}

.inprolists:nth-child(4) .inprolist_num {
    background: #70875a;
}

.inprolists:nth-child(5) .inprolist_name {
    color: #6c74a3;
}

.inprolists:nth-child(5) .inprolist_num {
    background: #6c74a3;
}

.inprolists:nth-child(6) .inprolist_name {
    color: #b79778;
}

.inprolists:nth-child(6) .inprolist_num {
    background: #b79778;
}

.inprolists:nth-child(7) .inprolist_name {
    color: #c2cd57;
}

.inprolists:nth-child(7) .inprolist_num {
    background: #c2cd57;
}

.inprolists:nth-child(8) .inprolist_name {
    color: #879cb2;
}

.inprolists:nth-child(8) .inprolist_num {
    background: #879cb2;
}

.inprolists:nth-child(9) .inprolist_name {
    color: #776785;
}

.inprolists:nth-child(9) .inprolist_num {
    background: #776785;
}

.inprolists:nth-child(10) .inprolist_name {
    color: #f4be7b;
}

.inprolists:nth-child(10) .inprolist_num {
    background: #f4be7b;
}

.inprolists:nth-child(11) .inprolist_name {
    color: #738a73;
}

.inprolists:nth-child(11) .inprolist_num {
    background: #738a73;
}

.inprolists:nth-child(12) .inprolist_name {
    color: #b19d7d;
}

.inprolists:nth-child(12) .inprolist_num {
    background: #b19d7d;
}

.proshow_topic {
    width: 100%;
    border-bottom: 1px solid #0083e0;
}

.proshow_topic span {
    display: inline-block;
    padding: 10px 28px 8px 13px;
    background: #0083e0;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border-radius: 0 30px 0 0;
}