﻿.container {
    max-width: 1200px;
}


/*网站公共样式*/

.info-content {
    line-height: 2;
    padding-bottom: 30px;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #0187ce;
}

a:focus {
    color: #0187ce;
}

a.btn-more {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease;
    /* Opera */
}

a.btn-more:hover {
    border-color: #780001;
    color: #780001;
}

.banner {
    height: 500px\9!important;
    overflow: hidden\9!important;
    overflow: hidden;
}


/*兼容ie低版*/


/*信息页导航栏*/

.xypg-left-box {
    margin-bottom: 20px;
}

.xypg-left-title {
    background: #0233a9;
    padding: 10px 20px;
    position: relative;
}

.xypg-left-title h3 {
    font-size: 20px;
    color: #ffffff;
    line-height: 30px;
    font-weight: bold;
    position: relative;
    z-index: 9;
}

.xypg-left-title span {
    font-weight: normal;
    font-size: 16px;
    color: #fff;
    opacity: .6;
    margin-left: 10px;
    text-transform: capitalize;
}

.xypg-left-title span::before {
    content: "/";
    padding-right: 5px;
}

.xypg-left-title i {
    position: absolute;
    left: -5px;
    top: -9px;
    font-style: normal;
    font-size: 67px;
    font-weight: bold;
    opacity: .1;
    color: #fff;
    line-height: 1;
    z-index: 1;
    text-transform: uppercase;
}

.xypg-left-con ul {
    margin: 0 -1px;
}

.latest-news li a {
    display: block;
    line-height: 1.2;
    color: #5a5a5a;
}

.xypg-left-menu .xypg-left-con ul li {
    position: relative;
    border-bottom: 1px solid #eeeeee;
}

.xypg-left-menu .xypg-left-con ul li a {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #2e2e2e;
    padding: 15px 18px;
}

#subNav ul li a:after {
    position: absolute;
    z-index: 99;
    width: 30px;
    height: 30px;
    text-align: center;
    top: 10px;
    right: 20px;
    cursor: pointer;
    background: url(../images/icon_spirit.png) 0 -240px no-repeat;
}

.xypg-left-con {
    border: 1px solid #d2d2d2;
    border-top-color: rgb(210, 210, 210);
    border-top-style: solid;
    border-top-width: 1px;
    border-top: none;
}

.latest-news {
    padding: 10px 0;
}

.latest-news li {
    padding: .5em 1em;
    font-size: 14px;
}

.latest-news li a {
    display: block;
    line-height: 1.2;
    color: #5a5a5a;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.latest-news li a::before {
    content: '+';
    font-weight: bold;
    margin-right: 5px;
    font-size: 16px;
}

.hot-keys {
    padding: 20px 7px 8px 7px;
    overflow: hidden;
}

.hot-keys li {
    width: calc(50% - 14px);
    float: left;
    margin: 0 7px 14px 7px;
}

.hot-keys li a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #5a5a5a;
    line-height: 2.857;
    border: 1px dashed #f1f1f1;
    white-space: nowrap;
    overflow: hidden;
}

.hot-keys li a:hover {
    color: #1b6fba;
    border-color: #1b6fba;
}

.page-wrap-contact {
    padding: 10px 0;
    font-size: 14px;
}

.xypg-left-con ul li a:after {
    content: "";
}

.page-wrap-contact h4 {
    padding: .3em 1.4em .8em 1.4em;
    font-size: 15px;
    color: #000000;
}

.page-wrap-contact p {
    border-top: 1px solid #eee;
    position: relative;
    margin-bottom: 0;
    padding: .8em 1.4em;
    color: #2f2f2f;
}


/*信息页导航栏结束*/


/*遮罩层*/

.mask-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    overflow: hidden;
    z-index: 100;
    top: 0;
    left: 0;
}

.mask-bg.active {
    display: block;
}


/*首页模块样式*/

.product-module-box {
    position: relative;
}

.module-title {
    clear: both;
    text-align: center;
    margin: 30px 0px 30px 0px;
}

.module-title .cn-title {
    display: block;
    color: #333;
    line-height: 48px;
    font-family: SimSun;
    font-weight: bold;
}

.module-title span {
    font-size: 18px;
    background: url(../images/24tel.png) no-repeat center left;
    background-size: 34px;
    padding: 20px 0 20px 50px;
}


/*自定义导航动画，也可以用animater.css中的动画，需要在script.js中修改*/

.nav .animated,
.sub-nav .animated {
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.navSlide {
    -webkit-animation-name: navSlide;
}

@keyframes navSlide {
    0% {
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        opacity: 0;
        visibility: visible;
    }
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        opacity: 1;
    }
}


/*Top*/

.header-top {
    color: #fff;
    font-family: Arial, "宋体", Helvetica, sans-serif, Verdana;
}

.header-top a {
    color: #fff;
}


/*bootom*/

footer .footernav ul li a,
footer .copyright a,
footer .relation li,
footer .footertel,
footer .follow {
    color: #fff;
}

footer .relation {
    font-size: 22px;
    color: #a9bcbb;
    line-height: 2;
    position: relative;
}

footer .relation span {
    position: absolute;
    left: 80px;
    top: 10px;
}

footer .footertel {
    line-height: 2;
}

footer .weixxin {
    text-align: right;
    position: relative;
    padding-right: 30px;
    margin-top: 50px;
}

footer .weixxin img {
    width: 110px;
    height: 110px;
}

footer .follow {
    width: 20px;
    height: 30px;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    right: 0;
    top: -3px;
    color: #a9bcbb;
}

footer .footernav {
    padding: 30px 0 50px;
    text-align: center;
    margin: 0 200px;
}

footer .footernav .nav>ul>li {
    height: 40px;
    line-height: 40px;
}

footer .footernav .nav>ul>li>a {
    font-size: 15px;
}

footer .footernav .nav>ul>li>a:hover {
    color: #ccc;
}

footer .footernav .nav ul li ul {
    top: 40px;
}

footer .footernav .nav>ul>li>ul::before {
    display: none;
}

footer .footernav .nav ul li ul {
    background-color: #000;
    border-color: #000;
}

footer .footernav .nav ul li ul li a {
    font-size: 13px;
    line-height: 30px;
    transition: 0.3s linear;
}

footer .footernav .nav ul li ul li a:hover {
    background: none;
    font-size: 14px;
}


/*子栏目样式*/

.sub-nav-box {
    text-align: center;
}

.sub-nav-box .sub-nav {
    padding-top: 10px
}

.sub-nav-box .sub-nav>ul>li {
    text-align: center;
    line-height: 70px;
    margin-right: 20px;
    display: inline-block;
}

.sub-nav-box .sub-nav>ul>li>ul {
    position: absolute;
}

.sub-nav>ul>li.active a {
    background-color: #0187ce;
    color: #fff;
}

.sub-nav-box .sub-nav li:hover>ul {
    display: block;
}

.sub-nav-box .sub-nav>ul>li>ul::before {
    display: block;
    margin: 0px auto;
    text-align: center;
    position: absolute;
    top: -8px;
    left: 45%;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ed8e82;
}

.sub-nav-box .sub-nav>ul>li>ul li ul::before {
    display: block;
    margin: 0px auto;
    text-align: center;
    position: absolute;
    top: 20px;
    left: -10px;
    content: "";
    width: 0;
    height: 0;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 5px solid #fff;
}

.sub-nav-box .sub-nav ul li ul li a {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 50px
}

.sub-nav-box .sub-nav ul li ul li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
}

.sub-nav-box .sub-nav ul li {
    position: relative;
}

.sub-nav-box .sub-nav ul li .arrow {
    display: none
}

.sub-nav-box .sub-nav ul li ul {
    background-color: #ed8e82;
    display: none;
    position: absolute;
    left: 0;
    z-index: 2;
    width: 150px
}


/*二级ul样式*/

.sub-nav-box .sub-nav ul li ul li ul {
    left: 100%;
    top: 0px;
    display: none;
}


/*三级以后ul样式*/

.sub-nav-box .tit {
    text-align: center;
}

.sub-nav-box .en-tit {
    text-align: center;
    font-size: 17px;
    letter-spacing: 1px;
    color: #cccccc;
}


/*图片列表*/

.images-list .row .item a {
    display: block;
    overflow: hidden;
    text-align: center;
    padding: 10px;
}

.images-list .row .item img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.3s ease-out 0s;
}


/*.images-list .row .item a:hover img{transform:scale(1.3,1.3);}*/


/*PC端置顶*/

#goToTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    text-indent: -999em;
    z-index: 20000;
    background-image: url(../images/top.png);
    background-repeat: no-repeat;
    background-position: -84px 0;
}

#goToTop:hover {
    width: 40px;
    height: 40px;
    background: url(../images/top.png) no-repeat -84px -42px;
    text-indent: -999em;
    filter: alpha(opacity=100);
    opacity: 1;
    z-index: 20000;
}


/*Pc端 在线客服*/

.zaixian {
    position: fixed;
    bottom: 440px;
    right: 0px;
    z-index: 9;
}

.zaixian .zaixian_com {
    position: relative;
    width: 50px;
    height: 80px;
}

.zaixian_com .zxzx_pic1 {
    position: absolute;
    right: 0px;
    top: 0px;
}

.zaixian_com .zxzx_pic2 {
    position: absolute;
    right: -190px;
    top: -70px;
    z-index: 10;
    width: 170px;
    height: 300px;
}

.zaixian_com .zxzx_pic1 p {
    position: absolute;
    top: 50px;
    left: 18px;
    font-size: 13px;
    color: #fff;
}

.zaixian_com .zxzx_pic2 p {
    position: absolute;
    top: 118px;
    left: 24px;
    font-size: 13px;
    color: #fff;
}

.kf-lf-lj {
    position: absolute;
    width: 100px;
    right: 10px;
    top: 70px;
}

.kf-lf-lj a {
    display: block;
    line-height: 30px;
    padding-left: 10px;
    margin: 5px 0;
    color: #848484;
    font-size: 13px;
}

.kf-lf-lj a .fa {
    padding-right: 4px;
    color: #1298fa;
}

.kf-lf-lj a:hover {
    background: #1298fa;
    color: #FFF;
    border-radius: 4px;
}

.kf-lf-lj a:hover .fa {
    color: #fff;
}


/*移动端固定栏目按钮*/

.float-nav-toggle {
    display: block;
    text-align: center;
    position: fixed;
    left: 6px;
    bottom: 60px;
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(13, 13, 13, 0.6);
    border-radius: 20px;
}


/*手机端固定导航栏*/

.footer-fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    padding: 6px 0px 2px;
    color: #fff;
    z-index: 9;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-top: 0.2rem solid #000;
    background: #fff;
}

.footer-fixed ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.footer-fixed ul li a {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.footer-fixed ul li p {
    font-size: 1.3rem;
}

.footer-fixed.active {
    transform: translateX(2.8rem);
    z-index: 9;
}

.footer-fixed2 {
    font-size: 2.8rem;
    padding-top: 0.6rem;
}

.footer-fixed i {
    display: block;
}

.footer-fixed .fa {
    font-size: 22px;
}


/*内容页公共用*/

.html5zoo-arrow-left-0 {
    background: url(../images/left.png) no-repeat scroll left top!important;
    margin-left: 10px;
}

.html5zoo-arrow-right-0 {
    background: url(../images/left2.png) no-repeat scroll left top!important;
    margin-right: 10px;
}

.breadcrumb-box {
    position: relative;
    padding: 4px 0;
    margin-bottom: 30px;
}

.breadcrumb>li+li::before {
    content: ">";
    padding: 0 5px;
    color: rgb(102, 102, 102);
}

.breadcrumb li a:hover {
    text-decoration: underline;
    color: #000;
}

.breadcrumb li .fa {
    padding-right: 6px;
}

.page ul li .fa {
    padding-right: 10px;
}

.page ul li:hover a,
.page ul li:hover {
    color: #0488CD;
}

.pagination>li>a,
.pagination>li>span {
    padding: 4px 10px;
}

.card1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

.card2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    height: 41px;
}


/*内页样式*/


/*内页-联系我们*/

.front-desk {
    position: relative;
}

.front-desk p {
    background-color: #000;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

.front-desk img.desk1 {
    min-height: 524px;
}

.front-desk img.desk2 {
    min-height: 222px;
}

.front-desk img.desk3 {
    min-height: 272px;
}

.develop-left {
    position: relative;
}

.develop-left .timeline-box {
    z-index: 3;
}

.develop-left .trantim2 {
    position: relative;
    text-align: center;
}

.develop-left .icon-shijian {
    background-color: transparent;
    color: #ebebeb;
    font-size: 22px;
    top: 0;
    left: 5%;
    position: relative
}

.develop-left .line {
    margin-bottom: 10px;
    width: 3px;
    background-color: #ebebeb;
    height: 120px;
    position: relative;
    display: block;
    text-align: center;
    z-index: 2;
    margin-left: 6%;
}

.develop-left .year {
    position: absolute;
    z-index: 2;
    margin: -26px 0 0 -77px;
    margin-top: -26px;
    width: 62px;
    height: 20px;
    line-height: 20px;
    text-indent: 12px;
    color: #fff;
    background-color: #17bee2;
}

.develop-left .year::after {
    position: absolute;
    content: "";
    left: 100%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #17bee2;
}

.develop-left .circle {
    width: 13px;
    height: 13px;
    margin: auto;
    background: #fff;
    border: #6ed69b 3px solid;
    line-height: 40px;
    color: #fff;
    text-align: center;
    display: block;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    cursor: pointer;
}

.develop-left .month {
    position: absolute;
    color: #000;
    z-index: 2;
    margin-left: -55px;
    margin-top: -15px;
    font-size: 13px;
}

.develop-left .details {
    color: #333;
    background-color: #fff;
    border: #d6d6d6 1px solid;
    height: auto;
    padding: 5px;
    left: 8%;
    position: absolute;
    z-index: 2;
    margin-top: -130px;
    text-align: left;
    height: 120px;
    width: 92%;
}

.develop-left .details .imx {
    background: url(../images/web-timaxis11.png) no-repeat;
    width: 8px;
    height: 13px;
    position: absolute;
    z-index: 2;
    left: -8px;
    margin-top: -2px;
}

.develop-left .details .title {
    line-height: 26px;
    color: #17bee2;
    font-weight: normal;
    padding: 0px;
    margin: 0px;
}

.develop-left ul li .details .conts span {
    font-size: 11px;
}

.develop-images {
    text-align: center;
    padding-right: 0;
    padding-top: 100px;
}

.develop-images img {
    width: 100%;
}

.trantim1 {
    margin-bottom: 10px;
}

.develop-left .timeline-box li {
    height: 100%;
    width: 100%;
}


/*内页-产品中心*/

.product-box .row .item {
    text-align: center;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.product-box .row .item .border-box {
    border: 1px solid rgb(238, 238, 238);
}

.product-box .row .item .border-box:hover {
    border: 1px solid #0058aa;
    box-shadow: rgba(217, 217, 217, 1) 0px 0px 2px 2px;
}

.product-box .row .item p {
    color: #acacac;
    font-size: 12px;
}

.product-box .row .item p strike {
    color: #666;
}

.product-box .row .item p span {
    color: #ff0000;
}

.product-box .row .item .introduct {
    padding: 0 10px 10px;
    text-align: left;
}

.news-border h5 {
    font-size: 20px;
    border-bottom: 1px solid #e2e2e2;
    line-height: 33px;
    margin-bottom: 10px;
}

.news-border .market-price {
    color: #898989;
    text-decoration: line-through;
}

.news-border .sale-price span {
    font-size: 20px;
    color: #ff5022;
    font-weight: bold;
}


/*内页-新闻中心*/

.news-list li {
    border-bottom: 1px dotted #e2e2e2;
    margin-bottom: 10px;
    padding-top: 4px;
}

.news-list li .title {
    font-weight: bold;
    font-size: 15px;
}

.news-list li .date {
    color: #929292;
    font-size: 13px;
    font-family: '宋体';
    padding: 5px 0;
}

.news-list li .introduct {
    font-size: 13px
}

.synopsis {
    background-color: #F5F5F5;
    color: #868686;
    border: 1px solid #E5E5E5;
    line-height: 2;
    text-align: left;
    font-size: 13px;
    margin: 30px 0;
    padding: 10px;
}


/*内页-工程案例*/

.cases-list li {
    cursor: pointer;
}


/*内页-联系我们*/

.contactus .address {
    border: 1px solid #ccc;
    background-color: #fff;
    line-height: 2;
}

.contactus .address img {
    max-width: 260px;
}


/*首页模块样式*/

.module-box {
    position: relative;
    padding: 55px 15px
}

.module-box .module-toptitle {
    clear: both;
    text-align: center;
    margin: 0px 0px 30px 0px;
    font-family: "宋体";
}

.module-box .module-toptitle .en-title {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-size: 16px;
}

.module-box .module-toptitle .en-title i {
    float: left;
    width: 20px;
    height: 1px;
    margin-top: 25px;
    background: #000;
}

.module-box .module-toptitle .en-title span {
    float: left;
    margin: 0px 20px;
    font-size: 28px;
}

.module-box .module-toptitle .cn-title {
    display: block;
    color: rgb(49, 108, 205);
    line-height: 20px;
    text-transform: uppercase;
    font-size: 13px;
}

.more {
    text-align: center;
    margin-top: 30px;
}

.more a {
    border: 1px solid #000;
    padding: 10px 40px;
    border-radius: 6px;
}

.more a:hover {
    background-color: #0187ce;
    color: #fff;
    border-color: #0187ce;
}


/*首页样式*/


/*首页-产品分类*/

.categories-bg {
    background: url(../images/categories-bg.gif) repeat center center;
}


/*首页-公司介绍*/

.module-profile {
    margin-bottom: 10px;
}

.module-profile a .en-title {
    font-size: 28px;
    display: initial;
    padding-right: 10px;
}

.module-profile a span {
    color: rgb(49, 108, 205);
    line-height: 20px;
    text-transform: uppercase;
    font-size: 13px;
}

.module-profile a:hover .en-title {
    color: #47cdff;
}


/*首页-产品展示*/

.products-bg {
    background: url(../images/products-bg.png) no-repeat;
    background-size: cover;
}

.products-bg .product-box .row .item .border-box {
    border: 1px solid #ccc;
}

.products-bg .product-box .row .item .border-box:hover {
    border: 1px solid #0058aa!important;
}


/*首页-新闻资讯*/

.pa_textlist_4 .item {
    padding: 20px 0;
    border-bottom: 1px solid #f3f3f3;
}

.pa_textlist_4 .title {
    font-size: 16px;
    margin-bottom: 4px;
    display: block;
    font-weight: bold;
}

.pa_textlist_4 .introduct {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 26px;
    height: 52px;
    color: #666;
    font-size: 13px;
}

.pa_textlist_4 .date-top {
    background: #198ede;
    height: 52px;
    color: #fff;
    font-weight: bold;
    line-height: 58px;
    text-align: center;
    font-size: 28px;
}

.pa_textlist_4 .date-bottom {
    background: #198ede;
    line-height: 30px;
    color: #fff;
    text-align: center;
}

.sub-nav-index .sub-nav ul li {
    margin-right: 0;
    line-height: 60px;
    margin: 2%;
}

.sub-nav-index .sub-nav>ul>li>a {
    padding: 19.5px 30px;
}


/*相册-图片弹窗*/

.wp-blocksit_content a:hover {
    text-decoration: underline;
    color: #5A5A5A;
}


/* clearfix*/

.wp-blocksit_content .clearfix {
    clear: both;
}

.wp-blocksit_content .container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 25px;
    padding-bottom: 10px;
}

.wp-blocksit_content .grid {
    width: 188px;
    font-size: 12px;
    float: left;
    -webkit-transition: top 1s ease, left 1s ease;
    -moz-transition: top 1s ease, left 1s ease;
    -o-transition: top 1s ease, left 1s ease;
    -ms-transition: top 1s ease, left 1s ease;
}

.wp-blocksit_content .grid strong {
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
    display: block;
    padding: 0 0 5px;
    font-size: 17px;
    line-height: 140%;
}

.wp-blocksit_content .grid strong>a {
    overflow: hidden;
    word-wrap: break-word;
}

.wp-blocksit_content .grid .meta {
    text-align: right;
    color: #777;
    font-style: italic;
}

.wp-blocksit_content .grid .imgholder img {
    max-width: 100%;
    display: block;
}


/* lightbox样式*/

#jquery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 500px;
    display: none;
}

#jquery-lightbox {
    position: fixed;
    top: 5%;
    left: 0;
    width: 100%;
    z-index: 10001;
    text-align: center;
    line-height: 0;
    transform: scale(0);
}

.actives {
    animation: .3s scaleAmin linear forwards;
}

#jquery-lightbox a img {
    border: none;
}

#lightbox-container-image-box {
    position: relative;
    background-color: #fff;
    margin: 0 auto;
}

#lightbox-container-image {
    padding: 10px;
}

#lightbox-loading {
    position: absolute;
    top: 40%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

#lightbox-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

#lightbox-container-image-box>#lightbox-nav {
    left: 0;
}

#lightbox-nav a {
    outline: none;
}

#lightbox-nav-btnPrev,
#lightbox-nav-btnNext {
    width: 49%;
    height: 100%;
    zoom: 1;
    display: block;
}

#lightbox-nav-btnPrev {
    left: 0;
    float: left;
}

#lightbox-nav-btnNext {
    right: 0;
    float: right;
}

#lightbox-container-image-data-box {
    font: 10px Verdana, Helvetica, sans-serif;
    background-color: #fff;
    line-height: 1.4em;
    overflow: auto;
    width: 100%;
    z-index: 10;
    position: relative;
}

#lightbox-container-image-data {
    padding: 0 10px;
    color: #666;
}

#lightbox-container-image-data #lightbox-image-details {
    width: 70%;
    float: left;
    text-align: left;
}

#lightbox-image-details-caption {
    font-weight: bold;
}

#lightbox-image-details-currentNumber {
    display: block;
    clear: left;
    padding-bottom: 1.0em;
}

#lightbox-image {
    max-width: 100%;
    max-height: 630px;
    overflow: hidden;
}

#lightbox-secNav-btnClose {
    width: 88px;
    float: right;
    padding-bottom: 1.4em;
    padding-top: 20px;
}

.opacityAmins {
    animation: .5s opacityAmin linear forwards;
}


/*公共部分*/

.logo {
    line-height: 85px;
}

.x-header-right {
    float: right;
    margin-top: 28.5px;
}

.x-header-right #formsearch #keyword {
    width: 100%;
    height: 28px;
    padding-left: 15px;
    background: none;
    outline: none;
    border: none;
    font-size: 14px;
    color: #666;
}

.x-header-right #formsearch #s_btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 28px;
    background: none;
    outline: none;
    border: none;
    color: #6d6f87;
    cursor: pointer;
    font-size: 18px;
    background: url(../images/ssbg.png) no-repeat center center;
}

.x-header-right #formsearch {
    border: 1px solid #cecece;
    height: 30px;
    border-radius: 15px;
    position: relative;
    padding-right: 30px;
}

.c1_index {
    position: relative;
    background: #fff;
    padding-top: 3px;
}

.c11_list {
    display: flex;
    justify-content: center;
}

.c11_list li {
    text-align: center;
    padding: 10px 0 10px;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}

.c11_list li a.img {
    display: block;
    line-height: 40px;
    vertical-align: middle;
}

.c11_list li a.img img {
    vertical-align: middle;
}

.c11_list li h3 {
    font-size: 15px;
    color: #5a5a5a;
    font-weight: normal;
    padding-top: 10px;
}

.c11_list li:hover {
    background: #f2f2f2;
}

.c11_list li:hover::before {
    position: absolute;
    top: -3px;
    left: 0px;
    width: 100%;
    height: 3px;
    background: #004ea2;
    content: "";
}

.c2_index {
    position: relative;
    padding: 2.34375% 0;
    background: #f2f2f2;
}

.c22_list {
    position: relative;
}

.c22_list li {
    position: relative;
    margin-bottom: 10px;
}

.c22_list li a.img {
    display: block;
}

.c22_list li a.img img {
    width: 100%;
}

.c22_list li a.img h3 {
    line-height: 50px;
    background: #434343;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    transition: all .3s;
}

.c22_list li:hover a.img h3 {
    background: #1b6fba;
}

.c3_index {
    position: relative;
    padding: 3.125% 0;
}

.mx-title {
    text-align: center;
    margin-bottom: 2.82291667%;
}

.new-pro-sort {
    margin-top: 2%;
    text-align: center;
    font-size: 0;
}

.tabct div a {
    border: 1px solid #000;
    display: block;
}

.tabct div:hover a {
    border: 1px solid #03a7ec;
}

.tabct div a div {
    text-align: center;
}

.tabct div a p {
    border-top: 1px solid #f2f2f2;
    text-align: center;
    line-height: 35px;
}

.mx-product-center-ul {
    margin-top: 2.1875%;
}

.mx-product-center-ul li a {
    width: 100%;
    display: block;
    border: 1px solid rgb(102, 102, 102);
}

.mx-product-center-ul li:hover a {
    border: 1px solid #0187ce;
}

.mx-product-center-ul li a div {
    padding: 5%
}

.mx-product-center-ul li a div img {
    width: 100%;
    height: 100%;
}

.mx-product-center-ul li .img {
    display: block;
    padding: 10%;
}

.mx-product-center-ul li p {
    font-size: 13px;
    color: #666666;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #bfbfbf;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.new-pro-sort li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.625em;
    font-size: 16px;
}

.new-pro-sort li.select {
    background: #1b6fba;
    border-radius: 5px;
    color: #fff;
    margin-bottom: 5px;
}

.new-pro-sort li.select a {
    color: #fff;
}

.new-pro-sort li a {
    display: block;
    padding: 0.425em 1.65em;
    color: #a4a4a4;
}

.new-pro-sort li:hover {
    background: #1b6fba;
    border-radius: 5px;
}

.new-pro-sort li:hover a {
    color: #fff;
}

.mx-product-center-ul li:hover p {
    color: #1b6fba;
    font-weight: bold;
}

.promo_contt {
    position: relative;
    background: #eeeeee;
    height: 100%;
    display: table;
    width: 100%;
}

.promo_contt .pro_img li {
    position: relative;
    height: 100%;
}

.promo_contt .pro_img li img {
    width: 100%;
    height: 100%;
}

.pro_cate li {
    height: 25%;
    text-align: center;
    position: relative;
    cursor: pointer;
    padding-left: 20%;
    border-bottom: 1px solid #5a5a5a;
    width: 100%;
    cursor: pointer;
}

.pro_cate li.cur {
    background: #1b6fba;
}

.pro_cate li a.img {
    display: table;
    line-height: 4.7;
}

.pro_cate li a.img span {
    display: table-cell;
    vertical-align: middle;
    width: 80px;
    text-align: center;
}

.pro_cate li a.img h3 {
    display: table-cell;
    vertical-align: middle;
    font-size: 22px;
    color: #5a5a5a;
    padding-left: 20px;
}

.pro_cate li.cur a.img h3 {
    color: #fff;
}

.promo_contt .pro_cate li.cur a h3 {
    color: #fff;
}

.promo_contt .pro_cate li.cur a span img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(111deg) brightness(106%) contrast(102%);
}

.c4_index {
    position: relative;
    padding: 0 0 3.125%;
    background-size: 100% 100%;
}

.abb_contt {
    position: relative;
    background: #fff;
    border: 1px solid #cccccc;
}

.abb_left h3 {
    margin-top: 30px;
    line-height: 60px;
    border-bottom: 1px solid #bfbfbf;
    font-size: 24px;
    color: #004ea2;
}

.abb_left .abb_txt {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
    padding: 40px 0 35px;
}

.abb_left .abbmore {
    display: block;
    width: 176px;
    height: 36px;
    line-height: 36px;
    background: #004ea2;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.abb_right img {
    max-width: 100%;
    width: 100%;
}

.promotion {
    position: relative;
    padding: 0 0 2.125%;
}

.c5_index {
    position: relative;
    padding: 1.125% 0 1.125%;
}

.c5_index ul li a div {
    border: 1px solid #1b6fba;
    width: 100%;
    overflow: hidden;
}

.c5_index ul li img {
    padding: 1px;
}

.c5_index ul li a {
    width: 100%;
    display: block;
}

.c5_index ul li a div img {
    transition: all .5s ease;
    width: 100%;
}

.c5_index ul li a p {
    text-align: center;
    line-height: 30px;
}

.c5_index ul li:hover div img {
    transform: scale(1.1);
}

.c6_index {
    position: relative;
    padding: 1.125% 0 1.125%;
}

.new-news-lists {
    position: relative;
}

.new-news-lists li {
    float: left;
    transition: all .3s;
    margin-bottom: 10px;
}

.new-news-lists li a.img {
    display: block;
    border: 1px solid #f5f2ee;
    padding: 20px;
}

.new-news-lists li h3 {
    font-size: 17px;
    color: #5a5a5a;
    font-weight: normal;
    padding: 20px 0;
}

.new-news-lists li .info22 {
    font-size: 14px;
    color: #6b6a6a;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-news-lists li .date22 {
    display: block;
    font-size: 15px;
    color: #aba8a8;
    font-weight: normal;
    padding-top: 10px;
}

.new-news-lists li:hover a.img {
    border: 1px solid #e3dad1;
}

.mx-parnter {
    margin-top: 1%;
    padding-bottom: 0%;
}

.mx-parnter .owl-item a {
    display: block;
    border: 1px solid #e9e9e9;
    font-size: 0;
    overflow: hidden;
}

.mx-parnter .owl-item img {
    width: 100%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.mx-parnter .owl-carousel a {
    display: block;
    border: 1px solid #e9e9e9;
    border-left-color: rgb(233, 233, 233);
    border-left-style: solid;
    border-left-width: 1px;
    font-size: 0;
    overflow: hidden;
}

.mx-parnter .owl-carousel a:not(:nth-child(1)) {
    border-left: none;
}

.mx-parnter .owl-carousel a:hover {
    border: 1px solid #00a0e9;
}

.mx-parnter .owl-carousel a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.mx-parnter .owl-carousel a img {
    width: 100%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-layout {
    background: #162333;
    background-size: 100% 100%;
    padding: 1.16666667% 1.16666667% 0 1.16666667%;
}

.x-layout-desc {
    background: url(../images/hotxx.png) no-repeat left bottom;
    padding-bottom: 5px;
}

.x-layout-desc h3 {
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.8;
}

.x-layout-contact {
    margin-top: 10px;
}

.x-layout-contact p {
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.8;
}

.x-layout-ewm {
    text-align: center;
    margin-top: 20px;
    border-left: 1px solid #505761;
    border-right: 1px solid #505761;
}

.x-layout-ewm p {
    font-size: 12px;
    font-weight: 400;
    padding: .8em 0;
    line-height: 1.7;
    color: #464646;
}

.x-layout-menu {
    margin-top: 20px;
}

.x-layout-menu dl {
    float: left;
    width: 20%;
    text-align: left;
}

.x-layout-menu dl dt {
    font-size: 16px;
    color: #cacaca;
    margin-bottom: .83em;
    font-weight: 400;
}

.x-layout-menu dl dd a {
    display: block;
    font-size: 12px;
    color: #85888c;
    line-height: 2.4;
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.x-layout .foot_ban {
    border-top: 1px solid #434343;
    line-height: 52px;
    font-size: 12px;
    color: #cacaca;
    margin: 0 auto;
    padding: 0;
}

.x-link {
    float: left;
    position: relative;
    font-size: 12px;
    font-size: 12px;
    color: #949494;
}

.x-seo {
    float: right;
}

.x-layout .foot_ban a {
    font-size: 12px;
    color: #cacaca;
}

.foot_bottom {
    position: relative;
    padding: 10px 0;
    background: #333;
    font-size: 12px;
    color: #5b5b5b;
}

.x-copyright {
    float: left;
}

.jishu {
    float: right;
}

#toolbar {
    position: fixed;
    z-index: 9999;
    right: 17px;
    bottom: 10%;
}

#toolbar li {
    margin-bottom: 3px;
    font-size: 0;
    width: 57px;
    height: 57px;
    right: 0;
    position: relative;
}

#toolbar li a {
    display: block;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    width: 57px;
    height: 57px;
    overflow: hidden;
    background: #152837;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    white-space: nowrap;
    font-size: 0;
}

#toolbar li .icon-font {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 57px;
    height: 57px;
    background-color: #d9d9d9;
}

#toolbar li .icon-qq::after {
    background-position: 0 -150px;
}

.icon-font::after {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../images/icon_float.png);
    background-repeat: no-repeat;
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
}

#toolbar li .wz {
    display: inline-block;
    line-height: 57px;
    font-size: 14px;
    color: #fff;
    vertical-align: middle;
    padding-left: 10px;
}

#toolbar li:hover .icon-font {
    background-color: #152837;
}

#toolbar li:hover a {
    width: 200px;
}

#toolbar li:hover .icon-qq::after {
    background-position: -30px -150px;
}

#toolbar li .icon-phone::after {
    background-position: 0 -90px;
}

#toolbar li:hover .icon-phone::after {
    background-position: -30px -90px;
}

#toolbar li .icon-ewm::after {
    background-position: 0 -30px;
}

#toolbar li:hover .icon-ewm::after {
    background-position: -30px -30px;
}

#toolbar li.ewm:hover .ewm-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#toolbar li.ewm .ewm-box img {
    max-width: 100%;
}

#toolbar li.ewm .ewm-box {
    position: absolute;
    z-index: 1;
    padding: 5px;
    background: #152837;
    width: 110px;
    right: 120%;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s;
    transition: all .7s;
}

#toolbar li.ewm .ewm-box::after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: 20px;
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 5px;
    border-right-width: 5px;
    cursor: pointer;
    border-style: dashed dashed dashed solid;
    border-right-style: dashed;
    border-color: transparent transparent transparent #152837;
    border-right-color: transparent;
    border-right: none;
}

#toolbar li .icon-message::after {
    background-position: 0 -120px;
}

#toolbar li:hover .icon-message::after {
    background-position: -30px -120px;
}

#toolbar li .icon-top::after {
    background-position: 0 -60px;
}

#toolbar li:hover .icon-top::after {
    background-position: -30px -60px;
}

.foot_bottom a {
    font-size: 12px;
    color: #5b5b5b;
}

.opacityAmins {
    animation: .5s opacityAmin linear forwards;
}

.actives {
    animation: .3s scaleAmin linear forwards;
}

.wp-blocksit_content a:hover {
    text-decoration: underline;
    color: #5A5A5A;
}


/* clearfix*/

.wp-blocksit_content .clearfix {
    clear: both;
}

.wp-blocksit_content .container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 25px;
    padding-bottom: 10px;
}

.wp-blocksit_content .grid {
    width: 188px;
    font-size: 12px;
    float: left;
    -webkit-transition: top 1s ease, left 1s ease;
    -moz-transition: top 1s ease, left 1s ease;
    -o-transition: top 1s ease, left 1s ease;
    -ms-transition: top 1s ease, left 1s ease;
}

.wp-blocksit_content .grid strong {
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
    display: block;
    padding: 0 0 5px;
    font-size: 17px;
    line-height: 140%;
}

.wp-blocksit_content .grid strong>a {
    overflow: hidden;
    word-wrap: break-word;
}

.wp-blocksit_content .grid .meta {
    text-align: right;
    color: #777;
    font-style: italic;
}

.wp-blocksit_content .grid .imgholder img {
    max-width: 100%;
    display: block;
}


/* lightbox样式*/

#jquery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 500px;
    display: none;
}

#jquery-lightbox {
    position: fixed;
    top: 5%;
    left: 0;
    width: 100%;
    z-index: 10001;
    text-align: center;
    line-height: 0;
    transform: scale(0);
}

.actives {
    animation: .3s scaleAmin linear forwards;
}

.nav-show {
    background-color: blue;
}

.xypg-left-menu .xypg-left-con ul li.current-1 a {
    color: #03a7ec
}


/* .xypg-left-menu .xypg-left-con ul li.active a {
    color: #03a7ec
} */

.latest-news li:hover a {
    color: #03a7ec
}

.sub-nav-index .sub-nav ul li.current {
    background-color: #0187ce;
    color: #fff;
}

@media (min-width:1000px) {
    .tab .tab-title li {
        font-size: 16px;
        width: 10%;
    }
}

@media (max-width:1000px) {
    .tab .tab-title li {
        padding: 0 4px;
        font-size: 13px;
    }
}

.display-block {
    display: block;
}

.display-none {
    display: none;
}

.tab .tab-title {
    text-align: center;
}

.tab .tab-title {
    height: 60px;
    position: relative;
}

.tab .tab-title li {
    border: 1px solid #3e8378;
    line-height: 38px;
    text-align: center;
    color: #959595;
    display: inline-block;
    cursor: pointer;
}

.tab .tab-title li.select {
    background-color: #3e8378;
    color: #fff;
}

.tab .tabct ul {
    margin: 0;
}

.tab .tabct li span a:hover {
    color: #005bac;
}

@keyframes scaleAmin {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

#jquery-lightbox a img {
    border: none;
}

#lightbox-container-image-box {
    position: relative;
    background-color: #fff;
    margin: 0 auto;
}

#lightbox-container-image {
    padding: 10px;
}

#lightbox-loading {
    position: absolute;
    top: 40%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

#lightbox-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

#lightbox-container-image-box>#lightbox-nav {
    left: 0;
}

#lightbox-nav a {
    outline: none;
}

#lightbox-nav-btnPrev,
#lightbox-nav-btnNext {
    width: 49%;
    height: 100%;
    zoom: 1;
    display: block;
}

#lightbox-nav-btnPrev {
    left: 0;
    float: left;
}

#lightbox-nav-btnNext {
    right: 0;
    float: right;
}

#lightbox-container-image-data-box {
    font: 10px Verdana, Helvetica, sans-serif;
    background-color: #fff;
    line-height: 1.4em;
    overflow: auto;
    width: 100%;
    z-index: 10;
    position: relative;
}

#lightbox-container-image-data {
    padding: 0 10px;
    color: #666;
}

#lightbox-container-image-data #lightbox-image-details {
    width: 70%;
    float: left;
    text-align: left;
}

#lightbox-image-details-caption {
    font-weight: bold;
}

#lightbox-image-details-currentNumber {
    display: block;
    clear: left;
    padding-bottom: 1.0em;
}

#lightbox-image {
    max-width: 100%;
    max-height: 630px;
    overflow: hidden;
}

#lightbox-secNav-btnClose {
    width: 88px;
    float: right;
    padding-bottom: 1.4em;
    padding-top: 20px;
}

.detail-content {
    text-align: center;
}

.imgae-same-size ul li:hover a div img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.imgae-same-size ul li a div {
    overflow: hidden;
}

.page-wrap {
    background: #ffffff;
    padding-bottom: 3.38541667%;
}

.page-wrap-right {
    overflow: hidden;
}

.xypg-news-list li {
    border: 1px solid #e1e1e1;
    padding: 30px;
    background: #fff;
    margin-bottom: 35px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.xypg-news-list li .tit {
    border-bottom: 1px solid #cbcbcb;
    margin-bottom: 15px;
    position: relative;
}

.xypg-news-list li .tit h3 {
    padding-bottom: 15px;
    font-size: 18px;
    color: #565656;
    font-weight: normal;
    padding-right: 25%;
    margin: 0;
}

.xypg-news-list li .tit .date {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    color: #666666;
}

.xypg-news-list li .info {
    font-size: 14px;
    line-height: 2;
    color: #999999;
}

.xypg-news-list li .more {
    margin-top: 15px;
    text-align: left;
}

.xypg-news-list li .more span {
    display: inline-block;
    width: 130px;
    line-height: 33px;
    text-align: center;
    color: #000;
    font-size: 14px;
    color: #666666;
    border: 1px solid #e1e1e1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.xypg-news-list li:hover .more span {
    color: #fff;
    background-color: #292e39;
}

.xypg-news-list li:hover {
    -webkit-box-shadow: 0px 2px 13px 1px rgba(8, 1, 3, 0.18);
    box-shadow: 0px 2px 13px 1px rgba(8, 1, 3, 0.18);
}

.imgae-same-size ul li a div img {
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}


/*招聘*/

.xypg-job-list .job-title {
    line-height: 60px;
    background: #292e39;
    font-size: 18px;
    color: #fff;
    overflow: hidden;
    clear: both;
}

.xypg-job-list .job-title span {
    display: block;
    float: left;
    font-weight: bold;
}

.xypg-job-list .job-name {
    width: 32.5%;
    padding-left: 4%;
}

.xypg-job-list .job-xlyq {
    width: 32.5%;
    padding-left: 4%;
}

.xypg-job-list .job-number {
    width: 20%;
    text-align: center;
}

.xypg-job-list .job-more {
    width: 15%;
    text-align: center;
}

.job-titlele {
    line-height: 60px;
    background: #fff;
    font-size: 18px;
    color: #05acea;
    clear: both;
    overflow: hidden;
    border-bottom: 1px solid #f2f2f2;
}

.job-titlele span {
    display: block;
    float: left;
    font-weight: bold;
}


/*图标*/

.tags-title {
    margin-bottom: 10px;
    border-bottom: 1px solid #c3c3c3;
    position: relative;
}

.tags-title h3 {
    display: inline-block;
    padding: 0 30px;
    font-size: 16px;
    color: #292e39;
    line-height: 40px;
    border-bottom: 3px solid #1b6fba;
    margin-bottom: -1px;
}

.tags-title .baidu-share {
    position: absolute;
    right: 0;
    top: 8px;
}

.bdshare-button-style1-16 a,
.bdshare-button-style1-16 .bds_more {
    float: left;
    font-size: 12px;
    padding-left: 17px;
    line-height: 16px;
    height: 16px;
    background-image: url(../images/icons_1_16.png);
    _background-image: url(../images/icons_1_16_debase.png);
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 6px 6px 6px 0;
}

.bdshare-button-style1-16 .bds_more {
    color: #333;
    float: left;
}

.bdshare-button-style1-16 .bds_more {
    background-position: 0 0;
}

.bdshare-button-style1-16 .bds_tsina {
    background-position: 0 -104px;
}

.bdshare-button-style1-16 .bds_weixin {
    background-position: 0 -1612px;
}

.bdshare-button-style1-16 .bds_sqq {
    background-position: 0 -2652px;
}

.bdshare-button-style1-16 .bds_isohu {
    background-position: 0 -3016px;
}

.bdshare-button-style1-16 .bds_tqq {
    background-position: 0 -260px;
}

.bdshare-button-style1-16 .bds_fbook {
    background-position: 0 -1352px;
}

.bdshare-button-style1-16 a:hover {
    color: #333;
    opacity: .8;
    filter: alpha(opacity=80);
}

@media (min-width:1000px) {
    /*PC端*/
    .abb_left h3 {
        margin-top: 15px;
    }
    .abb_left .abb_txt {
        padding: 30px 0 25px;
    }
    .new-news-lists li h3 {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
    }
    .footer-fixed {
        display: none;
    }
    .nav ul li {
        display: inline-block;
        float: left;
        position: relative;
        margin: 0 .15vw;
    }
    .nav ul {
        text-align: right;
        padding-right: 10px;
    }
    .nav ul li a {
        display: block;
        padding: 0 8px;
        font-size: 16px;
        color: #5a5a5a;
        line-height: 2.4;
        line-height: 85px;
    }
    .nav ul li ul {
        position: absolute;
        z-index: 99;
        width: 150%;
        left: -25%;
        top: 85px;
        background: #fff;
        border-radius: 5px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
    }
    .nav>ul>li>.active-nav,
    .nav>ul>li>a:hover {
        color: #03a7ec;
        background: #ddd;
    }
    .nav>ul>li>ul li.current a {
        color: #03a7ec;
    }
    .nav ul li:hover ul {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .nav ul li ul li a {
        display: block;
        text-align: center;
        line-height: 2;
        font-size: 14px;
        color: #333;
        line-height: 1.5;
        padding: .5em;
    }
    .nav ul li ul li {
        float: none;
        margin: 0 auto;
        width: 100%;
    }
    .nav ul li ul li a:hover {
        background: #e9eaeb;
    }
    .nav ul li ul::after {
        content: '';
        width: 0;
        height: 0;
        line-height: 0;
        font-size: 0;
        overflow: hidden;
        border-width: 10px;
        border-top-width: 10px;
        cursor: pointer;
        border-style: dashed dashed solid dashed;
        border-top-style: dashed;
        border-color: transparent transparent #fff transparent;
        border-top-color: transparent;
        border-top: none;
        position: absolute;
        top: -10px;
        left: 50%;
        margin-left: -10px;
        z-index: 99;
    }
    .none-pc {
        display: none;
    }
    .xymob-search {
        display: none;
    }
    .nav-toggle {
        display: none;
    }
    .xymob-search-btn {
        display: none;
    }
    .c11_list li {
        width: 11.1111111%;
    }
    .pro_cate li:last-child {
        border-bottom: none;
    }
    .promo_contt .pro_img {
        display: table-cell;
        vertical-align: middle;
        width: 70%;
    }
    .promo_contt .pro_cate {
        display: table-cell;
        vertical-align: middle;
        width: 30%;
        height: 100%;
        position: relative;
    }
    .abb_left {
        width: 50%;
        padding: 20px;
        float: left;
    }
    .abb_right {
        width: 50%;
        float: right;
    }
    .abb_left .abb_txt p {
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (min-width:475px) and (max-width:1000px)
/*ipad端*/

{
    /*头部*/
    .displaynone {
        display: none;
    }
    .logo {
        line-height: 30px;
    }
    .logo img {
        height: 100%;
        width: 35%;
    }
    .header {
        position: relative;
        height: 60px;
        top: 0;
        z-index: 99;
        left: 0;
        right: 0;
        background: #151515;
    }
    .logo-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        width: 70%;
        height: 30px;
        text-align: center;
    }
    .nav-toggle span {
        margin: 7px 0;
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    .icon-font::after {
        content: "";
        width: 30px;
        height: 30px;
        background-image: url(../images/icon_spirit.png);
        background-repeat: no-repeat;
        position: absolute;
        left: calc(50% - 15px);
        top: calc(50% - 15px);
    }
    .xymob-search-btn .icon-font::after {
        background-position: -30px -210px;
    }
    .xymob-search {
        position: fixed;
        z-index: 99999;
        left: 100%;
        bottom: 0;
        top: 0;
        width: 100%;
        background: #151515;
        padding: 15px 15% 0 15%;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    .xymob-search .xymob-search-close-btn {
        position: absolute;
        top: 5%;
        left: 7%;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
    }
    .xymob-search .xymob-search-close-btn i {
        width: 100%;
        height: 100%;
        display: block;
    }
    .xymob-search .xymob-search-close-btn i.icon-font {
        position: relative;
    }
    .xymob-search .xymob-search-box {
        height: 50px;
        border-bottom: 2px solid #2d2d2d;
    }
    .xymob-search .xymob-seaerch-wz span,
    .xymob-search .xymob-seaerch-wz a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 45px;
        border-bottom: 1px solid #2b2b2b;
    }
    .xymob-search .xymob-search-close-btn i::after {
        background-position: -30px -300px;
    }
    .xymob-search .xymob-search-box input[type="text"] {
        width: 80%;
        float: left;
        background: none;
        border: none;
        outline: none;
        color: rgba(255, 255, 255, 0.3);
        font-family: "宋体";
        font-size: 16px;
        height: 50px;
    }
    .xymob-search .xymob-search-box #s_btn .icon-font::after {
        background-position: -30px -210px;
    }
    .xymob-search .xymob-search-box #s_btn {
        width: 20%;
        height: 50px;
        outline: none;
        border: none;
        cursor: pointer;
        font-size: 0;
        background: none;
        border: none;
    }
    .xymob-search .xymob-search-box #s_btn .icon-font {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .nav {
        display: none;
        position: absolute;
        z-index: 9999;
        left: 0;
        right: 0;
        height: 100vh;
        background: #151515;
        padding: 0 17%;
        top: 50px;
        height: 100vh;
        overflow: auto;
        padding-bottom: 80px;
    }
    .nav.active {
        opacity: 1;
        display: block;
    }
    .nav ul li {
        border-bottom: 1px solid #2b2b2b;
        position: relative;
    }
    .nav ul li ul {
        display: none;
    }
    /*二级ul样式*/
    .nav ul li a {
        display: block;
        line-height: 50px;
        font-size: 16px;
        color: #ffffff;
        text-align: left;
    }
    .nav ul li ul li a {
        color: rgba(255, 255, 255, 0.8);
        padding-left: 25px;
        font-size: 14px;
        background-color: #1E1E1E;
        border-top: 1px dashed #2b2b2b;
        line-height: 40px;
    }
    .nav ul li ul li ul li a {
        padding-left: 90px;
    }
    .nav ul li ul li ul li li a {
        padding-left: 120px;
    }
    .nav ul li {
        position: relative;
    }
    .nav ul li .arrow {
        position: absolute;
        right: 0px;
        top: 0px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        transition-duration: 0s
    }
    .nav ul li .arrow:after {
        font-family: FontAwesome;
        content: "\f105";
        display: block;
        font-weight: bold;
        font-size: 18px
    }
    .nav ul li.active>ul {
        display: block
    }
    .nav ul li.active>.arrow {
        transform: rotate(90deg)
    }
    .sub-nav-box {
        margin: 0 auto 30px;
    }
    .sub-nav-box .tit {
        font-size: 24px;
    }
    /*产品*/
    .pro_cate li {
        width: 50%;
        float: left;
        padding-left: 0px;
    }
    .pro_cate li a {
        margin: auto;
    }
    .c11_list {
        display: block;
    }
    .xyin-title {
        font-size: 20px;
    }
    .xyin-title span {
        font-size: 16px;
    }
    .xyin-product {
        padding: 25px 0;
    }
    .xyin-product-list li {
        width: 47%;
        margin-bottom: 15px;
    }
    .chanmore {
        width: 112px;
        font: 400 14px/32px "宋体";
        color: #fff;
        text-align: center;
        background: #05acea;
        margin: 0 auto;
        margin-top: 0px;
        margin-top: 2%;
    }
    .aboutmoire {
        width: 120px;
        line-height: 35px;
        margin-top: 2%;
        font-size: 14px;
    }
    .jishu {
        display: none;
    }
    /*bootom*/
    footer {
        text-align: center;
        margin-top: 0px;
    }
    .xy-tl-nav dl {
        width: 100%;
        float: none;
        overflow: hidden;
    }
    .xy-tl-nav dl dd {
        float: left;
        margin: 0 5px;
    }
    .xy-tonglan .xy-tl-title {
        clear: both;
    }
    .x-region {
        float: none;
    }
    /*浮动客服*/
    #toolbar ul li:not(:nth-last-child(1)) {
        display: none;
    }
    /*头部*/
    #formsearch {
        display: none;
    }
    .nav-toggle {
        position: absolute;
        z-index: 9;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto 0 auto 27px;
        width: 30px;
        height: 20px;
    }
    .logo-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        width: 70%;
        height: 30px;
        text-align: center;
    }
    .nav-toggle span {
        margin: 7px 0;
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    /*.nav-toggle:before{content: '';-webkit-transform-origin: 7.5%;transform-origin: 7.5%;display: block;height: 2px;width: 100%;background: #fff;-webkit-transition: all .5s;transition: all .5s;}
.nav-toggle:after{content: '';-webkit-transform-origin: 7.5%;transform-origin: 7.5%;display: block;height: 2px;width: 100%;background: #fff;-webkit-transition: all .5s;transition: all .5s;}*/
    .fa {
        opacity: 1;
        font-size: 15px;
        color: #000;
    }
    .nav-toggle.chicked:before {
        transform: rotate(45deg);
    }
    .nav-toggle.chicked:after {
        transform: rotate(-45deg);
    }
    .nav-toggle.chicked span {
        transform: translateX(-100%);
        opacity: 0;
    }
    .xymob-search-btn {
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
        bottom: 0;
        width: 14%;
        text-align: center;
        line-height: 60px;
    }
    .icon-font::after {
        content: "";
        width: 30px;
        height: 30px;
        background-image: url(../images/icon_spirit.png);
        background-repeat: no-repeat;
        position: absolute;
        left: calc(50% - 15px);
        top: calc(50% - 15px);
    }
    .xymob-search-btn .icon-font::after {
        background-position: -30px -210px;
    }
    .xymob-search {
        position: fixed;
        z-index: 99999;
        left: 100%;
        bottom: 0;
        top: 0;
        width: 100%;
        background: #151515;
        padding: 15px 15% 0 15%;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    .xymob-search .xymob-search-close-btn {
        position: absolute;
        top: 3%;
        left: 7%;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
    }
    .xymob-search .xymob-search-close-btn i {
        width: 100%;
        height: 100%;
        display: block;
    }
    .xymob-search .xymob-search-close-btn i.icon-font {
        position: relative;
    }
    .xymob-search .xymob-search-box {
        height: 50px;
        border-bottom: 2px solid #2d2d2d;
    }
    .xymob-search .xymob-seaerch-wz span,
    .xymob-search .xymob-seaerch-wz a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 45px;
        border-bottom: 1px solid #2b2b2b;
    }
    .xymob-search .xymob-search-close-btn i::after {
        background-position: -30px -300px;
    }
    .xymob-search .xymob-search-box input[type="text"] {
        width: 80%;
        float: left;
        background: none;
        border: none;
        outline: none;
        color: rgba(255, 255, 255, 0.3);
        font-family: "宋体";
        font-size: 16px;
        height: 50px;
    }
    .xymob-search .xymob-search-box #s_btn .icon-font::after {
        background-position: -30px -210px;
    }
    .xymob-search .xymob-search-box #s_btn {
        width: 20%;
        height: 50px;
        outline: none;
        border: none;
        cursor: pointer;
        font-size: 0;
        background: none;
        border: none;
    }
    .xymob-search .xymob-search-box #s_btn .icon-font {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .xymob-navbtn::before {
        content: '';
        -webkit-transform-origin: 7.5%;
        transform-origin: 7.5%;
    }
    .xymob-navbtn i span {
        margin: 7px 0;
    }
    .xymob-navbtn span {
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    .abb_left h3 {
        margin-top: 10px;
    }
    .abb_left .abb_txt {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding-bottom: 2px;
        padding-top: 1px;
    }
    .abb_left .abb_txt p {
        overflow: hidden;
    }
    .abb_left {
        padding: 0 20px;
    }
    .pro_cate li a.img h3 {
        font-size: 16px;
        padding-left: 0px;
    }
    #navToggle .fa {
        color: #fff;
        font-size: 25px;
    }
    .abb_left {
        margin-bottom: 20px;
    }
    .foot_bottom {
        display: none;
    }
}

@media (max-width:474px) {
    /*手机端*/
    /*头部*/
    #formsearch {
        display: none;
    }
    .nav-toggle {
        position: absolute;
        z-index: 9;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto 0 auto 27px;
        width: 30px;
        height: 20px;
    }
    .logo-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        width: 70%;
        height: 30px;
        text-align: center;
    }
    .nav-toggle span {
        margin: 7px 0;
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    /*.nav-toggle:before{content: '';-webkit-transform-origin: 7.5%;transform-origin: 7.5%;display: block;height: 2px;width: 100%;background: #fff;-webkit-transition: all .5s;transition: all .5s;}
.nav-toggle:after{content: '';-webkit-transform-origin: 7.5%;transform-origin: 7.5%;display: block;height: 2px;width: 100%;background: #fff;-webkit-transition: all .5s;transition: all .5s;}*/
    .fa {
        opacity: 1;
        font-size: 15px;
        color: #000;
    }
    #navToggle .fa {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        font-size: 25px;
        color: #fff;
    }
    .nav-toggle.chicked:before {
        transform: rotate(45deg);
    }
    .nav-toggle.chicked:after {
        transform: rotate(-45deg);
    }
    .nav-toggle.chicked span {
        transform: translateX(-100%);
        opacity: 0;
    }
    .xymob-search-btn {
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
        bottom: 0;
        width: 14%;
        text-align: center;
        line-height: 60px;
    }
    .icon-font::after {
        content: "";
        width: 30px;
        height: 30px;
        background-image: url(../images/icon_spirit.png);
        background-repeat: no-repeat;
        position: absolute;
        left: calc(50% - 15px);
        top: calc(50% - 15px);
    }
    .xymob-search-btn .icon-font::after {
        background-position: -30px -210px;
    }
    .xymob-search {
        position: fixed;
        z-index: 99999;
        left: 100%;
        bottom: 0;
        top: 0;
        width: 100%;
        background: #151515;
        padding: 15px 15% 0 15%;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    .xymob-search .xymob-search-close-btn {
        position: absolute;
        top: 3%;
        left: 7%;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
    }
    .xymob-search .xymob-search-close-btn i {
        width: 100%;
        height: 100%;
        display: block;
    }
    .xymob-search .xymob-search-close-btn i.icon-font {
        position: relative;
    }
    .xymob-search .xymob-search-box {
        height: 50px;
        border-bottom: 2px solid #2d2d2d;
    }
    .xymob-search .xymob-seaerch-wz span,
    .xymob-search .xymob-seaerch-wz a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 45px;
        border-bottom: 1px solid #2b2b2b;
    }
    .xymob-search .xymob-search-close-btn i::after {
        background-position: -30px -300px;
    }
    .xymob-search .xymob-search-box input[type="text"] {
        width: 80%;
        float: left;
        background: none;
        border: none;
        outline: none;
        color: rgba(255, 255, 255, 0.3);
        font-family: "宋体";
        font-size: 16px;
        height: 50px;
    }
    .xymob-search .xymob-search-box #s_btn .icon-font::after {
        background-position: -30px -210px;
    }
    .xymob-search .xymob-search-box #s_btn {
        width: 20%;
        height: 50px;
        outline: none;
        border: none;
        cursor: pointer;
        font-size: 0;
        background: none;
        border: none;
    }
    .xymob-search .xymob-search-box #s_btn .icon-font {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .xymob-navbtn::before {
        content: '';
        -webkit-transform-origin: 7.5%;
        transform-origin: 7.5%;
    }
    .xymob-navbtn i span {
        margin: 7px 0;
    }
    .xymob-navbtn span {
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    .abb_left h3 {
        margin-top: 10px;
    }
    .abb_left .abb_txt {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding-bottom: 10px;
        padding-top: 1px;
    }
    .abb_left .abb_txt p {
        overflow: hidden;
    }
    .abb_left {
        padding: 0 20px;
    }
    .pro_cate li a.img h3 {
        font-size: 12px;
        padding-left: 0px;
    }
    .displaynone {
        display: none;
    }
    .logo {
        line-height: 30px;
    }
    .logo img {
        height: 100%;
        width: 50%;
    }
    .header {
        position: relative;
        height: 60px;
        top: 0;
        z-index: 99;
        left: 0;
        right: 0;
        background: #151515;
    }
    .logo-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        width: 70%;
        height: 30px;
        text-align: center;
    }
    .nav-toggle span {
        margin: 7px 0;
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    .icon-font::after {
        content: "";
        width: 30px;
        height: 30px;
        background-image: url(../images/icon_spirit.png);
        background-repeat: no-repeat;
        position: absolute;
        left: calc(50% - 15px);
        top: calc(50% - 15px);
    }
    .xymob-search-btn .icon-font::after {
        background-position: -30px -210px;
    }
    .xymob-search {
        position: fixed;
        z-index: 99999;
        left: 100%;
        bottom: 0;
        top: 0;
        width: 100%;
        background: #151515;
        padding: 15px 15% 0 15%;
        -webkit-transition: all .5s;
        transition: all .5s;
    }
    .xymob-search .xymob-search-close-btn {
        position: absolute;
        top: 5%;
        left: 7%;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
    }
    .xymob-search .xymob-search-close-btn i {
        width: 100%;
        height: 100%;
        display: block;
    }
    .xymob-search .xymob-search-close-btn i.icon-font {
        position: relative;
    }
    .xymob-search .xymob-search-box {
        height: 50px;
        border-bottom: 2px solid #2d2d2d;
    }
    .xymob-search .xymob-seaerch-wz span,
    .xymob-search .xymob-seaerch-wz a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 45px;
        border-bottom: 1px solid #2b2b2b;
    }
    .xymob-search .xymob-search-close-btn i::after {
        background-position: -30px -300px;
    }
    .xymob-search .xymob-search-box input[type="text"] {
        width: 80%;
        float: left;
        background: none;
        border: none;
        outline: none;
        color: rgba(255, 255, 255, 0.3);
        font-family: "宋体";
        font-size: 16px;
        height: 50px;
    }
    .xymob-search .xymob-search-box #s_btn .icon-font::after {
        background-position: -30px -210px;
    }
    .xymob-search .xymob-search-box #s_btn {
        width: 20%;
        height: 50px;
        outline: none;
        border: none;
        cursor: pointer;
        font-size: 0;
        background: none;
        border: none;
    }
    .xymob-search .xymob-search-box #s_btn .icon-font {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .nav {
        display: none;
        position: absolute;
        z-index: 9999;
        left: 0;
        right: 0;
        height: 100vh;
        background: #151515;
        padding: 0 17%;
        top: 50px;
        height: 100vh;
        overflow: auto;
        padding-bottom: 80px;
    }
    .nav.active {
        opacity: 1;
        display: block;
    }
    .nav ul li {
        border-bottom: 1px solid #2b2b2b;
        position: relative;
    }
    .nav ul li ul {
        display: none;
    }
    /*二级ul样式*/
    .nav ul li a {
        display: block;
        line-height: 50px;
        font-size: 16px;
        color: #ffffff;
        text-align: left;
    }
    .nav ul li ul li a {
        color: rgba(255, 255, 255, 0.8);
        padding-left: 25px;
        font-size: 14px;
        background-color: #1E1E1E;
        border-top: 1px dashed #2b2b2b;
        line-height: 40px;
    }
    .nav ul li ul li ul li a {
        padding-left: 90px;
    }
    .nav ul li ul li ul li li a {
        padding-left: 120px;
    }
    .nav ul li {
        position: relative;
    }
    .nav ul li .arrow {
        position: absolute;
        right: 0px;
        top: 0px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        transition-duration: 0s
    }
    .nav ul li .arrow:after {
        font-family: FontAwesome;
        content: "\f105";
        display: block;
        font-weight: bold;
        font-size: 18px
    }
    .nav ul li.active>ul {
        display: block
    }
    .nav ul li.active>.arrow {
        transform: rotate(90deg)
    }
    .sub-nav-box {
        margin: 0 auto 30px;
    }
    .sub-nav-box .tit {
        font-size: 24px;
    }
    #toolbar ul li:not(:nth-last-child(1)) {
        display: none;
    }
    .c11_list {
        display: block;
    }
    .abb_left {
        margin-bottom: 20px;
    }
    .promo_contt .pro_cate li {
        width: 50%;
        float: left;
        padding-left: 0px;
    }
    .pro_cate li a.img span {
        width: 70px;
    }
    .breadcrumb-box {
        margin-bottom: 0px;
    }
    /*招聘*/
    .xypg-job-list .job-title {
        font-size: 14px;
    }
    .xypg-job-list .job-title span {
        width: 25%;
    }
    .job-titlele {
        font-size: 14px;
    }
    .job-titlele span {
        width: 25%!important;
    }
    .xypg-news-list li .tit .date {
        position: relative;
    }
    .xypg-news-list li .tit h3 {
        padding-right: 0px;
    }
    .xypg-news-list li .info {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .develop-left .details .conts {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .foot_bottom {
        display: none;
    }
}