* {
    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);
}


/* 网页顶部 */

.top {
    width: 100%;
    height: 40px;
    background: #F9F9F9;
}

.top_main {
    max-width: 1500px;
    height: 40px;
    line-height: 40px;
    margin: auto;
}

.top_left {
    font-size: 14px;
    color: #333333;
    float: left;
}

.top_right {
    float: right;
    font-size: 16px;
    color: #1E67C8;
    font-weight: 700;
}


/* 网页头部 */

.header {
    width: 100%;
}

.header_main {
    max-width: 1500px;
    height: 100px;
    margin: auto;
}

.header_logo {
    width: 24.26%;
    overflow: hidden;
    line-height: 100px;
    float: left;
}

.header_logo img {
    width: 100%;
}

.nav {
    width: 60%;
    height: 100px;
    line-height: 100px;
    float: right;
}

.nav ul {
    margin-bottom: 0;
}

.nav li {
    float: left;
    width: calc(100% / 7);
    text-align: center;
    font-size: 16px;
    position: relative;
}

.nav li a {
    display: inline;
    color: #333333;
    position: relative;
}

.nav li a:hover::before {
    content: "";
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, #6093D8, #236ACA);
    position: absolute;
    bottom: -5px;
    left: 0;
	z-index:-1
}

.xiala {
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 99999;
    display: none;
    font-size: 14px;
}

.xiala ul {
    margin-bottom: 0;
}

.nav ul li:hover .xiala {
    display: block;
}

.xiala ul li {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.xiala li a {
    color: #fff;
    height: 50px;
    line-height: 50px;
}

.nav .xiala li a:hover::before {
    display: none;
}


/* banner */

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.banner_01 .swiper-pagination-bullet {
    background: #e9e9e9;
    width: 42px;
    height: 6px;
    opacity: 1;
    border-radius: 0;
}

.banner_01 .swiper-pagination-bullet-active {
    width: 42px;
    height: 6px;
    background-color: #e9e9e9;
    border-radius: 0;
}


/* 表单和产品分类 */

.for_pro {
    max-width: 1500px;
    overflow: hidden;
    margin: 60px auto;
}

.fp_left {
    float: left;
    width: 17.733%;
    background: #1E67C8;
    padding: 27px 24px;
}

.fp_left form {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.fp_left input[type=text] {
    width: 100%;
    height: 36px;
    line-height: 36px;
    padding-left: 10px;
    font-size: 14px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 7px;
    margin-bottom: 20px;
}

.fp_left input[type=submit] {
    width: 60%;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    background: #D9871B;
    border: none;
    outline: none;
    border-radius: 7px;
}

.fp_right {
    width: 77%;
    height: 206px;
    float: right;
}

.fp_right_01 {
    width: 100%;
    height: 206px;
    float: left;
}

.fp_right_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: #F4F4F4;
}

.fp_right_pic {
    width: 100%;
    overflow: hidden;
}

.fp_right_pic img {
    width: 100%;
}

.fp_right_right {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333333;
    padding-top: 40px;
}

.fp_right_01 .swiper-slide:hover {
    background: #1E67C8;
}

.fp_right_01 .swiper-slide:hover .fp_right_right {
    color: #fff;
}


/* 关于我们 */

.about {
    max-width: 1500px;
    height: 740px;
    margin: auto;
    margin-top: 40px;
    position: relative;
}

.about::before {
    content: "";
    width: 245px;
    height: 637px;
    background: #F4F4F4;
    position: absolute;
    right: 0;
    bottom: 0;
}

.title {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    text-align: center;
    color: #333333;
    margin-bottom: 30px;
}

.title_ch {
    font-size: 36px;
    font-weight: 700;
}

.title_ch_min {
    font-size: 14px;
}

.about_main {
    width: 100%;
    position: relative;
}

.about_left {
    width: 40.4%;
    overflow: hidden;
    float: left;
    margin-left: 10.7%;
}

.about_title {
    font-size: 24px;
    color: #333333;
}

.about_title span {
    color: #1E67C8;
    font-weight: 700;
}

.about_title_min {
    font-size: 14px;
    color: #333333;
    position: relative;
    padding: 10px 0;
}

.about_title_min::before {
    content: "";
    width: 48px;
    height: 2px;
    background: #1E67C8;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.about_left_content {
    font-size: 14px;
    color: #666;
    line-height: 2.4;
    margin-top: 30px;
}

.about_button {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.about_button a {
    display: block;
    width: 23.1%;
    height: 40px;
    border: 1px solid #1E67C8;
    text-align: center;
    line-height: 40px;
    color: #1E67C8;
    font-size: 14px;
}

.about_right {
    width: 46.33%;
    overflow: hidden;
    position: absolute;
    right: -5%;
    top: 0px;
}


/* 发展 */

.dev {
    width: 100%;
    height: 500px;
    background: url(../images/dev_bg.jpg) center no-repeat;
    background-attachment: fixed;
    padding-top: 95px;
}

.dev_title {
    width: 100%;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.dev_ch_min {
    font-size: 14px;
}

.dev_ch {
    font-size: 40px;
    font-weight: 700;
    background: url(../images/title_line_02.png) center no-repeat;
}

.dev_main {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 50px;
}

.dev_main_01 {
    width: 10%;
    margin-right: 8%;
    float: left;
    text-align: left;
}

.dev_main_01:last-child {
    margin-right: 0;
}

.dev_icon {
    width: 56px;
    height: 56px;
    text-align: left;
    line-height: 56px;
    position: relative;
}

.dev_icon::before {
    content: "";
    width: 16px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -20px;
}

.dev_word {
    margin-top: 30px;
    font-size: 18px;
    line-height: 2.2;
    color: #fff;
}


/* 产品 */

.product {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 40px;
}

.product_nav {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
}

.product_nav a {
    display: inline-block;
    font-size: 20px;
    color: #333333;
    width: 12.5%;
    height: 60px;
    line-height: 60px;
}

.product_nav a:hover {
    background: #1E67C8;
    color: #fff;
}

.product_main {
    max-width: 1500px;
    margin: auto;
    margin-top: 30px;
}

.product_01 {
    width: 100%;
    overflow: hidden;
}

.product_01 .swiper-slide {
    width: 100%;
    overflow: hidden;
}

.product_pic {
    width: 100%;
    overflow: hidden;
}

.product_pic img {
    width: 100%;
	transition: all 0.6s;
}

.product_01 .swiper-slide:hover .product_pic img{
	transform: scale(1.2);
}

.product_word {
    width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background: #1E67C8;
}

.product_button {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    text-align: center;
}

.product_button a {
    display: inline-block;
    width: 11.4%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #1E67C8;
    color: #fff;
    font-size: 20px;
}


/* 五大优势 */

.adv {
    width: 100%;
    overflow: hidden;
    background: #FAFAFA;
    padding: 40px 0;
}

.adv_main {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.adv_main_01 {
    width: 13.4%;
    height: 400px;
    float: left;
    transition: all 0.6s;
    margin-right: 1.25%;
    position: relative;
}

.adv_main_01:last-child {
    margin-right: 0;
}

.adv_main_01.activer {
    width: 41.4%;
}

.adv_pic {
    width: 100%;
    height: 100%;
}

.adv_title {
    font-size: 32px;
    color: #fff;
    writing-mode: tb-rl;
    letter-spacing: 20px;
    position: absolute;
    right: 70px;
    top: 80px;
}

.adv_content {
    width: 58%;
    overflow: hidden;
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 18px;
    color: #fff;
    line-height: 2.2;
    opacity: 0;
}

.adv_main_01.activer .adv_content {
    opacity: 1;
}


/* 新闻中心 */

.news {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.news_main {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.news_left {
    width: 47.6%;
    overflow: hidden;
    float: left;
}

.news_lpic {
    width: 100%;
    overflow: hidden;
}

.news_lpic img {
    width: 100%;
}

.news_lword {
    width: 100%;
    height: 80px;
    line-height: 80px;
    color: #fff;
    background: #1E67C8;
    font-size: 24px;
    font-weight: 700;
    padding-left: 5%;
}

.news_right {
    width: 48.27%;
    overflow: hidden;
    float: right;
}

.news_right_01 {
    width: 100%;
    height: 106px;
    margin-bottom: 46px;
}

.news_rdate {
    width: 18%;
    height: 106px;
    overflow: hidden;
    float: left;
    background: #B7B7B7;
    color: #fff;
    text-align: center;
    padding-top: 18px;
}

.news_day {
    font-size: 36px;
}

.news_year {
    font-size: 16px;
}

.news_rcontent {
    width: 82%;
    height: 106px;
    overflow: hidden;
    float: right;
    border: 1px solid #F3F3F3;
    padding: 20px;
}

.news_rc_title {
    font-size: 18px;
    color: #333333;
    font-weight: 700;
}

.news_rc_word {
    font-size: 14px;
    color: #333333;
    padding-top: 5px;
}

.news_right_01:hover .news_rdate {
    background: #1E67C8;
}

.news_button {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 40px;
}

.news_button a {
    display: inline-block;
    width: 219px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #1E67C8;
    color: #1E67C8;
    font-size: 20px;
}


/* 页尾 */

.foot_nav {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #1E67C8;
    border-bottom: 1px solid #4E87D4;
}

.foot_nav a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 0 30px;
}

.foot {
    width: 100%;
    overflow: hidden;
    background: #1E67C8;
    padding-top: 60px;
    padding-bottom: 40px;
}

.foot_main {
    max-width: 1100px;
    overflow: hidden;
    margin: auto;
    color: #fff;
}

.foot_logo {
    width: 9.54%;
    overflow: hidden;
    float: left;
}

.foot_logo img {
    width: 100%;
}

.foot_contact {
    width: 61.63%;
    overflow: hidden;
    float: left;
    margin-left: 10%;
    color: #fff;
    line-height: 2.4;
    font-size: 16px;
}

.foot_contact span {
    display: block;
    float: left;
    width: 50%;
}

.foot_right {
    float: right;
    width: 12.45%;
}

.foot_right img {
    width: 100%;
}

.copy {
    width: 100%;
    background: #1E67C8;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #4E87D4;
}

.copy span {
    padding-right: 10px;
}

.copy a {
    color: #fff;
    padding: 0 10px;
}


/* 内页大图 */

.inbanner {
    width: 100%;
    overflow: hidden;
}

.inbanner img {
    width: 100%;
}


/* 关于我们内页 */

.inabout {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 40px;
}

.inabout_pic {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.inabout_pic img {
    width: 100%;
}

.inabout_main {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: -80px;
    padding: 40px;
    background: #fff;
    border-radius: 30px 30px 8px 8px;
    z-index: 9999;
    position: relative;
    box-shadow: 0 0 10px #EBEBEB;
}

.inabout_content {
    width: 100%;
    overflow: hidden;
    line-height: 2.2;
    font-size: 14px;
    color: #666666;
}

.inabout_mpic {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.inabout_main_01 {
    width: calc(100% / 6);
    float: left;
    text-align: left;
}

.inabout_icon {
    width: 56px;
    height: 56px;
    text-align: left;
    line-height: 56px;
    position: relative;
}

.inabout_icon::before {
    content: "";
    width: 16px;
    height: 2px;
    background: #333333;
    position: absolute;
    left: 0;
    bottom: -20px;
}

.inabout_word {
    margin-top: 30px;
    font-size: 18px;
    line-height: 2.2;
    color: #333333;
}


/* 产品中心 */

.inproduct {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 40px;
}

.inproduct_nav {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
}

.inproduct_nav a {
    display: inline-block;
    font-size: 20px;
    color: #333333;
    width: 12.5%;
    height: 60px;
    line-height: 60px;
}

.inproduct_nav a:hover {
    background: #1E67C8;
    color: #fff;
}

.inproduct_main {
    max-width: 1500px;
    margin: auto;
    margin-top: 30px;
}

.inproduct_main_01 {
    width: 23.5%;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    margin-bottom: 30px;
}

.inproduct_main_01:nth-child(4n) {
    margin-right: 0;
}

.inproduct_pic {
    width: 100%;
    overflow: hidden;
}

.inproduct_pic img {
    width: 100%;
}

.inproduct_word {
    width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background: #1E67C8;
}


/* 产品详情 */

.proshow {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.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: 36px;
    color: #333333;
    font-weight: 700;
}

.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: 150px;
    height: 150px;
    line-height: 150px;
    text-align: center;
    border: 1px solid #1E67C8;
    border-radius: 100%;
    margin-right: 30px;
    font-size: 28px;
    color: #333333;
    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: 20px;
    width: 100%;
    overflow: hidden;
}

.proshow_bleft {
    float: left;
    width: 33.2%;
    overflow: hidden;
}

.proshow_bleft img {
    width: 100%;
}

.proshow_bright {
    float: left;
    width: 44.4%;
    margin-left: 5%;
    margin-top: 30px;
}

.proshow_br_ch {
    font-size: 18px;
    color: #333333;
}

.proshow_br_num {
    font-size: 40px;
    color: #D9871B;
    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: 50%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #D9871B;
    font-size: 20px;
}


/* 设备展示 */

.equipment {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 40px;
}

.equipment_nav {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
}

.equipment_nav a {
    display: inline-block;
    font-size: 20px;
    color: #333333;
    width: 12.5%;
    height: 60px;
    line-height: 60px;
}

.equipment_nav a:hover {
    background: #1E67C8;
    color: #fff;
}

.equipment_main {
    max-width: 1500px;
    margin: auto;
    margin-top: 30px;
}

.equipment_main_01 {
    width: 23.5%;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    margin-bottom: 30px;
}

.equipment_main_01:nth-child(4n) {
    margin-right: 0;
}

.equipment_pic {
    width: 100%;
    overflow: hidden;
}

.equipment_pic img {
    width: 100%;
}

.equipment_word {
    width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background: #1E67C8;
}


/* 设备展示详情 */

.equshow {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.equshow_left {
    width: 50%;
    overflow: hidden;
    float: left;
}

.equshow_left img {
    width: 100%;
}

.equshow_right {
    width: 46%;
    overflow: hidden;
    float: right;
}

.equshow_title {
    font-size: 36px;
    color: #333333;
    font-weight: 700;
}

.equshow_sp {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.equshow_sp_ch {
    font-size: 18px;
    color: #333333;
}

.equshow_yuan {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.equshow_yuan_01 {
    width: 150px;
    height: 150px;
    line-height: 150px;
    text-align: center;
    border: 1px solid #1E67C8;
    border-radius: 100%;
    margin-right: 30px;
    font-size: 28px;
    color: #333333;
    float: left;
    font-weight: 700;
}

.equshow_yuan_01:last-child {
    margin-right: 0;
}

.equshow_intr {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.equshow_intr_title {
    font-size: 18px;
    color: #333333;
}

.equshow_intr_content {
    margin-top: 20px;
    line-height: 2.2;
    font-size: 14px;
    color: #666666;
}


/* 联系方式 */

.contact {
    max-width: 1500px;
    overflow: hidden;
    margin: auto;
    margin-top: 60px;
}

.contact_main {
    width: 100%;
    overflow: hidden;
    background: #1E67C8;
    color: #fff;
    border-radius: 10px;
    margin-top: 40px;
}

.contact_left {
    width: 37%;
    overflow: hidden;
    float: left;
    padding-top: 45px;
    padding-left: 4%;
    font-size: 16px;
    color: #fff;
    line-height: 2.4;
}

.contact_right {
    width: 63%;
    overflow: hidden;
    float: right;
}


/* 在线留言 */

.listcontacts {
    width: 100%;
    background: #f1f1f1;
    overflow: hidden;
    margin-top: 50px;
}

.listcontacts>div {
    max-width: 1500px;
    margin: 5rem auto;
    overflow: hidden;
}

.listcontacts>div>span {
    font-size: 28px;
    color: #6a6a6a;
}

.listcontacts>div>span>i {
    font-style: normal;
    font-size: 19px;
    color: #8d8c8c;
    font-family: Arial Regular;
    text-transform: uppercase;
    margin-left: 5px;
}

.listcontactsTitle {
    overflow: hidden;
    margin-top: 3rem;
}

.listcontactsTitle input {
    height: 58px;
    display: block;
    float: left;
    padding-left: 47px;
    box-sizing: border-box;
    width: 48%;
    font-size: 16px;
    margin-bottom: 2rem;
    border: 1px solid #ccc;
    outline: none;
}

.listcontactsTitle input:nth-child(1) {
    background: url(../image/122.png)left 0 no-repeat #fff;
    background-position: 11px;
}

.listcontactsTitle input:nth-child(2) {
    float: right;
    background: url(../image/123.png)left 0 no-repeat #fff;
    background-position: 17px;
}

.listcontactsTitle input:nth-child(3) {
    background: url(../image/124.png)left 0 no-repeat #fff;
    background-position: 8px;
}

.listcontactsTitle input:nth-child(4) {
    float: right;
    background: url(../image/125.png)left 0 no-repeat #fff;
    background-position: 12px;
}

.listcontactsTextarea {
    width: 100%;
    border: 1px solid #ccc;
    background: url(../image/126.png)left 0 no-repeat #fff;
    background-position: 12px 16px;
    padding-left: 47px;
    font-size: 16px;
    padding-top: 18px;
    height: 174px;
    outline: none;
}

.listcontactsubmit {
    text-align: center;
    margin-top: 3rem;
}

.listcontactsubmit input {
    background: #0072c1;
    color: #fff;
    border: 0;
    width: 260px;
    height: 50px;
    font-size: 16px;
    margin: 0 5px;
}

.listcontactsubmit input:nth-child(2) {
    background: #484848;
}


/* 新闻资讯内页 */

.newsInfo {
    width: 100%;
    /* overflow: hidden; */
    margin-top: 40px;
}

.newsInfo_main {
    max-width: 1500px;
    margin: auto;
    /* overflow: hidden; */
    margin-top: 40px;
}

.newsInfo_main_01 {
    width: 100%;
    overflow: hidden;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px #EBEBEB;
}

.newsInfo_left {
    float: left;
    width: 17.33%;
}

.newsInfo_left img {
    width: 100%;
}

.newsInfo_right {
    float: right;
    width: 80%;
    height: 246px;
    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: 40px;
}

.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: 1500px;
    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: "";
}