@charset "UTF-8";

/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face {
    font-family: "dBold";
    src: url('../font/din-bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "sMedium";
    src: url('../font/SourceHanSansCN-Medium.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "msyhsb";
    src: url('../font/msyhsb.ttc') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* header */
header {
    width: 100%;
    height: 100px;
    border-bottom: 4px solid #f90102;
    position: relative;
    z-index: 666;
}

.header-main {
    position: relative;
}

.logo {
    display: block;
    width: 71px;
    margin-top: 18px;
    float: left;
}

.logo img {
    display: block;
    width: 100px;
}

.header-right {
    float: right;
    display: flex;
    justify-content: flex-end;
}

.nav-ul {
    display: flex;
}

.nav-ul li {
    margin-right: 40px;
    position: relative;
}

.nav-ul li>a {
    display: block;
    font-size: 18px;
    line-height: 96px;
    color: #111;
    transition: all .3s;
    text-align: center;
    font-family: "msyhsb";
}

.nav-ul li:hover>a,
.nav-ul li.nav-active>a {
    color: #f90102;
}

.nav-sub dl dd:hover a {
    background: #db261d;
}

.nav-sub {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.nav-sub dl dd {
    padding-top: 2px;
}

.nav-sub dl dd a {
    display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f90102;
    width: 150px;

    color: #fff;
}

.header-other {
    display: flex;
}

.header-lan {
    width: 40px;
    height: 40px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #f90102;
    text-transform: uppercase;
    cursor: pointer;
}

.header-lan a {
    color: #fff;
}

.header-lan:last-child {
    margin-right: 0px;
    background-color: #fc6020;
}

@media(max-width: 1400px) {
    .nav-ul li {
        margin-right: 20px;
    }
}

@media(max-width: 1200px) {
    .nav-ul li {
        margin-right: 12px;
    }

    .nav-ul li>a {
        font-size: 16px;
    }
}

@media(max-width: 991px) {
    .nav {
        display: none;
    }

    header {
        height: 70px;
    }

    .header-other {
        display: none;
    }

    .logo {
        width: 60px;
        margin-top: 10px;
    }

    .logo img {
        display: block;
        width: 90px;
    }
}

/* 底部 */
#footer {
    background-color: #2f2f2f;
    position: relative;
}

#footer::before {
    width: 57.2%;
    height: 1px;
    position: absolute;
    content: "";
    top: 163px;
    background-color: #585858;
    left: 0px;
}

.footer-top {
    display: flex;
    padding-bottom: 48px;
    position: relative;
    justify-content: space-between;
}

#footer::after {
    position: absolute;
    height: calc(100% - 81px);
    width: 1px;
    background-color: #585858;
    content: "";
    top: 0px;
    left: 57.2%;
}

.footer-left {
    width: 50%;
}

.footer-my {
    height: 162px;
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 100px;
    display: block;
    margin-right: 20px;
}

.footer-logo img {
    width: 100%;
    display: block;
}

.flogo-info {
    border-left: 1px solid #585858;
    padding-left: 20px;
    width: calc(100% - 120px);
}

.flogo-info h3 {
    color: #ffff;
    line-height: 22px;
    font-size: 22px;
    margin-bottom: 20px;
}

.flogo-info span {
    color: #808080;
    font-size: 16px;
    line-height: 20px;
}

.footer-ul {
    margin-top: 48px;
    display: flex;
}

.footer-ul li {
    margin-right: 180px;
}

.footer-ul li:last-child {
    margin-right: 0px;
}

.footer-ul li h3 {
    margin-bottom: 20px;
}

.footer-ul li h3>a {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
}

.footer-ul li dl dd {
    color: #808080;
    line-height: 30px;
    font-size: 16px;
}

.footer-right {
    width: 40.1%;
    padding-left: 130px;
    padding-top: 50px;
}

.footer-right h3 {
    color: #fff;
    margin-bottom: 30px;
    line-height: 18px;
    font-size: 18px;
}

.footer-formitem {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.footer-formitem input {
    width: 46.5%;
    height: 40px;
    border: 1px solid #808080;
    line-height: 40px;
    padding-left: 18px;
    color: #808080;
    background: none;
    outline: none;
    font-size: 16px;
    margin-right: 30px;
    border-radius: 5px;
}

.footer-formitem input:last-child {
    margin-right: 0px;
}

.footer-formitem textarea {
    border-radius: 5px;
    border: 1px solid #808080;
    color: #808080;
    line-height: 24px;
    background: none;
    outline: none;
    width: 100%;
    padding: 6px 18px;
    resize: none;
    height: 120px;
}

.fform-button {
    display: block;
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background-color: #f90102;
    border-radius: 5px;
    border: none;
}

.footer-bom {
    border-top: 1px solid #585858;
    height: 81px;
}

.copy {
    float: left;
    color: #808080;
    line-height: 40px;
    font-size: 16px;
}

.footer-share {
    margin-top: 19px;
    float: right;
    position: relative;
}

.footer-share .bshare-custom a {
    width: 42px;
    height: 42px;
    padding-left: 0px;
    margin-left: 0px;
    border-radius: 50%;
    margin-right: 20px;
}

.footer-share .bshare-custom .bshare-email {
    background: #f90102 url(../img/footer-msg.png) no-repeat center;
}

.footer-share .bshare-custom .bshare-taojianghu {
    background: #fc6020 url(../img/footer-1688.png) no-repeat center;
}

.footer-share .bshare-custom .bshare-weixin {
    background: url(../img/footer-wchat.png) no-repeat;
}

.footer-share .bshare-custom .bshare-sinaminiblog {
    background: url(../img/footer-wb.png) no-repeat;
}

.footer-share .bshare-custom .bshare-qqim {
    background: url(../img/footer-qq.png) no-repeat;
    margin-right: 0px;
}

@media(max-width: 1600px) {
    .footer-ul li {
        margin-right: 160px;
    }
}

@media(max-width: 1400px) {
    .footer-ul li {
        margin-right: 120px;
    }

    .footer-right {
        padding-left: 80px;
    }
}

@media(max-width: 1200px) {
    .footer-ul li {
        margin-right: 80px;
    }

    .footer-right {
        padding-left: 40px;
    }

    .footer-formitem input {
        margin-right: 14px;
    }
}

@media(max-width: 991px) {
    .footer-top {
        flex-direction: column;
        padding-bottom: 40px;
    }

    .footer-left {
        width: 100%;
    }

    .footer-right {
        width: 100%;
        padding-left: 0px;
        padding-top: 25px;
    }

    .footer-ul {
        width: 100%;
        margin-top: 0px;
        flex-wrap: wrap;
    }

    .footer-ul li {
        margin-right: 0px;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-ul li h3 {
        margin-bottom: 8px;
    }

    .footer-ul li dl dd {
        display: inline-block;
        margin: 0 5px;
    }

    .footer-ul li dl {
        text-align: center;
    }

    #footer::before {
        display: none;
    }

    #footer::after {
        display: none;
    }

    .footer-formitem input {
        margin-right: 14px;
    }

    .footer-my {
        height: auto;
        margin-top: 45px;
        margin-bottom: 25px;
        justify-content: center;
    }

    .footer-formitem input {
        width: calc(100% - 7px);
    }

    .footer-formitem input:first-child {
        margin-right: 8px;
    }

    .footer-formitem input:last-child {
        margin-left: 8px;
    }

    .footer-right h3 {
        margin-bottom: 20px;
    }

    .footer-bom {
        height: auto;
        padding: 15px 0px;
    }

    .copy {
        width: 100%;
        float: none;
        line-height: 24px;
        text-align: center;
    }

    .footer-share {
        width: 100%;
        float: none;
        margin-top: 12px;
    }

    .footer-share .bshare-custom {
        justify-content: center;
    }
}

@media(max-width: 449px) {
    .footer-formitem {
        flex-wrap: wrap;
    }

    .footer-formitem input {
        width: 100%;
    }

    .footer-formitem input:first-child {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .footer-formitem input:last-child {
        margin-left: 0px;
    }

    .footer-top {
        padding-bottom: 30px;
    }

    .footer-my {
        flex-direction: column;
        margin-top: 35px;
        margin-bottom: 15px;
    }

    .flogo-info {
        padding-left: 0px;
        border-left: none;
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        margin-right: 0px;
    }

    .flogo-info h3 {
        margin-top: 12px;
        margin-bottom: 10px;
    }
}

/* 内页导航 */
.inside-nav {
    background-color: #f1f0f5;
}

.inav-main {
    display: flex;
    justify-content: space-between;
}

.inav-ul {
    display: flex;
    height: 80px;
}

.inav-ul li {
    margin-right: 85px;
}

.inav-ul li:last-child {
    margin-right: 0px;
}

.inav-ul li>a {
    display: block;
    line-height: 76px;
    border-bottom: 4px solid transparent;
    transition: all .5s;
    font-size: 18px;
    color: #222;
}

.inav-ul li>a:hover,
.inav-ul li.on>a {
    color: #f90102;
    border-bottom-color: #f90102;
}

.inav-ul .swiper-slide a {
    display: block;
    line-height: 76px;
    border-bottom: 4px solid transparent;
    transition: all .5s;
    font-size: 18px;
    color: #222;
}

.inav-ul .swiper-slide a:hover,
.inav-ul .swiper-slide.on a {
    color: #f90102;
    border-bottom-color: #f90102;
}

.inav-swiper .swiper-slide {
    width: auto;
}

.inav-ul {
    width: 70%;
}

.inav-right {
    width: 25%;
}


@media(max-width: 1200px) { 
    .inav-ul {
        width: 60%;
    }

    .inav-right {
        width: 35%;
    }
}
@media(max-width: 991px) { 
    .inav-ul {
        width: 100%;
    }

    .inav-right {
        width:100%;
    }
}


.inav-right {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    height: 80px;
}

.inav-right span {
    padding-left: 5px;
}

.inav-right a {
    color: #666;
}

.inav-right a:hover {
    color: #f90102;
}

/* 关于我们 */
.about-wrap {
    width: 100%;
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 78px;
}

.inside-mytitle {
    font-size: 36px;
    text-align: center;
    color: #222;
    line-height: 36px;
    margin-bottom: 52px;
}

.about-des {
    font-size: 16px;
    color: #444;
    text-indent: 32px;
    line-height: 30px;
}

.about-des p {
    margin-bottom: 15px;
}

.about-list {
    margin-left: -20px;
    margin-right: -20px;
}

.about-list li {
    float: left;
    padding: 0 20px;
    width: 33.333%;
}

.about-imgs {
    width: 100%;
}

.public-img {
    width: 100%;
    overflow: hidden;
}

.public-img img {
    display: block;
    width: 100%;
    transition: all .5s;
}

.public-img video {
    display: block;
    width: 100%;
    transition: all .5s;
    line-height: 0;
}

.about-imgs p {
    font-size: 22px;
    line-height: 24px;
    margin-top: 24px;
    color: #111;
}

.about-imgs:hover .public-img img {
    transform: scale(1.1);
}

@media(max-width: 1200px) {
    .inav-ul li {
        margin-right: 45px;
    }
}

@media(max-width: 991px) {
    .inav-main {
        flex-direction: column-reverse;
    }

    .inav-right {
        height: auto;
        padding-top: 15px;
    }

    .inav-ul {
        height: auto;
    }

    .inav-ul li>a {
        font-size: 16px;
        line-height: 46px;
    }

    .about-wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .inside-mytitle {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .about-des p {
        margin-bottom: 10px;
    }

    .about-list {
        margin-left: 0px;
        margin-right: 0px;
    }

    .about-list li {
        padding: 0px;
        width: 100%;
        float: none;
        margin-bottom: 25px;
    }

    .about-list li:last-child {
        margin-bottom: 0px;
    }

    .about-imgs p {
        text-align: center;
        margin-top: 20px;
    }
}

@media(max-width: 599px) {
    .inav-ul li {
        margin-right: 20px;
    }

    .inav-ul {
        flex-wrap: wrap;
    }

    .about-wrap {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .inside-mytitle {
        margin-bottom: 20px;
    }
}

/* 发展历程 */
.history-wrap {
    position: relative;
    background-color: #f0f0f4;
}

.history-line {
    height: 64px;
    position: relative;
    border-bottom: 1px solid #cccccc;
}

.history-line::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    left: 0px;
    bottom: 2px;
    content: "";
}

#history {
    padding-top: 40px;
}

#culture {
    background: #fff;
}

.culture-main {
    display: flex;
}

.culture-item {
    width: 50%;
    position: relative;
}

.culture-info {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    top: 0px;
    left: 0px;
    display: flex;
    align-items: flex-end;
    padding-left: 50px;
    padding-right: 30px;
    padding-bottom: 46px;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
}

.culture-item:hover .public-img img {
    transform: scale(1.1);
}

.honor-main {
    position: relative;
}

.honor-item {
    width: 100%;
}

.honor-item .public-img {
    border: 10px solid #fff;
}

.honor-item p {
    text-align: center;
    font-size: 16px;
    color: #222;
    line-height: 24px;
    margin-top: 20px;
}

.honor-item:hover .public-img img {
    transform: scale(1.1);
}

.honor-item:hover p {
    color: #f90102;
}

.honor-next,
.honor-prev {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border: 1px solid #f90102;
    margin-top: -28px;
    background-size: 22px 7px;
}

.honor-next {
    background-image: url(../img/history-next.png);
    right: -115px;
}

.honor-prev {
    left: -115px;
    background-image: url(../img/history-prev.png);
}

.honor-next:hover,
.honor-prev:hover {
    background-color: #f90102;
}

.honor-next:hover {
    background-image: url(../img/history-next-on.png);
}

.honor-prev:hover {
    background-image: url(../img/history-prev-on.png);
}

@media(max-width: 1500px) {
    .honor-next {
        right: -65px;
    }

    .honor-prev {
        left: -65px;
    }
}

@media(max-width: 991px) {

    .honor-next,
    .honor-prev {
        width: 48px;
        height: 48px;
        margin-top: -24px;
    }

    .honor-next {
        right: 0px;
    }

    .honor-prev {
        left: 0px;
    }
}

.vedio-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.play-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-wrap p {
    font-size: 24px;
    color: #fff;
    line-height: 24px;
    margin-top: 20px;
}

@media(max-width: 767px) {
    .play-wrap img {
        width: 48px;
        height: 48px;
    }

    .play-wrap p {
        font-size: 16px;
        margin-top: 10px;
    }
}

/* 联系我们 */
.contact-wrap {
    background-color: #f0f0f4;
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
    overflow: hidden;
}

.contact-main {
    display: flex;
}

.contact-item {
    width: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding-left: 50px;
    padding-right: 40px;
    height: 400px;
}

.contact-icon img:last-child.on {
    display: block;
}

.contact-item:hover {
    background-color: #f90102;
}

.contact-item:hover .contact-info h3 {
    color: #fff;
}

.contact-item:hover .contact-info p {
    color: #fff;
}

.contact-info {
    width: calc(100% - 105px);
    padding-left: 42px;
}

.contact-info h3 {
    font-size: 24px;
    color: #111;
    line-height: 24px;
    margin-bottom: 32px;
}

.contact-info p {
    font-size: 16px;
    color: #444;
    line-height: 32px;
}

.contact-ditu {
    margin-top: 40px;
    border: 10px solid #fff;
    width: 100%;
    overflow: hidden;
}

.contact-ditu img {
    width: 100%;
    display: block;
}

@media(max-width: 1200px) {
    .contact-item {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contact-info p {
        line-height: 30px;
    }

    .contact-info {
        padding-left: 25px;
    }
}

@media(max-width: 991px) {
    .contact-main {
        flex-wrap: wrap;
    }

    .contact-item {
        width: 100%;
        padding: 30px;
        height: auto;
    }

    .contact-wrap {
        padding: 50px 0px;
    }
}

@media(max-width: 499px) {
    .contact-item {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        align-items: center;
    }

    .contact-info {
        padding-left: 0px;
        width: 100%;
    }

    .contact-info h3 {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .contact-ditu {
        margin-top: 30px;
        border-width: 5px;
    }
}

/* 新闻中心 */
.news-wrap {
    padding-top: 80px;
    width: 100%;
    overflow: hidden;
}

.news-list {
    margin-left: -20px;
    margin-right: -20px;
}

.news-list li {
    float: left;
    width: 33.333%;
    padding: 0 20px;
    margin-bottom: 40px;
}

.news-item {
    width: 100%;
}

.news-item .public-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.news-info {
    background-color: #f0f0f4;
    padding: 38px 32px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.news-info h3 {
    font-size: 22px;
    line-height: 36px;
    color: #222;
    margin-bottom: 15px;
}

.news-info span {
    color: #999;
    font-size: 16px;
    line-height: 24px;
}

.news-item:hover .news-info h3 {
    color: #f90102;
}

.news-item:hover .public-img img {
    transform: scale(1.1);
}

@media(max-width: 1200px) {
    .news-list {
        margin-left: -13px;
        margin-right: -13px;
    }

    .news-list li {
        padding: 0 13px;
    }

    .news-info h3 {
        font-size: 18px;
        line-height: 32px;
    }
}

@media(max-width: 991px) {
    .news-list {
        margin-left: 0px;
        margin-right: 0px;
    }

    .news-list li {
        padding: 0px;
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }

    .news-info {
        padding: 18px 25px 20px;
    }

    .news-info h3 {
        margin-bottom: 12px;
    }

    .news-wrap {
        padding-top: 50px;
    }
}

.onews-list li {
    display: flex;
    margin-bottom: 30px;
}

.onews-list li:last-child {
    margin-bottom: 0px;
}

.onews-imgs {
    width: 364px;
}

.onews-info {
    width: calc(100% - 364px);
    background-color: #f0f0f4;
    padding-top: 54px;
    padding-left: 32px;
    padding-right: 30px;
}

.onews-info h3>a {
    font-size: 22px;
    line-height: 24px;
    color: #222;
}

.onews-info h3 {
    margin-bottom: 20px;
}

.onews-time {
    height: 16px;
    display: flex;
    align-items: center;
    color: #999;
    font-size: 12px;
    margin-bottom: 14px;
}

.onews-time span {
    padding-left: 5px;
}

.onews-des {
    font-size: 16px;
    line-height: 32px;
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    height: 64px;
}

.onews-list li:hover .onews-imgs .public-img img {
    transform: scale(1.1);
}

.onews-list li:hover .onews-info h3>a {
    color: #f90102;
}

@media(max-width: 991px) {
    .onews-list li {
        flex-wrap: wrap;
    }

    .onews-imgs {
        width: 100%;
        margin: 0 auto;
        max-width: 364px;
    }

    .onews-info {
        width: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .onews-time {
        margin-bottom: 5px;
    }
}

@media(max-width: 767px) {
    .onews-info {
        padding: 22px 20px;
    }

    .onews-info h3>a {
        line-height: 32px;
    }

    .onews-info h3 {
        margin-bottom: 12px;
    }

    .onews-des {
        line-height: 30px;
    }
}

/* 产品 */
.pros-list {
    margin-left: -13px;
    margin-right: -13px;
}

.pros-list li {
    padding: 0 13px;
    width: 25%;
    float: left;
    margin-bottom: 26px;
}

.pros-item {
    width: 100%;
}

.pros-item p {
    font-size: 16px;
    height: 52px;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdcdc;
    background-color: #f0f0f4;
    transition: all .5s;
}

.pros-item:hover .public-img img {
    transform: scale(1.1);
}

.pros-item:hover p {
    border-color: #f90102;
    background-color: #f90102;
    color: #fff;
}

@media(max-width: 991px) {
    .pros-list {
        margin-left: 0px;
        margin-right: 0px;
    }

    .pros-list li {
        padding: 0px;
        width: 100%;
        float: none;
        margin-bottom: 26px;
    }
}

/* 人才招聘 */
.talent-des {
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #222;
    padding: 0 100px;
    margin-bottom: 33px;
}

.talent-list {
    display: flex;
}

.talent-list li {
    width: 50%;
}

.talent-list li:first-child {
    padding-right: 40px;
}

.talent-list li:last-child {
    padding-left: 40px;
}

.talent-item {
    position: relative;
}

.talent-item p {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-right: 30px;
    font-size: 30px;
    color: #fff;
}

.recruit-wrap {
    width: 100%;
    overflow: hidden;
    padding: 80px 0px;
}

.talent-item:hover .public-img img {
    transform: scale(1.1);
}

.recruit-pos {
    background-color: #f0f0f4;
}

.recruit-list li {
    margin-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #fff;
}

.recruit-list li:last-child {
    margin-bottom: 0px;
}

.recruit-top {
    display: flex;
    padding-top: 25px;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 26px;
    position: relative;
}

.recruit-left {
    width: calc(100% - 180px);
    border-right: 1px solid #dcdcdc;
}

.recruit-left h3 {
    font-size: 22px;
    line-height: 22px;
    color: #222;
    margin-bottom: 20px;
}

.recruit-left dl {
    display: flex;
    margin-bottom: 22px;
}

.recruit-left dl dd {
    padding: 0 30px;
    font-size: 16px;
    line-height: 16px;
    color: #444;
    border-right: 2px solid #444;
}

.recruit-left dl dd:first-child {
    padding-left: 0px;
}

.recruit-left dl dd:last-child {
    border-right: none;
}

.recruit-btn {
    width: 140px;
    display: block;
    text-align: center;
    background-color: #f90102;
    color: #fff;
    height: 40px;
    line-height: 38px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid #dcdcdc;
}

.recruit-bom {
    border-top: 1px solid #dcdcdc;
    padding-top: 15px;
    display: none;
    padding-bottom: 32px;
}

.recruit-info {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 36px;
    color: #444;
}

.recruit-info:last-child {
    margin-bottom: 0px;
}

.recruit-info span {
    color: #f90102;
}

.recruit-bom span>a {
    color: #f90102;
}

@media(max-width: 1400px) {
    .recruit-left dl dd {
        padding: 0 15px;
    }
}

@media(max-width: 1200px) {
    .recruit-left dl dd {
        padding: 0 6px;
    }

    .talent-item p {
        padding-left: 30px;
        padding-bottom: 30px;
    }

    .recruit-list li {
        padding-left: 20px;
        padding-right: 20px;
    }

    .recruit-left {
        width: calc(100% - 140px);
    }

    .recruit-btn {
        width: 120px;
    }

    .talent-des {
        padding: 0 50px;
    }
}

@media(max-width: 991px) {
    .recruit-list li {
        flex-wrap: wrap;
        position: relative;
    }

    .recruit-left dl {
        display: block;
        margin-bottom: 15px;
    }

    .recruit-left dl dd {
        display: inline-block;
        border-right: none;
    }

    .recruit-left {
        width: 100%;
        border-right: none;
    }

    .recruit-resume {
        position: absolute;
        bottom: 20px;
        left: 140px;
    }

    .recruit-top {
        padding-bottom: 20px;
    }

    .recruit-wrap {
        padding: 50px 0px;
    }

    .talent-des {
        padding: 0px;
    }

    .talent-list {
        flex-wrap: wrap;
    }

    .talent-list li {
        width: 100%;
        margin-bottom: 20px;
    }

    .talent-list li:first-child {
        padding-right: 0px;
    }

    .talent-list li:last-child {
        padding-left: 0px;
        margin-bottom: 0px;
    }

    .recruit-wrap .inside-mytitle {
        margin-bottom: 20px;
    }

    .recruit-left h3 {
        margin-bottom: 15px;
    }

    .recruit-bom {
        padding-bottom: 20px;
    }

    .recruit-info {
        line-height: 32px;
    }

    .recruit-list li {
        margin-bottom: 20px;
    }
}

/* 首页新闻 */
.hnews-wrap {
    background-color: #f0f0f4;
}

.hnews-info {
    background-color: #fff;
}

.hnews-wrap .inside-mytitle {
    margin-bottom: 60px;
}

@media(max-width: 1200px) {
    .hnews-wrap .inside-mytitle {
        margin-bottom: 45px;
    }
}

@media(max-width: 991px) {
    .hnews-wrap .inside-mytitle {
        margin-bottom: 30px;
    }
}


/*首页产品中心*/
#homepro {
    margin-top: 80px;
    padding-bottom: 80px;
}

.home-tit h3 {
    font-size: 36px;
    font-family: "msyhsb";
    text-align: center;
}

.homepro-box {
    margin-top: 60px;
}

.homepro-ul {
    display: flex;
    justify-content: space-between;
}

.homepro-ul li {
    background: #f0f0f4;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    width: 32%;
    position: relative;
    transition: all 0.4s;
}

.homepro-ul li a {
    position: relative;
    z-index: 666;
    display: block;
}

.homepro-ul li:nth-of-type(2) {
    margin: 0 40px;
}

.homepro-ul li h4 {
    font-size: 24px;
    background: url("../img/hpro-icon.png") no-repeat top right;
    border-bottom: 2px solid #f90102;
    padding-bottom: 30px;
}

.homepro-ul li p {
    margin-top: 30px;
    color: #666666;
}

.homepro-img {
    padding-top: 80px;
    text-align: center;
    padding-bottom: 20px;
}

.homepro-img img {
    width: 100%;
    transition: all 0.4s;
}

.homepro-ul li:hover .homepro-img img {
    transform: scale(1.1);
}

.homepro-ul li.homepro-act {
    width: 42%;
}

.homepro-ul li.homepro-act h4 {
    color: #fff;
    background: url('../img/hpro-icon-on.png') no-repeat top right;
}

.homepro-bimg {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.homepro-ul li.homepro-act p {
    color: #fff;
}

.homepro-ul li.homepro-act .homepro-bimg {
    display: block;
}

.homepro-ul li.homepro-act .homepro-img {
    display: none;
}

@media(max-width:1200px) {
    .homepro-bimg img {
        width: 100%;
    }

    .homepro-ul li {
        padding: 30px 15px;
    }
}

@media(max-width:991px) {
    .homepro-ul {
        display: block;
    }

    .homepro-ul li:nth-of-type(2) {
        margin: 0 0 20px;

    }

    .homepro-ul li {
        width: 100%;
        margin-bottom: 20px;
    }

    .homepro-ul li.homepro-act {
        width: 100%;
    }

    .homepro-ul {
        height: auto !important;
    }

    #homepro {
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .home-tit h3 {
        font-size: 24px;
    }

    .homepro-box {
        margin-top: 20px;
    }

    .homepro-ul li a {
        z-index: 0;
    }
}

/*首页关于我们*/
#homeabout {
    background: url("../img/habout-bg.jpg") no-repeat center top;
    padding: 80px 0;
}

.homeabout {
    display: flex;

}

.homeabout-l {
    padding-right: 80px;
    width: 50%;
}

.homeabout-r {
    width: 50%;
}

.homeabout-r h3 {
    font-size: 36px;
}

.homeabout-rul {
    display: flex;
    justify-content: space-between;
    margin-top: 38px;
}

.homeabout-rul li {
    width: 120px;
    background: #fff;
    height: 38px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    cursor: pointer;
}

.homeabout-rul li a {
    display: block;
}

.homeabout-rul li.homeabout-ract a {
    color: #fff;
}

.homeabout-rul li:hover a {
    color: #fff;
}

.homeabout-rul li:hover {
    background: #f90102;
    border: 1px solid #f90102;
}

.homeabout-rtxt {
    margin-top: 40px;
    line-height: 30px;
}

.homeabout-rtxt p {
    margin-bottom: 30px;
}

.homeabout-more {
    display: block;
    width: 140px;
    height: 40px;
    background: #d9241b url('../img/habout-arrow.png') no-repeat 110px center;
    color: #fff;
    line-height: 38px;
    border-radius: 20px;
    padding-left: 20px;
}

.homeabout-rul .homeabout-ract {
    background: #f90102;
    color: #fff;
    border: 1px solid #f90102;
}

.homeabout-limg img {
    width: 100%;
}

.homeabout-rdl dd {
    display: none;
}

@media(max-width:1400px) {
    .homeabout-rul {
        margin-top: 25px;
    }

    .homeabout-rtxt p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 24px;
    }

    .homeabout-l {
        padding-right: 40px;
    }
}

@media(max-width:1200px) {
    .homeabout-l {
        padding-right: 20px;
    }

    .homeabout-rtxt {
        margin-top: 15px;
    }

    .homeabout-rul li {
        width: 100px;
    }
}

@media(max-width:991px) {
    .homeabout {
        display: block;
    }

    .homeabout-l {
        width: 100%;
    }

    .homeabout-r {
        width: 100%;
        margin-top: 20px;
    }

    #homeabout {
        background: #f0f0f4;
        padding: 30px 0;
    }

    .homeabout-r h3 {
        font-size: 24px;
    }
}


/*首页应用案例*/
#homecase {
    padding: 80px 0;
}

.homecase-tit h3 {
    font-size: 36px;
}

.homecase-tit {
    display: flex;
    justify-content: space-between;
}

.homecase-tit a {
    display: block;
    width: 120px;
    height: 34px;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    text-align: center;
    line-height: 30px;
    color: #999999;
}

.homecase-w {
    margin-top: 60px;
}

.homecase-wul {
    display: flex;
    justify-content: space-between;
}

.homecase-wul li {
    width: 17%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s;
}

.homecase-wul li.homecase-act {
    width: 44%;
}

.homecase-txt {
    position: absolute;
    bottom: 60px;
    padding-left: 40px;
}

.homecase-txt h4 {
    color: #fff;
    font-size: 30px;
    padding-bottom: 50px;
}

.homecase-txt span {
    color: #fff;
    background: url('../img/hcase-arrow.png') no-repeat center right;
    display: block;
    padding-right: 60px;
}

.homecase-wul li.homecase-act .homecase-txt h4 {
    color: #f90102;
}

@media(max-width:1200px) {
    .homecase-txt span {
        white-space: nowrap;
    }
}

@media(max-width:991px) {
    .homecase-wul {
        display: block;
    }

    .homecase-wul li {
        width: 100%;
        margin-bottom: 20px;
    }

    .homecase-wul li.homecase-act {
        width: 100%;
    }

    .homecase-wul li img {
        width: 100%;
    }

    .homecase-txt h4 {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .homecase-tit h3 {
        font-size: 24px;
    }

    #homecase {
        padding: 30px 0;
    }

    .homecase-w {
        margin-top: 20px;
    }
}

/*发展历程*/
.his-swiper .swiper-slide {
    position: relative;
    height: 60px;
}

.his-swiper .swiper-slide h4 {
    background: url('../img/his-bg.png') repeat-x center;
    width: 100%;
    height: 4px;
    bottom: 50px;
    position: absolute;
}

.his-swiper .swiper-slide h4::after {
    width: 100%;
    content: "";
    height: 4px;
    background: #f90102;
    position: absolute;
    top: 4px;
    display: none;
}

.his-swiper .swiper-slide.swiper-slide-active h4::after {
    display: block;
}

.his-swiper .swiper-slide span {
    display: block;
    width: 2px;
    height: 20px;
    background: #c9c9c9;
    right: 0;
    position: absolute;
    bottom: 50px;
}

.his-prev {
    left: -115px;
    background-image: url(../img/history-prev.png);
}

.his-next {
    background-image: url(../img/history-next.png);
    right: -115px;
}

.his-next,
.his-prev {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border: 1px solid #f90102;
    margin-top: -28px;
    background-size: 22px 7px;
}

.his-prev:hover {
    background-image: url(../img/history-prev-on.png);
}

.his-next:hover {
    background-image: url(../img/history-next-on.png);
}

.his-next:hover,
.his-prev:hover {
    background-color: #f90102;
}

.his-swiper .swiper-slide p {
    position: absolute;
    right: 0px;
    top: -35px;
    transition: all 0.4s;

}

.about-his .swiper-container {
    padding-top: 50px;
}

.his-swiper .swiper-slide.swiper-slide-active p {
    color: #f90102;
    font-size: 22px;
}

.his-swiper .swiper-slide.swiper-slide-active span {
    background: #f90102;
}

.his-b {
    padding-top: 40px;
    padding-bottom: 80px;
}

.hisb-r {
    background: #fff;
    width: 50%;
    padding: 70px 60px 0;
}

.hisb-row {
    display: flex;
}

.hisb-l img {
    width: 100%;
}

.hisb-l {
    width: 50%;
}

.hisb-rw h3 {
    font-size: 30px;
    color: #f90102;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 20px;
}

.hisb-rw p {
    color: #444444;
    margin-top: 40px;
    line-height: 32px;
}

.hisb-r a {
    display: block;
    width: 140px;
    height: 40px;
    color: #fff;
    text-align: left;
    line-height: 38px;
    border-radius: 20px;
    margin-top: 60px;
    background: #f90102 url("../img/habout-arrow.png") no-repeat 110px center;
    padding-left: 20px;
}

@media(max-width:1800px) {
    .his-next {
        right: 10px;
    }

    .his-prev {
        left: 10px;
    }
}

@media(max-width:1400px) {
    .hisb-r {
        padding: 30px;
    }

    .hisb-r a {
        margin-top: 40px;
    }
}

@media(max-width:1200px) {
    .hisb-r {
        padding: 20px;
    }

    .hisb-r a {
        margin-top: 40px;
    }

    .hisb-rw p {
        margin-top: 5px;
        line-height: 30px;
    }
}

@media(max-width:991px) {
    .hisb-row {
        display: block;
    }

    .hisb-l {
        width: 100%;
    }

    .hisb-r {
        width: 100%;
    }

    .culture-info p {
        font-size: 16px;
    }

    .culture-info {
        padding: 0 15px;
    }

    .his-b {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.pagenext {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ccc;
    padding: 30px 0;
}



/*联系我们*/
.wcontact {
    margin: 80px 0 0;
}

.wcontact-tit h3 {
    font-size: 36px;
    text-align: center;
}

.wcontact-t {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.wcontact-tl {
    background: #f90102;
    width: 40%;
}

.wcontact-tr {
    width: 57%;
}

.wcontact-tr img {
    width: 100%;
    border: 1px solid #dcdcdc;
}

.wcontact-tl {
    color: #fff;
    padding: 70px 65px;
}

.wcontact-tl h4 {
    font-size: 24px;
}

.wcontact-tltxt {
    margin-top: 30px;
    line-height: 30px;
}

.wcontact-code {
    background: #f0f0f4;
    margin-top: 80px;
    padding: 80px 0 60px;
}

.wcontact-codem {
    margin-top: 60px;
}

.wcontact-codebox {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.wcontact-codem ul li {
    margin-bottom: 40px;
}

.wcontact-codebox h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.wcontact-codeimg {
    margin-top: 15px;
}

@media(max-width:1600px) {
    .wcontact-tl {
        padding: 40px 60px;
    }
}

@media(max-width:1400px) {
    .wcontact-tl {
        padding: 30px 30px;
    }

    .wcontact-tltxt {
        margin-top: 15px;
    }

    .wcontact-codebox {
        padding: 30px 0;
    }
}

@media(max-width:1200px) {
    .wcontact-tl {
        padding: 25px 25px;
    }

    .wcontact-tltxt {
        margin-top: 15px;
        line-height: 24px;
    }

    .wcontact-codebox {
        padding: 20px 0;
    }
}

@media(max-width:991px) {
    .wcontact-tl {
        width: 100%;
    }

    .wcontact-t {
        display: block;
    }

    .wcontact-tr {
        width: 100%;
    }

    .wcontact-t {
        margin-top: 30px;
    }

    .wcontact-tit h3 {
        font-size: 24px;
    }

    .wcontact {
        margin: 30px 0 0;
    }

    .wcontact-codebox {
        padding: 30px 0;
    }

    .wcontact-code {
        margin-top: 30px;
    }

    .wcontact-code {
        padding: 30px 0 20px;
    }

    .wcontact-codem {
        margin-top: 30px;
    }

    .wcontact-codem ul li {
        margin-bottom: 20px;
    }
}

@media(max-width:500px) {
    .wcontact-tl h4 {
        font-size: 20px;
    }

    .wcontact-tltxt {
        margin-top: 10px;
        line-height: 22px;
        font-size: 14px;
    }

    .wcontact-tl {
        padding: 15px 20px;
    }
}