@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);
    }
}
/*tool*/
.bgcolor {
    --from: rgba(58, 110, 242, 1);
    --to: rgba(255, 77, 193, 1);
    width: 100%;
    color: rgba(0, 0, 0, 0) !important;
    background-image: linear-gradient(45deg, var(--from), var(--to), var(--from), var(--to));
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 200% 100%;
    background-position: 0 0;
    animation: bgposition 2s infinite linear alternate;
}

@keyframes bgposition {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}
/*产品1 小贝项目*/
#index {
    perspective: 350px;
}
#index .tips {
    padding: 1em 40px;
    font-size: 14px;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    line-height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
#index .tips .inner {
    display: flex;
    align-items: flex-start;
}
#index .tips .inner::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    flex-shrink: 0;
    margin-left: -10px;
    margin-right: 10px;
    margin-top: 9px;
}
#index .tips.text-primary-text .inner::before {
    background: #156bff;
}
#index .box {
    opacity: 1;
    border-radius: 20px;
    background: #ffffff;
    line-height: 1.5em;
    box-sizing: border-box;
    padding: 20px;
}
#index .box .title {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    margin-bottom: 20px;
}
#index .box .title .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 0;
}
#index .box .title .dot:before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #dbe5ff;
}
#index .box .title .dot::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    border: 2px solid #156bff;
    box-sizing: content-box;
    animation: circle 0.5s infinite alternate;
}
#index .box .right,
#index .box .left {
    box-sizing: border-box;
    min-height: 40px;
    border-radius: 15px;
    background: linear-gradient(0deg, rgb(102, 147, 250) 0%, rgb(51, 99, 255) 100%);
    box-shadow: 0px 4px 20px rgba(8, 11, 26, 0.1);
    padding: 8px 16px;
    color: white;
    font-size: 12px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    word-break: break-word;
    word-wrap: break-word;
    background: #156bff;
    margin-bottom: 20px;
    overflow: hidden;
}
#index .box .right.man,
#index .box .left.man {
    color: #121212;
    background: linear-gradient(180deg, #ffffff 0%, #f2faff 100%) !important;
}
#index .box .right {
    border-bottom-right-radius: 4px;
    float: right;
}
#index .box .left {
    border-bottom-left-radius: 4px;
}
#index .box .center {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 10px;
    color: #121212;
}
#index .box .center .text {
    position: relative;
    z-index: 3;
    font-size: 12px;
    text-align: center;
    width: 100%;
}
#index .box .center::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0px 2px 4px rgb(255, 255, 255);
    z-index: 2;
    content: "";
}
#index .box .center::after {
    content: "";
    position: absolute;
    width: 92%;
    height: 80%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    background: linear-gradient(90deg, rgba(155, 226, 250, 0.6) 0%, rgba(242, 140, 128, 0.32) 52.08%, rgba(102, 255, 173, 0.37) 100%);
    filter: blur(10px);
}
@keyframes circle {
    0% {
        width: 4px;
        height: 4px;
    }
    100% {
        width: 10px;
        height: 10px;
    }
}
#index .screen {
    border-radius: 40px;
    border: 8px solid rgba(21, 107, 255, 0.6);
}
#index .screen .inner {
    height: calc(75vh - 100px);
    overflow-y: hidden;
}
#index .screen .middle {
    margin: 80px 15px 30px;
    background: white;
    padding: 14px;
    border-radius: 20px;
    transition: margin-top 1s;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%);
}
#index .screen .middle .title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 2em;
}
#index .screen .middle .title text {
    color: #3363ff;
}
#index .screen .middle .desc {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}
#index .screen .middle .list .item {
    font-size: 15px;
    font-weight: 500;
    line-height: 3.5em;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
}
#index .screen .middle .list .item:last-of-type {
    border-bottom: none;
}
#index .screen .item {
    margin: 30px 15px;
    overflow: hidden;
}
#index .screen .item .gpt {
    max-width: 76%;
}
#index .screen .item .man {
    float: right;
    max-width: 76%;
}
#index .screen .item .text {
    box-sizing: border-box;
    min-height: 40px;
    border-radius: 15px;
    background: linear-gradient(0deg, rgb(102, 147, 250) 0%, rgb(51, 99, 255) 100%);
    box-shadow: 0px 4px 20px rgba(8, 11, 26, 0.1);
    padding: 8px 16px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    word-break: break-word;
    word-wrap: break-word;
    line-height: 1.5em;
}
#index .screen .item .text.man {
    border-bottom-right-radius: 4px;
}
#index .screen .item .text.gpt {
    border-bottom-left-radius: 4px;
    background: white;
    color: rgb(33, 39, 54);
}

.pc .computer {
    border: 8px solid rgba(21, 107, 255, 0.6);
} /*# sourceMappingURL=style.css.map */
