@font-face {
    font-family: "NotoSansCJK";
    src: url(../font/NotoSansCJK-Regular-1.otf);
}
@font-face {
    font-family: "BebasNeue";
    src: url(../font/BebasNeue-1.otf);
}

*,
html,
body {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    font-family: "NotoSansCJK";
}

ul,
ol,
dl,
li,
dt,
dd {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    vertical-align: middle;
    border: 0;
}

a {
    text-decoration: none;
}

input,
a,
img,
select {
    outline: none;
}

input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

/*清除浮动*/

.clearfix::after,
.clearfix::before {
    content: ".";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.innerWrap {
    padding: 0 180px;
}

/* 动画效果 */

.wgt-fade-animate {
    transform: scale(0.6) translateY(50px);
    opacity: 0;
}

.appear {
    -webkit-animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_show {
    0% {
        transform: scale(0.6) translateY(50px);
        opacity: .1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes opacity_show {
    0% {
        transform: scale(0.6);
        transform: translateY(50px);
        opacity: .1;
    }

    100% {
        transform: scale(1);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes opacity_show {
    0% {
        transform: scale(0.6);
        transform: translateY(50px);
        opacity: .1;
    }

    100% {
        transform: scale(1);
        transform: translateY(0);
        opacity: 1;
    }
}

.hwTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hwTop .hwTit {
    margin: 0;
}

/*  */
.hwUl_nav {
    text-align: center;
    margin-bottom: 30px;
}

.hwUl li {
    position: relative;
    display: inline-block;
    padding: 8px 21px;
}

.hwUl li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    margin-top: -6px;
    height: 12px;
    border-left: 1px dashed #333;
    opacity: 0.5;
}

.hwUl a {
    position: relative;
    font-weight: 400;
    display: block;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.hwUl a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e60012;
    transform: scale(0);
    transition: all 0.48s;
}

.hwUl li:last-child {
    padding-right: 0;
}

.hwUl li:first-child::before {
    content: none;
}

.hwUl a:hover,
.hwUl li.cur a {
    color: #e60012;
}

.hwUl a:hover:after,
.hwUl li.cur a:after {
    transform: scale(1);
}

.hwUl.white a {
    color: #fff;
}

.hwUl.white li::before {
    border-left: 1px dashed #fff;
}

.hwUl.white a::after {
    background: #fff;
}

.hwUl.white a:hover {
    color: #fff;
}

/*  */

.hwTit {
    margin-bottom: 28px;
}

.hwTit span {
    font-weight: 500;
    font-size: 48px;
}

.hwTit.center {
    text-align: center;
}

.hwTit.white span {
    color: #fff;
}

/*  */

.hwMore {
    margin-top: 48px;
}

.hwMore .more {
    display: block;
    width: 210px;
    background-color: #e60012;
    text-align: center;
    color: #ffffff;
    position: relative;
    -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hwMore .more:before,
.hwMore .more:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    background: #e60012;
    content: "";
    -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hwMore .more:before {
    top: -5px;
    right: 0;
    -webkit-transform: translateY(0%) translateX(0%);
    -ms-transform: translateY(0%) translateX(0%);
    transform: translateY(0%) translateX(0%);
}

.hwMore .more:after {
    bottom: -5px;
    left: 0;
    -webkit-transform: translateY(0%) translateX(0%);
    -ms-transform: translateY(0%) translateX(0%);
    transform: translateY(0%) translateX(0%);
}

.more .hwMore_span {
    display: block;
}

.more .hwMore_span span {
    padding: 14px 0;
    display: block;
    color: #fff;
}

.more:hover .hwMore_span:before {
    -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translateY(50%) translateX(100%);
    -ms-transform: translateY(50%) translateX(100%);
    transform: translateY(50%) translateX(100%);
}

.more:hover .hwMore_span:after {
    -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translateY(0%) translateX(-100%);
    -ms-transform: translateY(0%) translateX(-100%);
    transform: translateY(0%) translateX(-100%);
}

/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 50px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.48s;
}

.headRig>div,
.headL>div {
    display: inline-block;
    vertical-align: middle;
}

.headLogo {
    width: 189px;
}

.headLogo img {
    width: 100%;
}

.headLogo_img2 {
    display: none;
}

.headNav li {
    display: inline-block;
    margin-left: 68px;
}

.headL .headNav li {
    margin-left: 48px;
}

.headNav li img {
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 6px;
}

.headNav_ico3,
.headNav_ico2 {
    display: none;
}

.headNav li a {
    color: #fff;
    font-size: 15px;
}

.headTel {
    margin-left: 89px;
}

.headTel>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headTel svg {
    width: 42px;
    height: 42px;
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.headTel svg path {
    fill: #fff;
}

.headTel_div span {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
    color: #fff;
}

.headTel_div a {
    display: block;
    font-weight: 300;
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

header.bg {
    background: #fff;
    box-shadow: 0 0 10px 1px #ebebeb;
}

header.bg .headLogo_img1 {
    display: none;
}

header.bg .headLogo_img2 {
    display: block;
}

header.bg .headNav_ico1,
header.bg .headNav_ico3 {
    display: none;
}

header.bg .headNav_ico2 {
    display: inline-block;
}

header.bg .headTel svg path {
    fill: #333;
}

header.bg .headNav li a,
header.bg .headTel_div span,
header.bg .headTel_div a {
    color: #333;
}

/* mobile */
.header_menu {
    display: none;
    float: right;
    padding: 8px;
    cursor: pointer;
}

.header_menu span {
    display: block;
    width: 30px;
    height: 2px;
    margin-bottom: 7px;
    background: #000;
    transition: all 0.48s;
}

.header_menu.on span {
    background: #000;
}

.header_menu span:last-of-type {
    margin-bottom: 0;
}

.header_menu.on .header_menu_span1 {
    transform: rotate(45deg) translate(8px, 5px);
}

.header_menu.on .header_menu_span2 {
    opacity: 0;
}

.header_menu.on .header_menu_span3 {
    transform: rotate(-45deg) translate(7px, -5px);
}

.headBox {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 80px 20px;
    z-index: 99999;
    text-align: center;
}

.headBox li {
    line-height: 3;
    border-bottom: 1px dotted #eee;
}

.headBox li a {
    color: #666;
    display: block;
    padding: 10px 0;
}


@media(max-width: 1024px) {
    .header_menu {
        display: block;
    }
}

@media(max-width: 900px) {
    .header_menu {
        padding: 6px;
    }

    .header_menu span {
        width: 28px;
        margin-bottom: 6px;
    }

    .header_menu.on .header_menu_span1 {
        transform: rotate(45deg) translate(7px, 4px);
    }

    .headBox {
        top: 52px;
        padding: 0 20px 28px;
    }
}

@media(max-width: 480px) {
    .headBox {
        top: 48px;
    }
}

/* header  end */

/* banner */

.banTxt {
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    left: 16%;
}

.banTxt_div {
    position: relative;
    /* border-left: 1px solid #fff;
    padding-left: 28px; */
}

/* .banTxt_div::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 3px;
    height: 38px;
    background: #e60012;
} */

.banTxt_i {
    color: #fff;
    line-height: 1.2;
    font-size: 54px;
    text-transform: uppercase;
    font-style: inherit;
    font-weight: 100;
    display: block;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(58px);
    transition: all 1s;
}

.banTxt_i span {
    text-transform: uppercase;
    font-style: inherit;
    color: #fff;
    line-height: 1.2;
    font-size: 54px;
    display: block;
    font-weight: 500;
}

.banTxt_span {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 58px;
    line-height: 1.4;
    opacity: 1;
    transform: translateY(0);
    opacity: 0;
    transform: translateY(58px);
    transition: all 1s 0.28s;
}

.banTxt_span span {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 58px;
    line-height: 1.4;
}

.banTxt_p {
    display: none;
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(58px);
    transition: all 1s 0.38s;
}

.banTxt .hwMore {
    margin-top: 68px;
    opacity: 0;
    transform: translateY(58px);
    transition: all 1s 0.48s;
}

.swiper-slide-active .banTxt .hwMore,
.swiper-slide-active .banTxt_i,
.swiper-slide-active .banTxt_p,
.swiper-slide-active .banTxt_span {
    opacity: 1;
    transform: translateY(0);
}

.banner {
    width: 100%;
    height: 100vh;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    position: absolute;
    outline: none;
    top: 56%;
    transform: translateY(-50%);
    z-index: 999;
    height: auto;
    width: 45px;
    border: 0;
    background: transparent;
}

.banner .swiper-button-next img,
.banner .swiper-button-prev img {
    width: 100%;
}

.banner .swiper-button-prev {
    left: 58px;
}

.banner .swiper-button-next {
    right: 58px;
}

.banner .swiper-pagination {
    opacity: 0;
    bottom: 38px !important;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 24px;
}

.banner .swiper-pagination .swiper-pagination-bullet {
    position: relative;
    opacity: 1;
    background: #fff;
}

.banner .swiper-pagination .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: -9px;
    left: -9px;
    width: 24px;
    height: 24px;
    border: 1px dashed #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 1s;
    animation: myMove1 5s ease-in infinite alternate;
    -webkit-animation: myMove1 5s ease-in infinite alternate;
}

@keyframes myMove1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.banner .swiper-pagination .swiper-pagination-bullet-active::before {
    opacity: 1;
}

.banner .swiper-container,
.banner .swiper-slide,
.banner .banImg {
    height: 100%;
}

.banner .banImg {
    position: relative;
}

.banner .banImg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.38;
}

.banner .banImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* banner  end */

/* about */

.hwAb {
    padding: 89px 38px;
    background: #f6f6f6;
}

.hwAb_box {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.hwAb_img {
    padding-top: 40%;
    position: relative;
    width: 54%;
}

.hwAb_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hwAb_txt {
    width: 40%;
    padding-left: 142px;
    padding-top: 3%;
}

.hwAb_p span {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    display: block;
}

.hwAb_div em {
    padding: 5px;
    border-radius: 50%;
    background: #e60012;
    color: #fff;
    font-style: inherit;
    font-size: 13px;
    position: relative;
    top: -6px;
}

.hwAb_p p {
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 6px;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hwAb_num {
    position: absolute;
    z-index: 1;
    left: 146px;
    bottom: 68px;
    width: 54%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.hwAb_div {
    padding: 38px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    border-left: 1px solid #f6f6f6;
}

.hwAb_div:first-child {
    border: 0;
}

.hwAb_div>div {
    min-width: 120px;
}

.hwAb_div span {
    display: inline-block;
    margin-right: 10px;
}

.hwAb_div i {
    font-family: "BebasNeue";
    font-size: 62px;
    letter-spacing: -2px;
    line-height: 1;
    margin-right: 8px;
    font-style: inherit;
    font-weight: 500;
    color: #e60012;
}

.hwAb_div p {
    margin-top: 5px;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* about  end */

/* product */

.hwPro {
    position: relative;
    padding: 108px 0 0;
}

.hwPro_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hwPro_bg img {
    width: 100%;
}

.hwPro_wrap {
    position: relative;
    z-index: 11;
}

.hwPro_view {
    position: relative;
    background: #f8f8f8;
    padding: 38px 38px 18px;
    margin-top: 48px;
}

.hwPro_box {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.hwPro_a {
    width: 24%;
    margin: 0.5% 0.5% 28px;
}

.hwPro_img {
    width: 100%;
    padding-top: 62%;
    border: 1px solid #eee;
    position: relative;
    background: #fff;
}

.hwPro_img img {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 80%;
    height: 70%;
    object-fit: contain;
    transition: all 0.48s;
}

.hwPro_a:hover .hwPro_img img {
    transform: scale(1.1);
}

.hwPro_line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hwPro_line span {
    position: absolute;
    background: #e60012;
    transition: all 0.48s;
}

.hwPro_line_1 {
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
}

.hwPro_a:hover .hwPro_line_1 {
    width: 100%;
}

.hwPro_line_4 {
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
}

.hwPro_a:hover .hwPro_line_4 {
    height: 100%;
}

.hwPro_line_2 {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 0;
}

.hwPro_a:hover .hwPro_line_2 {
    height: 100%;
}

.hwPro_line_3 {
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
}

.hwPro_a:hover .hwPro_line_3 {
    width: 100%;
}

.hwPro_txt {
    padding: 12px 20px;
    text-align: center
}

.hwPro_txt p {
    font-size: 15px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hwPro_a:hover .hwPro_txt p {
    color: #e60012;
}

/* product end */

/* webmap */

.img-box {
    position: relative;
}

.img-box::before {
    content: "";
    display: block;
}

.img-box>img {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.webMap .abAbout_num {
    margin-top: 108px;
    display: block;
}

.webMap .abAbout_num div {
    display: inline-block;
    margin-right: 108px;
    min-width: 138px;
}

.webMap .abAbout_num p {
    font-size: 16px;
    font-weight: 400;
}

.webMap .abAbout_num img {
    height: 36px;
    margin-bottom: 14px;
}

.webMap .abAbout_num p span {
    font-family: "BebasNeue";
    vertical-align: bottom;
    font-size: 89px;
    line-height: 0.8;
    font-weight: 500;
    letter-spacing: -2px;
    margin-right: 6px;
    color: #e60012;
}

.webMap .webMap_en {
    display: block;
    color: #666;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 32px;
}

.webMap .webMap_cn {
    color: #5e6671;
    letter-spacing: 0.5PX;
}

/*  */

.webMap {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 89px;
}

.webMap .indTit {
    margin-bottom: 48px;
}

.webMap_p {
    max-width: 489px;
}

.webMap_p p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.25px;
    margin-bottom: 14px;
}
}

.fp-tableCell {
    vertical-align: middle;
    width: 100%;
    height: 95vh;
    position: relative;
}

.office-wrap {
    position: relative;
    text-align: right;
}

/* left */

.office-left {
    z-index: 5;
    position: absolute;
    top: 89px;
    bottom: 0;
    left: 0;
    text-align: left;
}

.office-left-title {
    font: 700 30px/1.35 "Montserrat";
    max-width: 540px;
}

.view-more {
    display: inline-block;
    vertical-align: top;
    color: #1b2f5f;
    font: 500 14px/30px "Montserrat";
    text-transform: uppercase;
}

.view-more>span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: .5em;
    font-size: 20px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
    overflow: hidden;
}

.view-more>span::before,
.view-more>span::after {
    position: absolute;
    top: 0;
    bottom: 0;
}

.view-more>span::before {
    right: 0;
    left: 0;
}

.view-more>span::after {
    content: "\e602";
    right: 100%;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.office-num {
    position: absolute;
    bottom: 80px;
    left: 0;
    white-space: nowrap;
    font-size: 0;
}

.onum-item {
    display: inline-block;
    vertical-align: top;
    color: #1b2f5f;
    margin-right: 60px;
}

.onum-item>span {
    display: inline-block;
    vertical-align: bottom;
}

.onum-item__digit {
    font-size: 80px;
    line-height: 1;
}

.onum-item__txt {
    margin-left: .75em;
    font: 700 18px/24px "Montserrat";
    padding-bottom: .5em;
}

/* right */

.office-box {
    display: inline-block;
    vertical-align: top;
    width: 58%;
    max-width: 1200px;
    z-index: 21;
}

.office-box::before {
    padding-top: 72%;
}

.office-item {
    cursor: pointer;
    position: absolute;
    margin-top: -15px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(18, 38, 170, 0.14);
}

.office-item::before {
    content: "";
    position: absolute;
    top: 33.3333%;
    left: 33.3333%;
    width: 33.3333%;
    height: 33.3333%;
    border-radius: 50%;
    background-color: #B21D23;
    z-index: 21;
}

.office-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-color: #1b2f5f;
    opacity: .07;
}

.office-item.current::after {
    animation: scale2 2s linear infinite;
}

@keyframes scale2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .5;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

.office-item__name {
    position: absolute;
    top: 108%;
    left: 50%;
    width: 150%;
    text-align: center;
    color: #333;
    text-transform: uppercase;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 1px;
}

.office-item__line,
.office-item__info {
    visibility: hidden;
    opacity: 0;
}

.office-item__line {
    width: 89px;
    position: absolute;
    bottom: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.office-item__line.right {
    left: 50%;
    background-image: url(images/office_line1.png);
}

.office-item__line.left {
    right: 50%;
    background-image: url(images/office_line2.png);
}

.office-item__line::before {
    padding-top: 102.7027%;
}

.office-item__info {
    position: absolute;
    top: 0;
    margin-top: -150px;
    border: 2px solid #1b2f5f;
    padding: 20px 30px;
    color: #333;
    width: 350px;
    background: #fff;
    text-align: left;
    z-index: 99;
}

.office-item__info.right {
    left: 50%;
    margin-left: 89px;
}

.office-item__info.left {
    right: 50%;
    margin-right: 89px;
}

.office-item__info h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.office-item__info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.office-item__info p {
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 400;
}

.office-item:hover .office-item__line,
.office-item:hover .office-item__info {
    visibility: visible;
    opacity: 1;
}

/* webmap  end */

/* news */

.doNew {
    overflow: hidden;
    padding: 108px 0;
    background: #f6f6f6;
}

.doNew_box {
    margin-top: 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doNew_a {
    display: block;
    width: 32%;
    background: #fff;
    padding: 15px;
}

.doNew_img {
    position: relative;
    padding-top: 58%;
    overflow: hidden;
}

.doNew_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.doNew_a:hover .doNew_img img {
    transform: scale(1.1);
}

.doNew_a:hover .doNew_tit {
    color: #e60012;
}

.doNew_txt {
    padding: 28px 38px;
    border: 1px solid #eee;
    text-align: left;
    background: #fff;
}

.doNew_tit {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.doNew_txt p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    letter-spacing: 1px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 42px;
}

.doNew_time {
    display: block;
    color: #999;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 18px;
}

.doNew_time img {
    display: none;
    margin-right: 6px;
    vertical-align: middle;
}

@media(max-width:1400px) {
    .doNew_a {
        width: 32%;
    }
}

@media(max-width:1280px) {
    .doNew {
        padding: 89px 0;
    }
}

@media(max-width:768px) {
    .doNew {
        padding: 68px 0 48px;
    }

    .doNew_a {
        width: 90%;
        margin: 0 auto 30px;
    }

    .doNew_txt {
        padding: 6% 8% 4%;
    }
}

@media(max-width:480px) {
    .doNew {
        padding: 48px 0 28px;
    }

    .doNew_a {
        width: 100%;
        margin-bottom: 18px;
    }

    .doNew_img {
        padding-top: 54%;
    }

    .doNew_txt {
        padding: 24px 24px 14px;
    }

    .doNew_tit {
        font-size: 16px;
    }

    .doNew_time {
        font-size: 13px;
    }

    .doNew_time img {
        margin-top: -3px;
    }
}

/* news  end */

/* footer */

.footCopy {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    opacity: 0.5;
    font-weight: 100;
    letter-spacing: 1px;
}

.footCopy a {
    color: #fff;
    font-size: 13px;
    font-weight: 100;
}

.footCon_tit {
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bold;
}

.footCon_p {
    margin: 24px 0 32px;
}

.footCon_p p {
    font-size: 14px;
    margin-bottom: 14px;
    color: #fff;
}

.footCon_p span {
    color: #ffffff;
    letter-spacing: 1px;
}

.footCon_p a {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.footCon_ico img {
    width: 108px;
    margin-right: 14px;
}

.footBox {
    position: relative;
    background: url(../images/bg_f.png);
}

.footBox .innerWrap {
    position: relative;
}

.footTop {
    position: absolute;
    top: 0;
    right: 0;
    height: 80px;
    width: 289px;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 80px;
    font-weight: 300;
    background: #efefef;
    text-align: center;
}

.footTop svg {
    vertical-align: text-bottom;
    width: 24px;
    height: 16px;
}

.footTop svg path {
    fill: #666;
}

.footCon {
    position: absolute;
    right: 0;
    top: 80px;
    width: 38%;
    height: calc(100% - 80px);
    padding: 3% 5%;
    background: #e60012;
}

.footNav {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 0 auto;
    padding: 80px 40% 68px 0;
    height: 430px;
}

.footNav li {
    display: inline-block;
}

.footNav span {
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 400;
    display: block;
    margin-bottom: 28px;
}

.footNav a {
    color: #ffffff;
    display: block;
    font-weight: 100;
    line-height: 1;
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* footer  end */