﻿

/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
/*html {*/
/*    color: #333;*/
/*    background: #fff;*/
/*    -webkit-text-size-adjust: 100%;*/
/*    -ms-text-size-adjust: 100%;*/
/*    text-rendering: optimizelegibility;*/
/*    font: var(--fonts);*/
/*}*/

body {
    background: var(--BodyBackground);
    overflow-x: hidden;
    position: relative;

}

/* 如果你的项目仅支持 IE9+ | Chrome | Firefox 等，推荐在 <html> 中添加 .borderbox 这个 class */
html.borderbox *,
html.borderbox *:before,
html.borderbox *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

}

body * {
    box-sizing: border-box;
    -webkit-font-smoothing: var(--fontsthickness);
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --global-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    --txtdesc: rgba(0, 0, 0, 0.65);
    --pcspacing: 40px 0 100px;
    --wapspacing: 20px 0 40px;
}

/* （Bodrum用于标签）在https://www.fontspring.com/购买的免费字体可商用，需要在这里声明 */
@font-face {
    font-family: "Bodrum";
    src: url("../font/bodrum.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "code";
    src: url("shop/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "codeB";
    src: url("../font/DINPro-Medium.woff") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    display: block;
}

/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
    display: inline-block;
}


/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
    font: var(--fonts);
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* 去掉各Table cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 去除默认边框 */
fieldset,
img {
    border: 0;
    width: 100%;
    height: auto;
}

/* 块/段落引用 */
blockquote {
    position: relative;
    color: var(--txtdesc);
    font-weight: 400;
    border-left: 1px solid #1abc9c;
    padding-left: 1em;
    margin: 1em 3em 1em 2em;
}

@media only screen and (max-width: 640px) {
    blockquote {
        margin: 1em 0;
    }
}

/* Firefox 以外，元素没有下划线，需添加 */
acronym,
abbr {
    border-bottom: 1px dotted;
    font-variant: normal;
    text-decoration: none;
}

/* 添加鼠标问号，进一步确保应用的语义是正确的（要知道，交互他们也有洁癖，如果你不去掉，那得多花点口舌） */
abbr {
    cursor: help;
}

/* 一致的 del 样式 */
del {
    text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 400;
}

/* 去掉列表前的标识, li 会继承，大部分网站通常用列表来很多内容，所以应该当去 */
ul,
ol {
    list-style: none;
}

.refundNotice-content ul, .refundNotice-content ol {
    list-style-type: none;
}

.refundNotice-content ul, .refundNotice-content ol {
    list-style-type: circle;
    list-style-position: outside;
}

.refundNotice-content ol {
    list-style-type: decimal;
}

.refundNotice-content ol,
.refundNotice-content ol ul li {
    margin-left: 22px;
}

/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
    text-align: left;
}

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

/* 统一上标和下标 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

:root sub,
:root sup {
    vertical-align: baseline;
    /* for ie9 and other modern browsers */
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* 让链接在 hover 状态下显示下划线 */
a {
    cursor: pointer;
    color: var(--Original);
}

a:hover {
    text-decoration: none;
}

.typo a {
    border-bottom: 1px solid #1abc9c;
}

.typo a:hover {
    border-bottom-color: #555;
    color: #555;
    text-decoration: none;
}

/* 默认不显示下划线，保持页面简洁 */
ins,
a {
    text-decoration: none;
}


u,
.typo-u {
    text-decoration: underline;
}

/* 标记，类似于手写的荧光笔的作用 */
mark {
    background: #fffdd1;
    border-bottom: 1px solid #ffedce;
    padding: 2px;
    margin: 0 4px;
}

/* 滚动条 */
::-webkit-scrollbar {
    width: 4px;
    background: transparent;
}


::-webkit-scrollbar-track {
    background: #f1f1f1;
}


::-webkit-scrollbar-thumb {
    background-color: rgb(201, 205, 212);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(190, 190, 190);
}

/* 滚动条 */
body::-webkit-scrollbar {
    width: 10px;
    background: transparent;
}


/* 代码片断 */
pre,
code,
pre tt {
    font-family: Courier, 'Courier New', monospace;
}

pre {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 1em 1.5em;
    display: block;
    -webkit-overflow-scrolling: touch;
}

/* 一致化 horizontal rule */
hr {
    border: none;
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 0.8em;
    height: 10px;
}

/* 底部印刷体、版本等标记 */
small,
.typo-small,
    /* 图片说明 */
figcaption {
    font-size: 0.9em;
    color: #888;
}

/*strong,*/
/*b {*/
/*    font-weight: bold;*/
/*    color: #000;*/
/*}*/

/* 可拖动文件添加拖动手势 */
[draggable] {
    cursor: move;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

/* 强制文本换行 */
.textwrap,
.textwrap td,
.textwrap th {
    word-wrap: break-word;
    word-break: break-all;
}

.textwrap-table {
    table-layout: fixed;
}

/* 提供 serif 版本的字体设置: iOS 下中文自动 fallback 到 sans-serif */
.serif {
    font-family: Palatino, Optima, Georgia, serif;
}

/* 保证块/段落之间的空白隔行 */
.typo p,
.typo pre,
.typo ul,
.typo ol,
.typo dl,
.typo form,
.typo hr,
.typo table,
.typo-p,
.typo-pre,
.typo-ul,
.typo-ol,
.typo-dl,
.typo-form,
.typo-hr,
.typo-table,
blockquote {
    margin-bottom: 1.2em
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 100;
    color: #000;
    line-height: 1.35;
}

/* 标题应该更贴紧内容，并与其他块区分，margin 值要相应做优化 */
.typo h1,
.typo h2,
.typo h3,
.typo h4,
.typo h5,
.typo h6,
.typo-h1,
.typo-h2,
.typo-h3,
.typo-h4,
.typo-h5,
.typo-h6 {
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    line-height: 1.35;
}

.typo h1,
.typo-h1 {
    font-size: 2em;
}

.typo h2,
.typo-h2 {
    font-size: 1.8em;
}

.typo h3,
.typo-h3 {
    font-size: 1.6em;
}

.typo h4,
.typo-h4 {
    font-size: 1.4em;
}

.typo h5,
.typo h6,
.typo-h5,
.typo-h6 {
    font-size: 1.2em;
}

/* 在文章中，应该还原 ul 和 ol 的样式 */
.typo ul,
.typo-ul {
    margin-left: 1.3em;
    list-style: disc;
}

.typo ol,
.typo-ol {
    list-style: decimal;
    margin-left: 1.9em;
}

.typo li ul,
.typo li ol,
.typo-ul ul,
.typo-ul ol,
.typo-ol ul,
.typo-ol ol {
    margin-bottom: 0.8em;
    margin-left: 2em;
}

.typo li ul,
.typo-ul ul,
.typo-ol ul {
    list-style: circle;
}

/* 同 ul/ol，在文章中应用 table 基本格式 */
.typo table th,
.typo table td,
.typo-table th,
.typo-table td,
.typo table caption {
    border: 1px solid #ddd;
    padding: 0.5em 1em;
    color: var(--txtdesc);
}

.typo table th,
.typo-table th {
    background: #fbfbfb;
}

.typo table thead th,
.typo-table thead th {
    background: #f1f1f1;
}

.typo table caption {
    border-bottom: none;
}

/* 去除 webkit 中 input 和 textarea 的默认样式  */
.typo-input,
.typo-textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

.typo-em,
.typo em,
legend,
caption {
    color: #000;
    font-weight: inherit;
}

/* 着重号，只能在少量（少于100个字符）且全是全角字符的情况下使用 */
.typo-em {
    position: relative;
}

.typo-em:after {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    content: "・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・";
}

/* Responsive images */
.typo img {
    max-width: 100%;
}

/* 模块 */
.container_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: var(--maxwidth);
    min-width: var(--minwidth);
    padding: 0 var(--padding);
}

.container_overflow {
    overflow: hidden;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
    position: fixed;
    width: 100%;
}

.comp_hide {
    display: none !important;
}

.comp_container {
    max-width: var(--maxwidth);
    min-width: var(--minwidth);
    padding: 0 var(--padding);
}

.comp_containerp0 {
    max-width: var(--maxwidth);
    min-width: var(--minwidth);
    padding: 0;
}

.comp_containerw1680p0 {
    max-width: 1680px;
    width: 100%;
    padding: 0;
}

.comp_containerw1680 {
    max-width: 1680px;
    width: 100%;
    padding: 0 var(--padding);
}

.comp_container_auto {
    margin: auto;
}

.comp_containerrelative {
    position: relative;
}

.container_border_bottom {
    border-bottom: 1px solid #ececec;
}

.container_border_bottom2 {
    border-bottom: 2px solid #ececec;
}

.swiper-wrapper-container {
    overflow: hidden;
    position: relative;
}

/* 布局 20：视差滚动效果
适用于创造动态视觉效果的网页，如交互式故事讲述或产品展示。 */
.parallax {
    background-attachment: fixed;
}


/* ButtonStyle */
.fancy-button {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.07em;
    /*text-transform: uppercase;*/
    line-height: 24px;
    color: #ffffff;
    position: relative;
    margin-bottom: 6px;
}

.fancy-button.bg-gradient1 {
    text-shadow: 0px 0px 1px #bf4c28;
}

.fancy-button:before {
    content: "";
    display: inline-block;
    height: 40px;
    position: absolute;
    bottom: -1px;
    left: 10px;
    right: 10px;
    z-index: -1;
    border-radius: 2em;
    -webkit-filter: blur(14px) brightness(0.9);
    filter: blur(14px) brightness(0.9);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.bg-gradient1 span,
.bg-gradient1:before {
    background: var(--Original);
    background: var(--gradient3);
}

.bg-gradient span,
.bg-gradient:before {
    background: var(--gradient1);
}

.fancy-button span {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 28px;
    border-radius: var(--radius);
    position: relative;
    z-index: 2;
    will-change: transform, filter;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.fancy-button:hover:before {
    bottom: 3px;
    -webkit-filter: blur(6px) brightness(0.8);
    filter: blur(6px) brightness(0.8);
}

.fancy-button:hover span {
    -webkit-filter: brightness(0.9) contrast(1.2);
    filter: brightness(0.9) contrast(1.2);
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
}

/*标题*/
.sk-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 60px;
}

.sk-title-container .sk-title {
    font-size: 30px;
    color: var(--txtcl);
    text-align: center;
    line-height: 40px;
    font-weight: 600;
}

.sk-title-container .sk-desc {
    margin-top: 18px;
    font-size: 16px;
    color: rgba(34, 34, 34, 0.9);
    text-align: center;
    line-height: 24px;
    font-weight: 400;
    opacity: 0.9;
}

.sk-title-container.white .sk-title,
.sk-title-container.white .sk-desc {
    color: #fff;
}

#think_page_trace {
    display: none;
}

/*背景*/
.container_bg1 {
    background-color: #fff;
}

.container_bg2 {
    background: #f5f6f8;
}

.container_bg3 {
    background: #f0f1f2;
}

.container_bg4 {
    background-color: #f3f7fb;
}

.container_bg5 {
    background-color: #eee;
}

.container_bg6 {
    background-color: #ebedf0;
}

.container_bg7 {
    background-color: #f0f1f2;
}

.container_bg8 {
    background: #000e28;
}

.container_bg9 {
    background: #fafafa;
}

.container_bg10 {
    background-color: #f6f8fa;
}

.container_bg11 {
    background: #f5f9ff;
}

.container_bg12 {
    background: #f4f7fc;
}

.container_bg13 {
    background: linear-gradient(309deg, rgba(0, 17, 120, 1) 0%, rgba(5, 16, 68, 1) 46%, rgba(4, 15, 65, 1) 100%)
}

.container_bg14 {
    background-color: #f6f8fa;
    background-image: url(../image/local6579884b8b9c7.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg15 {
    background-color: #fff;
    background-image: url(../image/remoteL17025342246554.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg16 {
    background-color: #f4f8ff;
    background-image: url(../image/local657abed8d5f5c.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg17 {
    background-color: #f4f8ff;
    background-image: url(../image/local657abed8d5f5c.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg18 {
    BACKGROUND: #e7e8eb url(../image/Background17.jpg);
}

.container_bg19 {
    background-color: #f4f8ff;
    background-image: url(../image/local659fe86dde16c.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg20 {
    background-color: #f4f8ff;
    background-image: url(../image/remoteL17052299292316.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg21 {
    background-color: #f4f8ff;
    background-image: url(../image/local65a4f727b0712.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg22 {
    background-color: #f4f8ff;
    background-image: url(../image/remoteL17057423232449.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg23 {
    background-color: #f6f8fa;
    /*background-image: url(../picture/remoteL16851875253026.png);*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg24 {
    background-color: #f2f4f9;
}

.container_bg25 {
    background-color: #f6f8fa;
    background-image: url(https://cdn-1300413531.cos.ap-chengdu.myqcloud.com/www/picture/bg14.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg26 {
    background-color: #0f1726;
}

.container_bg27 {
    background-color: #f6f8fa;
    background-image: url(../image/local65c46942300ab.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg28 {
    background-color: #f6f8fa;
    background-image: url(../image/remoteL17075774437373.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg29 {
    background-color: #f6f8fa;
    background-image: url(../image/remoteL17075783825009.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_bg30 {
    background-color: #f4f8ff;
    background-image: url(../image/remoteL17125755984451.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/*动画合集*/
@keyframes shake {
    0%, 100% {
        transform: translateY(0); /* 开始和结束时无位移 */
    }
    50% {
        transform: translateY(-1px); /* 向上移动 */
    }


}

@keyframes animation_icon {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

@keyframes bulletProgress {
    to {
        width: 100%;
    }
}

@keyframes slide-market200-3fc45e0c {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 -1400px;
    }
}

@keyframes bounce-down {
    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/*箭头*/
.cutOneSHair {
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding-right: 20px;
}

.cutOneSHair::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-right: 2px solid var(--Original);
    border-bottom: 2px solid var(--Original);
    transform: translateY(-50%) rotate(-45deg);
    transition: right 0.3s ease;
}

.cutOneSHair.size6::after {
    width: 6px;
    height: 6px;
}

.cutOneSHair.size6::after {
    width: 6px;
    height: 6px;
}

.cutOneSHair.size8::after {
    width: 8px;
    height: 8px;
}

.cutOneSHair.size10::after {
    width: 10px;
    height: 10px;
}

.cutOneSHair.black::after {
    border-right: 2px solid var(--txtcl);
    border-bottom: 2px solid var(--txtcl);
}

.cutOneSHair.white::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.cutOneSHair.black.border1::after {
    border-right: 1px solid var(--txtcl);
    border-bottom: 1px solid var(--txtcl);
}

.cutOneSHair.white.border1::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.cutOneSHair:hover::after {
    right: 5px;
}

/*其他页面标题*/
.currency-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;

    &.center {
        align-items: center;
    }

    &.flex-end {
        align-items: flex-end;
    }

    .currency-title-a {
        color: var(--txtcl);
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 32px;
    }

    .currency-title-a-content {
        color: var(--txtcl);
        font-size: 20px;
        margin-bottom: 46px;
        opacity: .85;
    }
}


/*弹窗提醒*/
.latest-announcement-panel {
    max-width: 460px;
    min-width: 350px;
    position: fixed;
    left: -100%;
    bottom: 16px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    transition: left 0.3s;
    z-index: 1000;
    border-radius: 0px 3px 3px 0px;
    overflow: hidden;
}


.latest-announcement-panel.visible {
    left: 0;
}


.latest-announcement-toggle {
    position: fixed;
    left: 0;
    bottom: 16px;
    font-size: 12px;
    font-weight: 500;
    background: var(--gradient1);
    color: white;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.2s;
    letter-spacing: 5px;
    text-orientation: upright;
    writing-mode: vertical-lr;
    border-radius: 0px 3px 3px 0px;
    z-index: 999;
}

.latest-announcement-content {
    padding: 10px 14px;
    font-size: 13px;
}

.latest-popup-content-title {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: #edeef3;
    color: #6e6e6e;
    align-items: center;
    border-radius: 0px 3px 0px 0px;
}

.latest-announcement-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.latest-announcement-close {
    font-size: 18px;
    cursor: pointer;
    color: black;
}

.latest-announcement-content p {
    color: rgb(0, 0, 0);
    line-height: 1.8;
    font-size: 12px;
    font-weight: 400;
}

.latest-announcement-bott {
    display: flex;
    flex-direction: row-reverse;
}

.latest-announcement-no-more, .latest-announcement-buttclose {
    font-size: 12px;
    color: #fff;
    background: var(--Original);
    border-radius: 1px;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-out;
    padding: 10px 20px;
    font-weight: 400;
}

.latest-announcement-buttclose {
    background: #ccc;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .comp_container {
        max-width: 100%;
        min-width: 100%;
        padding: 0 16px;
    }

    .fancy-button span {
        padding: 6px 12px;
        font-size: 14px;
        font-weight: 400;
    }

    .currency-title .currency-title-a {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .currency-title .currency-title-a-content {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .lg-toolbar .lg-icon {
        color: #fff !important;
    }

    .sk-title-container {
        padding: 12px 0 18px
    }

    .sk-title-container .sk-title {
        font-size: 20px;
        line-height: 24px;
    }

    .sk-title-container .sk-desc {
        font-size: 14px;
        line-height: 22px;
        margin-top: 12px;
    }

    .latest-announcement-panel {
        width: 100%;
        bottom: 82px;
    }

    .latest-announcement-toggle {
        bottom: 82px;
    }
}