/*html5*/
article, aside, dialog, footer, header, section, footer, nav, figure, menu {
    display: block
}

@font-face {
    font-family: en;
    src: url('../fonts/neutraface2text-demi.otf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, Helvetica, sans-serif;
    position: relative;
    background: #fff;
    overflow-x: hidden;
    color: #000;
}

/*默认样式*/
img {
    border: none;
    display: block;
    width: 100%;
}

div {
    display: block;
}

table {
    border-collapse: collapse;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #333;
}

a:focus {
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

li {
    list-style: none;
}

input, select, button, textarea {
    vertical-align: middle;
    font: 12px "黑体", "微软雅黑", "Microsoft JhengHei", "宋体";
    border-radius: 0;
    outline: none;
    background: none;
    border: none;
}

/*清除浮动*/
.clear:after {
    content: "";
    width: 0;
    height: 0;
    clear: both;
    display: block;
}

/*input高亮*/
.salient-input {
    border: 1px solid #ccc;
    padding: 7px 0 7px 5px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.salient-input:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

/*单行超出省略*/
.space-over {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*多行超出省略*/
.space-list-over {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

input::-webkit-input-placeholder {
    color: #999;
}

.en {
    font-family: 'en';
}

.width-auto {
    width: 100%;
    padding: 0 200px;
    position: relative;
}

/*样式*/
.index-slide .swiper-img {
    display: none;
}

.header-wrap {
    width: 100%;
    height: calc(100vh);
}

.banner-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-max {
    margin-top: 120px;
    position: relative;

}
.line {
    height: 1px;
    width: 100%;
    background: #cccccc;
    display: block;
}
.banner-wrap .swiper-container {
    height: 100%;
}

.banner-wrap .swiper-container .swiper-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;

}

.banner-wrap .swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    border-radius: 0 !important;

}

.banner-wrap .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px !important;
}

.banner-wrap .swiper-pagination-bullet-active {
    background: #d5061a !important;
}

.banner-wrap .swiper-container-horizontal > .swiper-pagination-bullets, .banner-wrap .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 60px !important;;
}

.banner-text {
    width: 100%;
    position: absolute;
    top: 40%;
    z-index: 9;
}

.banner-text span {
    display: block;
    text-align: center;
    color: #fff;
    opacity: 0;
}

.banner-text span:nth-child(1) {
    font-size: 64px;
    font-weight: bold;
}

.banner-text span:nth-child(2) {
    font-size: 64px;
    margin-top: 5px;
}

.banner-text span:nth-child(3) {
    display: inline-block;
    width: 180px;
    height: 50px;
    background: #d5061a;
    position: relative;
    line-height: 50px;
    left: 50%;
    margin: 60px 0 0 -90px;
    text-align: left;
}

.banner-text span:nth-child(3):hover:after {
    width: 100%;
}

.banner-text span:nth-child(3):after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.banner-text span:nth-child(3) i {
    font-size: 24px;
    display: inline-block;
    position: absolute;
    left: 32px;
    margin-right: 17px;
}

.banner-text span:nth-child(3) a {
    color: #fff;
    font-size: 18px;
    display: block;
    padding-left: 74px;
    position: relative;
    z-index: 1;
}

.navigation {
    position: absolute;
    z-index: 9;
    top: 0;
    width: 100%;
}

.nav-wrap {
    position: fixed;
    z-index: 9;
    top: 0;
    width: 100%;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-wrap-back {
    background: #fff;
}

.nav-wrap-shadow {
    box-shadow: 0 0 3px rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
}

.nav-wrap .logo {
    width: 200px;
    height: 200px;
    float: left;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: url(../images/index-logo.jpg) no-repeat;
    background-size: 100% 100%;
}

.nav-wrap .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.nav-wrap .logo-min {
    width: 120px;
    height: 120px;
    background: url(../images/index-logo2.png) no-repeat;
    background-size: 100% 100%;
}

.nav-list {
    float: right;
    padding-top: 80px;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-list-min {
    padding: 40px 0 0 0;
}

.nav-list ul li {
    float: left;
    margin: 0 50px;
}

.nav-list-min ul li {
    height: 40px;
    line-height: 40px;
}

.nav-list ul li a {
    color: #fff;
    font-size: 26px;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-list ul .nav-hover a {
    color: #d5061a;
}

.nav-list ul li a:hover {
    color: #d5061a;
}

.nav-list-min ul li a {
    color: #333;
    font-size: 24px;
}

.data-number-index {
    background: #fafafa;
}

.data-number ul {
    font-size: 0;
}

.data-number ul li {
    width: 25%;
    display: inline-block;
    padding: 0 11px;
    position: relative;
    margin: 76px 0 0 0;

}

.data-number ul li:after {
    content: "";
    width: 1px;
    height: 200px;
    position: absolute;
    right: 0;
    background: #ebebeb;
    top: 20px;
}

.data-number ul li:last-child:after {
    display: none;
}

.data-number ul li .data-number-wrap {
    width: 100%;
    position: relative;
    padding-bottom: 76px;
    overflow: hidden;
}

.data-number ul li .data-number-wrap:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 7px;
    width: 0;
    background: #d5061a;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.data-number-index ul li:hover .data-number-wrap:after {
    width: 100%;
}

.data-number ul li .data-number-text1 {
    width: 100%;
    text-align: center;
    color: #d5061a;
}

.data-number ul li .data-number-text1 span:nth-child(1) {
    font-family: "Impact", "Microsoft YaHei", "微软雅黑", Arial, Helvetica, sans-serif;
    font-size: 78px;
}

.data-number ul li .data-number-text1 span:nth-child(2) {
    font-family: Impact, "Microsoft YaHei", "微软雅黑", Arial, Helvetica, sans-serif;
    font-size: 78px;
}

.data-number ul li:nth-child(3) .data-number-text1 span:nth-child(2) {
    font-size: 20px !important;
}
.data-number ul li:nth-child(1) .data-number-text1 span:nth-child(2) {
    font-size: 20px !important;
}
.data-number ul li:nth-child(2) .data-number-text1 span:nth-child(2) {
    font-size: 20px !important;
}
.data-number ul li:nth-child(4) .data-number-text1 span:nth-child(2) {
    font-size: 20px !important;
}
.data-number ul li .data-number-text2 {
    font-size: 30px;
    color: #000000;
    display: block;
    text-align: center;
    margin: 20px 0;
}

.data-number ul li .data-number-text3 {
    font-size: 18px;
    line-height: 30px;
    color: #999999;
    display: block;
    text-align: center;
    width: 85%;
    margin: 0 auto;
}

.works-index-wrap {
    padding-top: 80px;
}

.works-index-title {
    padding-bottom: 40px;
}

.works-index-left {
    float: left;
    font-size: 0;
}

.works-index-left span {
    font-size: 38px;
    color: #d5061a;
    display: inline-block;
    line-height: 50px;
}

.works-index-left span:nth-child(2) {
    font-size: 32px;
    color: #cccccc;
    padding-left: 10px;
}

.works-index-right {
    float: right;
}

.works-index-right ul li {
    float: left;
    margin: 0 22px;

}

.works-index-right ul .works-hover a {
    color: #d5061a;
}

.works-index-right ul li a {
    font-size: 18px;
    line-height: 50px;
    color: #666666;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-index-right ul li a:hover {
    color: #d5061a;
}

.works-index-right ul li:last-child {
    margin: 0 0 0 22px;
}

.works-index-box ul li {
    width: 50%;
    float: left;
    padding: 0 20px 40px 0;
}

.works-index-box ul .width32 {
    width: 32%;
    float: left;
    padding: 0;
    margin: 0 2% 40px 0;
    overflow: hidden;
}

.works-index-box ul .width32:nth-child(3n) {
    margin: 0 0 40px 0;
}

.works-index-box ul li a {
    display: block;
}

.works-index-box ul li .works-index-list {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.works-index-box .works-index-list .works-index-img {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.works-index-box .works-index-list .mark-video-play a {
    width: 60px;
    height: 60px;
    position: relative;
}

.works-index-box .works-index-list .mark-video-play i {
    position: absolute;
    font-size: 60px;
    top: 0;
    left: 0;
    display: inline-block;
    color: #fff;
}

.works-index-box .works-index-list .works-index-img img {
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-index-box .works-index-list:hover .works-index-mask {
    opacity: 1;
}

.works-index-box .works-index-list:hover .mask-title, .works-index-box .works-index-list:hover .mask-title2, .works-index-box .works-index-list:hover .mask-read {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    opacity: 1;
}

.works-index-box .works-index-list:hover .works-index-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.works-index-box ul li:nth-child(2n) {
    padding: 0 0 40px 20px;
}

.works-index-box .works-index-mask {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(213, 6, 26, .7);
    width: 100%;
    height: 100%;
    padding: 115px 135px 60px 60px;
    color: #fff;
    opacity: 0;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-index-box .works-index-mask .mask-title {
    font-size: 36px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-index-box .works-index-mask .mask-title2 {
    padding: 10px 0;
    line-height: 36px;
    font-size: 24px;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transition: all .9s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-index-box .works-index-mask .mask-read {
    line-height: 30px;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-index-box .mark-video-play {
    position: absolute;
    width: 60px;
    height: 60px;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-index-box .works-index-list:hover .mark-video-play {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.works-index-box .mark-pc-play {
    right: 40px;
    bottom: 40px;
    opacity: 0;
    transform: scale(.2);
    -webkit-transform: scale(.2);
}

.works-index-box .mark-m-play {
    right: 50%;
    bottom: 50%;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    margin: 0 -30px -30px 0;
}

.works-list-more {
    font-size: 20px;
    width: 180px;
    height: 56px;
    margin: 20px auto 150px;
    background: #d5061a;
    text-align: center;
    line-height: 56px;
    position: relative;

}

.works-list-more:hover a:before {
    width: 100%;
}

.works-list-more a:before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .2);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-list-more a {
    color: #fff;
    display: block;
    padding: 0 17px 0 7px;
    position: relative;
}

.works-list-more:after {
    content: "";
    width: 10px;
    height: 2px;
    /* background: url(../images/more.png) no-repeat; */
    background: #fff;
    position: absolute;
    right: 35px;
    top: 23px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.works-list-more:before {
    content: "";
    width: 10px;
    height: 2px;
    /* background: url(../images/more.png) no-repeat; */
    background: #fff;
    position: absolute;
    right: 35px;
    bottom: 25px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.clients-wrap {
    background: #fafafa;
    padding: 140px 0;
    margin-top: 150px;
}

.clients-index-title {
    line-height: 50px;
    text-align: center;
    font-size: 0;
}

.clients-index-title span {
    font-size: 38px;
    color: #d5061a;
    display: inline-block;
    margin: 0 auto;

}

.clients-index-title span:nth-child(2) {
    color: #cccccc;
    font-size: 44px;
    padding-left: 5px;
    position: relative;
    top: 3px;
}

.clients-index-list {
    margin-top: 80px;
    padding-left: 5px;
}

.clients-index-list ul li {
    width: 20%;
    float: left;

    border-right: 1px dashed #dedede;
    border-top: 1px dashed #dedede;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);

}

.clients-index-list ul li a {
    display: block;
    opacity: .6;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.clients-index-list ul li:nth-child(1) {
    border-top: none;
}

.clients-index-list ul li:nth-child(2) {
    border-top: none;
}

.clients-index-list ul li:nth-child(3) {
    border-top: none;
}

.clients-index-list ul li:nth-child(4) {
    border-top: none;
}

.clients-index-list ul li:nth-child(5) {
    border-top: none;
}

.clients-index-list ul li:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: none;

}

.clients-index-list ul li:hover a {
    opacity: 1;
}

.clients-index-list ul .logo-more {
    width: 20%;
    float: left;
    border-right: 1px dashed #dedede;
    border-top: 1px dashed #dedede;
    cursor: pointer;
    text-align: center;
}

.clients-index-list ul .logo-more a span {
    display: inline-block;
    margin: 0 3px;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.clients-index-list ul .logo-more:hover a span:nth-child(1) {
    -webkit-animation: fadeInMore .5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInMore .5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 200ms;
    -webkit-animation-delay: 200ms;
    color: #d5061a;
}

.clients-index-list ul .logo-more:hover a span:nth-child(2) {
    -webkit-animation: fadeInMore .5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInMore .5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 300ms;
    -webkit-animation-delay: 300ms;
    color: #d5061a;
}

.clients-index-list ul .logo-more:hover a span:nth-child(3) {
    -webkit-animation: fadeInMore .5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInMore .5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 400ms;
    -webkit-animation-delay: 400ms;
    color: #d5061a;
}

@-webkit-keyframes fadeInMore {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInMore {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.clients-index-list ul li:nth-child(5n) {
    border-right: none;
}

.about-index-wrap {
    background: #d5061a;
}

.works-about-wrap {
    margin-top: 120px;
}

.about-index-title {
    font-size: 38px;
    padding-top: 70px;
    text-align: center;
    color: #fff;
}

.about-index-text {
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    padding-top: 20px;
}

.about-index-tel {
    font-size: 68px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 30px 0 70px 0;
}

.about-index-tel a {
    color: #fff;
}

.news-index-wrap {
    padding: 140px 0;
}

.news-index-list {
    width: 50%;
    float: left;
    padding-right: 40px;
    margin-top: 70px;
}

.news-index-list ul {
    width: 100%;
}

.news-index-list:last-child {
    padding-left: 40px;
    padding-right: 0;
}

.news-index-list ul li {
    width: 100%;
    line-height: 42px;
}

.news-index-list ul li a {
    display: inline;
}
.news-index-list ul li a {
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-index-list ul li a:hover {
    color: #d5061a;
}

.news-index-list ul li:first-child {
    margin-bottom: 20px;
}

.news-index-title {
    font-size: 24px;
    color: #333333;
    padding: 35px 0 15px 0;
    line-height: normal;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-index-list ul li:first-child .news-index-img {
    overflow: hidden;
}


.news-index-list ul li:first-child .news-index-img img {
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-index-list ul li:first-child:hover .news-index-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.news-index-list ul li:first-child .news-index-title a {
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-index-list ul li:first-child:hover .news-index-title a {
    color: #d5061a;
}

.news-index-text {
    color: #999999;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dedede;
}

.news-more a {
    line-height: 42px;
    color: #d5061a;
}

.footer {
    background: #262626;
    padding: 80px 0;
}
.footer2 {
    background: #f5f5f5!important;
    padding: 80px 0;
}
.footer2 .foot-link {
    border-bottom: 1px solid #c4c4c4;
}
.foot-wrap {
    width: 100%;
}

.foot-left {
    float: left;
    width: 70%;
}

.foot-link {
    color: #999999;
    width: 100%;
    border-bottom: 1px solid #515151;
    padding: 25px 0;
}

.foot-link span {
    display: inline-block;
    line-height: 36px;
}

.foot-link a {
    color: #999999;
    margin: 0 10px;
    display: inline-block;
}

.foot-bq {
    color: #999999;
    width: 100%;
    line-height: 36px;
    padding: 25px 0;
}

.BMap_bubble_content img {
    display: inline-block;
}

.foot-bq span {

    margin: 0 20px;
}

.foot-bq span a {
    color: #999999;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.foot-bq span a:hover {
    color: #fff;
}
.footer2 .foot-bq span a:hover {
    color: #000;
}
.foot-ewm {
    float: right;
    font-size: 0;
}

.foot-ewm span {
    display: inline-block;
    margin-left: 14px;
    width: 173px;
}

.m-nav-wrap {
    display: block;
}

.banner-works-wrap {
    width: 650px;
    height: 600px;
    background: rgba(213, 6, 26, .7);
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -300px;
    padding: 80px;
    overflow: hidden;
}

.header-children-wrap {
    width: 100%;
    height: calc(100vh - 160px);
}

.header-auto {
    width: 100%;
    height: auto;
}

.banner-works-title {
    color: #fff;
    font-size: 36px;
    position: relative;
    padding-bottom: 30px;

}

.banner-works-line {
    width: 40px;
    height: 4px;
    background: #fff;
    margin-bottom: 30px;
}

.banner-works-read {
    color: #fff;
    line-height: 30px;
    font-size: 16px;
}

@-webkit-keyframes fadeInRight2 {
    from {
        opacity: 0;
        -webkit-transform: translate(100%);
        transform: translate(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0%);
        transform: translate(0%);
    }
}

@keyframes fadeInRight2 {
    from {
        opacity: 0;
        -webkit-transform: translate(100%);
        transform: translate(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0%);
        transform: translate(0%);
    }
}

.fadeInRight2 {
    -webkit-animation-name: fadeInRight2;
    animation-name: fadeInRight2;
}

.banner-box {
    height: 100%;
    position: relative;
}

.banner-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-list-wrap {
    padding-top: 180px;
}

.works-list-box .list-li .work-text-color {
    height: 100%;
    background: #d5061a;
    padding: 100px;
    color: #fff;
}

.works-list-box .list-li a {
    display: block;
    height: 100%;
}

.color-text1 {
    font-size: 24px;
    display: block;
}

.color-text2 {
    font-size: 80px;
    display: inline-block;
    padding-right: 10px;
}

.color-text3 {
    font-size: 34px;
    display: inline-block;
}

.color-text4 {
    font-size: 24px;
    display: inline-block;
}

.works-list-box .width50 {
    width: 50% !important;
    margin: 0 0 40px 0 !important;
    float: left;
    overflow: hidden;
    padding: 0 !important;
    height: 418px;
    position: relative;
}

.works-list-box .paddingLeft {
    padding: 0 0 0 20px !important;
}

.works-list-box .paddingRight {
    padding: 0 20px 0 0 !important;
}

.works-list-box ul li.list-li {
    width: 32%;
    float: left;
    padding: 0;
    margin: 0 2% 40px 0;
    overflow: hidden;
}

.works-list-box ul li.list-li:nth-child(3n) {
    margin: 0 0 40px 0;
}

.works-list-box .list-li .works-index-list {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.works-list-box ul .list-li .works-index-list {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.works-list-box .works-index-list .works-index-img {
    width: 100%;
    overflow: hidden;
}

.works-list-box .works-index-list .mark-video-play span {
    width: 60px;
    height: 60px;
    position: relative;
    display: block;
}

.works-list-box ul .works-index-list .mark-video-play span {
    width: 60px;
    height: 60px;
    position: relative;
}

.works-list-box .works-index-list .mark-video-play i {
    position: absolute;
    font-size: 60px;
    top: 0;
    left: 0;
    display: block;
    color: #fff;
}

.works-list-box .works-index-list .works-index-img {
    position:relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.works-list-box .works-index-list .works-index-img img {
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-list-box .works-index-list:hover .works-index-mask {
    opacity: 1;
}

.works-list-box .works-index-list:hover .mask-title,
.works-list-box .works-index-list:hover .mask-title2,
.works-list-box .works-index-list:hover .mask-read {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    opacity: 1;
}

.works-list-box .works-index-list:hover .works-index-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.works-list-box .works-index-mask {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(213, 6, 26, .7);
    width: 100%;
    height: 100%;
    padding: 115px 135px 60px 60px;
    color: #fff;
    opacity: 0;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-list-box ul .works-index-mask {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(213, 6, 26, .7);
    width: 100%;
    height: 100%;
    padding: 35px 100px 35px 35px;
    color: #fff;
    opacity: 0;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-list-box ul .works-index-mask .mask-title {
    font-size: 26px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-list-box ul .works-index-mask .mask-title2 {
    padding: 5px 0;
    line-height: 30px;
    font-size: 18px;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transition: all .9s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-list-box ul .works-index-mask .mask-read {
    line-height: 20px;
    font-size: 14px;
}

.works-list-box .works-index-mask .mask-title {
    font-size: 36px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-list-box .works-index-mask .mask-title2 {
    padding: 10px 0;
    line-height: 36px;
    font-size: 24px;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transition: all .9s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-list-box .works-index-mask .mask-read {
    line-height: 30px;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-list-box .mark-video-play {
    position: absolute;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-list-box .works-index-list:hover .mark-video-play {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.works-list-box .mark-pc-play {
    right: 40px;
    bottom: 40px;
    opacity: 0;
    transform: scale(.2);
    -webkit-transform: scale(.2);
}

.works-list-box ul .mark-pc-play {
    right: 20px;
    bottom: 20px;
}

.works-list-box .mark-m-play {
    width: 60px;
    height: 60px;
    right: 50%;
    bottom: 50%;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    margin: 0 -30px -30px 0;
}

.works-list-box .works-list-more {
    font-size: 20px;
    color: #fff;
    width: 180px;
    height: 56px;
    margin: 20px auto 0;
    background: #d5061a;
    text-align: center;
    line-height: 56px;
    position: relative;
}

.works-list-box .works-list-more:after {
    content: "";
    width: 9px;
    height: 14px;
    background: url(../images/more.png) no-repeat;
    position: absolute;
    right: 40px;
    top: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.work-video-wrap {
    width: 100%;
    padding: 0 200px;
    position: relative;
}

.width-auto2 {
    width: 100%;
    padding: 0;
    position: relative;
}

.work-video-wrap .work-video-box {
    width: 100%;
}

.work-video-wrap .work-video-box .work-video-img {
    width: 100%;
    position: relative;
    cursor: pointer;
}

.work-video-wrap .work-video-box .work-video-img i {
    font-size: 140px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -70px 0 0 -70px;
}

.work-video-box iframe {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.work-mbx-nav {
    text-align: center;
    font-size: 0;
    margin: 60px 0 80px 0;
}
.mt80 {
    margin-top: 80px;
}
.work-mbx-nav .prev {
    margin: 5px 0;
    height: 42px;
    float: left;

}

.work-mbx-nav .prev a {
    position: relative;
    padding-left: 46px;
    line-height: 42px;
    color: #cccccc;
    display: block;
    font-size: 26px;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-mbx-nav .prev a:hover {
    color: #d5061a;
}

.work-mbx-nav .prev a:hover:after {
    background: #d5061a;
}

.work-mbx-nav .prev a:hover:before {
    background: #d5061a;
}

.work-mbx-nav .prev a:after {
    content: "";
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 21px;
    height: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background: #cccccc;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-mbx-nav .prev a:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 21px;
    height: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    background: #cccccc;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-mbx-nav .center {
    height: 52px;
    margin: 0 auto;
    display: inline-block;
}

.work-mbx-nav .center a {
    display: block;
    height: 52px;
}

.work-mbx-nav .center a:hover i {
    color: #d5061a;
}

.work-mbx-nav .center i {
    font-size: 52px;
    height: 52px;
    color: #cccccc;
    display: inline-block;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-mbx-nav .next {
    margin: 5px 0;
    height: 42px;
    float: right;
}

.work-mbx-nav .next a {
    position: relative;
    padding-right: 46px;
    line-height: 42px;
    color: #cccccc;
    display: block;
    font-size: 26px;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-mbx-nav .next a:after {
    content: "";
    position: absolute;
    bottom: 13px;
    right: 0;
    width: 21px;
    height: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    background: #cccccc;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-mbx-nav .next a:before {
    content: "";
    position: absolute;
    top: 13px;
    right: 0;
    width: 21px;
    height: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background: #cccccc;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-mbx-nav .next a:hover {
    color: #d5061a;
}

.work-mbx-nav .next a:hover:after {
    background: #d5061a;
}

.work-mbx-nav .next a:hover:before {
    background: #d5061a;
}

.work-wrap-more {
    width: 220px;
    height: 56px;
    margin: 20px auto 150px;
    background: #fff;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.work-wrap-more a {
    display: block;
    border: 2px solid #d5061a;
    height: 56px;
    line-height: 56px;
    color: #d5061a;
    text-align: center;
    font-size: 20px;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);

}

.work-wrap-more a span {
    position: relative;
    z-index: 1;
}

.work-wrap-more a:hover:before {
    width: 100%;
}

.work-wrap-more a:before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #d5061a;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-wrap-more a:hover {
    color: #fff;
}
.pd0 {
    padding: 0!important;
}
.services-wrap {
    margin-top: 120px;
}

.services-box {
    width: 100%;
    position: relative;
    height: -webkit-calc(50vh - 60px);
    height: calc(50vh - 60px);
}
.services-img1 {
    height: 100%;
    overflow: hidden;
    align-items: center;
    display: flex;

}
.services-img1 img {
    width: 100%;
    object-fit: cover;
    align-items: center;
}
.services-animation {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.services-left {
    width: 50%;
    height: 100%;
    background: rgba(213, 6, 26, .9);
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.services-left2 {
    width: 50%;
    height: 100%;
    background: rgba(213, 6, 26, .9);
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
}

.services-read {
    height: 200px;
    position: absolute;
    top: 50%;
    margin-top: -100px;
    width: 100%;
    text-align: center;
}

.services-text1 {
    font-size: 88px;
    width: 100%;
    font-weight: bold;
}

.services-text2 {
    font-size: 32px;
    width: 100%;
    margin-top: 20px;
}

.services-icon {
    width: 45px;
    height: 89px;
    position: absolute;
    right: -45px;
    top: 50%;
    margin-top: -45px;
    overflow: hidden;
}

.services-icon i {
    content: "";
    position: absolute;
    width: 63px;
    height: 63px;
    top: 13px;
    left: -32px;
    background: rgba(213, 6, 26, .9);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.services-icon2 {
    width: 45px;
    height: 89px;
    position: absolute;
    left: -45px;
    top: 50%;
    margin-top: -45px;
    overflow: hidden;
}

.services-icon2 i {
    position: absolute;
    width: 63px;
    height: 63px;
    top: 13px;
    right: -32px;
    background: rgba(213, 6, 26, .9);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.services-right {
    width: 50%;
    line-height: 100px;
    text-align: center;
    color: #fff;
    font-size: 68px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -50px;
}

.services-right2 {
    width: 50%;
    line-height: 100px;
    text-align: center;
    color: #fff;
    font-size: 68px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -50px;
}

.clients-mt {
    margin: 0;
}

.about-banner-text {
    font-size: 64px;
    color: #fff;
    position: absolute;
    line-height: 100px;
    width: 100%;
    text-align: center;
    top: 50%;
    z-index: 1;
    margin-top: -100px;
}

.about-read-wrap {
    margin-top: 130px;
}

.about-read-text {
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    margin: 40px 0;
}

.about-read-text2 {
    font-size: 18px;
    line-height: 38px;
    color: #666666;
    text-align: center;
}

.about-map-wrap {
    margin: 150px 0 0 0;
    position: relative;
}

.about-map {
    height: 750px;

}

.join-uh-wrap {
    background: #fafafa;
    padding-top: 150px;
}

.join-tab-wrap {
    margin-top: 40px;
    background: #ffffff;
}

.join-title {
    width: 100%;
    color: #cccccc;
    background: #ffffff;
    height: 72px;
    line-height: 72px;
    font-size: 0;
}

.join-title .join-span {
    width: 25%;
    display: inline-block;
    font-size: 20px;
}

.join-title .join-span:last-child {
    width: 12%;
}

.join-title .join-span:nth-child(3) {
    width: 38%;
}

.join-title .join-span span {
    padding: 0 20px 0 40px;
}

.join-list-title {
    width: 100%;
    height: 72px;
    line-height: 72px;
    font-size: 0;
    color: #666666;
    background: #ffffff;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 1px solid #f5f5f5;
}

.join-list-title .join-span {
    width: 25%;
    display: inline-block;
    font-size: 20px;

}

.join-list-title .join-span:last-child {
    width: 12%;
    padding: 0 20px 0 40px;
}

.join-list-title .join-span:nth-child(3) {
    width: 38%;
}

.join-list-title .join-span span {
    padding: 0 20px 0 40px;
}

.join-list-title .join-span:last-child span {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #d5061a;
    text-align: center;
    line-height: 36px;
    padding: 0;
    margin: 0 auto;
    color: #fff;
    cursor: pointer;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.box-white {
    background: #fff;
    color: #666666;
}

.join-list-title .join-span span.span-white {
    background: #fff;
    color: #d5061a;
}

.box-red {
    background: #d5061a;
    color: #fff;
}

.join-list-title .join-span span.span-red {
    background: #d5061a;
    color: #fff;
}

.join-list-read {
    padding: 40px;
    line-height: 30px;
    font-size: 16px;
    color: #666;
    display: none;
}

.join-email {
    padding: 40px 0 140px 0;
    text-align: center;
    color: #999999;
}

.news-list-box ul li {
    padding-bottom: 65px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 65px;
}
.news-list-right .news-list-text2 a {
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-list-box ul li:hover .news-list-right .news-list-text2 a {
    color: #d5061a;
}

.news-list-box ul li .news-list-left a {
    overflow: hidden;
}
.news-list-box ul li .news-list-left a img {
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-list-box ul li:hover .news-list-left a img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.news-list-box ul li .news-list-left {
    width: 50%;
    float: left;
    padding-right: 35px;
}

.news-list-box ul li .news-list-right {
    width: 50%;
    float: right;
    padding-left: 35px;
}

.news-list-text1 {
    font-size: 16px;
    color: #808080;
    padding: 10px 0;
}

.news-list-text2 a {
    font-size: 24px;
    color: #333;

}

.news-list-text3 {
    font-size: 16px;
    line-height: 30px;
    color: #999999;
    margin: 30px 0 65px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 60px;
}

.news-list-text4 a {
    font-size: 16px;
    color: #d5061a;
}

.news-read-wrap .news-read-left {
    width: 32%;
    float: left;
}

.news-read-wrap .news-read-left span {
    display: block;
    color: #808080;
    font-size: 16px;
}

.news-read-wrap .news-read-left span:first-child {
    font-size: 46px;
    color: #000;
    margin-bottom: 10px;

}

.news-read-wrap .news-read-right {
    width: 68%;
    float: right;
}

.news-read-wrap .news-read-right .news-read-title {
    font-size: 34px;
    line-height: 36px;
    color: #333333;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.news-read-text {
    padding: 15px 0;
    font-size: 18px;
    color: #666666;
    line-height: 36px;
}

.news-read-text img {
    padding: 15px 0;
}

.news-read-line .line {
    height: 1px;
    width: 100%;
    background: #cccccc;
    display: block;
}

.news-read-list {
    padding: 80px 0;
}

.news-read-list ul {
    width: 50%;
    float: left;
    padding: 0 40px 0 0;
}

.news-read-list ul li {
    height: 42px;
    line-height: 42px;
}

.news-read-list ul li a {
    color: #333;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-read-list ul li a:hover {
   color: #d5061a;
}

.mt {
    padding-top: 240px;
}

.yh-about-box {
    width: 620px;
    padding: 70px;
    background: #fff;
    position: absolute;
    right: 15%;
    top: 50%;
    margin-top: -280px;
    z-index: 2;
}

.yh-title-text {
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 40px;
}

.yh-title-line {
    border-bottom: 1px dashed #dedede;
}

.yh-title-tel {
    font-size: 40px;
    color: #d5061a;
    font-weight: bold;
    padding: 30px 0;
}

.yh-title-phone {
    position: relative;
    padding-left: 42px;
    font-size: 0;
}

.yh-title-phone i {
    font-size: 32px;
    position: absolute;
    top: 0;
    left: 0;
    color: #333333;
}

.yh-title-phone span {
    width: 50%;
    display: inline-block;
    line-height: 30px;
    font-size: 18px;
    color: #666666;
}

.yh-title-email, .yh-title-map {
    position: relative;
    line-height: 30px;
    font-size: 18px;
    color: #666666;
    padding: 25px 0 25px 42px;
}

.yh-title-email i, .yh-title-map i {
    font-size: 32px;
    position: absolute;
    top: 25px;
    left: 0;
    color: #333333;
}
.works-list-box {
    padding-bottom: 110px;
}
