@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}
html[theme=dark_mode] {
  filter: invert(100%) hue-rotate(180deg);
}

/* Workarounds and optical adjustments. */
/* Firefox workaround: Set the background colour for the html
     element separately because, unlike other browsers, Firefox
     doesn’t apply the filter to the root element’s background. */
html[theme=dark_mode] {
  background-color: #111;
}

/* Do not invert media (revert the invert). */
html[theme=dark_mode] img,
html[theme=dark_mode] video,
html[theme=dark_mode] iframe {
  filter: invert(100%) hue-rotate(180deg);
}

/* Improve contrast on icons. */
html[theme=dark_mode] .icon {
  filter: none;
}

/* Re-enable code block backgrounds. */
html[theme=dark_mode] pre {
  filter: invert(6%);
}

/* Improve contrast on list item markers. */
html[theme=dark_mode] li::marker {
  color: #666;
}

object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

b,
strong,
th {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 20px 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  outline: none;
}

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

label {
  font-weight: normal;
}

input[type=text],
input[type=email],
input[type=password] {
  padding-left: 12px;
  padding-right: 12px;
}

select {
  padding-left: 8px;
  cursor: pointer;
}

input[type=number] {
  padding-left: 5px;
}

textarea {
  padding: 8px 12px 5px 12px;
}

input,
textarea,
select,
button,
a,
button:hover,
button:active,
button:focus {
  outline: none;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

* {
  padding-left: constant(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-bottom: constant(safe-area-inset-bottom);
  padding-top: constant(safe-area-inset-top);
}

img {
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  
}

.row {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}
.row > .col,
.row > [class*=col-] {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

@media all and (min-width: 1600px) {
  .container {
    max-width: 1170px;
  }
}
.pad-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.pad-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.pad-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.pad-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.col-mar-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.col-mar-0 [class*=col-],
.col-mar-0 .col {
  padding-left: 0px;
  padding-right: 0px;
}

.col-mar-5 {
  margin-left: -5px;
  margin-right: -5px;
}
.col-mar-5 [class*=col-],
.col-mar-5 .col {
  padding-left: 5px;
  padding-right: 5px;
}

.col-mar-8 {
  margin-left: -8px;
  margin-right: -8px;
}
.col-mar-8 [class*=col-],
.col-mar-8 .col {
  padding-left: 8px;
  padding-right: 8px;
}

.col-mar-10 {
  margin-left: -10px;
  margin-right: -10px;
}
.col-mar-10 [class*=col-],
.col-mar-10 .col {
  padding-left: 10px;
  padding-right: 10px;
}

.fx-mid {
  align-items: center;
}

.ifx-top {
  align-self: start;
}

.ifx-bot {
  align-self: end;
}

.ifx-mid {
  align-self: center;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.absolute {
  position: absolute;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ic {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.smooth {
  transition: all 0.2s ease-in-out;
  backface-visibility: hidden;
}

@media all and (max-width: 991px) {
  .md-pad-7 {
    margin: 0 -7px;
  }
  .md-pad-7 > [class^=col-] {
    padding: 0 7px;
  }
  .md-pad-5 {
    margin: 0 -5px;
  }
  .md-pad-5 > [class^=col-] {
    padding: 0 5px;
  }
}
@media all and (max-width: 767px) {
  .sm-pad-7 {
    margin: 0 -7px;
  }
  .sm-pad-7 > [class^=col-] {
    padding: 0 7px;
  }
  .sm-pad-5 {
    margin: 0 -5px;
  }
  .sm-pad-5 > [class^=col-] {
    padding: 0 5px;
  }
  .tb-responsive {
    display: block;
  }
  .tb-responsive tbody,
  .tb-responsive tfoot,
  .tb-responsive tr,
  .tb-responsive th,
  .tb-responsive td {
    display: block;
  }
  .tb-responsive thead {
    display: none;
  }
  .tb-responsive tr:nth-child(2n) {
    background: #f5f5f5;
  }
  .tb-responsive td {
    position: relative;
    padding: 10px 10px 10px 50%;
  }
  .tb-responsive td:before {
    content: attr(data-title);
    position: absolute;
    left: 0;
    width: 50%;
    padding-right: 15px;
  }
}
@media all and (max-width: 575px) {
  .xs-pad-7 {
    margin: 0 -7px;
  }
  .xs-pad-7 > [class^=col-] {
    padding: 0 7px;
  }
  .xs-pad-5 {
    margin: 0 -5px;
  }
  .xs-pad-5 > [class^=col-] {
    padding: 0 5px;
  }
}



.slick-list {
  margin: 0 -1.5rem;
  top: 5px;
}
.slick-list .slick-slide {
  margin: 0 1.5rem;
  top: -25px;
}

.slick-arrow {
  cursor: pointer;
  z-index: 1;
  text-align: center;
  position: absolute;
}

.slick-dots {
  text-align: center;
}
.slick-dots button {
  display: none;
}
.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  border: solid 2px #666;
  border-radius: 50%;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background: #666;
}

.i-select {
  position: relative;
}
.i-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 1px;
  text-overflow: "";
  width: 100%;
}

.s-content {
  word-break: break-word;
}
.s-content a[href] {
  color: #072645
}
.s-content a[href]:hover {
  text-decoration: underline;
}
.s-content a,
.s-content a:hover,
.s-content a:focus,
.s-content a:active {
  text-decoration: underline;
}
.s-content ol {
  list-style: decimal;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.s-content ul {
  list-style: initial;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.s-content li {
  list-style: inherit;
  margin-bottom: 0.5rem;
}
.s-content p {
  margin-bottom: 1rem;
}
.s-content img {
  max-width: 100%;
  height: auto !important;
  margin: 1rem auto;
  object_fit: initial;
}
.s-content .alignleft,
.s-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.s-content .alignright,
.s-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.s-content .aligncenter,
.s-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.s-content blockquote.left {
  margin-right: 2rem;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}
.s-content blockquote.right {
  margin-left: 2rem;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}
.s-content table,
.s-content iframe {
  max-width: 100%;
  max-width: calc(100vw - 3rem);
  margin: auto;
}
.s-content iframe {
  display: block;
}
.s-content h1,
.s-content h2,
.s-content h3,
.s-content h4,
.s-content h5,
.s-content h6 {
  font-weight: 700;
}
.s-content h1 {
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
}
.s-content h2 {
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
}
.s-content h3 {
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.s-content h4 {
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
}
.s-content h5 {
  font-size: 0.83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
}
.s-content h6 {
  font-size: 0.67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
}

.hc-upload {
  position: relative;
}
.hc-upload .hc-del {
  position: absolute;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  top: -12px;
  right: -12px;
  cursor: pointer;
}
.hc-upload .hc-del:hover {
  background: rgba(0, 0, 0, 0.85);
}

html,
body {
  font-size: 1.6rem;
  /* font-family: "Mulish", sans-serif; */
  line-height: 1.5;
  color: #000;
  min-height: 100%;
  -webkit-tab-hightlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 62.5%;
}
@media (max-width: 1199px) {
  html {
    font-size: 60%;
  }
}

.wrap {
  overflow: hidden;
}

.section {
  padding: 3rem 0;
  background-color: #f6f6f6;
}
@media (max-width: 768px) {
  .section {
    padding: 10rem 0 3rem;
  }
}

.btn {
  border: none;
  outline: none;
  font-size: 1.6rem;
}
.btn-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #001042;
  width: 25rem;
  padding: 2rem 2.5rem;
  background: #fff;
  border-radius: 6px;
  transition: all 0.2s ease;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}
.btn-benefit > i {
  color: #1c40f2;
  font-size: 2.3rem;
}
.btn-upgrade {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 5px;
  padding: 12px 32px;
  color: #fff;
  background-color: #072645;
  transition: all 0.3s ease-out;
}
.btn-upgrade > i {
  margin-right: 0.8rem;
}
.btn-upgrade:hover {
  color: #fff;
  background-color: #35485f;
}
/* 按钮基础样式 */
.btn-link, .btn-order, .btn-action, .btn-recharge, 
.btn-withdraw, .btn-logout,.btn-upgrade {
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 流光效果 */
.btn-link::before, .btn-order::before, .btn-action::before, 
.btn-recharge::before, .btn-withdraw::before, .btn-logout::before, .btn-upgrade::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: 3.5s;
  z-index: -1;
}

.btn-link:hover::before, .btn-order:hover::before, .btn-action:hover::before, 
.btn-recharge:hover::before, .btn-withdraw:hover::before, .btn-logout:hover::before {
  left: 100%;
}

/* 统一蓝色主题 */
.btn-link, .btn-order, .btn-action, .btn-recharge, 
.btn-withdraw, .btn-logout {
  background: linear-gradient(90deg, #000000, #3a69a2, #004e92);
  background-size: 200% 100%;
}

.btn-link:hover, .btn-order:hover, .btn-action:hover, 
.btn-recharge:hover, .btn-withdraw:hover, .btn-logout:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 25px rgba(0, 98, 255, 0.6);
}

.btn-link:active, .btn-order:active, .btn-action:active, 
.btn-recharge:active, .btn-withdraw:active, .btn-logout:active {
  transform: scale(0.98);
}

/* 保持原有尺寸不变 */
.btn-link {
  height: 6rem;
  padding: 1.2rem 1.5rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.btn-order {
  border-radius: 5px;
  padding: 16px 32px;
}

.btn-action {
  border-radius: 5px;
  padding: 1.2rem 2rem;
}

.btn-logout {
  border-radius: 1rem;
  padding: 1.2rem 2rem;
  font-size: 1.4rem;
}
.page-title {
  font-size: 2rem;
  font-weight: 600;
}

.mission-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0px 12px 50px rgba(125, 125, 125, 0.1);
}
.mission-card-title {
  text-transform: capitalize;
  font-size: 1.4rem;
  color: #001042;
  font-weight: 700;
}
.mission-card-percent {
  color: rgb(82, 196, 26);
  font-size: 1.4rem;
  font-weight: 700;
}
.mission-card-slide {
  margin-bottom: 2rem;
  overflow: hidden;
}
.mission-card-slide img {
  transition: transform 0.3s ease-out;
  width: 54rem;
  height: 54rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .mission-card-slide img {
    width: auto;
    height: auto;
  }
}
.mission-card-slide:hover img {
  transform: scale(1.1);
}
.mission-card-tag {
  font-weight: 600;
  margin-bottom: 1rem;
}
.mission-card .btn-upgrade {
  width: 100%;
  background: linear-gradient(90deg, #000000, #3a69a2, #004e92);
  background-size: 200% 100%;

}



    /* 标签样式 */
        .tabs {
            display: flex;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 8px;
            margin-bottom: 40px;
            border: 1px solid rgba(56, 189, 248, 0.2);
            box-shadow: 0 10px 30px rgba(2, 8, 20, 0.5);
            position: relative;
            overflow: hidden;
            max-width: 500px;
            width: 100%;
        }

        .tabs::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 33.33%;
            height: 100%;
            background: linear-gradient(90deg, rgba(56, 189, 248, 0.2), rgba(96, 165, 250, 0.1));
            border-radius: 50px;
            z-index: 0;
            transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .tab {
            flex: 1;
            padding: 14px 20px;
            text-align: center;
            font-weight: 500;
            font-size: 1.1rem;
            cursor: pointer;
            position: relative;
            z-index: 1;
            transition: color 0.3s;
            color: #94a3b8;
        }

        .tab.active {
            color: #f1f5f9;
        }

        /* 卡片容器 */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            width: 92%;
            max-width:680px;
            padding: 30px;
        }

 /* 卡片样式 - 铂金磨砂质感 */
        .card {
            background: rgba(#003366);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 15px 35px rgba(2, 8, 20, 0.4), 
                        0 0 0 102px rgba(148, 163, 184, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            height: auto;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        /* 浮空效果 */
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(2, 8, 20, 0.5), 
                        0 0 0 1px rgba(56, 189, 248, 0.3);
        }
/* 流光效果 */
        .card::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                        transparent, transparent, 
                        rgba(96, 165, 250, 0.2), 
                        transparent, transparent);
            transform: rotate(30deg);
            animation: flowLight 8s linear infinite;
            z-index: -1;
        }

        /* 边缘旋转效果 */
        .card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            border: 2px solid transparent;
            animation: borderRotate 2s linear infinite;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .card:hover::after {
            opacity: 1;
        }


 /* 动画效果 */
        @keyframes flowLight {
            0% {
                transform: rotate(30deg) translate(-10%, -10%);
            }
            100% {
                transform: rotate(30deg) translate(10%, 10%);
            }
        }

        @keyframes borderRotate {
            0% {
                border-image: linear-gradient(45deg, 
                            #38bdf8, 
                            #60a5fa, 
                            #93c5fd, 
                            #60a5fa, 
                            #38bdf8) 1;
                border-image-slice: 1;
            }
            100% {
                border-image: linear-gradient(405deg, 
                            #38bdf8, 
                            #60a5fa, 
                            #93c5fd, 
                            #60a5fa, 
                            #38bdf8) 1;
                border-image-slice: 1;
            }
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: 1fr;
            }
            
            .tabs {
                max-width: 90%;
            }
        }

.order-list > li {
  margin: 50px 0 2rem; /* 上 左右 下 */
  padding: 2rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, 
              rgba(17, 17, 26, 0.1) 0px 8px 24px, 
              rgba(17, 17, 26, 0.1) 0px 16px 48px;
  position: relative; /* 如果需要使用top才需要这个 */
  /* top: 20px; 只有设置了position后才有效 */
}

.order-list > li p {
  color: #000;
}
.order-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.order-title i {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  font-size: 2rem;
  background-color:  #072645;
  color: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-title h3 {
  font-size: 1.8rem;
  color: #000;
}
.order-tag {
  margin-top: 1rem;
  color: #000;
}
.order-percent {
  display: inline-block;
  margin-top: 2rem;
  font-weight: 700;
}
.order-img {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.order-action {
  margin-top: 1rem;
}
.order-action p {
  color: #000;
  font-size: 1.4rem;
}
.order-action .btn {
  margin-top: 1rem;
  font-size: 1.6rem;
  padding: 1rem 2rem;
}
.order-sum {
  margin-top: 2rem;
}
.order-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.order-item p {
  color: #000;
  font-size: 1.8rem;
}
.order-item strong {
  font-size: 1.7rem;
  color: #2a57a5;
}




 .form-group {
            margin-bottom: 25px;
            top: 80px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 28px;
            font-weight: 500;
            color: #444;
            font-size: 15px;
        }

.form-total {
  margin-bottom: 1.5rem;
}
.form-total button {
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0px 5px;
  border-radius: 3px;
  background: rgba(150, 150, 150, 0.1);
  border: 1px solid rgba(99, 99, 99, 0.2);
  margin-left: 1rem;
}
.form input {
  width: 100%;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: #656565;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background-color: #fff;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
}
.form input:focus {
  box-shadow: none;
}
.form label {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600 !important;
}
/*.form-logo {
  width: 100%;

  display: flex;
  justify-content: center;
}
 .form-logo img {
  
  width: 25rem;
}*/
.form-link {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.form-link a {
  color: #162f67;
}
.form-box {
  position: relative;
    top: 1rem;

}
.form-box i {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}
.form-btn {
  background-color: #2392fc;
  border-radius: 5px;
  padding: 1rem 2rem;
  color: #ffffff;
  transition: all 0.25s ease;
}
.form-btn:hover {
  background-color: #0379e9;
}
.form-notice p {
  color: #ff7a5d;
}

.qr-inner {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .qr-inner {
    gap: 1rem;
  }
}
.qr-list li {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .qr-list li {
    font-size: 1.4rem;
  }
}
.qr-img {
  flex-shrink: 0;
  width: 20rem;
  height: 20rem;
}
@media (max-width: 768px) {
  .qr-img {
    width: 10rem;
    height: 10rem;
  }
}
.qr-img img {
  width: 100%;
  height: 100%;
}
.qr-code {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background-color: #ff5f3b;
  color: #fff;
  border-radius: 1rem;
  text-align: center;
}

.bill {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}
.bill-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #000;
  margin-bottom: 2rem;
}
.bill-box i {
  width: 5rem;
  background-color: rgb(24, 144, 255);
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 0.5rem;
}
.bill-box p {
  font-size: 1.8rem;
  font-weight: 600;
}
.bill-text {
  color: #000;
  margin-top: 0.5rem;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .bill-text {
    white-space: nowrap;
  }
}
.bill strong {
  color: #000;
}
.bill-img {
  margin-top: 2rem;
}
.bill-list {
  margin-top: 2rem;
}
.bill-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.bill-list li span {
  font-weight: 700;
  font-size: 1.8rem;
  color: #000;
}
.bill-list li span:nth-child(2) {
  color: #ffa900;
}
.bill .btn {
  margin-top: 3rem;
  padding: 1rem 2rem;
  font-size: 2rem;
  background: linear-gradient(90deg, #000000, #3a69a2, #004e92);
  background-size: 80% 120%;

}

.about-wrap {
  padding: 1.5rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  border-radius: 1rem;
}
.about-wrap .about {
  margin-bottom: 2rem;
}
.about-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-head img {
  color: #fff;
}
.about-head h2 {
  font-size: 1.8rem;
  font-weight: 600;
}
.about-icon {
  background-color: #2392fc;
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
}
.about-desc {
  margin-top: 1rem;
  font-size: 1.5rem;
}
.about-list {
  margin-top: 1rem;
}

.acd-drop:after {
  content: "+";
}
.acd-drop.active:after {
  content: "−";
}

@media all and (min-width: 992px) {
  .m-nav,
  .m-nav-over {
    display: none !important;
  }
}
@media all and (max-width: 991px) {
  .m-nav-over {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 998;
    width: 0;
    height: 100%;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease-in-out;
  }
  .m-nav-over.active {
    width: 100%;
  }
  .m-nav {
    display: block;
    position: fixed;
    top: 0;
    width: 280px;
    bottom: 0;
    z-index: 999;
    color: #fff;
    background: #fff;
    transition: all 0.15s ease-in-out;
    right: -280px;
  }
  .m-nav.active {
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.15);
    right: 0;
  }
  .m-nav.active .m-nav-close {
    visibility: visible;
    opacity: 1;
  }
  .m-nav .m-nav-close {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    right: 0;
    outline: none;
    color: #072645;
    font-size: 28px;
    cursor: pointer;
    transition: inherit;
    opacity: 0;
    visibility: hidden;
  }
  .m-nav .nav-ct {
    height: 100%;
    overflow: auto;
  }
  .m-nav .logo {
    display: flex;
    justify-content: center;
  }
  .m-nav .logo img {
    width: 13rem;
  }
  .m-nav a {
    color: #666;
    display: block;
    font-size: 14px;
    font-family: arial;
    line-height: 20px;
    padding: 15px 15px 15px 18px;
    border-bottom: solid 1px #e0e1ea;
  }
  .m-nav ul ul {
    background: rgba(255, 255, 255, 0.04);
    display: none;
  }
  .m-nav ul ul a {
    padding-left: 36px;
  }
  .m-nav ul ul ul {
    padding-left: 54px;
  }
  .m-nav .acd-drop {
    width: 40px;
    height: 40px;
    float: right;
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: inherit;
    font-family: monospace;
    outline: none;
    cursor: pointer;
    border-left: solid 1px #444;
    background: rgba(255, 255, 255, 0.04);
  }
}
/* LOGO */
.logo {
    position: absolute; /* 绝对定位 */
    top: 2px; /* 距离顶部20px */
    left: 20px; /* 距离左侧20px */
    z-index: 100; /* 确保在最上层 */
    display: block;
    width: auto; /* 宽度自适应 */
    height: 20px; /* 固定高度 */
    transition: none; /* 禁用悬停效果 */
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3)); /* 立体阴影效果 */
    border: 2px solid rgba(255, 255, 255, 0.2); /* 微妙边框 */
    background: linear-gradient(90deg, #000000, #3a69a2, #004e92);
    background-size: 200% 100%;
    border-radius: 8px; /* 圆角 */
    background: rgba(0, 0, 0, 0.0); /* 半透明背景 */
    padding: 5px; /* 内边距 */
    box-sizing: content-box; /* 盒模型设置 */
}

.logo img {
    height: 100%; /* 图片高度100%填充 */
    width: 200px; /* 宽度自适应 */
    margin-left: auto; 
    max-width: 180px; /* 最大宽度限制 */
    display: block;
    object-fit: contain; /* 保持比例 */
    transition: none; /* 禁用悬停效果 */
    filter: none; /* 禁用滤镜效果 */
}



.d-nav ul li {
  display: inline-block;
  margin: 0 1rem;
}
.d-nav ul li a {
  /* font-family: "Mulish", sans-serif; */
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}
.d-nav ul li a:hover {
  color: #2392fc;
}

.icon-menu {
  display: none;
}

@media (max-width: 1199px) {
  .d-nav {
    display: none;
  }
  .icon-menu {
    display: block;
    width: 25px;
    position: relative;
  }
  .icon-menu span {
    display: block;
    background-color: #fff;
    width: 100%;
    margin: 3px 0;
    border-radius: 3px;
    height: 2px;
    float: right;
  }
  .icon-menu span:first-child {
    margin-top: 0;
  }
  .icon-menu span:nth-child(2n+1) {
    width: 18px;
  }
  .icon-menu span:last-child {
    margin-bottom: 0;
  }
}
/* ===== 底部导航栏 - 玻璃质感风格 ===== */
.footer-nav {
  /* 基础背景色（所有浏览器都支持） */
  background-color: #e6e6e6;
  
  /* 半透明银白色背景（现代浏览器） */
  background-color: rgba(230, 230, 230, 0.8);
  
  /* 毛玻璃效果（现代浏览器支持，不支持的会自动忽略） */
  backdrop-filter: blur(10px);
  
  /* 边框和阴影增强层次感 */
  border-top: 1px solid rgba(200, 200, 200, 0.8);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

/* ===== 导航菜单项 ===== */
.footer-menu {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ===== 菜单项链接 ===== */
.footer-menu > li > a {
  width: 6.5rem;
  height: 6.5rem;
  font-weight: 500;
  font-size: 1.4rem;
  color: #666; /* 非激活状态颜色 */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== 激活状态和悬停效果 ===== */
.footer-menu > li > a:hover, 
.footer-menu > li > a.active {
  color: #165DFF; /* 激活状态颜色 */
  background-color: #072645;
  background: #05396e; /* 轻微背景色 */
  transform: translateY(-2px); /* 轻微上浮效果 */
}

/* ===== 高亮按钮样式 ===== */
.footer-menu > li > a.highlight {
  /* 基础背景色（所有浏览器都支持） */
  background-color: #0062e3;
  
  /* 半透明背景（现代浏览器） */
  background-color: #072645;
  
  color: #fff;
  box-shadow: 0 4px 15px rgba(254, 189, 105, 0.3);
}

/* ===== 高亮按钮激活状态 ===== */
.footer-menu > li > a.highlight.active, 
.footer-menu > li > a.highlight:hover {
  /* 基础背景色（所有浏览器都支持） */
  background-color: #072645;
  
  /* 略微加深的背景（现代浏览器） */
  background-color: #05203c;
  
  color: #fff;
  box-shadow: 0 6px 20px rgba(254, 189, 105, 0.4);
  transform: translateY(-2px); /* 轻微上浮效果 */
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
  .footer-menu > li > a {
    font-size: 1.2rem;
    padding: 0.5rem;
    width: 6.8rem;
    height: 6.8rem;
  }
}

/* ===== 视频上边距 ===== */
.section-banner {
  padding-top: 2rem;
}

/* 轮播图背景容器 */
.section-banner .banner-bg {
  width: 100%;
  
}
.section-banner .banner-bg .slick-dots {
  position: absolute;
  bottom: 0;
}
.section-banner .banner-bg .slick-dots li {
  border: 0;
  background: transparent;
  width: 2rem;
  height: 2rem;
  transition: width 0.2s ease;
}
.section-banner .banner-bg .slick-dots li.slick-active {
  width: 0rem;
}
.section-banner .banner-bg .slick-dots li.slick-active button {
  background-color: #fff;
  opacity: 0;
}
.section-banner .banner-bg .slick-dots li button {
  background: #fff;
  border: 0;
  border-radius: 1px;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 4px;
  opacity: 0.3;
  outline: none;
  padding: 0;
  transition: all 0.5s;
  width: 100%;
}
.section-banner .banner-bg img {
  max-height: 50rem;
  width: 100%;
}
.section-banner .banner-btn {
  max-width: 100%;
  width: 100%;
  margin: 5rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .section-banner .banner-btn {
    max-width: 100%;
  }
  .section-banner .banner-btn .btn {
    padding: 1rem;
    font-size: 1.4rem;
    flex: 1;
  }
}
@media (max-width: 768px) {
  .section-banner .btn-benefit {
    width: 100%;
  }
}

.section-mission {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .section-mission {
    padding-top: 3rem;
  }
}
.section-mission .mission-title {
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  color: #001042;
}
.section-mission .mission-head {
  margin-bottom: 3rem;
}
.section-mission .mission-card {
  margin-bottom: 3rem;
}
.section-mission .mission-link {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-left: -2rem;
}
@media (max-width: 768px) {
  .section-mission .mission-link {
    margin-bottom: 1rem;
  }
}
.section-mission .mission-bot {
  margin-top: 2rem;
}
.section-mission .mission-bot ul li {
  margin-top: 0.5rem;
}
.section-mission .mission-hightlight {
  color: #2a57a5;
}
.section-mission .btn-link {
  margin-left: 2rem;
  margin-bottom: 2rem;
  flex: 0 0 calc(25% - 2rem);
  gap: 1rem;
  align-items: center;
}
.section-mission .btn-link span {
  line-height: 2.2rem;
}
.section-mission .btn-link i {
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .section-mission .btn-link {
    flex: 0 0 calc(50% - 2rem);
  }
}
.section-mission .slick-dots {
  position: absolute;
  bottom: 0;
}
.section-mission .slick-dots li {
  border: 0;
  background: transparent;
  width: 2rem;
  height: 2rem;
  transition: width 0.2s ease;
}
.section-mission .slick-dots li.slick-active {
  width: 3rem;
}
.section-mission .slick-dots li.slick-active button {
  background-color: #fff;
  opacity: 1;
}
.section-mission .slick-dots li button {
  background: #fff;
  border: 0;
  border-radius: 1px;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 4px;
  opacity: 0.3;
  outline: none;
  padding: 0;
  transition: all 0.5s;
  width: 100%;
}

.page {
  padding: 4rem 0 0rem 0;
  background: #e8eaed;
  min-height: 100vh;
}
.page .rank-head {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page .rank-img {
  width: 8rem;
}
.page .rank-img img {
  border-radius: 1rem;
}
.page .rank-desc {
  font-weight: 700;
  flex: 1;
}
.page .rank-desc strong {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .page .rank-desc strong {
    font-size: 1.6rem;
  }
}
.page .rank-desc p {
  margin-top: 5px;
  color: grey;
}
@media (max-width: 768px) {
  .page .rank-desc p {
    font-size: 1.4rem;
  }
}
.page .rank-icon {
  max-width: 80%;
  margin: 3rem auto;
}
.page .rank-icon p {
  margin-top: 2rem;
  text-align: center;
}
.page .rank-list {
  display: flex;
  justify-content: space-around;
}
.page .rank-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.page .rank-list li i {
  font-size: 3rem;
}
.page .rank-card {
  font-weight: 600;
  margin-bottom: 2rem;
  min-height: 23rem;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}
.page .rank-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(204, 204, 204);
}
.page .rank-card-head button {
  font-weight: 700;
  color: green;
  font-size: 1.7rem;
}
.page .rank-card-head button.not-active {
  color: #000;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}
.page .rank-card-head button.not-active:hover {
  color: #2392fc;
  border-color: currentColor;
}
.page .rank-card-box {
  display: flex;
  flex-direction: column;
}
.page .rank-card-box span {
  font-weight: 700;
  color: rgb(82, 196, 26);
}
.page .rank-card-box h3 {
  font-weight: 700;
}
.page .rank-card-desc {
  margin-top: 2rem;
}
.page .rank-card-desc p {
  font-weight: 700;
  margin-bottom: 1rem;
}
.page .rank-card-notice {
  color: #fa2828;
}
.page .group-list {
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.page .group-list li {
  padding: 1rem;
  flex: 0 0 50%;
  border: 1px solid orange;
}
@media (max-width: 768px) {
  .page .group-list li {
    flex: 0 0 100%;
  }
}
.page .group-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .page .group-inner {
    align-items: flex-start;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .page .group-inner.history {
    align-items: center;
    padding: 1rem;
  }
  .page .group-inner.history.trans {
    flex-direction: column;
    align-items: flex-start;
  }
  .page .group-inner.history.trans .group-info {
    margin-bottom: 1rem;
  }
}
.page .group-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page .group-box i {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .page .group-box i {
    font-size: 3rem;
  }
}
.page .group-desc {
  flex: 1;
}
.page .group-desc p:not(:first-child) {
  color: orange;
}
.page .group-img {
  flex: 0 0 33.33%;
}
.page .group-img-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .page .group-img-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page .group-img-box img {
  width: 8rem;
}
.page .group-img-text {
  display: flex;
  flex-direction: column;
}
.page .group-img-text span:last-child {
  color: #0dc253;
  font-weight: 700;
}
.page .group-id {
  display: inline-block;
  color: #005652;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page .group-profit {
  font-weight: 700;
  flex: 0 0 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .page .group-profit {
    flex: 1;
  }
}
.page .group-profit span:last-child {
  color: #ffa900;
}
.page .group-status {
  flex: 0 0 33.33%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .page .group-status {
    flex: 0 0 25%;
    white-space: nowrap;
  }
}
.page .group-status .status {
  display: inline-block;
  padding: 5px 7px;
  color: #fff;
}
@media (max-width: 768px) {
  .page .group-status .status {
    padding: 0.2rem;
    font-size: 1.2rem;
  }
}
.page .group-status .status.success {
  background-color: #0dc253;
}
.page .group-status .status.process {
  background-color: #ffa900;
}
.page .group-status .status.fail {
  background: #fa2828;
}
.page .group-status .status.primary {
  background: #289bfa;
}
.page .group .nav {
  background-color: #072645;
  justify-content: space-around;
  
  padding: 1rem 0;
  color: #fff;
}
@media (max-width: 768px) {
  .page .group .nav {
    justify-content: space-between;
  }
}
.page .group .nav-tabs .nav-item:hover {
  border: 0;
}
.page .group .nav-tabs .nav-link {
  border: 0;
}
@media (max-width: 768px) {
  .page .group .nav-tabs .nav-link {
    font-size: 1.2rem;
    padding: 0.2rem 1rem;
  }
}
.page .group .nav-tabs .nav-link:hover {
  border: 0;
  color: orange;
}
.page .group .nav-tabs .nav-link.active {
  background-color: unset;
  color: orange;
  border: 0;
}
.page .group .nav-tabs .nav-link.active:hover {
  border: 0;
  color: orange;
}
.page .transaction-date {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .page .transaction-date {
    margin-top: 2rem;
    gap: 2rem;
    flex-direction: column;
  }
}
.page .transaction-date .data-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page .transaction-date input {
  padding: 0.5rem;
  border: 1px solid #d9d9d9;
}
.page .transaction-button {
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .page .transaction-button {
    text-align: left;
  }
}
.page .transaction-button button {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 5px 1rem;
  transition: all 0.3s ease;
}
.page .transaction-button button:hover {
  color: #2392fc;
  border-color: #2392fc;
}
.page .history {
  font-size: 1.6rem;
}
.page .history .code {
  color: #000;
  font-weight: 700;
}
.page .history .money {
  font-weight: 700;
  color: #fa2828;
}
.page .history .type {
  color: #000;
  font-weight: 700;
}
.page .history .time {
  color: rgb(153, 153, 153);
}

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/img_bg.jpg) center/cover no-repeat;
}
.auth-wrap {
  max-width: 50rem;
  width: 100%;
  padding: 0 1.5rem;
}
.auth .form {
  background: #ffffffb0;
  border-radius: 1.2rem;
  padding: 10rem 1.5rem 20rem 1.5rem;
  width: 100%;
}
.auth .form .btn {
    color: #000;
  width: 80%;
  font-size: 1.4rem;
  padding: 1rem 0;
  font-weight: 600;
  margin-top: 1.5rem;
  
}


/* 个人页面整体样式 */
  .profile {
    margin: 4.5rem 0 10rem 0;
    padding: 0 1rem;
  }
  
.profile-overview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  /* 添加前缀 */
  -webkit-backdrop-filter: blur(12px); /* Safari 支持 */
  backdrop-filter: blur(12px); /* 标准支持 */
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  /* 添加深蓝高端边框 */
  border: 2px solid #1a365d;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 15px rgba(26, 54, 93, 0.6);
  background-image: url('/staticindex/bj1.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  background-color: rgba(15, 30, 60, 0.85);
  isolation: isolate;
  transition: all 0.3s ease;
}

.profile-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  /* 添加前缀 */
  -webkit-backdrop-filter: blur(16px); /* Safari 支持 */
  backdrop-filter: blur(16px); /* 标准支持 */
  z-index: -1;
  border-radius: inherit;
}
.profile-overview:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 0 20px rgba(59, 130, 246, 0.8); /* 悬停时增强蓝色光晕 */
  transform: translateY(-2px);
  
  /* 悬停时边框动画 */
  border-color: #3b82f6;
}
  
  @media (max-width: 768px) {
    .profile-overview {
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
      padding: 1.25rem;
    }
  }
  
  /* 头像和基本信息 */
  .profile-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #1E293B;
  }
  
  .profile-avatar img {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 6px rgba(22, 93, 255, 0.1), 
                0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .profile-avatar img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(22, 93, 255, 0.15), 
                0 6px 25px rgba(0, 0, 0, 0.15);
  }
  
  .profile-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .profile-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1E293B;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  /* 优化后的邀请码样式 */
  .profile-code {
    color: #64748B;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .profile-code::before {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2364748B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect><line x1="8" y1="14" x2="16" y2="14"></line><line x1="8" y1="18" x2="16" y2="18"></line><line x1="10" y1="6" x2="8" y2="6"></line><line x1="14" y1="6" x2="16" y2="6"></line></svg>') no-repeat center;
    background-size: contain;
  }
  
  /* 余额信息 - 磨砂玻璃白背景 */
  .profile-surplus {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .profile-surplus:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  
  .profile-surplus img {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.8;
  }
  
  .profile-surplus span {
    color: #165DFF;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #165DFF 0%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* 功能列表 - 磨砂玻璃白卡片 */
  .profile-list {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  
  /* 统一的功能项容器 */
  .profile-list li {
    margin-top: 0;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .profile-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #165DFF, #4F46E5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .profile-list li:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .profile-list li:hover::before {
    opacity: 1;
  }
  
  .profile-list li:active {
    transform: translateY(-1px);
  }
  
  .profile-list li img {
    width: 1.75rem;
    height: 1.75rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  }
  
  .profile-list li:hover img {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .profile-list li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1E293B;
    transition: color 0.3s ease;
    flex: 1;
  }
  
  .profile-list li:hover a {
    color: #165DFF;
  }
  
  .profile-list li a.logout {
    color: #F87272;
    font-weight: 600;
  }
  
  .profile-list li a.logout:hover {
    color: #EF4444;
  }
  
  /* 标题样式 */
  .profile-title {
    background: linear-gradient(90deg, #165DFF 0%, #4F46E5 100%);
    color: #fff;
    font-size: 1.3rem;
    padding: 0.85rem 1.25rem;
    font-weight: 600;
    border-radius: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(22, 93, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
  }
  
  .profile-title::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-20deg);
  }
  
  .profile-title img {
    width: 1.25rem;
    height: 1.25rem;
  }
  
 /* 操作按钮 - 磨砂玻璃白风格 */
  .profile-button {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .profile-button .btn {
    border: 1px solid #274563;
    background: #f6f6f6;
    padding: 0.85rem 2.5rem; /* 增加宽度 */
    border-radius: 0.5rem;
    font-weight: 600;
    color: #1E293B;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 150px; /* 最小宽度 */
    position: relative;
    overflow: hidden;
  }
  
  .profile-button .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }
  
  .profile-button .btn:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  
  .profile-button .btn:hover::before {
    transform: translateX(100%);
  }
  
  .profile-button .btn:active {
    transform: translateY(0);
  }
  
  .profile-button .btn img {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.8;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  }
  
  /* 充值按钮 - 蓝色渐变 */
  .profile-button .btn.deposit {
    background: linear-gradient(90deg, #165DFF 0%, #4F46E5 100%);
    border-color: rgba(79, 70, 229, 0.2);
    color: #fff;
  }
  
  .profile-button .btn.deposit:hover {
    background: linear-gradient(90deg, #1E40AF 0%, #4338CA 100%);
    border-color: rgba(67, 56, 202, 0.3);
    box-shadow: 0 6px 20px rgba(22, 93, 255, 0.2);
  }
  
  /* 提现按钮 - 青色渐变 */
  .profile-button .btn.withdraw {
    background: linear-gradient(90deg, #06B6D4 0%, #22D3EE 100%);
    border-color: rgba(34, 211, 238, 0.2);
    color: #fff;
  }
  
  .profile-button .btn.withdraw:hover {
    background: linear-gradient(90deg, #0891B2 0%, #06B6D4 100%);
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.2);
  }
  
  /* 额外按钮 */
  .profile-btn {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #64748B;
    justify-content: center;
  }
  
  .profile-btn a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }
  
  .profile-btn a:hover {
    color: #165DFF;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .profile-btn img {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .profile-btn a:hover img {
    opacity: 0.9;
  }
  
  /* 响应式布局优化 */
  @media (max-width: 1024px) {
    .profile-list {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .profile-list {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-button {
      flex-direction: column;
      align-items: center;
    }
    
    .profile-button .btn {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .profile-list {
      grid-template-columns: 1fr;
    }
  }
  
  /* 响应式布局优化 */
  @media (max-width: 1024px) {
    .profile-list {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .profile-list {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-button {
      flex-direction: column;
      align-items: center;
    }
    
    .profile-button .btn {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .profile-list {
      grid-template-columns: 1fr;
    }
  }
  
.page-bank,
.page-info {
  color: #000;
  min-height: 100vh;
}
.page-bank h2,
.page-info h2 {
  font-size: 2rem;
}
.page-bank .notice,
.page-info .notice {
  color: #fa2828;
  font-size: 1.4rem;
  font-weight: 600;
}
.page-bank form,
.page-info form {
  max-width: 80rem;
  width: 100%;
  margin: 3rem auto 0;
}
.page-bank form .form-group,
.page-info form .form-group {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.page-bank form label,
.page-info form label {
  font-size: 1.5rem;
  flex: 0 0 14%;
}
@media (max-width: 768px) {
  .page-bank form label,
  .page-info form label {
    flex: 0 0 30%;
  }
}
.page-bank form input,
.page-info form input {
  width: 100%;
  flex: 1;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d9d9d9;
}

.page-bill {
  max-width: 80%;
  margin: 0 auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  .page-bill {
    max-width: 100%;
  }
}

.page-info {
  padding-top: 7rem;
}
.page-info .addr-title {
  background-color: #fff;
  padding: 1.5rem 4rem;
  font-weight: 600;
}
.page-info form {
  max-width: 50rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
}
.page-info form h2 {
  margin-bottom: 2rem;
  font-weight: 600;
}
.page-info form .form-link {
  margin-bottom: 2rem;
}
.page-info form .form-link p {
  color: #fa2828;
}
.page-info form .form-link p a {
  margin-left: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.page-info form .form-group {
  flex-direction: column;
  align-items: flex-start;
}
.page-info form .form-group.has-icon i {
  position: absolute;
  left: 10px;
  bottom: 14px;
}
.page-info form .form-group.has-icon input {
  padding: 1rem 3rem;
}
.page-info form .form-group input {
  padding: 1rem;
}
.page-info form .form-group label {
  font-weight: 600;
}
.page-info form .form-btn {
  width: 100%;
  font-size: 1.8rem;
}/*# sourceMappingURL=main.css.map */
