@charset "UTF-8";

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw !important;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw !important;
    }
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}

@font-face {
    font-family: 'Montserrat-ExtraBold';
    src: url(../fonts/Montserrat-ExtraBold.ttf);
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url(../fonts/Montserrat-Light.ttf);
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: 'Poppins-Light';
    src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url(../fonts/Poppins-SemiBold.ttf);
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: .18rem 'Montserrat-Regular', 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

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

a:hover {
    color: #18565d;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ellipsis-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

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

.container {
    max-width: 19.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.home-wrap {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    max-width: 19.2rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:1199px) {

    .container,
    .home-wrap {
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

.header {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #FFF;
}

.header .logo {
    height: 1rem;
    width: 3.1rem;
    background-size: 100%;
    margin-right: .9rem;
}

.header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header .logo img.i2 {
    display: none;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: 30px;
    height: 30px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav li {
    margin-right: .55rem;
    font-family: 'Montserrat-Medium';
}

.nav li:last-child {
    margin-right: 0;
}

.nav li>a {
    font-size: .22rem;
    line-height: .9rem;
    color: #000;
    text-transform: capitalize;
    padding-top: .1rem;
}

.nav .drop {
    max-width: 13.8rem;
    width: 96%;
    margin: 0 auto;
    left: 2.3rem;
    right: 2.3rem;
    top: 1rem;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #FFF;
    line-height: .6rem;
    font-size: .21rem;
    padding: .6rem .7rem;
    border-top: 3px #18565d solid;
    box-shadow: 0 .1rem .15rem rgba(0, 0, 0, .1);
}

.nav .drop::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px transparent solid;
    border-right: 10px transparent solid;
    border-bottom: 10px #18565d solid;
    display: none;
}

.nav .drop .d-box {
    display: flex;
}

.nav .d-box .sub {
    position: relative;
    padding-right: .7rem;
    margin-right: .9rem;
}
.nav .d-box .sub::after {
    content: '';
    position: absolute;
    right: 0;
    top: .2rem;
    width: 1px;
    bottom: .2rem;
    background-color: #9f9e9e;
    opacity: .5;
}

.nav .d-box .cont {
    flex: 1;
}
.nav .d-box .cont>.tit{
    font-size: 0.21rem;
    font-family: 'Poppins-Bold';
    line-height: 1.6;
    margin-bottom: .6em;
}
.nav .d-box .cont .text {
    font-size: .17rem;
    line-height: 1.7;
}
.nav .d-box .cont .pic-con {
    gap: 2%;
    margin-top: 1em;
}
.nav .d-box .cont .pic-con .pic {
    overflow: hidden;
    width: 49%;
    margin: 0%;
    padding-top: 35%;
}
.nav .d-box .cont .pic-con .pic img{
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    height: auto;
}
    

.nav .drop>a {
    border-bottom: 1px #dbdcdc solid;
    padding-left: .1rem;
    color: #000;
}

.nav .drop>a:last-child {
    border-bottom: 0;
}

.nav li:nth-child(3) {
    margin-right: .3rem;
}

.nav li:nth-child(3)>a {
    padding-right: .2rem;
}

.nav li:nth-child(3)>a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 52%;
    width: .08rem;
    height: .08rem;
    border-right: 1px solid #282828;
    border-bottom: 1px solid #282828;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
}

.nav li .drop-truck {
    max-width: 100%;
    width: 100%;
    left: 0;
    margin-left: 0;
    border-top: 2px #e9e8e8 solid;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.nav li .drop-truck::before {
    display: none;
}

.nav li .drop .subnav {
    width: 2.5rem;
    padding-right: .6rem;
    border-right: 1px #18565d solid;
    margin-right: .7rem;
    font-family: 'Montserrat-Regular';
    font-size: .2rem;
    line-height: .52rem;
}

.nav li .drop .subnav .on {
    color: #18565d;
}

.nav li .drop .subnav .more {
    color: #18565d;
    font-size: .21rem;
    font-family: 'Montserrat-ExtraBold';
    text-decoration: underline;
    margin-top: .2rem;
}

.nav li .drop .item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: .4rem;
    border: 1px #d5d8d8 solid;
    padding: .3rem;
}

.nav li .drop .item:nth-child(even) {
    margin-right: 0;
}

.nav li .drop .item .tit {
    font-size: .21rem;
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.6; margin-right.2rem;
}

.nav li .drop .item .more {
    border: 1px #9e9c9c solid;
    line-height: .38rem;
    text-transform: uppercase;
    padding-left: .3rem;
    padding-right: .3rem;
    margin-top: .5rem;
    font-size: .13rem;
    font-family: 'Montserrat-Regular';
}

.nav li .drop .pic {
    overflow: hidden;
    width: 2.5rem;margin-left: .2rem;
}

.header .search {
    width: 2.3rem;
    height: .4rem;
    background-color: #FFF;
    border: 1px #eae9e9 solid;
    margin-top: .1rem;
}

.header .search input[type="text"] {
    width: 100%;
    font-size: .19rem;border: 0;
}

.header .search input[type="submit"] {
    width: .5rem;
    background: url(../images/search.webp)no-repeat center;
    background-size: .19rem;border:0;
}

.header.fixed,
.header.active {
    background-color: #18565d;
}

.header.fixed .logo img.i1,
.header.active .logo img.i1 {
    display: none;
}

.header.fixed .logo img.i2,
.header.active .logo img.i2 {
    display: block;
}

.header.fixed .nav>li>a {
    color: #FFF;
}

.header.fixed .nav li:nth-child(3)>a::after {
    border-right-color: #FFF;
    border-bottom-color: #FFF;
}

.header.fixed .menu-btn,
.header.active .menu-btn {
    background-image: url(../images/menu-white.svg);
}

.header.fixed .menu-btn.menu-btn.close,
.header.active .menu-btn.menu-btn.close {
    background-image: url(../images/close-white.svg);
}

.header.fixed .nav .drop::before {
    border-bottom-color: #FFF;
}

.footer {
    background-color: #18565d;
    color: #FFF;
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.footer .f-nav {
    padding-right: .6rem;
    margin-right: .6rem;
    border-right: 1px rgba(255, 255, 255, .4) solid;
    padding-bottom: .45rem;
}

.footer .f-nav .item {
    padding-top: .2rem;
}

.footer .f-nav .item .tit>a {
    font-size: .24rem;
    font-family: 'Poppins-Medium';
    line-height: 1.2;
    color: #FFF;
    text-transform: uppercase;
}

.footer .f-nav .item .sub {
    margin-top: .25rem;
}

.footer .f-nav .item .sub>a {
    font-size: .19rem;
    font-family: 'Poppins-Light';
    line-height: 2.2;
    color: #FFF;
}

.footer .content {
    width: 5.4rem;
    /* padding-top: .35rem; */
}

.footer .logo img {
    height: .85rem;
}

.footer .copyright {
    font-size: .19rem;
    line-height: 1.7;
    font-family: 'Poppins-Regular';
    margin: -1em 0;
}

.footer .copyright a {
    color: #FFF;
}

.footer .sns {
    margin-top: .2rem;
}

.footer .sns a {
    width: .6rem;
    margin-right: .1rem;
}

.footer .sns img {
    width: 100%;
}

.footer .sns a:last-child {
    margin-right: 0;
}

.kefu {
    position: fixed;
    right: .2rem;
    bottom: .2rem;
    z-index: 99;
    /* display: none; */
}

.kefu .item {
    width: 60px;
    height: 60px;
    margin-top: .15rem;
    cursor: pointer
}

.kefu .item img {
    display: block;
    width: 100%;
    height: 100%
}

.kefu .m-btn {
    width: 60px;
    height: 55px;
    background: #18565d url(../images/menu-white.svg)no-repeat center;
    background-size: 25px;
    margin-top: .15rem;
    cursor: pointer
}

.footer .m-info {
    margin-top: .3rem;
    margin-bottom: .2rem;
}

.footer .m-info>a {
    display: flex;
    align-items: center;
    color: #FFF;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: .2rem;
    font-size: .24rem;
    font-family: 'Poppins-Regular';
}

.footer .m-info>a img {
    width: 1em;
    height: 1em;
    object-fit: contain;
    margin-right: .4em;
}

@media (min-width:1025px) {
    .nav li:hover>a {
        color: #18565d;
    }

    .nav li:hover .drop {
        opacity: 1;
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }

    .nav li:nth-child(3):hover>a::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background-color: #18565d;
    }

    .nav .drop>a:hover {
        background-color: #18565d;
        color: #FFF;
        margin-left: -.1rem;
        padding-left: .2rem;
        margin-right: -.1rem;
    }

    .nav li .drop .item:hover .more {
        color: #FFF;
        background-color: #18565d;
    }

    .nav li .drop .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .footer .f-nav .item a:hover,
    .footer .copyright a:hover {
        opacity: .5;
    }
}

@media (max-width:1199px) {
    body {
        font-size: 17px;
    }

    .header .search {
        order: 1;
        width: 100%;
        height: 40px;
    }

    .header .search input[type="submit"] {
        width: 40px;
        background-size: 18px;
    }

    .header .search input[type="text"],
    .footer .m-info>a {
        font-size: 17px;
    }

    .menu-btn,
    .kefu {
        display: block;
    }

    .nav {
        order: 2;
        display: block;
    }

    .nav-con {
        position: fixed;
        width: 100% !important;
        left: 0;
        top: 1rem;
        overflow-y: scroll !important;
        display: none;
        background-color: #FFF;
        z-index: 999;
        height: calc(100vh - 1rem);
        padding: .2rem !important;
    }

    .nav li {
        margin-right: 0 !important;
        padding-right: 0 !important;
        position: relative;
    }

    .nav li>a {
        font-size: 22px;
        line-height: 60px;
    }

    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 60px;
        width: 30px;
    }

    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }

    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        padding-top: 0;
        background: none;
        padding-bottom: 0;
        margin-left: 0;
        border-top: 0 !important;
        box-shadow: none;
        font-size: 17px;
        padding-right: 0 !important;
        padding-left: 20px !important;
        line-height: 2.6;
    }

    .nav .drop>a {
        border-bottom: 0;
    }

    .nav .drop::before,
    .nav li:nth-child(3)>a::after,
    .nav .drop .content {
        display: none;
    }

    .nav li .drop .subnav {
        width: 100%;
        line-height: 2.6;
        font-size: 18px;
        border-right: 0;
        font-family: 'Montserrat-Medium';
        padding-right: 0;
        margin-right: 0;
    }

    .header.fixed .nav>li>a {
        color: #000;
    }

    .footer .content {
        width: 100%;
        align-items: center;
    }

    .footer .f-nav {
        margin-right: 0;
        padding-right: 0;
        border-right: 0;
    }

    .footer .f-nav .item .tit>a {
        font-size: 21px;
    }

    .footer .f-nav .item .sub>a,
    .footer .copyright {
        font-size: 17px;
    }

    .footer .sns a {
        width: 42px;
    }

    .footer .m-info {
        margin-top: .2rem;
    }

    .footer .m-info>a {
        font-size: 20px;
        margin-top: .2rem;
        background-size: 20px;
        justify-content: center;
    }


    .footer .copyright {
        text-align: center;
    }

    .nav .d-box .sub {
        padding-right: 0;
        margin-right: 0;
    }
    .nav .d-box .sub::after {
        display: none;
    }
    .nav .d-box .cont {
        display: none;
    }

}

@media (max-width:767px) {
    .header .logo {
        height: 65px;
        width: 180px;
    }

    .nav-con {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .footer {
        padding-top: .3rem;
    }

    .footer .logo img {
        height: 45px;
    }

    .footer .f-nav .item {
        width: 100%;
    }

    .footer .f-nav .item .tit {
        line-height: 60px;
        border-bottom: 1px rgba(255, 255, 255, .3) solid;
        font-size: 17px;
    }

    .footer .f-nav .item .tit .arrow {
        position: absolute;
        right: 0;
        top: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        transform: translateY(-50%);
    }

    .footer .f-nav .item .tit .arrow::after {
        content: "";
        width: 100%;
        height: 100%;
        background: url(../images/arrow-white.svg)no-repeat center;
        background-size: 18px;
    }

    .footer .f-nav .item .sub {
        display: none;
        padding-left: 20px;
    }

    .footer .f-nav .item.cur .arrow::after {
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }

    .footer .f-nav .item.cur .sub {
        display: block;
    }

    .footer .f-nav .item.s2 .tit .arrow {
        width: 100%;
        height: 100%;
    }
    .footer .f-nav .item.s2 .tit .arrow::after {
        width: 40px;
        height: 40px;
    }
}

@media (max-width:540px) {
    .header .logo {
        height: 60px;
        width: 170px;
    }

    .nav-con {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

.banner {
    overflow: hidden;
}

.banner img {
    width: 100%;
    transition: all 5s;
    -webkit-transition: all 5s;
    -moz-transition: all 5s;
    -ms-transition: all 5s;
    -o-transition: all 5s;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.banner .swiper-slide {
    overflow: hidden;
}

.banner .swiper-slide-active img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.banner .swiper-button-white {
    background-size: .2rem;
}

.banner .swiper-button-prev {
    left: .6rem;
}

.banner .swiper-button-next {
    right: .6rem;
}

.banner .text-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    width: 9.4rem;
}

.banner .title {
    font-size: .6rem;
    font-weight: bold;
    line-height: 1.35;
    font-family: 'Montserrat-ExtraBold';
}

.banner .text {
    font-size: .27rem;
    line-height: 1.6;
    margin-top: .4rem;
}

.banner .btn {
    font-size: .22rem;
    width: 2.6rem;
    line-height: .75rem;
    background-color: #FFF;
    margin-top: .6rem;
    margin-left: auto;
    margin-right: auto;
}

.banner .mb {
    display: none;
}


/* 视频容器样式 */

.video-slide {
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-video video {
    width: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.video-slide.playing .play-btn {
    display: none;
}

.home-trucks {
    margin-top: .6rem;
}

.home-trucks .title {
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.2;
    font-size: .46rem;
    color: #000;
}

.home-trucks .tabs {
    font-size: .24rem;
    line-height: .7rem;
    margin-top: .6rem;
}

.home-trucks .tabs span {
    margin-right: .7rem;
    padding-left: .7rem;
    padding-right: .7rem;
    cursor: pointer;
}

.home-trucks .tabs span:last-child {
    margin-right: 0;
}

.home-trucks .tabs .on {
    font-family: 'Montserrat-ExtraBold';
    color: #18565d;
}

.home-trucks .tabs .on::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: #18565d;
}

.home-trucks .content .pic {
    width: 9.45rem;
    height: 8.4rem;
    overflow: hidden;
}

.home-trucks .content .text-content {
    background-color: #e8eaeb;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-top: 1.8rem;
}

.home-trucks .content .text-content .tit {
    font-family: 'Montserrat-ExtraBold';
    font-size: .44rem;
    line-height: 1.2;
    color: #000;
}

.home-trucks .content .text-content .text {
    font-size: .25rem;
    line-height: 1.2;
    margin-top: .15rem;
}

.home-trucks .content .text-content .txt {
    font-size: .2rem;
    line-height: 1.6;
    margin-top: .15rem;
}

.home-trucks .content .text-content .des {
    font-size: .19rem;
    line-height: 1.6;
    margin-top: .35rem;
}

.home-trucks .content .text-content .btn {
    margin-top: .95rem;
    padding-left: .1rem;
}

.home-trucks .content .text-content .btn>a {
    width: 43%;
    margin-right: 2%;
    line-height: .63rem;
    font-family: 'Montserrat-ExtraBold';
    color: #18565d;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    background-color: #FFF;
    font-size: .2rem;
}

.home-trucks .content .text-content .btn>a:first-child {
    background-color: #18565d;
    color: #FFF;
}

.home-trucks .content .text-content .btn>a:last-child {
    margin-right: 0;
}

.home-trucks .content .mb-con {
    display: none;
}

.home-solutions {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 6.8rem;
    margin-top: .45rem;
    padding-top: 1.5rem;
    color: #FFF;
}

.home-solutions .title {
    color: #FFF;
    font-size: .43rem;
    line-height: 1.4;
    font-family: 'Montserrat-ExtraBold';
}

.home-solutions .text {
    font-size: .32rem;
    line-height: 1.5;
    margin-top: .7rem;
    width: 8.2rem;
    padding-left: .5rem;
}

.home-solutions .text::before {
    content: '';
    position: absolute;
    left: .2rem;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #18565d;
}

.home-solutions .btn {
    width: 3.2rem;
    line-height: .54rem;
    background-color: #18565d;
    color: #FFF;
    padding-left: .85rem;
    font-size: .19rem;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    margin-top: .65rem;
    margin-left: .15rem;
}

.home-solutions .btn::before {
    content: '';
    position: absolute;
    left: .4rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: .3rem;
    height: .3rem;
    background: url(../images/whatsapp.webp)no-repeat center;
    background-size: 100%;
}

.home-hot {
    background-color: #f7f7f7;
    padding: .85rem .1rem 1.1rem .1rem;
}

.home-hot .title,
.home-who .title {
    font-size: .38rem;
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.2;
    color: #000;
}

.home-hot .more,
.home-who .more {
    font-size: .24rem;
    line-height: 1.2;
    margin-top: .2rem;
    text-decoration: underline;
}

.home-hot .swiper-container {
    margin-top: .9rem;
}

.home-hot .swiper-slide {
    background-color: #FFF;
    border: 1px solid #bbbcbc;
    height: 3.44rem;
    padding: .2rem;
}

.home-hot .swiper-slide .pic {
    width: 3.2rem;
    height: 100%;
    overflow: hidden;
}

.home-hot .swiper-slide .pic img {
    max-width: 100%;
    max-height: 100%;
}

.home-hot .swiper-slide .text-con {
    padding-top: .5rem;
    margin-right: .3rem;
}

.home-hot .swiper-slide .tit {
    font-family: 'Montserrat-ExtraBold';
    font-size: .23rem;
    line-height: 1.4;
}

.home-hot .swiper-slide .btn {
    width: 1.5rem;
    line-height: .34rem;
    font-size: .13rem;
    background-color: #FFF;
    border: 1px solid #9e9c9c;
    margin-top: .4rem;
    color: #383737;
}

.home-hot .button {
    width: 1.3rem;
    margin-left: auto;
    margin-right: auto;
    height: .55rem;
    margin-top: .5rem;
}

.home-hot .swiper-button-next,
.home-hot .swiper-button-prev {
    width: .5rem;
    height: .5rem;
    background-color: #1c8490;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-size: .16rem;
    margin-top: 0;
    top: 0;
}

.home-hot .swiper-button-next::after,
.home-hot .swiper-button-prev::after {
    content: '';
    position: absolute;
    left: -3px;
    top: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px #1c8490 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-hot .swiper-button-prev {
    left: 0;
}

.home-hot .swiper-button-next {
    right: 0;
}

.home-video {
    padding-top: 1.2rem;
    z-index: 10;
}

.home-video::after {
    content: '';
    position: absolute;
    right: 0;
    top: .3rem;
    height: 2.4rem;
    width: 6.5rem;
    background: url(../images/tbg1.webp)repeat-y center top;
    z-index: -1;
}

.home-video .title,
.home-news .title {
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.2;
    font-size: .36rem;
    text-transform: uppercase;
    color: #000;
}

.home-video .txt,
.home-news .txt {
    font-size: .29rem;
    font-family: 'Montserrat-Light';
    margin-top: .05rem;
    text-transform: uppercase;
    color: #000;
    line-height: 1.2;
}

.home-video .content {
    margin-top: .8rem;
    z-index: 11;
}

.home-video .swiper-slide {
    height: 2.8rem;
    overflow: hidden;
    cursor: pointer;
}

.home-video .swiper-slide span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: .61rem;
    height: .57rem;
    background: url(../images/play.webp)no-repeat center;
    background-size: 100%;
    z-index: 5;
}

.home-video .button {
    position: absolute;
    right: 0;
    top: -1.35rem;
    width: 1.4rem;
    height: .48rem;
}

.home-video .swiper-button-white {
    top: 0;
    margin-top: 0;
    width: 50%;
    background-size: .14rem;
    height: .48rem;
    background-color: #2b858e;
}

.home-video .swiper-button-next {
    right: 0;
    -webkit-clip-path: polygon(85% 0, 100% 18%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(85% 0, 100% 18%, 100% 100%, 0 100%, 0 0);
}

.home-video .swiper-button-prev {
    left: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
}

.maskBg {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0
}

.videoShow {
    width: 12.8rem;
    height: 7.6rem;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.maskBg.active {
    opacity: 1;
}

.videoShow.active {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.videoShow .close {
    color: #FFF;
    position: absolute;
    right: 0;
    top: -.3rem;
    background: url(../images/close-white.svg)no-repeat left center;
    background-size: .2rem;
    padding-left: .3rem;
    cursor: pointer;
}

.home-who {
    margin-top: 1.35rem;
}

.home-who .content {
    margin-top: .6rem;
}

.home-who .item {
    width: 50%;
    height: 4rem;
    overflow: hidden;
}

.home-who .item .tit {
    position: absolute;
    left: 1.2rem;
    bottom: .4rem;
    line-height: 1.2;
    color: #FFF;
    font-family: 'Montserrat-Light';
    font-size: .34rem;
    z-index: 5;
}

.home-who .item:nth-child(even) .tit {
    left: .8rem;
}

.home-news {
    padding-top: 1.45rem;
    z-index: 9;
    padding-bottom: .8rem;
}

.home-news .more {
    position: absolute;
    right: 0;
    bottom: .1rem;
    width: 2.3rem;
    line-height: .5rem;
    text-transform: uppercase;
    font-size: .19rem;
    background-color: #484b50;
    color: #FFF;
    font-family: 'Poppins-Medium';
    padding-left: .2rem;
    -webkit-clip-path: polygon(94% 0, 100% 18%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(94% 0, 100% 18%, 100% 100%, 0 100%, 0 0);
}

.home-news .more::after {
    content: '';
    position: absolute;
    right: .2rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: .2rem;
    height: .2rem;
    background: url(../images/arrow1.webp)no-repeat center;
    background-size: 100%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-news::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 6.5rem;
    background: url(../images/tbg1.webp)repeat-y center top;
    z-index: -1;
}

.home-news .content {
    padding-right: 1.2rem;
    margin-top: .8rem;
}

.home-news .text-content {
    background-color: #FFF;
    border-top: 1px #e9e8e8 solid;
    border-left: 1px #e9e8e8 solid;
    border-right: 1px #e9e8e8 solid;
}

.home-news .item {
    border-bottom: 1px #e9e8e8 solid;
    padding: .45rem 1rem .4rem .65rem;
}

.home-news .item .tit {
    font-family: 'Montserrat-ExtraBold';
    font-size: .18rem;
    text-transform: uppercase;
    line-height: 1.5;
    color: #000;
    z-index: 10;
}

.home-news .item .des {
    font-size: .17rem;
    font-family: 'Montserrat-Light';
    color: #666666;
    line-height: 1.6;
    margin-top: .15rem;
    z-index: 10;
}

.home-news .item::after {
    content: '';
    position: absolute;
    right: .2rem;
    top: .3rem;
    z-index: 10;
    width: .24rem;
    height: .24rem;
    background: url(../images/arrow2.webp)no-repeat center;
    background-size: 100%;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.home-news .pic-content {
    width: 12.6rem;
    overflow: hidden;
}

.home-news .pic-content .pic {
    overflow: hidden;
    height: auto;
    padding-top: 66.667%;
}

.home-news .pic-content .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.pub-tool {
    margin-top: .4rem;
    padding-bottom: 1.1rem;
}

.pub-tool .title {
    font-family: 'Poppins-Bold';
    font-size: .48rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.pub-tool .content {
    margin-top: .6rem;
    justify-content: space-around;
}

.pub-tool .item {
    width: 3rem;
    margin-top: .3rem;
    cursor: pointer;
    padding-bottom: .3rem;
}

.pub-tool .item .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.pub-tool .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pub-tool .item .icon img.i2 {
    display: none;
}

.pub-tool .item::after {
    content: '';
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 0;
    height: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-right: 2px #18545e solid;
    border-bottom: 2px #18545e solid;
    z-index: 9;
}

.pub-tool .item::before {
    content: '';
    position: absolute;
    left: -1px;
    top: -1px;
    width: 0;
    height: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-left: 2px #18545e solid;
    border-top: 2px #18545e solid;
    z-index: 9;
}

.pub-tool .item .tit {
    font-size: .21rem;
    line-height: 1.2;
    font-family: 'Poppins-Medium';
    text-transform: uppercase;
    margin-top: .15rem;
}

.pub-tool .item:hover .icon img.i1 {
    display: none;
}

.pub-tool .item:hover .icon img.i2 {
    display: block;
}

.mb-banner {
    display: none;
}

.home-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@keyframes shake {
    0% {
        transform: translateY(2px);
        -webkit-transform: translateY(2px);
        -moz-transform: translateY(2px);
        -ms-transform: translateY(2px);
        -o-transform: translateY(2px);
    }

    10% {
        transform: translateY(-2px);
        -webkit-transform: translateY(-2px);
        -moz-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        -o-transform: translateY(-2px);
    }

    50% {
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
    }

    100% {
        transform: translateY(2px);
        -webkit-transform: translateY(2px);
        -moz-transform: translateY(2px);
        -ms-transform: translateY(2px);
        -o-transform: translateY(2px);
    }
}

@media (min-width:1025px) {

    .banner .btn:hover,
    .home-hot .swiper-slide:hover,
    .home-trucks .content .text-content .btn>a:hover {
        background-color: #18565d;
        color: #FFF;
    }

    .home-trucks .content .pic:hover img,
    .home-hot .swiper-slide:hover .pic img,
    .home-video .swiper-slide:hover img,
    .home-who .item:hover img,
    .home-news .pic-content .pic:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .home-trucks .content .text-content .tit:hover {
        color: #18565d;
    }

    .home-trucks .content .text-content .btn>a:first-child:hover {
        /* background-color: #FFF; */
        /* color: #18565d; */
        text-decoration: underline;
    }

    .home-solutions .title:hover,
    .home-solutions .btn:hover {
        text-decoration: underline;
    }

    .home-video .swiper-button-white:hover,
    .home-hot .swiper-button-white:hover {
        background-color: #18565d;
    }

    .home-news .more:hover,
    .home-news .item:hover::before {
        background-color: #18565d;
    }

    .home-news .more:hover::after {
        transform: translateY(-50%) rotate(45deg);
        -webkit-transform: translateY(-50%) rotate(45deg);
        -moz-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
        -o-transform: translateY(-50%) rotate(45deg);
    }

    .home-news .item:hover::before {
        content: '';
        position: absolute;
        left: -.3rem;
        top: 0;
        right: -.2rem;
        height: 100%;
        z-index: 1;
    }

    .home-news .item:hover::after {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        background-image: url(../images/arrow1.webp);
    }

    .home-news .item:hover .tit,
    .home-news .item:hover .des {
        color: #FFF;
    }

    .pub-tool .item:hover .icon {
        animation: shake 0.5s;
        animation-iteration-count: infinite;
        -webkit-animation: shake 0.5s;
    }

    .pub-tool .item:hover .icon {
        border-color: #18545e;
        /* border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%; */
    }

    .pub-tool .item:hover::before,
    .pub-tool .item:hover::after {
        width: 100%;
        height: 100%;
    }

    .pub-tool .item:hover .tit {
        color: #16505b;
    }

    .pub-tool .item:nth-child(1):hover .icon {
        background-image: url(../images/icon1-on.webp);
    }

    .pub-tool .item:nth-child(2):hover .icon {
        background-image: url(../images/icon2-on.webp);
    }

    .pub-tool .item:nth-child(3):hover .icon {
        background-image: url(../images/icon3-on.webp);
    }

    .pub-tool .item:nth-child(4):hover .icon {
        background-image: url(../images/icon4-on.webp);
    }
}

@media (max-width:1199px) {
    .banner .swiper-button-next {
        right: .2rem;
    }

    .banner .swiper-button-prev {
        left: .2rem;top: 50%;
    }

    .banner .swiper-button-white {
        background-size: 18px;
    }

    .banner img {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    .banner .text-content {
        width: 600px;
    }

    .banner .title {
        font-size: 37px;
    }

    .banner .pc,
    .banner .text-content {
        display: none;
    }

    .banner .mb {
        display: block;
    }

    .banner .text,
    .home-trucks .tabs span,
    .home-trucks .content .text-content .text,
    .home-hot .more,
    .home-who .more,
    .home-news .item .tit,
    .pub-tool .item .tit {
        font-size: 19px;
    }

    .banner .btn {
        width: 190px;
        line-height: 50px;
    }

    .home-trucks .title,
    .home-solutions .title,
    .home-video .title,
    .home-news .title,
    .pub-tool .title {
        font-size: 31px;
    }

    .home-trucks .tabs {
        margin-top: .3rem;
    }

    .home-trucks .tabs span {
        padding-left: .3rem;
        padding-right: .3rem;
        margin-right: .3rem;
        line-height: 50px;
    }

    .home-trucks .content .text-content {
        padding-left: .2rem;
        padding-right: .3rem;
        padding-top: 1rem;
    }

    .home-trucks .content .pic {
        width: 48%;
    }

    .home-trucks .content .text-content .tit,
    .home-hot .title,
    .home-who .title {
        font-size: 29px;
    }

    .banner .btn,
    .home-trucks .content .text-content .txt,
    .home-trucks .content .text-content .btn>a,
    .home-solutions .btn,
    .home-news .item .des {
        font-size: 17px;
    }

    .home-trucks .content .text-content .des,
    .home-hot .swiper-slide .btn,
    .home-news .more {
        font-size: 15px;
    }

    .home-trucks .content .text-content .btn>a {
        line-height: 44px;
        width: 46%;
    }

    .home-solutions {
        height: auto;
        padding-bottom: 1rem;
    }

    .home-solutions .text {
        font-size: 23px;
        width: 600px;
    }

    .home-solutions .btn {
        line-height: 40px;
        width: 250px;
        padding-left: 50px;
    }

    .home-solutions .btn::before {
        width: 20px;
        height: 20px;
        left: 25px;
    }

    .home-hot .swiper-slide .tit,
    .home-video .txt,
    .home-who .item .tit,
    .home-news .txt {
        font-size: 20px;
    }

	.home-hot .swiper-slide .pic{width: 3.6rem;}
    .home-hot .swiper-slide .btn {
        width: 120px;
        line-height: 30px;
    }

    .home-hot .swiper-container {
        margin-top: .6rem;
    }

    .home-hot .button {
        width: 100px;
        height: 40px;
    }

    .home-hot .swiper-button-next,
    .home-hot .swiper-button-prev {
        width: 34px;
        height: 34px;
        background-size: 12px;
    }

    .videoShow {
        width: 90%;
    }

    .home-video .swiper-slide span {
        width: 42px;
        height: 39px;
    }

    .home-video .button {
        width: 100px;
        height: 34px;
    }

    .home-video .swiper-button-white {
        height: 34px;
        background-size: 12px;
    }

    .home-who .item .tit {
        left: .3rem !important;
    }

    .home-news {
        padding-top: 1rem;
    }

    .home-news .content {
        padding-right: 0;
        margin-top: .4rem;
    }

    .home-news .pic-content {
        width: 100%;
        height: auto;
    }

    .home-news .item::after {
        width: 20px;
        height: 20px;
    }

    .home-news .more {
        width: 170px;
        line-height: 36px;
    }

    .home-news .more::after {
        width: 14px;
        height: 14px;
    }

    .pub-tool .item .icon {
        width: 85px;
        height: 85px;
    }
}

@media (max-width:950px) {

    .banner .title,
    .pub-tool .title {
        font-size: 31px;
    }

    .banner .text {
        font-size: 17px;
    }

    .home-trucks .tabs span {
        padding-left: .2rem;
        padding-right: .2rem;
        margin-right: .2rem;
    }

    .home-trucks .content .text-content {
        padding-top: .7rem;
    }

    .home-trucks .content .text-content .btn {
        margin-top: .6rem;
    }

    .home-solutions .title {
        font-size: 27px;
    }

    .home-solutions .text {
        width: 100%;
    }

    .home-solutions .text {
        font-size: 20px;
    }
}

@media (max-width:767px) {
    .mb-banner {
        display: block;
    }

    .pc-banner {
        display: none;
    }

    .banner .text {
        margin-top: .1rem;
    }

    .banner .btn {
        margin-top: .2rem;
    }

    .home-trucks {
        margin-top: .6rem;
    }

    .home-trucks .title,
    .home-video .title,
    .home-news .title,
    .pub-tool .title {
        font-size: 25px;
    }

    .home-trucks .tabs span {
        font-size: 18px;
    }

    .home-trucks .content .pic {
        width: 100%;
        order: 1; height:6rem;
    }

    .home-trucks .content .text-content {
        padding-top: .4rem;
        padding-bottom: .4rem;
        order: 2;
    }

    .home-trucks .content .text-content .tit {
        font-size: 24px;
    }

    .home-trucks .content .text-content .btn>a {
        width: 49%;
    }
	.home-trucks .content .text-content .rich-text p:nth-child(1),.home-trucks .content .text-content .rich-text p:nth-child(2) { display:none}

    .home-solutions {
        padding-top: 1rem;
    }

    .videoShow {
        height: 3.8rem;
    }

    .home-video .txt,
    .home-news .txt {
        font-size: 19px;
    }

    .home-video::after {
        width: 4.2rem;
    }

    .home-who {
        margin-top: .9rem;
    }

    .home-who .item {
        width: 100%;
        height: auto;
        padding-top: 60%;
    }

    .home-who .item img {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .home-news .item {
        padding: .2rem .7rem .2rem .3rem;
    }

    .pub-tool .content {
        margin-top: .2rem;
    }

    .pub-tool .item {
        width: 50%;
    }

    .home-trucks .tabs,
    .home-trucks .content .pc-con {
        display: none;
    }

    .home-trucks .content .mb-con {
        display: block;
        margin-top: .4rem;
    }

    .home-trucks .content .mb-con .swiper-button-black {
        margin-top: 0;
        background-size: 20px;
        top: 25%;
    }
	.home-trucks .content .mb-con .swiper-button-next, .swiper-button-prev{top: 33%;}
}

@media (max-width:540px) {
    .banner .text-content {
        width: 100%;
    }

    .banner .text {
        display: none;
    }

    .banner .title {
        font-size: 23px;
    }

    .banner .btn {
        line-height: 42px;
        width: 170px;
    }

    .home-video .swiper-slide {
        height: auto;
        padding-top: 60%;
    }

    .home-video .swiper-slide img {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .home-news .more {
        bottom: .5rem;
    }
}

@media (max-width:375px) {
    .banner .title {
        font-size: 20px;
    }

    .banner .btn {
        font-size: 13px;
        line-height: 34px;
        width: 130px;
    }
}

.n-banner {
    overflow: hidden;
}

.n-banner img {
    width: 100%;
}

.n-banner .title {
    position: absolute;
    left: 2.4rem;
    bottom: .4rem;
    color: #FFF;
    z-index: 9;
    font-size: .52rem;
    line-height: 1.2;
    font-family: 'Poppins-Light';
}

.n-banner .title span {
    font-family: 'Poppins-Bold';
    margin-right: .1rem;
}

.pub-con {
    border-bottom: 1px #e5e5e5 solid;
}

.crumbs {
    line-height: .6rem;
    font-size: .15rem;
    font-family: 'Poppins-Medium';
}

.crumbs a {
    margin-right: .1rem;
    font-family: 'Poppins-Light';
    padding-right: 20px;
    color: #000;
}

.crumbs a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #001e50;
}

.pub-sub {
    line-height: .6rem;
    font-size: .2rem;
}

.pub-sub>a {
    margin-right: .3rem;
}

.pub-sub>a:last-child {
    margin-right: 0;
}

.pub-sub>a.on {
    color: #18565d;
}

.pub-sub>a.on::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background-color: #18565d;
}

.pub-ad {
    width: 100%;
    overflow: hidden;
    height: 4.8rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
    padding-top: 1rem;
}

.pub-ad .title {
    font-size: .34rem;
    line-height: 1.2;
    font-family: 'Roboto-Medium';
    text-transform: uppercase;
}

.pub-ad .text {
    font-size: .25rem;
    line-height: 1.6;
    margin-top: .3rem;
    font-family: 'Roboto-Regular';
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.pub-ad .more {
    margin-left: auto;
    margin-right: auto;
    font-size: .2rem;
    border: 2px #FFF solid;
    font-family: 'Roboto-Medium';
    width: 2.4rem;
    line-height: .5rem;
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
    color: #FFF;
    margin-top: .7rem;
}

@media (min-width:1025px) {
    .crumbs a:hover {
        color: #18565d;
    }

    .pub-ad .more:hover {
        background-color: #FFF;
        color: #000;
    }

    .pub-sub>a:hover::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 3px;
        background-color: #18565d;
    }
}

@media (max-width:1199px) {
    .crumbs {
        word-wrap: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .n-banner .title {
        left: .2rem;
        font-size: 35px;
    }

    .pub-sub {
        display: none;
    }

    .pub-ad {
        height: auto;
        padding-bottom: 1rem;
    }

    .pub-ad .title {
        font-size: 25px;
    }

    .pub-ad .text {
        font-size: 19px;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .pub-ad .more {
        width: 180px;
        line-height: 40px;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        font-size: 17px;
    }
}

@media (max-width:950px) {
    .pub-ad .text {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width:767px) {
    .n-banner .title {
        bottom: .2rem;
        font-size: 26px;
    }

    .pub-ad {
        padding-top: .7rem;
        padding-bottom: .7rem;
    }

    .pub-ad .more {
        margin-top: .4rem;
    }
}

.about .a-txt {
    font-size: .24rem;
    font-family: 'Montserrat-Light';
    line-height: 1.6;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: .7rem;
}

.about .pic-content {
    margin-top: .9rem;
    padding-right: 2.4rem;
}

.about .pic-content .pic {
    width: 9rem;
    height: 5.54rem;
    overflow: hidden;
    margin-right: 1rem;
}

.about .pic-content .tit,
.about .about-video .tit {
    font-size: .2rem;
    line-height: 1.2;
    color: #18545e;
    font-family: 'Poppins-Bold';
    margin-top: .25rem;
}

.about .pic-content .title,
.about .about-video .title {
    font-family: 'Montserrat-ExtraBold';
    font-size: .38rem;
    line-height: 1.2;
    color: #000;
    margin-top: .3rem;
}

.about .pic-content .txt,
.about .about-video .txt {
    font-family: 'Montserrat-Light';
    font-size: .38rem;
    line-height: 1.2;
    color: #000;
    margin-top: .1rem;
}

.about .pic-content .des,
.about .about-video .des {
    line-height: 1.78;
    margin-top: .3rem;
}

.about .pic-content .more,
.about .about-video .more {
    font-family: 'Montserrat-Medium';
    color: #18545e;
    text-decoration: underline;
    font-size: .21rem;
    margin-top: .65rem;
}

.about .pic-content .more::after,
.about .about-video .more::after {
    content: '';
    width: .21rem;
    height: .21rem;
    background: url(../images/arrow3.webp)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.about .about-video {
    margin-top: 1.1rem;
    padding-top: .55rem;
    z-index: 9;
    padding-left: 2.4rem;
}

.about .about-video::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 2.4rem;
    height: 100%;
    z-index: -1;
    background-color: #18545e;
}

.about .about-video .play {
    width: 10.5rem;
    height: 6.6rem;
    overflow: hidden;
    z-index: 9;
    cursor: pointer;
}

.about .about-video .play span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 1.3rem;
    height: .9rem;
    background: url(../images/play1.webp)no-repeat center;
    background-size: 100%;
    z-index: 9;
}

.about .about-video .text-con {
    padding-top: .1rem;
    margin-right: .5rem;
}

.about .about-video .tit,
.about .about-video .text-con>a,
.about .about-video .des,
.about .about-video .txt {
    color: #FFF;
}

.about .about-video .des {
    margin-top: .5rem;
}

.about .about-video .more {
    margin-top: .8rem;
}

.about .about-video .more::after {
    background-image: url(../images/arrow4.webp);
}

.about .People-Oriented {
    margin-top: 1.3rem;
}

.about .People-Oriented .title {
    font-size: .44rem;
    font-family: 'Poppins-Light';
    line-height: 1.2;
}

.about .People-Oriented .title span {
    font-family: 'Poppins-Bold';
}

.about .People-Oriented .text {
    margin-top: .3rem;
    line-height: 1.7;
    font-size: .19rem;
    font-family: 'Poppins-Light';
    padding-left: .8rem;
    padding-right: .8rem;
}

.about .People-Oriented .content {
    margin-top: .6rem;
}

.about .People-Oriented .item {
    width: 7.2rem;
}

.about .People-Oriented .item .pic {
    overflow: hidden;
    padding-top: 65%;
}

.about .People-Oriented .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.about .People-Oriented .item .tit {
    margin-top: .25rem;
    font-size: .27rem;
    font-family: 'Poppins-Bold';
    line-height: 1.5;
}

.about .People-Oriented .item .des {
    font-size: .16rem;
    line-height: 1.7;
    margin-top: .25rem;
    color: #000;
}

.about .People-Oriented .item .more {
    font-size: .2rem;
    color: #18565d;
    line-height: 1.2;
    margin-top: .65rem;
    font-family: 'Montserrat-Medium';
    text-decoration: underline;
}

.about .People-Oriented .item .more::after {
    content: '';
    width: .21rem;
    height: .21rem;
    background: url(../images/arrow3.webp)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.about .People-Oriented .item:first-child {
    width: 6rem;
    padding-top: .55rem;
}

.about .People-Oriented .item:first-child .pic {
    padding-top: 61%;
}

.about .Milestones {
    margin-top: 1.65rem;
}

.about .Milestones .title {
    font-size: .47rem;
    line-height: 1.2;
    font-family: 'Montserrat-ExtraBold';
}

.about .Milestones .text {
    line-height: 1.7;
    font-size: .2rem;
    margin-top: .15rem;
    font-family: 'Poppins-Regular';
}

.about .Milestones .content {
    height: 7.2rem;
    background: url(../images/bg.webp)no-repeat center top;
    background-size: cover;
    margin-top: .4rem;
    padding-top: .9rem;
    padding-bottom: .5rem;
}

.about .Milestones .swiper-container {
    padding-top: .2rem;
}

.about .Milestones .swiper-container::after {
    content: '';
    position: absolute;
    left: 0;
    top: .05rem;
    height: 1px;
    width: 100%;
    background-color: #FFF;
}

.about .Milestones .year {
    color: #FFF;
    font-family: 'Poppins-Bold';
    font-size: .5rem;
    line-height: 1.2;
}

.about .Milestones .year::after {
    content: '';
    position: absolute;
    left: 0;
    top: -.2rem;
    width: .12rem;
    height: .12rem;
    background-color: #FFF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.about .Milestones .text-con {
    background-color: #FFF;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    overflow: hidden;
    margin-top: .3rem;
}

.about .Milestones .text-con .txt {
    padding: .3rem .2rem;
    height: 1.7rem;
    line-height: 1.7;
    font-size: .15rem;
}

.about .Milestones .text-con .pic {
    overflow: hidden;
    padding-top: 57%;
}

.about .Milestones .text-con .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.about .Milestones .button {
    margin-top: .5rem;
    height: .55rem;
    width: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.about .Milestones .swiper-button-white {
    width: .55rem;
    height: .55rem;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 3px #FFF solid;
    margin-top: 0;
    top: 0;
    background-size: .16rem;
}

.about .Gathering {
    padding-left: 2.4rem;
    padding-right: 1.2rem;
    margin-top: 1.3rem;
    padding-bottom: .6rem;
}

.about .Gathering .pic {
    width: 9.35rem;
    overflow: hidden;
}

.about .Gathering .pic img {
    width: 100%;
}

.about .Gathering .text-con {
    margin-right: .4rem;
    padding-top: .5rem;
}

.about .Gathering .tit {
    font-size: .21rem;
    color: #18565d;
    line-height: 1.2;
    font-family: 'Poppins-Bold';
}

.about .Gathering .title {
    font-family: 'Montserrat-Light';
    font-size: .39rem;
    line-height: 1.2;
    margin-top: .15rem;
}

.about .Gathering .title span {
    font-family: 'Montserrat-ExtraBold';
}

.about .Gathering .text {
    font-size: .19rem;
    line-height: 1.75;
    margin-top: .5rem;
}

.about .Gathering .btn {
    background-color: #18565d;
    color: #FFF;
    text-decoration: underline;
    line-height: .56rem;
    border-radius: .28rem;
    -webkit-border-radius: .28rem;
    -moz-border-radius: .28rem;
    -ms-border-radius: .28rem;
    -o-border-radius: .28rem;
    font-size: .18rem;
    font-family: 'Poppins-Bold';
    width: 3.3rem;
    margin-top: .9rem;
}

.about .Gathering .btn::after {
    content: '';
    width: .21rem;
    height: .21rem;
    background: url(../images/arrow4.webp)no-repeat center;
    background-size: 100%;
    margin-left: .2rem;
}

@media (min-width:1025px) {

    .about .pic-content .pic:hover img,
    .about .about-video .play:hover img,
    .about .People-Oriented .item:hover .pic img,
    .about .Milestones .swiper-slide:hover .pic img,
    .about .Gathering .pic:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .about .pic-content .title:hover {
        color: #18545e;
    }

    .about .pic-content .more:hover,
    .about .People-Oriented .item:hover .more {
        text-decoration: none;
        color: #000;
    }

    .about .about-video .text-con>a:hover {
        text-decoration: underline;
        opacity: .5;
    }

    .about .People-Oriented .item:hover .tit {
        text-decoration: underline;
        color: #18545e;
    }

    .about .Milestones .swiper-button-white:hover {
        opacity: .5;
    }

    .about .Gathering .btn:hover {
        text-decoration: none;
        background-color: #000;
    }
}

@media (max-width:1199px) {
    .crumbs {
        font-size: 15px;
        line-height: 50px;
    }

    .about .a-txt {
        font-size: 19px;
        padding-left: 0;
        padding-right: 0;
    }

    .about .pic-content {
        padding-right: .2rem;
    }

    .about .pic-content .pic {
        width: 55%;
        margin-right: .4rem;
    }

    .about .pic-content .tit {
        margin-top: .1rem;
    }

    .about .pic-content .title {
        margin-top: .2rem;
    }

    .about .pic-content .tit,
    .about .pic-content .more,
    .about .about-video .tit,
    .about .about-video .more,
    .about .People-Oriented .text,
    .about .People-Oriented .item .more,
    .about .Milestones .text,
    .about .Gathering .tit,
    .about .Gathering .text {
        font-size: 17px;
    }

    .about .pic-content .title,
    .about .pic-content .txt,
    .about .about-video .title,
    .about .about-video .txt,
    .about .Gathering .title {
        font-size: 27px;
    }

    .about .pic-content .des,
    .about .about-video .des,
    .about .People-Oriented .item .des,
    .about .Milestones .text-con .txt,
    .about .Gathering .btn {
        font-size: 16px;
    }

    .about .pic-content .more,
    .about .about-video .more {
        margin-top: .3rem;
    }

    .about .about-video {
        padding-left: .2rem;
    }

    .about .about-video .play {
        width: 55%;
    }

    .about .People-Oriented {
        margin-top: .9rem;
    }

    .about .People-Oriented .title,
    .about .Milestones .title {
        font-size: 31px;
    }

    .about .People-Oriented .text {
        padding-left: 0;
        padding-right: 0;
    }

    .about .People-Oriented .item .tit {
        font-size: 21px;
    }

    .about .Milestones .content {
        height: auto;
    }

    .about .Milestones .text-con .txt {
        height: calc(102px + .6rem);
    }

    .about .Milestones .button {
        width: 110px;
    }

    .about .Milestones .swiper-button-white {
        width: 38px;
        height: 38px;
        background-size: 12px;
    }

    .about .Milestones {
        margin-top: 1rem;
    }

    .about .Gathering {
        padding-left: .2rem;
        padding-right: .2rem;
        margin-top: 1rem;
    }

    .about .Gathering .btn {
        line-height: 40px;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        width: 240px;
    }

    .about .Gathering .pic {
        width: 55%;
    }

    .about .Gathering .text-con {
        padding-top: .2rem;
        margin-right: 0;
    }
}

@media (max-width:950px) {
    .about .pic-content {
        padding-left: .2rem;
    }

    .about .pic-content .text-con {
        margin-top: .3rem;
    }

    .about .pic-content .pic {
        width: 100%;
        margin-right: 0;
        height: auto;
        padding-top: 55%;
    }

    .about .pic-content .pic img,
    .about .about-video .play img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .about .about-video {
        padding-bottom: .5rem;
        padding-right: .2rem;
    }

    .about .about-video .play {
        width: 100%;
        height: auto;
        padding-top: 55%;
        order: 1;
    }

    .about .about-video .text-con {
        order: 2;
        margin-right: 0;
        margin-top: .3rem;
    }

    .about .about-video::after {
        right: 0;
    }

    .about .Gathering .text-con {
        padding-top: 0;
    }

    .about .Gathering .btn {
        margin-top: .5rem;
    }
}

@media (max-width:767px) {
    .crumbs {
        font-size: 13px;
    }

    .about .a-txt,
    .about .pic-content {
        margin-top: .5rem;
    }

    .about .People-Oriented .content {
        margin-top: .2rem;
    }

    .about .People-Oriented .item,
    .about .Gathering .pic {
        width: 100% !important;
        margin-top: .4rem;
    }

    .about .People-Oriented .item:first-child {
        padding-top: 0;
    }

    .about .People-Oriented .item .more {
        margin-top: .4rem;
    }
}

@font-face {
    font-family: 'Roboto-Black';
    src: url(../fonts/Roboto-Black.ttf);
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url(../fonts/Roboto-Bold.ttf);
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: 'Roboto-Light';
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url(../fonts/Roboto-Medium.ttf);
}

.Company {
    padding-top: .25rem;
    padding-bottom: 1.4rem;
    overflow: hidden;
}

.Company .text {
    font-size: .2rem;
    font-family: 'Roboto-Light';
    line-height: 1.9;
    margin-top: .4rem;
}

.Company .num-con {
    margin-top: .65rem;
    margin-bottom: 1.05rem;
}

.Company .num-con .icon {
    height: 1.5rem;
}

.Company .num-con .icon img {
    height: 100%;
}

.Company .num-con .tit {
    font-size: .34rem;
    font-family: 'Roboto-Medium';
    line-height: 1.2;
    color: #18565d;
    margin-top: .15rem;
}

.Company .num-con .txt {
    font-size: .18rem;
    line-height: 1.2;
    color: #666;
    margin-top: .2rem;
    font-family: 'Roboto-Regular';
}

.Company .tit1 {
    font-family: 'Roboto-Bold';
    font-size: .37rem;
    line-height: 1;
    margin-top: 1.15rem;
    margin-bottom: .45rem;
}

.Company .car-img {
    margin-top: .55rem;
    overflow: hidden;
    margin-bottom: .55rem;
}

.Company .car-img img {
    width: 100%;
}

.Company .pic-con {
    margin-top: .65rem;
}

.Company .pic-con .pic {
    width: 49.2%;
}

.Company .pic-con .text {
    margin-top: .5rem;
    line-height: 1.8;
}

.Company .pic-con .text p {
    margin-bottom: .3rem;
}

.Company .pic-con .text p:last-child {
    margin-bottom: 0;
}

.Company .Testing .tit1 {
    margin-top: .95rem;
}

.Company .Testing .text-content {
    margin-top: 0;
}

.Company .Testing .text-content .item {
    background-color: #e8eded;
    overflow: hidden;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    padding: .35rem .3rem;
    height: 1.7rem;
    width: 32%;
    margin-top: .25rem;
}

.Company .Testing .text-content .item:nth-child(1),
.Company .Testing .text-content .item:nth-child(2) {
    width: 48.5%;
    height: 1.6rem;
}

.Company .Testing .text-content .item .tit {
    font-size: .27rem;
    line-height: 1.2;
    font-family: 'Roboto-Medium';
}

.Company .Testing .text-content .item .txt {
    font-size: .2rem;
    font-family: 'Roboto-Light';
    line-height: 1.7;
    margin-top: .15rem;
}

.Company .Testing .photo-con {
    margin-top: .7rem;
}

.Company .Testing .photo-con img {
    width: 100%;
}

.Company .Testing .photo-con>div {
    overflow: hidden;
}

.Company .Testing .photo-con>div:first-child {
    margin-right: .15rem;
}

.Company .Testing .photo-con>div:last-child {
    width: 5.85rem;
}

.Company .Testing .text {
    margin-top: .8rem;
    line-height: 1.8;
}

.People {
    margin-top: .8rem;
}

.People .p-txt {
    font-family: 'Montserrat-Light';
    font-size: .2rem;
    line-height: 1.85;
}

.People .title {
    font-size: .34rem;
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.5;
    color: #000;
}

.People .txt {
    font-size: .21rem;
    line-height: 1.8;
    font-family: 'Montserrat-Light';
}

.People .p-con {
    margin-top: .7rem;
}

.People .p-con .txt {
    margin-top: .3rem;
}

.People .p-con .txt:last-child {
    margin-top: .4rem;
}

.People .p-con .pic {
    margin-top: .5rem;
}

.People .p-con .pic img {
    width: 100%;
}

.People .text-content {
    margin-top: 1rem;
}

.People .text-content .item {
    width: 48%;
    margin-bottom: .65rem;
}

.People .text-content .item .tit {
    font-size: .24rem;
    line-height: 1.7;
    font-family: 'Montserrat-ExtraBold';
}

.People .text-content .item .des {
    line-height: 1.55;
    font-size: .21rem;
    font-family: 'Montserrat-Light';
    margin-top: .2rem;
    word-break: break-all;
}

.People .adv-content {
    margin-top: .8rem;
}

.People .adv-content .txt {
    margin-top: .2rem;
}

.People .adv-content .pic-content {
    margin-top: .6rem;
}

.People .adv-content .pic-content .pic {
    margin-bottom: .35rem;
    height: 4.5rem;
    width: 48.5%;
}

.People .content {
    background-color: #f1f3f4;
    margin-top: .7rem;
    padding-top: .85rem;
    padding-bottom: 1.4rem;
}

.People .content .item {
    margin-bottom: .7rem;
}

.People .content .item:last-child {
    margin-bottom: 0;
}

.People .content .item .pic {
    width: 7.35rem;
    height: 4.5rem;
    overflow: hidden;
    margin-right: .6rem;
}

.People .content .item .tit {
    font-size: .34rem;
    line-height: 1.3;
    font-family: 'Montserrat-ExtraBold';
    color: #000;
    margin-top: .15rem;
}

.People .content .item .des {
    font-size: .21rem;
    font-family: 'Montserrat-Light';
    line-height: 1.8;
    margin-top: .4rem;
}

@media (min-width:1025px) {
    .Company .Testing .photo-con>div:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
}

@media (max-width:1199px) {

    .Company .text,
    .Company .Testing .text-content .item .txt,
    .People .p-txt,
    .People .txt,
    .People .text-content .item .des,
    .People .content .item .des {
        font-size: 17px;
    }

    .Company .num-con .tit,
    .People .content .item .tit {
        font-size: 25px;
    }

    .Company .num-con .txt {
        font-size: 15px;
    }

    .Company .tit1,
    .People .title {
        font-size: 27px;
    }

    .Company .Testing .text-content .item .tit,
    .People .text-content .item .tit {
        font-size: 21px;
    }

    .Company .Testing .text-content .item {
        height: auto !important;
    }
}

@media (max-width:767px) {
    .Company {
        padding-top: 0;
    }

    .Company .text,
    .Company .pic-con,
    .Company .Testing .text {
        margin-top: .3rem;
    }

    .Company .num-con .item {
        width: 33.333%;
    }

    .Company .num-con .item:nth-child(4),
    .Company .num-con .item:nth-child(5) {
        width: 50%;
    }

    .Company .num-con {
        margin-bottom: 0;
    }

    .Company .tit1 {
        margin-top: .4rem;
        margin-bottom: 0;
    }

    .Company .Testing .photo-con {
        display: block;
        margin-top: .3rem;
    }

    .Company .Testing .photo-con>div:first-child {
        margin-right: 0;
    }

    .Company .Testing .photo-con>div:last-child {
        width: 100%;
        margin-top: .2rem;
    }

    .Company .car-img {
        margin-top: .3rem;
        margin-bottom: .3rem;
    }

    .Company .Testing .tit1 {
        margin-top: .5rem;
    }

    .People,
    .People .p-con {
        margin-top: .4rem;
    }

    .Company .tit1,
    .People .title {
        font-size: 25px;
    }

    .People .text-content,
    .People .adv-content {
        margin-top: .5rem;
    }

    .People .text-content .item {
        width: 100%;
        margin-bottom: .3rem;
    }

    .People .adv-content .pic-content .pic {
        width: 100%;
        height: auto;
        padding-top: 65%;
    }

    .People .adv-content .pic-content .pic img,
    .People .content .item .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .People .content .item .pic {
        width: 100%;
        margin-right: 0;
        height: auto;
        padding-top: 65%;
    }

    .Company .Testing .text-content .item {
        width: 100% !important;
    }
}

@media (max-width:540px) {
    .Company .num-con .item {
        width: 50% !important;
    }

    .Company .pic-con .pic {
        width: 100%;
        margin-bottom: .2rem;
    }
}

.car-home {
    padding-bottom: 1.2rem;
    padding-top: .5rem;
}

.car-home .title {
    font-size: .34rem;
    font-family: 'Poppins-Bold';
    line-height: 1.6;
}

.car-home .text {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    font-size: .2rem;
    font-family: 'Poppins-Light';
    line-height: 1.7;
    margin-top: .25rem;
    padding-bottom: .3rem;
}

.car-home .text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #18565d;
    height: 5px;
    width: 2rem;
}

.car-home .item {
    margin-top: .7rem;
    width: 49.25%;
    overflow: hidden;
    height: 9.5rem;
}

.car-home .item .text-con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9;
    color: #FFF;
    padding: .7rem .6rem;
}

.car-home .item .year {
    font-family: 'Poppins-Regular';
    font-size: .17rem;
    background-color: #dde8f9;
    line-height: .28rem;
    padding: 0 .15rem;
    color: #282828;
}

.car-home .item .tit {
    font-size: .44rem;
    line-height: 1.2;
    font-family: 'Poppins-Bold';
    text-transform: uppercase;
    margin-top: .15rem;
}

.car-home .item .txt {
    font-size: .22rem;
    font-family: 'Poppins-Medium';
    margin-top: .15rem;
}

.car-home .item .des {
    font-family: 'Poppins-Regular';
    font-size: .17rem;
    line-height: 1.7;
    margin-top: .35rem;
    height: .87rem;
    overflow: hidden;
}

.car-home .item .more {
    width: 4.5rem;
    line-height: .7rem;
    border: 2px #FFF solid;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    font-family: 'Poppins-SemiBold';
    margin-top: .5rem;
}

.car-list {
    padding-top: .3rem;
}

.car-list .car-menu>a {
    padding: 0 .1rem;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    height: .65rem;
}

.car-list .car-menu>a .icon {
    width: .7rem;
    height: .4rem;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.car-list .car-menu>a .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.car-list .car-menu>a .icon img.i2 {
    display: none;
}

.car-list .car-menu>a .tit {
    font-size: .2rem;
    font-family: 'Poppins-Medium';
    line-height: 1;
    margin-top: .05rem;
}

.car-list .car-menu>a.on {
    background-color: #18545e;
    color: #FFF;
}

.car-list .car-menu>a.on .icon img.i1,
.car-list .car-menu>a:hover .icon img.i1 {
    display: none;
}

.car-list .car-menu>a.on .icon img.i2,
.car-list .car-menu>a:hover .icon img.i2 {
    display: block;
}

.car-list .list {
    background-color: #f6f6f6;
    padding-top: .47rem;
    padding-bottom: 1.2rem;
    margin-top: .45rem;
}

.car-list .list .item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: .45rem;
    background-color: #FFF;
    overflow: hidden;
}

.car-list .list .item:nth-of-type(3n) {
    margin-right: 0;
}

.car-list .list .item .pic {
    overflow: hidden;
    padding-top: 70%;
}

.car-list .list .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.car-list .list .item .text-con {
    padding: .3rem;
}

.car-list .list .item .tit {
    font-family: 'Roboto-Bold';
    font-size: .25rem;
    line-height: 1.2; height:.6rem
}

.car-list .list .item .text {
    font-size: .15rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Poppins-Regular';
    margin-top: .15rem;height: 56px;
}

.car-list .list .item .btn>a {
    line-height: .5rem;
    border: 1px #18545e solid;
    font-family: 'Poppins-SemiBold';
    color: #18545e;
}

.car-list .list .item .btn>a:first-child {
    font-family: 'Poppins-Bold';
}

.car-list .list .item .btn>a:first-child::after {
    content: '';
    width: .29rem;
    height: .3rem;
    background: url(../images/icon10.webp)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.car-list .list .item .btn>a:last-child {
    width: 1.9rem;
    background-color: #18545e;
    color: #FFF;
    text-transform: uppercase;
}

.page {
    margin-top: .6rem;
}

.page a {
    border: 1px #6c6c6c solid;
    line-height: .5rem;
    width: .5rem;
    border: 1px #6d6d6d solid;
    margin-right: .05rem;
    background-color: #FFF;
}

.page a:last-child {
    margin-right: 0;
}

.page a.on {
    background-color: #18545e;
    color: #FFF;
}

.page .prev {
    color: transparent !important;
    background: #FFF url(../images/prev.webp)no-repeat center;
}

.page .next {
    color: transparent !important;
    background: #FFF url(../images/next1.webp)no-repeat center;
}

.car-detail .info-contnet {
    background: url(../images/bg1.webp)no-repeat center top;
    background-size: 100%;
    padding-top: 1rem;
}

.car-detail .info-contnet .focus {
    width: 57%;
    overflow: hidden;
}

.car-detail .info-contnet .focus .swiper-slide {
    overflow: hidden;
    padding-top: 68.2%;
}

.car-detail .info-contnet .focus .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.car-detail .info-contnet .focus .swiper-button-next,
.car-detail .info-contnet .focus .swiper-button-prev {
    background: url(../images/next.webp)no-repeat center;
    background-size: 100%;
    width: .42rem;
    height: .72rem;
}

.car-detail .info-contnet .focus .swiper-button-prev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.car-detail .info-contnet .text-content {
    color: #FFF;
    padding-top: .15rem;
    margin-right: .6rem;
}

.car-detail .info-contnet h1 {
    font-size: .46rem;
    line-height: 1.6;
    font-family: 'Roboto-Black';
}

.car-detail .info-contnet .text {
    font-size: .23rem;
    line-height: 2;
    margin-top: .4rem;
}

.car-detail .info-contnet .btn {
    margin-top: .7rem;
}

.car-detail .info-contnet .btn .item {
    font-size: .21rem;
    font-family: 'Roboto-Black';
    color: #18545e;
    padding: .4em;
    background-color: #FFF;
    border-radius: 50%;
    margin-right: .15rem;
}

.car-detail .info-contnet .btn .item.s2 {
    border-radius: 2em;
    padding: .4em 1em;
}

.car-detail .info-contnet .btn .item span {
    margin-right: .6em;
}

.car-detail .info-contnet .btn .item img {
    width: 3em;
    height: 3em;
}



.car-detail .menu_scroll {
    border-bottom: 1px solid #d4d4d4;
    line-height: .8rem;
    margin-top: .3rem;
}

.car-detail .menu_scroll li {
    margin-right: .4rem;
    font-size: .25rem;
    font-family: 'Roboto-Medium';
    cursor: pointer;
}

.car-detail .menu_scroll li.active {
    color: #18545e;
    font-weight: bold;
}

.car-detail .menu_scroll li:hover {
    color: #18545e;
}

.car-detail .Overview {
    margin-top: .65rem;
}

.car-detail .Overview .title {
    font-size: .44rem;
    line-height: 1.2;
    font-family: 'Roboto-Black';
}

.car-detail .Overview .txt {
    font-size: .24rem;
    font-family: 'Roboto-Regular';
    line-height: 1.7;
    margin-top: .55rem;
}

.car-detail .Specifications {
    margin-top: .7rem;
}

.car-detail .Specifications .item {
    gap: .9rem;
    margin-bottom: 0.8rem;
}

.car-detail .Specifications .item.left_txt {
    flex-direction: row-reverse;
}

.car-detail .Specifications .item:last-child {
    margin-bottom: 0;
}

.car-detail .Specifications .item .pic {
    width: 50.512%;
    height: auto;
    overflow: hidden;
    cursor: pointer;
}

.car-detail .Specifications .item .pic span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: .94rem;
    height: .66rem;
    z-index: 10;
    background: url(../images/play1.webp) no-repeat center;
    background-size: 100%;
}

.car-detail .Specifications .item .tit {
    font-size: .4rem;
    line-height: 1.2;
    font-family: 'Roboto-Black';
}

.car-detail .Specifications .item .text {
    font-size: .22rem;
    font-family: 'Roboto-Regular';
    line-height: 2;
}

.car-detail .Function {
    background-color: #f3f3f3;
    margin-top: 1rem;
    padding-top: .7rem;
    padding-bottom: .75rem;
}

.car-detail .Function .title,
.car-detail .Gallery .title,
.car-detail .Album .title {
    font-family: 'Roboto-Black';
    line-height: 1.2;
    font-size: .44rem;
    color: #000;
}

.car-detail .Function .item {
    width: 49%;
    overflow: hidden;
    margin-top: .55rem;
    margin-bottom: .2rem;
}

.car-detail .Function .item .pic {
    overflow: hidden;
    padding-top: 58.91%;
}

.car-detail .Function .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.car-detail .Function .item .tit {
    font-size: .33rem;
    line-height: 1.2;
    font-family: 'Roboto-Bold';
    margin-top: .5rem;
}

.car-detail .Function .item .des {
    font-size: .2rem;
    font-family: 'Roboto-Regular';
    line-height: 1.6;
    margin-top: .3rem;
}

.car-detail .Gallery {
    margin-top: 1.2rem;
}

.car-detail .Gallery .content {
    margin-top: .6rem;
}
.car-detail .Gallery .content .table-scroll table {border:1px solid #dfdfdf}

.car-detail .Gallery .content img {
    max-width: 100%;
}
.car-detail .Gallery .content .table-scroll{overflow: auto;}
.car-detail .Gallery .content .table-scroll table td{padding: .1rem;line-height: .3rem;}


.car-detail .Album {
    margin-top: .9rem;
}

.car-detail .Album .text {
    line-height: 1.7;
    font-size: .22rem;
    font-family: 'Roboto-Regular';
    margin-top: .4rem;
}

.car-detail .Album .content {
    margin-top: .6rem;
}

.car-detail .Album .pic {
    margin-right: .1rem;
    margin-top: .1rem;
    width: calc(33.333% - .07rem);
    cursor: pointer;
    height: 4.45rem;
    overflow: hidden;
}

.car-detail .Album .pic:nth-of-type(3n) {
    margin-right: 0;
}

.car-detail .from-content {
    margin-top: .8rem;
}

.car-detail .from-content .title {
    font-size: .37rem;
    line-height: 1.2;
    font-family: 'Roboto-Black';
}

.car-detail .from-content .text {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
    font-size: .22rem;
    font-family: 'Roboto-Regular';
    margin-top: .4rem;
}

.car-detail .from-content .content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin-top: .85rem;
}

.car-detail .from-content .fluentform .ff-el-group {
    margin-bottom: .2rem;
}

.car-detail .from-content .fluentform .ff-el-input--label {
    font-size: .19rem;
    font-family: 'Roboto-Regular';
    line-height: 1.2;
    color: #000;
    padding-left: .5em;
    margin-bottom: 0;
}

.car-detail .from-content .fluentform .ff-el-input--content {
    margin-top: .1rem;
}

.car-detail .from-content .fluentform input,
.car-detail .from-content .fluentform textarea {
    border: 1px #464646 solid;
    width: 100%;
    font-size: .19rem;
    font-family: 'Roboto-Regular';
    color: #000;
    padding: 1em;
    border-radius: 0;
}


.car-detail .from-content .group .input-text::placeholder,
.car-detail .from-content .group .textarea-text::placeholder {
    color: #999;
}

.car-detail .from-content .group .code {
    margin-top: .1rem;
}

.car-detail .from-content .group .code .input-text {
    margin-top: 0;
    border-right: 0;
}

.car-detail .from-content .group .code img {
    width: 2.5rem;
    height: .68rem;
}

.car-detail .from-content .operate {
    margin-top: .5rem;
}

.car-detail .from-content .submit {
    position: relative;
    background-color: #18565d;
    font-size: .25rem;
    font-family: 'Roboto-Black';
    text-transform: uppercase;
    width: 2.3rem;
    height: .6rem;
    border-radius: .3rem;
    -webkit-border-radius: .3rem;
    -moz-border-radius: .3rem;
    -ms-border-radius: .3rem;
    -o-border-radius: .3rem;
    color: #FFF;
}

.car-detail .Related {
    background-color: #f6f6f6;
    margin-top: 1.1rem;
    padding-top: .85rem;
    padding-bottom: .9rem;
}

.car-detail .Related .title {
    font-family: 'Roboto-Black';
    font-size: .41rem;
    line-height: 1.2;
    color: #000;
}

.car-detail .Related .title>a {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    font-size: .27rem;
    font-family: 'Roboto-Regular';
    text-decoration: underline;
}

.car-detail .Related .content {
    margin-top: .6rem;
}

.car-detail .Related .item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: .45rem;
    background-color: #FFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.car-detail .Related .item:nth-of-type(3n) {
    margin-right: 0;
}

.car-detail .Related .item .pic {
    overflow: hidden;
    padding-top: 70%;
}

.car-detail .Related .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.car-detail .Related .item .text-con {
    padding: .3rem;
    flex: 1;
}

.car-detail .Related .item .tit {
    font-family: 'Roboto-Bold';
    font-size: .25rem;
    line-height: 1.2;
}

.car-detail .Related .item .text {
    font-size: .15rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Poppins-Regular';
    margin-top: .15rem;
}

.car-detail .Related .item .btn>a {
    line-height: .5rem;
    border: 1px #18545e solid;
    font-family: 'Poppins-SemiBold';
    color: #18545e;
}

.car-detail .Related .item .btn>a:first-child {
    font-family: 'Poppins-Bold';
}

.car-detail .Related .item .btn>a:first-child::after {
    content: '';
    width: .29rem;
    height: .3rem;
    background: url(../images/icon10.webp)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.car-detail .Related .item .btn>a:last-child {
    width: 1.9rem;
    background-color: #18545e;
    color: #FFF;
    text-transform: uppercase;
}

@media (min-width:1025px) {
    .car-home .item:hover::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 60%;
        background-image: linear-gradient(rgba(24, 86, 93, 0) 0%, rgba(24, 86, 93, .8) 10%, #18565d 100%);
    }

    .car-home .item:hover img,
    .car-list .list .item:hover .pic img,
    .car-detail .Specifications .item .play:hover img,
    .car-detail .Album .pic:hover img,
    .car-detail .Related .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .car-home .item:hover .more {
        background-color: #FFF;
        color: #000;
    }

    .car-list .car-menu>a:hover {
        background-color: #18545e;
        color: #FFF;
    }

    .car-list .list .item .btn>a:hover,
    .car-detail .Related .item .btn>a:hover {
        text-decoration: underline;
    }

    .page a:hover {
        background-color: #18545e;
        color: #FFF;
    }

    .page .prev:hover,
    .page .next:hover {
        background-color: #FFF;
    }

    .car-detail .info-contnet .btn>a:nth-child(1):hover {
        text-decoration: underline;
    }

    .car-detail .info-contnet .btn>a:hover {
        background-color: rgba(255, 255, 255, .85);
    }
}

@media (max-width:1199px) {

    .car-home .title,
    .car-detail .info-contnet h1,
    .car-detail .Overview .title,
    .car-detail .Specifications .item .tit,
    .car-detail .Function .title,
    .car-detail .Gallery .title,
    .car-detail .Album .title,
    .car-detail .from-content .title,
    .car-detail .Related .title {
        font-size: 29px;
    }

    .car-home .text,
    .car-detail .from-content .text {
        padding-left: 0;
        padding-right: 0;
    }

    .car-home .item .text-con {
        padding: .5rem .4rem;
    }

    .car-home .item .year {
        font-size: 13px;
        line-height: 1;
        padding: 7px 10px 3px 10px;
    }

    .car-home .item .tit {
        font-size: 31px;
    }

    .car-home .text,
    .car-home .item .txt,
    .car-list .car-menu>a .tit,
    .car-detail .info-contnet .text,
    .car-detail .info-contnet .btn .item,
    .car-detail .Specifications .item .text,
    .car-detail .Function .item .des,
    .car-detail .from-content .fluentform .ff-el-input--label,
    .car-detail .from-content .fluentform input,
    .car-detail .from-content .fluentform textarea {
        font-size: 17px;
    }

    .car-detail .info-contnet .btn .item img {
        width: 2em;
        height: 2em;
    }

    .car-home .item .des {
        font-size: 15px;
        height: 77px;
    }

    .car-home .item .more {
        width: 310px;
        line-height: 52px;
    }

    .car-list .car-menu>a {
        width: 31%;
        height: 48px;
    }
	.car-list .car-menu>a:nth-child(4) {
		display: none;
	}
    .car-list .car-menu>a .icon {
        width: 48px;
        height: 28px;
        margin-right: 10px;
    }

    .car-list .list .item,
    .car-detail .Related .item {
        width: 49%;
    }

    .car-list .list .item:nth-of-type(3n),
    .car-detail .Related .item:nth-of-type(3n) {
        margin-right: 2%;
    }

    .car-list .list .item:nth-child(even),
    .car-detail .Related .item:nth-child(even) {
        margin-right: 0;
    }

    .car-list .list .item .tit,
    .car-detail .Function .item .tit,
    .car-detail .Related .item .tit {
        font-size: 21px;height: 1rem;
    }

    .car-list .list .item .text,
    .car-detail .Related .item .text {
        font-size: 15px;height: 1.2rem;
    }

    .car-list .list .item .btn>a,
    .car-detail .Related .item .btn>a {
        line-height: 48px;
    }

    .car-list .list .item .btn>a:last-child,
    .car-detail .Related .item .btn>a:last-child {
        width: 160px;
    }

    .car-list .list .item .btn>a:first-child::after,
    .car-detail .Related .item .btn>a:first-child::after {
        width: 20px;
        height: 20px;
    }

    .page a {
        width: 36px;
        height: 36px;
        line-height: 34px;
    }

    .car-detail .info-contnet {
        padding-top: .7rem;
    }

    .car-detail .info-contnet .text-content {
        margin-right: .4rem;
    }

    .car-detail .info-contnet .text {
        margin-top: .3rem;
    }

    .car-detail .info-contnet .btn {
        margin-top: .4rem;
    }

    .car-detail .Overview .txt,
    .car-detail .menu_scroll li,
    .car-detail .Album .text,
    .car-detail .from-content .text,
    .car-detail .from-content .submit,
    .car-detail .Related .title>a {
        font-size: 19px;
    }

    .car-detail .Specifications .item .text-con {
        padding-top: 0;
    }

    .car-detail .Specifications .item:nth-child(even) .text {
        margin-top: 0;
    }

    .car-detail .Specifications .item .text p::before {
        top: 12px;
    }

    .car-detail .Specifications .item .pic {
        margin-right: .5rem;
    }

    .car-detail .Gallery {
        margin-top: .7rem;
    }

    .car-detail .menu_scroll {
        line-height: 60px;
    }

    .car-detail .Album .text {
        padding-right: 0;
    }

    .car-detail .from-content .group .input-text,
    .car-detail .from-content .group .code img {
        height: 48px;
    }

    .car-detail .from-content .submit {
        width: 180px;
        height: 42px;
        border-radius: 21px;
        -webkit-border-radius: 21px;
        -moz-border-radius: 21px;
        -ms-border-radius: 21px;
        -o-border-radius: 21px;
    }

    .car-detail .Related .title {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width:950px) {
    .car-detail .info-contnet {
        background-size: cover;
        padding-bottom: .7rem;
    }

    .car-detail .info-contnet .focus {
        margin-top: .3rem;
    }

    .car-detail .Specifications {
        margin-top: .4rem;
    }

    .car-detail .Specifications .item {
        flex-direction: column;
        gap: 0;
    }

    .car-detail .info-contnet .focus,
    .car-detail .Specifications .item .pic {
        width: 100%;
    }

    .car-detail .info-contnet .focus .swiper-button-next,
    .car-detail .info-contnet .focus .swiper-button-prev {
        width: 22px;
        height: 37px;
    }

    .car-detail .info-contnet .text-content {
        margin-right: 0;
    }

    .car-detail .Specifications .item .pic {
        margin-right: 0;
        height: auto;
        margin-bottom: .3rem;
    }

    .car-detail .Specifications .item .pic span {
        width: 64px;
        height: 45px;
    }

    .car-detail .Specifications .item {
        margin-bottom: .5rem;
    }

    .car-detail .Specifications .item .text-con {
        margin-right: 0 !important;
        order: 2;
    }

    .car-detail .Album .pic {
        width: calc(50% - .05rem);
    }

    .car-detail .Album .pic:nth-of-type(3n) {
        margin-right: .1rem;
    }

    .car-detail .Album .pic:nth-child(even) {
        margin-right: 0;
    }

    .car-detail .from-content .content {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width:767px) {
    .car-home .title {
        font-size: 27px;
        line-height: 1.3;
    }

    .car-home .text {
        font-size: 16px;
    }

    .car-list .car-menu>a {
        width: 49%;
    }

    .car-home .item {
        width: 100%;
        height: auto;
        padding-top: 130%;
    }

    .car-home .item img {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .car-list .list .item,
    .car-detail .Related .item {
        width: 100%;
        margin-right: 0;
        margin-bottom: .4rem;
    }

    .car-detail .Function .item {
        width: 100%;
        margin-bottom: 0;
    }

    .car-detail .Gallery {
        margin-top: .5rem;
    }
}

@media (max-width:540px) {
    .car-detail .menu_scroll li {
        margin-right: .2rem;
    }

    .car-detail .Album .pic {
        width: 100%;
        margin-right: 0;
        height: auto;
        padding-top: 65%;
    }

    .car-detail .Album .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }
}

@media (max-width:375px) {
    .car-detail .menu_scroll li {
        font-size: 17px;
    }
}

@media (max-width:320px) {
    .car-detail .info-contnet .btn>a:nth-child(1) {
        width: 180px;
    }

    .car-detail .menu_scroll li {
        font-size: 15px;
    }
}

.news {
    margin-top: .55rem;
    margin-bottom: 1.6rem;
}

.news .title {
    font-size: .44rem;
    line-height: 1.2;
    font-family: 'Montserrat-ExtraBold';
    color: #000;
}

.news .content {
    margin-top: .6rem;
}

.news .content .pic {
    width: 8.3rem;
    overflow: hidden;
    height:5.4rem;
    margin-right: .5rem;
}

.news .content .pic .text-con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
    color: #FFF;
    padding: .5rem;
}

.news .content .pic .tit {
    font-size: .32rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.4;
}

.news .content .pic .date {
    font-size: .21rem;
    line-height: 1.2;
    border-top: 1px solid #FFF;
    padding-top: .3rem;
    text-transform: uppercase;
    margin-top: .25rem;
}

.news .content .text-content .item {
    border-bottom: 1px solid #989999;
    margin-bottom: .4rem;
    padding-bottom: .2rem;
}

.news .content .text-content .item:last-child {
    margin-bottom: 0;
}

.news .content .text-content .item .date {
    font-size: .29rem;
    margin-right: .3rem;
    color: #18545e;
    font-weight: bold;
    font-family: 'Roboto-Black';
}

.news .content .text-content .item .tit {
    font-size: .26rem;
    font-family: 'Roboto-Bold';
    line-height: 1.2;
}

.news .content .text-content .item .des {
    font-family: 'Roboto-Regular';
    line-height: 1.7;
    margin-top: .15rem;
    font-size: .17rem;
}

.news .list {
    margin-top: 1.25rem;
    margin-bottom: .8rem;
}

.news .list .title {
    font-size: .48rem;
}

.news .list .text {
    font-family: 'Roboto-Regular';
    font-size: .21rem;
    margin-top: .2rem;
    line-height: 1.7;
}

.news .list .con {
    margin-top: .8rem;
}

.news .list .card {
    width: 32%;
    margin-right: 2%;
    overflow: hidden;
    margin-bottom: .55rem;
}

.news .list .card:nth-of-type(3n) {
    margin-right: 0;
}

.news .list .card .pic {
    overflow: hidden;
    padding-top: 68%;
}

.news .list .card .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.news .list .card .date {
    background: url(../images/date.webp)no-repeat left center;
    background-size: .18rem;
    font-size: .16rem;
    color: #666;
    text-transform: uppercase;
    font-family: 'Poppins-Regular';
    padding-left: .25rem;
    margin-top: .4rem;
}

.news .list .card .tit {
    font-family: 'Roboto-Medium';
    font-size: .22rem;
    line-height: 1.5;
    margin-top: .15rem;
}

.detail-banner {
    background-color: #000;
}

.detail-banner img {
    opacity: .3;
}

.detail-banner .title {
    font-size: .43rem;
    bottom: .3rem;
}

.news-detail {
    background-color: #f2f2f2;
    padding-top: .3rem;
    padding-bottom: .8rem;
}

.news-detail .content {
    background-color: #FFF;
    margin-right: .3rem;
    padding: .45rem .6rem;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    min-width: 0;
}

.news-detail .content h1 {
    font-size: .35rem;
    font-family: 'Roboto-Medium';
    line-height: 1.4;
}

.news-detail .content .date {
    font-size: .17rem;
    font-family: 'Roboto-Light';
    line-height: 1.2;
    margin-top: .2rem;
}

.news-detail .content .date span {
    margin-left: .2rem;
}

.news-detail .content .body {
    line-height: 2;
    font-family: 'Roboto-Regular';
    margin-top: .5rem;
    padding-bottom: .9rem;
}

.news-detail .content .body img {
    max-width: 100% !important;
}

.news-detail .content .prev-next {
    border-bottom: 2px #a9a9a9 solid;
    border-top: 2px #a9a9a9 solid;
    padding-top: .15rem;
    padding-bottom: .15rem;
    font-family: 'Roboto-Medium';
    font-size: .2rem;
}

.news-detail .content .prev-next>a {
    color: #666;
}

.news-detail .content .prev-next .prev {
    line-height: .5rem;
}

.news-detail .content .prev-next .prev::before {
    content: '';
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px #a9a9a9 solid;
    margin-right: .1rem;
    background: url(../images/arrow.svg)no-repeat center;
    background-size: .22rem;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.news-detail .content .prev-next .next::after {
    content: '';
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px #a9a9a9 solid;
    margin-left: .1rem;
    background: url(../images/arrow.svg)no-repeat center;
    background-size: .22rem;
}

.news-detail .sidebar {
    background-color: #FFF;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    padding: .3rem .2rem;
    width: 3.4rem;
}

.news-detail .sidebar .title {
    font-size: .26rem;
    line-height: 1.2;
    font-family: 'Poppins-Medium';
}

.news-detail .sidebar .con {
    margin-top: .2rem;
}

.news-detail .sidebar .card {
    width: 100%;
    margin-right: 2%;
    overflow: hidden;
    margin-bottom: .2rem;
    border-bottom: 1px #a9a9a9 solid;
    padding-bottom: .15rem;
}

.news-detail .sidebar .card:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.news-detail .sidebar .card .pic {
    overflow: hidden;
    padding-top: 68%;
}

.news-detail .sidebar .card .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.news-detail .sidebar .card .date {
    background: url(../images/date.webp)no-repeat left center;
    background-size: .18rem;
    font-size: .14rem;
    color: #666;
    text-transform: uppercase;
    font-family: 'Poppins-Regular';
    padding-left: .25rem;
    margin-top: .3rem;
}

.news-detail .sidebar .card .tit {
    font-family: 'Roboto-Medium';
    line-height: 1.5;
    margin-top: .1rem;
}

@media (min-width:1025px) {

    .news .content .pic:hover img,
    .news .list .card:hover .pic img,
    .news-detail .sidebar .card:hover .pic img,.video-page li .pic:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .news .content .pic:hover .tit,
    .news .list .card:hover .tit,
    .news-detail .content .prev-next>a:hover,
    .news-detail .sidebar .card:hover .tit {
        text-decoration: underline;
    }

    .news-detail .content .prev-next>a:hover {
        color: #18545e;
    }
}

@media(max-width:1199px) {

    .news .title,
    .news .list .title {
        font-size: 29px;
    }

    .news .content .pic .tit,
    .news .content .text-content .item .date,
    .news .content .text-content .item .tit,
    .news-detail .sidebar .title {
        font-size: 21px;
    }

    .news .list .text,
    .news .list .card .tit {
        font-size: 19px;
    }

    .news .content .pic .date,
    .news .content .text-content .item .des,
    .news-detail .content .prev-next {
        font-size: 17px;
    }

    .news .list .card .date,
    .news-detail .content .date {
        font-size: 16px;
    }

    .news .list {
        margin-bottom: 0;
    }

    .news-detail .content h1 {
        font-size: 25px;
    }

    .news-detail .content .prev-next .next::after,
    .news-detail .content .prev-next .prev::before {
        width: 38px;
        height: 38px;
    }

    .news-detail .sidebar .card .date {
        font-size: 14px;
    }

    .news-detail .sidebar {
        width: 25%;
    }
}

@media (max-width:950px) {
    .news .content .pic {
        margin-right: 0;
        width: 100%;
        height: auto;
        padding-top: 65%;
    }

    .news .content .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .news .content .text-content {
        margin-top: .4rem;
    }

    .news .list .card {
        width: 49%;
    }

    .news .list .card:nth-of-type(3n) {
        margin-right: 2%;
    }

    .news .list .card:nth-child(even) {
        margin-right: 0;
    }
}

@media (max-width:767px) {
    .news {
        margin-bottom: .8rem;
    }

    .news .list {
        margin-top: .7rem;
    }

    .news .content {
        margin-top: .4rem;
    }

    .news .list .con {
        margin-top: .5rem;
    }

    .news .list .card {
        margin-bottom: .3rem;
    }

    .detail-banner img {
        width: auto;
        height: 1.8rem;
    }

    .news-detail .content {
        padding: .3rem .3rem;
    }
}

@media (max-width:540px) {
    .news .list .card {
        width: 100%;
        margin-right: 0;
    }

    .news-detail .content {
        margin-right: 0;
    }

    .news-detail .sidebar {
        width: 100%;
        margin-top: .4rem;
    }
}

.Branding .Branding-content {
    margin-top: .5rem;
}

.Branding .Branding-content .tit {
    font-size: .21rem;
    line-height: 1.2;
    font-weight: bold;
    color: #18545e;
}

.Branding .Branding-content .title {
    font-family: 'Montserrat-ExtraBold';
    font-size: .39rem;
    line-height: 1.2;
    margin-top: .3rem;
}

.Branding .Branding-content .text {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    font-family: 'Roboto-Regular';
    line-height: 1.75;
    margin-top: .35rem;
}

.Branding .Branding-content .lo-con {
    margin-top: .6rem;
}

.Branding .Branding-content .lo-con .lo {
    height: .6rem;
}

.Branding .Branding-content .lo-con .lo img {
    height: 100%;
}

.Branding .Branding-content .more {
    margin-top: .55rem;
    font-size: .22rem;
    line-height: 1.2;
    font-weight: bold;
    color: #18545e;
    text-decoration: underline;
}

.Branding .Branding-content .more::after {
    content: '';
    width: .21rem;
    height: .21rem;
    background: url(../images/arrow3.webp)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.Branding .con {
    background-color: #18565d;
    margin-top: .9rem;
    padding-top: .7rem;
    padding-bottom: .8rem;
}

.Branding .con .pic {
    width: 7.35rem;
    height: 4.75rem;
    overflow: hidden;
}

.Branding .con .text-con {
    color: #FFF;
    margin-right: .7rem;
}

.Branding .con .tit {
    font-size: .21rem;
    line-height: 1.2;
    font-weight: bold;
    line-height: 1.4;
}

.Branding .con .title {
    font-size: .39rem;
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.2;
    color: #FFF;
    margin-top: .3rem;
}

.Branding .con .txt {
    font-size: .39rem;
    font-family: 'Montserrat-Light';
    line-height: 1.2;
}

.Branding .con .des {
    line-height: 1.85;
    margin-top: .35rem;
    font-family: 'Poppins-Regular';
    font-size: .17rem;
}

.Branding .con .more {
    color: #FFF;
    margin-top: .55rem;
    font-size: .22rem;
    line-height: 1.2;
    font-weight: bold;
    text-decoration: underline;
}

.Branding .con .more::after {
    content: '';
    width: .21rem;
    height: .21rem;
    background: url(../images/arrow4.webp)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.Branding .content {
    margin-top: 1.15rem;
}

.Branding .content .item {
    margin-bottom: 1.45rem;
}

.Branding .content .item:nth-child(even) {
    flex-direction: row-reverse;
}

.Branding .content .item:last-child {
    margin-bottom: 0;
}

.Branding .content .item .pic {
    width: 7.35rem;
    height: 4.75rem;
    overflow: hidden;
    margin-right: .7rem;
}

.Branding .content .item .tit {
    font-size: .21rem;
    line-height: 1.2;
    font-weight: bold;
    color: #18545e;
    margin-top: .2rem;
}

.Branding .content .item .title {
    font-size: .39rem;
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.2;
    margin-top: .35rem;
}

.Branding .content .item .txt {
    font-size: .39rem;
    line-height: 1.2;
    font-family: 'Montserrat-Light';
    color: #000;
}

.Branding .content .item .des {
    line-height: 1.85;
    margin-top: .4rem;
    font-family: 'Poppins-Regular';
    font-size: .17rem;
    color: #333;
}

.Branding .content .item .more {
    position: absolute;
    left: 0;
    bottom: .3rem;
    line-height: 1.2;
    text-decoration: underline;
    color: #333;
    font-size: .22rem;
    font-weight: bold;
}

.Branding .content .item .more::after {
    content: '';
    width: .21rem;
    height: .21rem;
    background: url(../images/arrow3.webp)no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.Branding .content .item:last-child {
    margin-bottom: 0;
}

.Branding .content .item:last-child .pic {
    margin-right: 0;
}

.Branding .content .item:last-child .text-con {
    margin-right: .7rem;
}

.Branding .ad {
    margin-top: 1.05rem;
    overflow: hidden;
    margin-bottom: .8rem;
}

.Branding .ad img {
    width: 100%;
}

@media (min-width:1025px) {

    .Branding .Branding-content .more:hover,
    .Branding .con .more:hover,
    .Branding .content .item:hover .more {
        text-decoration: none;
    }

    .Branding .con .pic:hover img,
    .Branding .content .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .Branding .con .title:hover {
        opacity: .6;
        text-decoration: underline;
    }
}

@media (max-width:1199px) {

    .Branding .Branding-content .tit,
    .Branding .Branding-content .more,
    .Branding .con .tit,
    .Branding .con .more,
    .Branding .content .item .tit,
    .Branding .content .item .more {
        font-size: 17px;
    }

    .Branding .Branding-content .title,
    .Branding .con .title,
    .Branding .con .txt,
    .Branding .content .item .title,
    .Branding .content .item .txt {
        font-size: 29px;
    }

    .Branding .Branding-content .text {
        padding-left: 0;
        padding-right: 0;
    }

    .Branding .con .des,
    .Branding .content .item .des {
        font-size: 16px;
    }

    .Branding .content .item .pic,
    .Branding .content .item:last-child .text-con {
        margin-right: .5rem;
    }

    .Branding .content .item .text-con {
        padding-bottom: 50px;
    }

    .Branding .content .item .more {
        bottom: 30px;
    }
}

@media (max-width:950px) {
    .Branding .con .pic {
        width: 100%;
        height: auto;
        padding-top: 65%;
        margin-top: .4rem;
    }

    .Branding .con .pic img,
    .Branding .content .item .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .Branding .con .text-con,
    .Branding .content .item .text-con {
        margin-right: 0;
    }

    .Branding .content .item .pic {
        width: 100%;
        height: auto;
        padding-top: 65%;
        order: 1;
        margin-right: 0 !important;
    }

    .Branding .content .item .text-con {
        order: 2;
        margin-right: 0;
        margin-top: .3rem;
    }
}

@media (max-width:767px) {
    .Branding .Branding-content .lo-con .lo {
        width: 33.333%;
    }

    .Branding .Branding-content .lo-con .lo img {
        max-width: 100%;
    }

    .Branding .content .item {
        margin-bottom: .7rem;
    }

    .Branding .content .item .more {
        bottom: 20px;
    }
}

@media (max-width:540px) {
    .Branding .Branding-content .lo-con .lo {
        width: 50%;
        margin-top: .3rem;
        display: flex;
        justify-content: center;
    }
}

.Manufacturing {
    margin-top: .7rem;
}

.Manufacturing .text-content .item {
    width: 48%;
}

.Manufacturing .text-content .item .text {
    font-family: 'Roboto-Regular';
    line-height: 1.7;
    font-size: .2rem;
    height: 1.45rem;
}

.Manufacturing .text-content .item .pic {
    margin-top: .5rem;
    overflow: hidden;
    height: 3.8rem;
}

.Manufacturing .text-content .item .pic:last-child {
    height: 2.9rem;
}

.Manufacturing .content {
    background-color: #f7f7f7;
    padding-top: .7rem;
    padding-bottom: 1.5rem;
    margin-top: .6rem;
}

.Manufacturing .content .text {
    font-size: .2rem;
    font-family: 'Roboto-Light';
    line-height: 1.75;
}

.Manufacturing .content .pic-con {
    margin-top: .5rem;
}

.Manufacturing .content .pic {
    cursor: pointer;
    width: calc(25% - .15rem);
    margin-right: .2rem;
    margin-top: .2rem;
}

.Manufacturing .content .pic:nth-of-type(4n) {
    margin-right: 0;
}

@media (max-width:1199px) {
    .Manufacturing .text-content .item .text {
        font-size: 17px;
        height: 140px;
    }

    .Manufacturing .content .text {
        font-size: 17px;
    }
}

@media (max-width:950px) {
    .Manufacturing .text-content .item .text {
        height: 170px;
    }

    .Manufacturing .content .pic {
        width: calc(50% - .1rem);
    }

    .Manufacturing .content .pic:nth-child(even) {
        margin-right: 0;
    }
}

@media (max-width:767px) {
    .Manufacturing {
        margin-top: .5rem;
    }

    .Manufacturing .text-content .item {
        width: 100%;
    }

    .Manufacturing .text-content .item .text {
        height: auto;
    }

    .Manufacturing .text-content .item:last-child {
        margin-top: .5rem;
    }
}

@media (max-width:540px) {
    .Manufacturing .content .pic {
        width: 100%;
        margin-right: 0;
    }
}

.Service {
    margin-top: .5rem;
    overflow: hidden;
}

.Service .s-text {
    font-family: 'Montserrat-Light';
    line-height: 1.7;
    font-size: .24rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.Service .s-part {
    z-index: 9;
    padding-left: 2.4rem;
    padding-top: .6rem;
    margin-top: .6rem;
}

.Service .s-part::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    right: 2.4rem;
    background-color: #18565d;
    z-index: -1;
}

.Service .s-part .pic {
    width: 10.55rem;
    height: 6.35rem;
    overflow: hidden;
}

.Service .s-part .text-con {
    margin-right: .8rem;
    color: #FFF;
}

.Service .s-part .tit {
    font-size: .2rem;
    line-height: 1.2;
    font-family: 'Poppins-Bold';
    margin-top: .35rem;
}

.Service .s-part .title {
    color: #FFF;
    font-family: 'Montserrat-ExtraBold';
    font-size: .38rem;
    line-height: 1.2;
    margin-top: .3rem;
}

.Service .s-part .txt {
    font-size: .38rem;
    line-height: 1.2;
    margin-top: .05rem;
    font-family: 'Montserrat-Light';
}

.Service .s-part .des {
    line-height: 1.78;
    margin-top: .5rem;
}

.Service .s-part .more {
    font-family: 'Montserrat-Medium';
    color: #FFF;
    text-decoration: underline;
    font-size: .21rem;
    margin-top: .8rem;
}

.Service .s-part .more::after {
    content: '';
    width: .21rem;
    height: .21rem;
    background: url(../images/arrow4.webp) no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.Service .Technical {
    margin-top: .75rem;
}

.Service .Technical .title {
    font-size: .39rem;
    line-height: 1.2;
    font-family: 'Montserrat-Light';
}

.Service .Technical .title span {
    font-family: 'Montserrat-ExtraBold';
    margin-right: .15rem;
}

.Service .Technical .content {
    margin-top: .3rem;
    overflow: hidden;
}

.Service .Technical .item {
    width: 32.5%;
    margin-right: 1.2%;
    margin-top: .3rem;
}

.Service .Technical .item:last-child {
    margin-right: 0;
}

.Service .Technical .item .pic {
    overflow: hidden;
    padding-top: 66.5%;
}

.Service .Technical .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.Service .Technical .item .tit {
    font-size: .24rem;
    line-height: 1.2;
    margin-top: .4rem;
}

.Service .Technical .item .des {
    font-family: 'Montserrat-Light';
    line-height: 1.65;
    margin-top: .15rem;
}

.Service .vip-content {
    margin-top: 1.8rem;
    padding-right: 2.4rem;
}

.Service .vip-content .pic {
    width: 8.8rem;
    height: 5.55rem;
    overflow: hidden;
    margin-right: 1rem;
}

.Service .vip-content .text-con {
    padding-top: .28rem;
}

.Service .vip-content .tit {
    font-size: .2rem;
    line-height: 1.2;
    font-family: 'Poppins-Bold';
    color: #18565d;
}

.Service .vip-content .title {
    font-size: .39rem;
    font-family: 'Montserrat-Light';
    line-height: 1.2;
    margin-top: .3rem;
}

.Service .vip-content .title span {
    font-family: 'Montserrat-ExtraBold';
    margin-right: .1rem;
}

.Service .vip-content .des {
    margin-top: .5rem;
    line-height: 1.75;
}

.Service .vip-content .more {
    position: absolute;
    left: 0;
    bottom: .8rem;
    text-decoration: underline;
    font-family: 'Montserrat-Medium';
    font-size: .21rem;
    color: #18565d;
}

.Service .vip-content .more::after {
    content: '';
    width: .21rem;
    height: .21rem;
    background: url(../images/arrow3.webp) no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.Service .Maintenance {
    margin-top: 1.35rem;
    margin-bottom: 1.35rem;
}

.Service .Maintenance .title {
    font-size: .39rem;
    line-height: 1.2;
    font-family: 'Montserrat-Light';
}

.Service .Maintenance .title span {
    font-family: 'Montserrat-ExtraBold';
    margin-right: .1rem;
}

.Service .Maintenance .txt {
    margin-top: .35rem;
    line-height: 1.7;
    padding-left: .9rem;
    padding-right: .9rem;
    font-size: .19rem;
    font-family: 'Roboto-Regular';
}

.Service .Maintenance .more {
    margin-top: .4rem;
    text-decoration: underline;
    font-family: 'Montserrat-Medium';
    font-size: .21rem;
    color: #18565d;
}

.Service .Maintenance .more::after {
    content: '';
    width: .21rem;
    height: .21rem;
    background: url(../images/arrow3.webp) no-repeat center;
    background-size: 100%;
    margin-left: .1rem;
}

.Service .Maintenance .content {
    margin-top: .85rem;
}

.Service .Maintenance .item {
    width: 30%;
    margin-right: 5%;
}

.Service .Maintenance .item:last-child {
    margin-right: 0;
}

.Service .Maintenance .item .pic {
    overflow: hidden;
}

.Service .Maintenance .item .tit {
    font-size: .25rem;
    margin-top: .3rem;
    line-height: 1.2;
}

@media (min-width:1025px) {

    .Service .s-part .pic:hover img,
    .Service .vip-content .pic:hover img,
    .Service .Maintenance .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .Service .s-part .title:hover {
        opacity: .6;
        text-decoration: underline;
    }

    .Service .s-part .more:hover,
    .Service .Maintenance .more:hover {
        text-decoration: none;
    }
}

@media (max-width:1199px) {
    .Service .s-text {
        font-size: 19px;
        padding-left: 0;
        padding-right: 0;
    }

    .Service .s-part {
        padding-left: .2rem;
    }

    .Service .s-part::after {
        right: .2rem;
    }

    .Service .s-part .pic {
        width: 50%;
    }

    .Service .s-part .text-con {
        margin-right: .5rem;
    }

    .Service .s-part .tit,
    .Service .s-part .more,
    .Service .vip-content .tit,
    .Service .vip-content .more,
    .Service .Maintenance .txt,
    .Service .Maintenance .more {
        font-size: 17px;
    }

    .Service .s-part .title,
    .Service .s-part .txt,
    .Service .Technical .title,
    .Service .vip-content .title,
    .Service .Maintenance .title {
        font-size: 29px;
    }

    .Service .s-part .more::after,
    .Service .vip-content .more::after,
    .Service .Maintenance .more::after {
        width: 18px;
        height: 18px;
    }

    .Service .Technical .item .tit {
        font-size: 21px;
    }

    .Service .vip-content {
        margin-top: 1rem;
        padding-right: .2rem;
    }

    .Service .vip-content .pic {
        margin-right: .5rem;
        width: 50%;
    }

    .Service .vip-content .text-con {
        padding-bottom: 80px;
    }

    .Service .vip-content .more {
        bottom: 30px;
    }

    .Service .Maintenance .txt {
        padding-left: 0;
        padding-right: 0;
    }

    .Service .Maintenance .item .tit {
        font-size: 19px;
    }
}

@media (max-width:767px) {
    .Service .s-part {
        padding-right: .2rem;
        padding-bottom: .4rem;
    }

    .Service .s-part::after {
        right: 0;
    }

    .Service .s-part .pic {
        width: 100%;
        height: auto;
        padding-top: 65%;
        margin-top: .4rem;
    }

    .Service .s-part .pic img,
    .Service .vip-content .pic img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .Service .s-part .des,
    .Service .Technical .content {
        margin-top: .3rem;
    }

    .Service .s-part .more {
        margin-top: .4rem;
    }

    .Service .Technical .item {
        width: 100%;
        margin-top: .3rem;
    }

    .Service .vip-content {
        padding-left: .2rem;
    }

    .Service .vip-content .pic {
        width: 100%;
        height: auto;
        padding-top: 65%;
        margin-right: 0;
    }

    .Service .Maintenance .item {
        width: 100%;
        margin-right: 0;
        margin-top: .3rem;
    }
}

.Contact {
    margin-top: .95rem;
}

.Contact .content .card {
    width: 48%;
}

.Contact .content .card .icon {
    width: 3.2rem;
    margin-right: .2rem;
}

.Contact .content .card .icon img {
    width: 100%;
}

.Contact .content .card .tit {
    font-size: .3rem;
    line-height: 1.2;
    font-family: 'Poppins-Bold';
}

.Contact .content .card .text {
    display: flex;
    align-items: flex-start;
    font-size: .22rem;
    font-family: 'Poppins-Regular';
    line-height: 1.5;
    margin-top: .25rem;
    /* padding-left: .5rem; */
    background-repeat: no-repeat;
    background-position: left .02rem;
    background-size: .34rem;
}

.Contact .content .card .text img {
    width: 1.6em;
    height: 1.6em;
    object-fit: contain;
    margin-right: .6em;
}

.Contact .content .card .email {
    background-image: url(../images/email.webp);
}

.Contact .content .card .tel {
    background-image: url(../images/tel.webp);
}

.Contact .content .card .whatsapp {
    background-image: url(../images/whatsapp3.webp);
}

.Contact .from-content {
    background: url(../images/bg2.webp)no-repeat center;
    background-size: cover;
    color: #FFF;
    padding-top: .75rem;
    padding-bottom: .75rem;
    margin-top: 1.1rem;
}

.Contact .from-content .title {
    font-size: .38rem;
    line-height: 1;
    font-family: 'Poppins-Bold';
}

.Contact .from-content .text {
    font-family: 'Poppins-Regular';
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    line-height: 1.7;
    margin-top: .3rem;
}

.Contact .from-content .content {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    margin-top: .3rem;
}

.Contact .from-content .fluentform .ff-el-group {
    display: flex;
    border-radius: .1rem;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: .15rem;
}

.Contact .from-content .fluentform .ff-el-is-required {
    display: flex;
    margin: 0;
    visibility: unset;
    z-index: 1;
    padding-left: .1rem;
}

.Contact .from-content .fluentform .ff-el-is-required::before {
    content: "*";
    color: #cc0a0a;
    font-size: .32rem;
    font-family: 'Poppins-Medium';
    position: relative;
    top: .3em;
    right: -.4em;
}

.Contact .from-content .fluentform .ff-el-is-required label {
    display: none;
}

.Contact .from-content .fluentform .ff-el-input--content {
    flex: 1;
}

.Contact .from-content .group span {
    color: #cc0a0a;
    font-size: .32rem;
    font-family: 'Poppins-Medium';
    padding-top: .2rem;
}

.Contact .from-content input,
.Contact .from-content textarea {
    width: 100%;
    font-family: 'Montserrat-Light';
    font-size: .21rem;
    padding: .8em 1em;
    border: 0;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
}

.Contact .from-content .code input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.Contact .from-content .code img {
    height: 100%;
}

.Contact .from-content .operate {
    display: flex;
    justify-content: center;
    margin-top: .5rem;
}

.Contact .from-content .operate .submit {
    width: 3.7rem;
    height: .68rem;
    border-radius: .34rem;
    -webkit-border-radius: .34rem;
    -moz-border-radius: .34rem;
    -ms-border-radius: .34rem;
    -o-border-radius: .34rem;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    border: 2px #FFF solid;
    font-size: .28rem;
    font-family: 'Montserrat-ExtraBold';
    text-transform: uppercase;
    background: none;
}

.Contact .Other {
    margin-top: .7rem;
    margin-bottom: .9rem;
}

.Contact .Other .title {
    font-family: 'Montserrat-ExtraBold';
    font-size: .38rem;
    line-height: 1.2;
}

.Contact .Other .txt {
    font-size: .24rem;
    line-height: 1.2;
    margin-top: .2rem;
    text-decoration: underline;
}

.Contact .Other .content {
    margin-top: .6rem;
}

.Contact .Other .content>a {
    width: 50%;
    height: 4rem;
    overflow: hidden;
}

.Contact .Other .content>a .tit {
    font-size: .34rem;
    line-height: 1.2;
    position: absolute;
    left: 1.2rem;
    bottom: .4rem;
    color: #FFF;
    text-transform: uppercase;
    z-index: 9;
}

.Contact .Other .content>a:nth-child(even) .tit {
    left: .7rem;
}

@media (min-width:1025px) {
    .Contact .Other .txt:hover {
        text-decoration: none;
    }

    .Contact .Other .content>a:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
}

@media (max-width:1199px) {
    .Contact .content .card .tit {
        font-size: 23px;
    }

    .Contact .content .card .text,
    .Contact .from-content .group input[type='text'],
    .Contact .from-content textarea,
    .Contact .Other .txt {
        font-size: 19px;
    }

    .Contact .content .card .icon {
        display: none;
    }

    .Contact .content .card .text {
        /* padding-left: 30px; */
        background-size: 20px;
        background-position: left 3px;
    }

    .Contact .from-content .title,
    .Contact .Other .title {
        font-size: 29px;
    }

    .Contact .from-content .group span {
        font-size: 21px;
        padding-top: 20px;
    }

    .Contact .from-content input,
    .Contact .from-content textarea {
        font-size: 17px;
    }

    .Contact .from-content .fluentform .ff-el-is-required::before {
        font-size: 17px;
        top: .8em;
    }

    .Contact .from-content .operate .submit {
        width: 260px;
        height: 50px;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
        font-size: 21px;
    }

    .Contact .from-content .text,
    .Contact .from-content .content {
        padding-left: 0;
        padding-right: 0;
    }

    .Contact .Other .content>a .tit {
        left: .3rem !important;
    }
}

@media (max-width:767px) {
    .Contact {
        margin-top: .4rem;
    }

    .Contact .content .card {
        width: 100%;
        margin-top: .4rem;
    }

    .Contact .Other .content>a {
        width: 100%;
        height: auto;
        padding-top: 55%;
    }

    .Contact .Other .content>a img {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }
}

@media (max-width:540px) {
    .Contact .from-content .content>div {
        display: block;
    }

    .Contact .from-content .operate .submit {
        width: 100%;
    }
}

.Parts .s-text {
    font-size: .22rem;
    line-height: 1.7;
    font-family: 'Montserrat-Light';
    margin-top: .9rem;
}

.Parts .num-content {
    background: url(../images/bg3.webp)no-repeat center;
    background-size: cover;
    height: 5.6rem;
    margin-top: .65rem;
    color: #FFF;
    padding-top: .75rem;
    padding-bottom: .7rem;
}

.Parts .num-content .title {
    font-size: .36rem;
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.5;
    text-transform: uppercase;
}

.Parts .num-content .item {
    margin-top: .3rem;
}

.Parts .num-content .counter {
    font-size: 1.2rem;
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.2;
    color: #f7a82b;
}

.Parts .num-content .tit {
    font-size: .23rem;
    line-height: 1.7;
    margin-top: .2rem;
}

.Parts .num-content .item:first-child .counter .prefix {
    font-size: .76rem;
    margin-right: .1rem;
}

.Parts .num-content .item:last-child .counter {
    justify-content: flex-end;
    align-items: flex-end;
}

.Parts .num-content .item:last-child .counter .prefix {
    position: relative;
    top: -.3em;
    font-size: .46rem;
}

.Parts .content {
    margin-top: 1.1rem;
}

.Parts .content .card .pic {
    width: 7.7rem;
    height: 4.35rem;
    overflow: hidden;
    margin-right: .6rem;
}

.Parts .content .card .tit {
    font-size: .38rem;
    color: #000;
    font-family: 'Montserrat-ExtraBold';
    line-height: 1.2;
    margin-top: .25rem;
}

.Parts .content .card .des {
    font-size: .21rem;
    font-family: 'Montserrat-Light';
    line-height: 1.7;
    margin-top: .25rem;
}

.Parts .content .card:last-child {
    margin-top: .7rem;
    margin-bottom: 1.15rem;
}

.Parts .content .card:last-child .pic {
    margin-right: 0;
    margin-left: .7rem;
    width: 7.5rem;
    height: 4.6rem;
}

.Parts .content .card:last-child .tit {
    margin-top: 0;
}

.Parts .content .con {
    background-color: #f4f5f5;
    margin-top: .8rem;
    padding-top: .7rem;
    padding-bottom: .8rem;
}

.Parts .content .con .title {
    font-size: .56rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: 'Montserrat-ExtraBold';
    color: #18565d;
}

.Parts .content .con .text-con {
    width: 42%;
    margin-right: 12%;
}

.Parts .content .con .text-con:last-child {
    margin-right: 0;
}

.Parts .content .con .txt {
    font-size: .27rem;
    font-family: 'Montserrat-Light';
    line-height: 1.7;
    margin-top: .4rem;
}

.Parts .content .con .des {
    font-size: .2rem;
    line-height: 1.7;
    font-family: 'Montserrat-Light';
    margin-top: .45rem;
}

.Parts .content .con .tit {
    font-size: .22rem;
    font-family: 'Montserrat-Light';
    line-height: 1.6;
    margin-top: .05rem;
}

.Parts .content .con .card {
    margin-top: .3rem;
    margin-bottom: .35rem;
}

.Parts .content .con .card:last-child {
    margin-bottom: 0;
}

.Parts .content .con .tit1 {
    font-size: .49rem;
    color: #18565d;
    font-family: 'Montserrat-ExtraBold';
    text-transform: uppercase;
    line-height: 1;
}

.Parts .content .con .text {
    line-height: 1.7;
    font-family: 'Montserrat-Light';
    font-size: .19rem;
    text-transform: uppercase;
    margin-top: .05rem;
}

@media (max-width:1199px) {

    .Parts .s-text,
    .Parts .content .card .des {
        font-size: 19px;
    }

    .Parts .s-text {
        margin-top: .6rem;
    }

    .Parts .num-content .tit,
    .Parts .content .con .des,
    .Parts .content .con .text {
        font-size: 17px;
    }

    .Parts .num-content .title {
        font-size: 27px;
    }

    .Parts .content {
        margin-top: .7rem;
    }

    .Parts .content .card .tit {
        font-size: 29px;
    }

    .Parts .content .con .title {
        font-size: 39px;
    }

    .Parts .content .con .txt {
        font-size: 21px;
    }

    .Parts .content .con .tit {
        font-size: 19px;
    }

    .Parts .content .con .tit1 {
        font-size: 35px;
    }

    .Parts .content .con .text-con {
        margin-right: 5%;
    }
}

@media (max-width:950px) {
    .Parts .num-content {
        height: auto;
    }

    .Parts .num-content .item {
        width: 100%;
    }

    .Parts .num-content .item:last-child .counter {
        justify-content: flex-start;
    }

    .Parts .content .card .pic,
    .Parts .content .card:last-child .pic {
        width: 100%;
        margin-right: 0;
        height: auto;
        padding-top: 65%;
        order: 1 !important;
        margin-left: 0;
    }

    .Parts .content .card .pic img {
        position: absolute;
        left: 0;
        top: 0
    }

    .Parts .content .card .text-con {
        order: 2 !important;
        margin-top: .2rem;
    }

    .Parts .content .card:last-child .text-con {
        margin-top: .4rem;
    }
}

@media (max-width:767px) {
    .Parts .content .con .text-con {
        width: 100%;
        margin-right: 0;
    }

    .Parts .content .con .tit {
        margin-top: .4rem;
    }
}



.show-pc {
    display: block;
}

.show-mb {
    display: none;
}

.show-mb-flex {
    display: none;
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, .6);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}

.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}

.rich-text h1 {
    margin-top: .5em;
    margin-bottom: .67em;
}

.rich-text h2 {
    margin-top: .5em;
    margin-bottom: .83em;
}

.rich-text h3 {
    margin-top: .5em;
    margin-bottom: 1em;line-height: 1.3em;
}

.rich-text h4 {
    margin-top: .5em;
    margin-bottom: 1.16em;line-height: 1.3em;
}

.rich-text h5 {
    margin-top: .5em;
    margin-bottom: 1.5em;line-height: 1.3em;
}

.rich-text h6 {
    margin-top: 2.33em;
    margin-bottom: 2.33em;line-height: 1.3em;
}

.rich-text p {
    margin: .5em 0;line-height: 1.6em;
}

.rich-text p::after {
    content: "";
    display: block;
    clear: both;
}

.rich-text * {
    max-width: 100%;
}

.rich-text img,
.rich-text video {
    max-width: 100%;
    height: auto !important;
}

.rich-text iframe {
    max-width: 100%;
}

.rich-text ul {
    list-style: initial;
    padding-left: 30px;
}

.rich-text .gallery {
    display: flex;
    gap: 1em;
}

.rich-text .gallery p {
    display: none;
}

.rich-text .gallery-item {
    margin-top: 1em !important;
}

.rich-text .gallery-item img {
    display: block;
    border: 0 !important;
}

.rich-text .wp-caption-text {
    margin-top: 0;
}

.popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10000
}

.popup .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5)
}

.popup.iframe .mask {
    background: rgba(0, 0, 0, .8)
}

.popup .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}


.popup.tip .container {
    background: #fff;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    padding: 0
}

.popup.tip .title {
    font-size: 20px;
    text-align: center;
    color: #000
}

.popup.tip .txt {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    color: #666;
    padding: 0 20px
}

.popup.tip .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: #18565d;
    border-radius: 50%;
    background-image: url(../images/correct.webp);
    margin-top: 30px;
    margin-bottom: 20px;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat
}

.popup.tip .opt {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    cursor: pointer
}

.popup.tip .opt .btn {
    color: #000;
    font-size: 16px;
    border-radius: 6px
}

.popup.iframe .container {
    width: 70%;
    height: calc(70vw / 1.77);
    padding: 0
}

.popup.iframe iframe {
    width: 100%;
    height: 100%;
    background: #000
}

.popup.iframe .close {
    position: absolute;
    right: 0;
    top: -30px;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    background: url(../images/close-white.svg)no-repeat left center;
    background-size: 20px;
    padding-left: 30px
}

.code-img {
    width: auto;
    cursor: pointer;
}

@keyframes progress-anim {
    0% {
        width: 0
    }

    5% {
        width: 0
    }

    10% {
        width: 15%
    }

    30% {
        width: 40%
    }

    50% {
        width: 55%
    }

    80% {
        width: 100%
    }

    95% {
        width: 100%
    }

    to {
        width: 0
    }
}

.car-detail .from-content .submit.working::after {
    animation: progress-anim 4s 0s infinite;
    background: rgba(255, 255, 255, 0.4);
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
}

.rich-part {
    padding-bottom: 1.1rem;
}

.rich-part .item {
    display: flex;
    gap: .3rem;
    margin-top: .5rem;
}

.rich-part .item .pic {
    width: 50%;
    overflow: hidden;
    cursor: pointer;
}

.rich-part .item .pic img {
    width: 100%;
    height: auto;
}

.rich-part .item .pic span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: .94rem;
    height: .66rem;
    z-index: 10;
    background: url(../images/play1.webp) no-repeat center;
    background-size: 100%;
}

.rich-part .item .text-con {
    flex: 1;
    font-size: .18rem;
    font-family: 'Roboto-Regular';
    line-height: 1.6;
}

.rich-part .item.left_txt {
    flex-direction: row-reverse;
}

.video-page {
    padding: 1rem 0;
    padding-top: .3rem;
}

.video-page .des {
    font-style: italic;
    line-height: 1.9;
}

.video-page li {
    margin-top: .7rem;
    width: 32%;
    margin-right: 2%;
    background-color: #FFF;
    box-shadow: 0 .1rem .15rem rgba(0, 0, 0, .15);
    cursor: pointer;
    cursor: pointer
}

.video-page li:nth-of-type(3n) {
    margin-right: 0
}

.video-page li .pic {
    overflow: hidden;
    padding-top: 59.5%
}

.video-page li .pic span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: .58rem;
    height: .4rem;
    background: url(../images/play1.webp)no-repeat center;
    background-size: 100%
}

.video-page li .pic img {
    position: absolute;
    left: 0;
    top: 0
}

.video-page li .tit {
    font-weight: 700;
    font-size: .23rem;
    line-height: 1.5;
	padding: .3rem .2rem .4rem .2rem; background:#18565d; color:#FFF}

.video-page li .tit:hover{text-decoration: underline;}

.fluentform .hidden {
    display: none !important;
}

.fluentform .ff-message-success,
.fluentform .ff_submit_btn_wrapper {
    display: none !important;
}

.fluentform .code {
    flex: 1;
    width: 100%;
}


.search-page {
    margin: .4rem 0 1rem 0;
}

.search-page .search-list li {
    padding: .3rem 0;
    border-bottom: 1px #333 solid;
    width: 100%;
}

.search-page .search-list li .type {
    font-size: .26rem;
    margin-bottom: 0.2rem;
    color: #18565d;
    line-height: 1.4;
}

.search-page .search-list li .tit {
    font-size: .26rem;
    line-height: 1.6;
}

.search-page .search-list li .date {
    line-height: 2;
    font-size: .18rem;
    color: #494a4a;
    margin-top: .2rem;
}

.search-page .no-result {
    font-size: .24rem;
    margin-top: 1rem;
}

@media (max-width: 1199px) {
    .video-page li .tit {
        font-size: 17px;
    }

    .rich-part .item .text-con {
        font-size: 17px;
    }
}

@media (max-width: 950px) {
    .rich-part .item {
        flex-direction: column !important;margin-top: 0;
    }

    .rich-part .item .pic {
        width: 100%;
    }

    .video-page li {
        width: 49%
    }
}

@media (max-width: 767px) {
    .show-pc {
        display: none;
    }

    .show-mb {
        display: block;
    }

    .show-mb-flex {
        display: flex;
    }

    .mb-banner {
        display: block;
    }

    .pc-banner {
        display: none;
    }

    .popup.tip .icon {
        width: 80px;
        height: 80px
    }

    .popup.iframe .container {
        width: 90%;
        height: 50%
    }

    .video-page li {
        width: 100%;
        margin-right: 0
    }
	.rich-text img.energytu{width: 100%;}
}

@media (max-width:540px) {}