html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input {
    margin: 0;
    padding: 0;
    border: none;
    outline: 0;
    font-size: 100%;
    font-family: "HarmonyOS_Sans";
    vertical-align: baseline;
    box-sizing: border-box;
}

input[type="search"] {
    -webkit-appearance: none;
}

html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-text-size-adjust: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    font-family: arial, sans-serif;
}

.loadmore-nodata {
    text-align: center;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

a {
    text-decoration: none;
}


@font-face {
    font-family: "VFRegular";
    src:
        url("https://at.alicdn.com/wf/webfont/94wxJAO7gxur/jR4ODuthPMAr.woff2") format("woff2"),
        url("https://at.alicdn.com/wf/webfont/94wxJAO7gxur/bJ24miLDy4Qu.woff") format("woff");
    font-variation-settings: "SRIF" 0, "slnt" 0, "wdth" 100, "wght" 450;
    font-display: swap;

    font-display: swap;
}

@font-face {
    font-family: "HarmonyOS_Sans";
    src: url("../font/HarmonyOS_Sans_Regular.ttf") format("woff");

    font-display: swap;
}

@font-face {
    font-family: "HarmonyOS_Sans_Black";
    src: url("../font/HarmonyOS_Sans_Black.ttf") format("woff");

    font-display: swap;
}

.main {
    width: 88vw;
    margin: auto;
    overflow: hidden;
}

.webfont {
    font-family: "阿里妈妈方圆体 VF Regular";
    font-variation-settings: "BEVL" 1, "wght" 200;
    /* Chrome 140 以下版本需要 */
}

strong,
b {
    font-family: 'HarmonyOS_Sans_Black';
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

header .inner {
    position: relative;
    z-index: 100;
    background-color: #fff;
    height: 60px;
    justify-content: space-between;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.bx {
    height: 60px;
}

header .button {
    display: none;
}

header .inner .logo {
    position: relative;
    z-index: 100;
}

header .inner .logo img {
    width: auto;
    height: 45px;
    max-width: 100%;
}

header .nav {
    position: absolute;
    left: 0;
    width: 100%;
    flex: 1;
}


header .nav ul {
    justify-content: center;
    width: 100%;
    padding-left: 11.45833%;
}

header .nav ul li {
    display: inline-block;
    padding: 0 28px;
}

header .nav ul li span,
header .nav ul li a.alink {
    cursor: pointer;
    position: relative;
    color: rgba(0, 0, 0, .9);
    font-size: 16px;
    font-weight: 900;
}

header .nav ul li.active span,
header .nav ul li.active a.alink {
    color: #d90000;
}

header .nav ul li.hover span,
header .nav ul li.hover a.alink {
    color: #d90000;
}


header .nav ul li span::after,
header .nav ul li a.alink::after {
    transform: translateX(-50%);
    position: absolute;
    transition: all .3s ease-in-out;
    left: 50%;
    bottom: -10px;
    height: 1px;
    content: " ";
    width: 0;
    background-color: #d90000;
    display: block;
}

header .nav ul li.active span::after,
header .nav ul li.active a.alink::after {
    left: 50%;
    width: 70%;
}


header .menu {
    position: fixed;
    background-color: #fff;
    z-index: 99;
    width: 100%;
    padding-top: 50px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .05);
    opacity: 0;
    flex-direction: column;
    transform: translateY(-100%);
    top: 60px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

header .menu.open {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

header .menu .item {
    transition: transform .2s cubic-bezier(.5, 0, 0, .75);
    overflow: hidden;
    margin-left: 11.45833%;
    opacity: 0;
    grid-column: 1;
    grid-row: 1;
    height: 0;
}

header .menu .item .boxxx {
    transition: all .5s ease-in-out;
    opacity: 0;
    display: flex;
}

header .menu .item.show {
    opacity: 1;
    height: auto;
}

header .menu .item.show .boxxx {
    opacity: 1;
}

header .menu h3 {
    color: #414141;
    margin: 1rem auto;
}

header .menu .vehicles-item ul li {
    margin-right: 1rem;
    display: inline-block;
}

header .menu .vehicles-item ul li img {
    width: 100%;
    transition: all .3s ease-in-out;
    transform: translateY(6%);
}

header .menu .vehicles-item ul li a {
    border: #fff solid 1px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    width: 14vw;
    /*height: 15rem;*/
    display: inline-block;
    transition: all .3s ease-in-out;
    overflow: hidden;
    color: #000;
    background: linear-gradient(to top, rgb(0, 0, 0, 0.2), rgb(0, 0, 0, 0.02));


}

header .menu .vehicles-item ul li a h4 {
    font-size: 0.95vw;
    position: absolute;
    right: 1rem;
    text-align: center;
    top: 1rem;
    left: 1rem;
}

header .menu .vehicles-item ul li a div {
    font-size: 0.80rem;
    position: absolute;
    bottom: 0;
    left: 1rem;
    transition: all .3s ease-in-out;
    transform: translateY(10%);
    position: absolute;
    color: #414141;
}

header .menu .vehicles-item ul li a div span {
    opacity: 1;
    overflow: hidden;
    height: 0;
    display: inline-block;
}


header .menu .vehicles-item ul li a:hover {
    /* 圆角大小 */
    /* border-image: linear-gradient(to top, #d90000, #ffdfdf) 1;*/
    border-color: #d90000;
}

header .menu .vehicles-item ul li a:hover div {
    visibility: visible;
    transform: translateY(-10%);
}

header .menu .vehicles-item ul li a:hover img {
    transform: translateY(2%);
}

header .menu .vehicles-item ul li a:hover div span {
    margin-top: 0.5rem;
    opacity: 1;
    height: auto;
    text-decoration: underline;
    color: #000;
}

header .menu .card-list ul li {
    display: inline-block;
    margin-right: 1rem;
}

header .menu .card-list ul li img {
    transition: all .3s ease-in-out;
    width: 100%;
    display: block;
}

header .menu .card-list ul li a {

    position: relative;
    border-radius: 4px;
    overflow: hidden;
    width: 17rem;
    display: inline-block;
    overflow: hidden;
    color: #000;
}

header .menu .card-list ul li a span {
    position: absolute;
    top: 1.5rem;
    left: 1.6rem;
    font-size: 1.2rem;
    color: #ffffff;
}

header .menu .card-list ul li a:hover img {
    transform: scale(1.1);
}

header .menu .nav-molde,
header .menu .call-molde {
    display: none;
}

header .menu .nav-molde.active a.alink {
    color: #d90000;
}

header .call {
    text-align: right;
}

header .call b {
    display: none;
    font-size: 11px;
}

header .call i {
    font-size: 20px;
    color: #d90000;
}

header.hide {
    top: -60px;
}



footer {
    background: #f0f0f0;
    padding: 0 8rem;
}

footer .justify,
footer .website {
    display: flex;
    font-size: 14px;
    padding: 1.5vw 0;
    justify-content: space-between;
    align-items: center;
}

footer .justify {
    border-top: 1px solid rgba(0, 0, 0, .2);
    font-size: 14px;
}

footer .justify .privacy {
    margin-left: auto;
}

footer .justify .privacy a {
    color: #414141;
    display: inline-block;
}

footer .justify .privacy a:first-child {
    position: relative;
    margin-right: 3vw;
}

footer .justify .privacy a:first-child::after {
    position: absolute;
    content: " ";
    height: 6px;
    display: block;
    width: 6px;
    top: 7px;
    right: -1.8vw;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, .7);
}

footer .justify .copyright {
    color: #414141;
}

footer .website .nav ul li {
    display: inline-block;
}



footer .website .nav ul li a {
    position: relative;
    margin-left: 3vw;
    color: #000000;
}

footer .website .nav ul li:first-child a {
    margin-left: 0;
}

footer .website .nav ul li a::before {
    position: absolute;
    content: " ";
    height: 12px;
    display: block;
    width: 2px;
    top: 5px;
    left: -1.4vw;
    background-color: rgba(0, 0, 0, .7);
}

footer .website .nav ul li:first-child a::before {
    display: none;
}

footer .website .contact {
    display: flex;
}

footer .website .contact div:first-child {
    margin-right: 3vw;
}

footer .website .contact div p {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

footer .website .bedia {
    height: 24px;
    overflow: hidden;
    margin-left: auto;
}

footer .website .bedia a {
    margin-left: 1vw;
    display: inline-block;
}

footer .website .bedia a img {
    display: block;
    width: 24px;
    margin: 0;
}

@media screen and (max-width: 1580px) {
    header .nav ul {
        padding-left: 13.45833%;
    }

    header .nav ul li {
        padding: 0 1.8vw;
    }

    header .nav ul li span,
    header .nav ul li a.alink {
        font-size: 1vw;
    }
}

@media screen and (max-width: 1280px) {
    .main {
        width: 100%;
        padding: 0 10px;
        margin: auto;
        overflow: hidden;
    }

    header .inner {
        height: 40px;
        padding: 0 15px;
    }

    .bx {
        height: 41px;
    }

    header .menu .item .boxxx {
        display: block;
    }

    header .inner .logo img {
        height: 35px;
    }

    header .nav,
    header .call {
        display: none;
    }

    header .button {
        position: relative;
        display: block;
    }

    header .button span {
        display: block;
        background-color: #000;
        width: 20px;
        height: 2px;
        opacity: 1;
        transition: opacity .3s ease-in
    }

    header .button span:nth-child(2) {
        margin: 4px 0
    }

    header .button.open span:nth-child(2) {
        opacity: 0
    }

    header .button.open span:first-child {
        animation: lineTop .3s ease-in-out forwards
    }

    header .button.open span:nth-child(3) {
        animation: lineBottom .3s ease-in-out forwards
    }

    header .button.close span:nth-child(2) {
        opacity: 1
    }

    header .button.close span:first-child {
        transform: translate3d(0, 6px, 0) rotate(135deg);
        animation: lineTopReverse .3s ease-in-out forwards
    }

    header .button.close span:nth-child(3) {
        transform: translate3d(0, -6px, 0) rotate(45deg);
        animation: lineBottomReverse .3s ease-in-out forwards
    }


    @keyframes lineTop {
        0% {
            transform: translateZ(0) rotate(0)
        }

        50% {
            transform: translate3d(0, 6px, 0) rotate(0)
        }

        to {
            transform: translate3d(0, 6px, 0) rotate(135deg)
        }
    }

    @keyframes lineBottom {
        0% {
            transform: translateZ(0) rotate(0)
        }

        50% {
            transform: translate3d(0, -6px, 0) rotate(0)
        }

        to {
            transform: translate3d(0, -6px, 0) rotate(45deg)
        }
    }

    @keyframes lineTopReverse {
        0% {
            transform: translate3d(0, 6px, 0) rotate(135deg)
        }

        50% {
            transform: translate3d(0, 6px, 0) rotate(0)
        }

        to {
            transform: translateZ(0) rotate(0)
        }
    }

    @keyframes lineBottomReverse {
        0% {
            transform: translate3d(0, -6px, 0) rotate(45deg)
        }

        50% {
            transform: translate3d(0, -6px, 0) rotate(0)
        }

        to {
            transform: translateZ(0) rotate(0)
        }
    }

    header .menu {
        border-top: 1px solid rgba(0, 0, 0, .05);
        opacity: 1;
        top: 40px;
        padding: 20px;
        z-index: 1;
        display: block;
    }

    header .menu.open {
        bottom: 0;
        overflow-y: auto;
    }

    header .menu .item {
        display: none;
        opacity: 1;
        margin-left: 0;
        height: auto;
    }

    header .menu .item.open {
        display: block;
    }

    header .menu .item .boxxx {
        opacity: 1;
    }

    header .menu h3 {
        margin-top: 0;
        font-size: 12px;
    }

    header .menu .vehicles-item ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }

    header .menu .vehicles-item ul li a {
        width: 100%;
        height: auto;
        background: linear-gradient(to top, rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.01));
    }

    header .menu .vehicles-item ul li img {
        width: 100px;
        transform: translateY(0);
    }

    header .menu .vehicles-item ul li a div {
        text-align: right;
        opacity: .5;
        font-size: 12px;
        right: 15px;
        left: auto;
        bottom: 15px;
    }

    header .menu .vehicles-item ul li a h4 {
        top: 27px;
        right: 22px;
        text-align: right;
        font-size: 16px;
    }

    header .menu .card-list ul li {
        display: block;
    }

    header .menu .card-list ul li a {
        display: block;
        width: 100%;
        line-height: 28px;
    }

    header .menu .card-list ul li img {
        display: none;
    }

    header .menu .card-list ul li a span {
        position: initial;
        color: #444;
        font-size: 14px;
    }

    header .menu .nav-molde,
    header .menu .call-molde {
        display: block;
    }

    header .menu .nav-molde {
        position: relative;
        line-height: 48px;
    }

    header .menu .nav-molde i {
        right: 0;
        position: absolute;
        color: #666;
        font-size: 18px;
    }

    header .menu .nav-molde span,
    header .menu .nav-molde a {
        color: #000;
    }

    header .menu .call-molde {
        border-top: 1px solid #f0f0f0;
        padding-top: 20px;
        margin-top: 10px;
    }

    header .menu .call-molde p {
        margin-bottom: 7px;
        font-size: 12px;
        color: #666;
    }

    header .menu .call-molde i {
        color: #d90000;
        margin-right: 10px;
        font-size: 20px;
    }

    header .menu .nav-molde i {
        transition: all .3s ease-in-out;
    }

    header .menu .nav-up i {
        transform: rotate(-180deg);
    }

    footer {
        padding: 0;
    }

    footer .justify,
    footer .website {
        display: block;
        font-size: 12px;
        padding: 5% 0;
        text-align: center;
    }

    footer .website .nav ul li a {
        margin-left: 6vw;
    }

    footer .website .nav ul li a::before {
        height: 8px;
        left: -3.4vw;
    }

    footer .justify .privacy a:first-child {
        margin-right: 6vw;
    }

    footer .justify .privacy a:first-child::after {
        right: -4.5vw;
    }

    footer .website .bedia,
    footer .justify .privacy {
        margin-top: 3vw;
    }

    footer .website .bedia a img {
        width: 20px;
    }
}