@charset "UTF-8";
/*reset*/
html {
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, 微软雅黑, Arial, sans-serif;
}

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,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul,
li {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

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

@media all and (-moz-min-device-pixel-ratio: 1.09) and (-moz-max-device-pixel-ratio: 1.18),
    (-webkit-min-device-pixel-ratio: 1.09) and (-webkit-max-device-pixel-ratio: 1.18),
    (-webkit-min-device-pixel-ratio: 1.0909090909090908) and (-webkit-max-device-pixel-ratio: 1.18),
    (min-resolution: 1.09dppx) and (max-resolution: 1.18dppx) {
    :root {
        font-size: 14px;
    }
}
@media all and (-moz-min-device-pixel-ratio: 1.19) and (-moz-max-device-pixel-ratio: 1.28),
    (-webkit-min-device-pixel-ratio: 1.19) and (-webkit-max-device-pixel-ratio: 1.28),
    (-webkit-min-device-pixel-ratio: 1.1904761904761905) and (-webkit-max-device-pixel-ratio: 1.28),
    (min-resolution: 1.19dppx) and (max-resolution: 1.28dppx) {
    :root {
        font-size: 13px;
    }
}
@media all and (-moz-min-device-pixel-ratio: 1.29) and (-moz-max-device-pixel-ratio: 1.4),
    (-webkit-min-device-pixel-ratio: 1.29) and (-webkit-max-device-pixel-ratio: 1.4),
    (-webkit-min-device-pixel-ratio: 1.2903225806451613) and (-webkit-max-device-pixel-ratio: 1.4),
    (min-resolution: 1.29dppx) and (max-resolution: 1.4dppx) {
    :root {
        font-size: 12px;
    }
}
@media all and (-moz-min-device-pixel-ratio: 1.41) and (-moz-max-device-pixel-ratio: 1.6),
    (-webkit-min-device-pixel-ratio: 1.41) and (-webkit-max-device-pixel-ratio: 1.6),
    (-webkit-min-device-pixel-ratio: 1.4090909090909092) and (-webkit-max-device-pixel-ratio: 1.6),
    (min-resolution: 1.41dppx) and (max-resolution: 1.6dppx) {
    :root {
        font-size: 10px;
    }
}
@media all and (-moz-min-device-pixel-ratio: 1.61) and (-moz-max-device-pixel-ratio: 1.8),
    (-webkit-min-device-pixel-ratio: 1.61) and (-webkit-max-device-pixel-ratio: 1.8),
    (-webkit-min-device-pixel-ratio: 1.6097560975609757) and (-webkit-max-device-pixel-ratio: 1.8),
    (min-resolution: 1.61dppx) and (max-resolution: 1.8dppx) {
    :root {
        font-size: 9px;
    }
}
@media all and (-moz-min-device-pixel-ratio: 1.81) and (-moz-max-device-pixel-ratio: 2.1),
    (-webkit-min-device-pixel-ratio: 1.81) and (-webkit-max-device-pixel-ratio: 2.1),
    (-webkit-min-device-pixel-ratio: 1.8095238095238095) and (-webkit-max-device-pixel-ratio: 2.1),
    (min-resolution: 1.81dppx) and (max-resolution: 2.1dppx) {
    :root {
        font-size: 8px;
    }
}
/*common*/
.b {
    border: 1px solid red;
    box-sizing: border-box;
}

body {
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, 微软雅黑, Arial, sans-serif;
}

.view {
    transition: all 0.2s;
}

::-webkit-scrollbar {
    width: 0px;
    /* 滚动条宽度 */
}

::-webkit-scrollbar-thumb {
    background-color: transparent;
    /* 滚动条滑块颜色 */
}

::-webkit-scrollbar-track {
    background-color: transparent;
    /* 滚动条轨道背景色 */
}

/*nav*/
header {
    transition: all 0.2s;
    z-index: 1111;
    position: fixed;
}
header.hide {
    /*  height: 60px;
  background: rgba(255, 255, 255, 0.8); */
    margin-top: -200px;
}

nav > ul > li {
    position: relative;
    height: 1.5em;
    line-height: 1.5em;
}

nav li a {
    color: rgba(18, 18, 18, 0.7);
    transition: all 0.2s;
}

nav li ul a {
    padding: 15px 0;
    display: block;
}

nav li ul a:hover {
    color: #156bff;
}

nav li .absolute {
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
}
nav li .absolute ul::after {
    z-index: -2;
    content: "";
    background: white;
    display: block;
    height: 54px;
    left: -50vw;
    position: fixed;
    width: 200vw;
    display: none;
    opacity: var(--o);
}
nav li .absolute ul li {
    position: relative;
    z-index: -11;
}

nav > ul > li:hover .absolute {
    grid-template-rows: 1fr;
    opacity: 1;
    z-index: 11;
}
nav > ul > li:hover .absolute ul::after {
    display: block;
    z-index: 0;
}
nav > ul > li:hover .absolute ul li {
    position: relative;
    z-index: 1;
}

nav li a {
    font-size: calc(1.04rem / var(--rate));
}

nav li.active > a,
nav li:hover > a {
    color: #121212;
    font-size: 20px;
    font-weight: 500;
}

nav > ul > li.active:before,
nav > ul > li:hover:before {
    content: "";
    width: 1em;
    height: 2px;
    background: #156bff;
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    margin: auto;
}

.youshi {
    background: url("../images/youshibg.png") center center no-repeat;
    background-size: cover;
    background-position: center center;
}
.youshi .bg-center {
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-radius: 20px;
}
.youshi .m-auto {
    background-repeat: no-repeat;
}
.youshi p {
    line-height: 2em;
    color: #424d5c;
    padding: 0 2em;
    font-weight: 300;
}

#fullpage {
    transition: all 0.5s;
}

@media (min-width: 960px) {
    .rate[class*="text-base"] {
        font-size: calc(1rem / var(--rate));
    }
    .rate[class*="text-lg"] {
        font-size: calc(1.125rem / var(--rate));
    }
    .rate[class*="text-xl"] {
        font-size: calc(1.25rem / var(--rate));
    }
    .rate[class*="h-[62vh]"] {
        height: calc(62vh / var(--rate));
    }
    .rate[class*="mt-[10vh]"] {
        margin-top: calc(5vh * var(--rate));
    }
    .rate[class*="pt-[80px]"] {
        padding-top: calc(80px * var(--rate) * var(--rate) * var(--rate));
        color: red;
    }
    .rate.casetop {
        top: calc((var(--rate) - 1) * 500px);
    }
    .rate.casetop1 {
        top: calc((var(--rate) - 1) * 110px);
    }
}
/*banner*/
.solution .box h3 {
    position: relative;
    z-index: 10;
}
.solution .box::before {
    content: "";
    width: 10px;
    height: 10px;
    background: radial-gradient(rgb(21, 107, 255), rgb(3, 84, 241), rgb(27, 170, 254));
    filter: blur(1px);
    border-radius: 100%;
    position: absolute;
    bottom: -2220px;
    left: -22220px;
    transition: scale 1s;
}
.solution .box.on {
    color: white;
}
.solution .box.on h3 {
    color: white !important;
}
.solution .box.on p {
    color: white !important;
}
.solution .box.on::before {
    scale: 180;
    top: var(--y);
    left: var(--x);
}

.package .bottom .on {
    border: 1px solid #156bff;
}
.package p {
    overflow: hidden;
}
.package .top img.absolute {
    opacity: 0;
    display: block;
    left: var(--x);
    top: var(--y);
    transition: left 0.5s ease-out, top 0.5s ease-out;
}
.package .top img.absolute.on {
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0%;
    right: 0%;
    margin: auto;
}

@media (max-width: 1280px) {
    .platform {
        background: red;
    }
    .platform .item h3 {
        opacity: 1 !important;
        width: 100% !important;
        margin-top: 0em !important;
    }
    .platform .item h3 span {
        position: relative;
        z-index: 1;
        top: 1em;
        left: 0;
    }
    .platform .item div.overflow-hidden::after {
        background: rgba(255, 0, 0, 0) !important;
    }
}
.platform .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #eef4fd;
    transition: all 0.7s;
    flex: 0.5;
}
.platform .item h1 {
    height: 2.2em;
    line-height: 1.1em;
}
.platform .item h3 {
    opacity: 0;
    position: relative;
    transition: all 0.7s;
    height: 4em;
}
.platform .item h3 span {
    position: absolute;
    z-index: 1;
    top: 1em;
    left: 0;
}
.platform .item img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top left;
    object-position: top left;
}
.platform .item div.overflow-hidden {
    position: relative;
    border-radius: 20px;
}
.platform .item div.overflow-hidden::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2) 5%, #eef4fd 80%);
    left: 0;
    top: 0;
    z-index: 1;
}
.platform .item.on {
    flex: 2.5;
    background: white;
}
.platform .item.on h1 {
    color: #156bff;
}
.platform .item.on h3 {
    width: 100%;
    opacity: 1;
    margin-top: -4em;
}
.platform .item.on div.overflow-hidden::after {
    background: rgba(255, 0, 0, 0);
}

.hardware .button img {
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.2s;
}
.hardware .button .cursor-pointer:hover img {
    filter: grayscale(0);
    opacity: 1;
}
.hardware .box {
    transform-origin: center left;
    transition: all 0.7s;
    overflow: hidden;
}
.hardware .box::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(235, 239, 242, 0.5);
    opacity: calc(1 - var(--scale));
}

.more {
    display: inline-flex;
    align-items: center;
}
.more img {
    margin-right: 0.6em;
}

.partner {
    perspective: 500px;
}
.partner img:hover {
    scale: 1.1 !important;
    transition: all 0.5s;
    position: relative;
    box-shadow: 0 0 20px rgba(23, 23, 23, 0.2);
    z-index: 11;
} /*# sourceMappingURL=home.css.map */
