*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
  "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  color: #000;
  line-height: 1.5;
  background-color: #f7f8ff;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

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

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

/* 滚动条整体 */
::-webkit-scrollbar {
  width: 8px;
  /* 垂直滚动条宽度 */
  height: 8px;
  /* 水平滚动条高度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #f0f0f0;
  /* 轨道背景色 */
  border-radius: 4px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background-color: #aaa;
  /* 滑块颜色 */
  border-radius: 4px;
  /* 滑块圆角 */
  border: 2px solid #f0f0f0;
  /* 留出空隙，制造内边距效果 */
}

/* 鼠标悬停滑块时 */
::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

html {
  --color-on: #4056ff;
  --color-main: #2f363c;
  --color-main-light: #565c95;
  --color-orange: #ff9800;
  --color-blue: #2c61ff;
  --color-light-blue: #409eff;
  --color-red: #fe4d5a;
  --color-green: #67c23a;
  --color-orange: #fe970f;
  --font-color-light: #9a9eba;
  --border-blue: #7c85ff;
  --border-gray: #e5e9ff;
  --input-bg: #f1f5f9;
  --bg-light-blue: #f4f8fe;
  --block-light-blue: #f1f5fb;
}

.flex-rc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-rac {
  display: flex;
  align-items: center;
}

.flex-rjc {
  display: flex;
  justify-content: center;
}

.app {
  width: 100%;
  /*min-width: 1400px;*/
}

header {
  width: 100%;
  height: 60px;
  justify-content: space-between;
  background-color: var(--color-main);
  box-sizing: border-box;
  padding: 0 4.6vw;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
}

main {
  padding-top: 60px;
}

.header-l {
  height: 100%;
}

.logo {
  display: block;
  width: 10%;
}

.nav {
  height: 100%;
}

.nav-item {
  margin-left: 1.8vw;
  font-size: 16px;/*1.5vw，2vw，3vw*/
  height: 100%;
  cursor: pointer;
}

.nav-item>a {
  color: white;
  font-weight: bold;
  position: relative;
}

.nav-item>a:hover::after,
.nav-item.on>a::after {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  position: absolute;
  bottom: -10px;
}

.nav-item>ul {
  position: absolute;
  z-index: 9;
  top: 80px;
  left: 0;
  right: 0;
  background-color: white;
  display: flex;
}

.nav-item>ul>li:first-child {
  margin-left: 17%;
}

.nav-item>ul>li {
  font-size: 14px;
  margin-right: 4.2%;
  padding: 15px 0;
}

.nav-item>ul>li>a {
  position: relative;
}

.nav-item>ul>li>a.on,
.nav-item>ul>li>a:hover {
  color: var(--color-on);
}

.nav-item>ul>li>a.on::after {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  background: url("../images/icon-choose.png") no-repeat center/cover;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-level2 {
  display: flex;
  position: absolute;
  z-index: 9;
  top: 50px;
  left: 0;
  right: 0;
  padding: 15px 0;
  background-color: white;
}

.nav-level2>a {
  font-size: 14px;
  margin-right: 4.2%;
}

.nav-level2>a:first-child {
  margin-left: 17%;
}

.nav-level2>a:hover {
  color: var(--color-on);
}

.nav-level2>a.on::after {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  background: url("../images/icon-choose.png") no-repeat center/cover;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.header-upload {
  margin-right: 4.2vw;
}

.header-upload a {
  font-size: 16px;
  color: white;
}

.header-upload a::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/icon-upload.png") no-repeat center/contain;
  margin-right: 8px;
}

.header-nav {
  font-size: 16px;
  color: white;
  margin-right: 4.2vw;
}

.header-btn {
  background-color: var(--color-on);
  color: white;
  padding: 5px 35px;
  border-radius: 20px;
  font-size: 16px;
}

.banner {
  width: 100%;
}

.banner img {
  display: block;
  width: 100%;
}

.main-intro {
  position: relative;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  width: 60%;
  margin: -60px auto 0 auto;
  padding: 4vh 0; /* 上下内边距为视口高度的5% */
}
/* 在屏幕宽度<=1200px时，调整margin */
@media (max-width: 1200px) {
  .main-intro {
    margin: -60px auto 0 auto; /* 根据需要调整 */
    padding: 4vh 0;
  }
}

@media (max-width: 922px) {
  .main-intro {
    margin: -50px auto 0 auto; /* 或者根据实际需求设置 */
    padding: 3vh 0;
  }
}

@media (max-width: 768px) {
  .main-intro {
    margin: -30px auto 0 auto; /* 或者根据实际需求设置 */
    padding: 2vh 0;
  }
}

/* 在屏幕宽度<=576px时，调整margin为0或其他值，实现最小化或无负边距 */
@media (max-width: 576px) {
  .main-intro {
    margin: -20px auto 0 auto; /* 或者根据实际需求设置 */
    padding: 1vh 0;
    width: 380px;
  }
}

.main-intro dl {
  flex: 1;
  text-align: center;
  border-right: 1px solid #aaa;
}

.main-intro dl:last-child {
  border-right: 0;
}

.main-intro dt {
  font-size: clamp(6px, 1vw, 16px);
  font-weight: bold;
  color: var(--color-on);
}

.main-intro dd {
  font-size: clamp(6px, 1vw, 16px);
  margin-top: 8px;
  color: var(--color-main-light);
}

.main-recom {
  background-color: #f7f8ff;
  margin-top: -55px;
  padding-top: 100px;
}

.main-block-title {
  margin-top: 50px;
  text-align: center;
}

.main-block-title h5 {
  font-size: clamp(6px, 1.5vw, 36px);
  color: var(--color-main);
}

.main-block-title p {
  font-size: clamp(3px, 1.5vw, 14px);
  margin-top: 105;
  color: var(--color-main-light);
}

.main-wecan {
  background-color: #eaeef5;
  overflow: hidden;
  padding-bottom: 50px;
}

.main-wecan-list {
  display: grid;
  /* 使用自适应列布局 */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding-top: 50px;
  width: 100%; /* 改为百分比宽度，响应式 */
  max-width: 1200px; /* 可选：限制最大宽度 */
  margin: 0 auto;
  gap: 50px;
  justify-items: center;
}

.main-wecan-item {
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.02);
  width: 230px; /* 固定宽度 */
  height: 220px; /* 固定高度 */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 35px 10px 10px 10px; /* 保持内边距 */
  text-align: center;
}

/* 标题样式 */
.main-wecan-item strong {
  font-size: 26px;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* 段落内容样式，确保换行 */
.main-wecan-item p {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--color-main-light);
  word-wrap: break-word;
  word-break: break-word;
  width: 100%;
  white-space: normal; /* 确保换行正常 */
}

.main-creator {
  padding: 30px 0 100px;
  background-color: #f7f8ff;
}

.main-creator-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 100%;
  margin: 0 auto;
  gap: 50px;
  justify-items: center;
  max-width: calc(2400px - 20px);
}

.main-creator-list a {
  display: block;
  width: 100%; /* 让 a 标签宽度占满格子 */
  max-width: 150px; /* 控制最大宽度 */
  aspect-ratio: 1 / 1; /* 保持正方形 */
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  box-sizing: border-box; /* 确保 padding 和 border 不影响宽度 */
  overflow: hidden; /* 避免内容溢出 */
}

.main-creator-list a img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.main-joinus {
  display: block;
  width: 36%;
  min-width: 300px;
  margin: 0 auto;
  position: relative;
  margin: 70px auto 0;
}

.main-joinus>img {
  display: block;
  width: 100%;
}

.main-joinus p {
  position: absolute;
  inset: 0;
  font-size: 30px;
  font-weight: bold;
  color: white;
}

.main-joinus p>img {
  display: block;
  width: 40px;
  margin-left: 15px;
}

.float {
  position: fixed;
  z-index: 100;
  top: 38%;
  right: 0;
  transform-origin: top right;
  transform: scale(.6);
}

.float-rel {
  position: relative;
}

.float-bg {
  display: block;
  width: 100px;
}

.float-content {
  position: absolute;
  inset: 0;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 0;
}

.float-content>a {
  flex-direction: column;
  color: white;
  border-bottom: 1px solid #0a45cb;
  padding-bottom: 20px;
  font-size: 14px;
  width: 60%;
  position: relative;
}

.float-content>a:hover>.float-child {
  display: block;
}

.float-child {
  position: absolute;
  right: 100%;
  padding-right: 35px;
  display: none;
}

.float-qrcode {
  width: 280px;
  height: 320px;
  padding: 10px;
  background-color: white;
  border-radius: 3px;
  color: black;
  text-align: center;
  font-size: 12px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  display: block;
}

@media (max-width: 576px) {
  .float-qrcode {
    width: 140px;
    height: 160px;
  }
}

.float-qrcode::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 11px solid transparent;
  top: 43%;
  right: -25px;
}

.float-qrcode img {
  display: block;
  width: 240px;
  height: 240px;
  margin-bottom: 5px;
}

@media (max-width: 576px) {
  .float-qrcode img {
    width: 120px;
    height: 120px;
  }
}
.float-content>a:last-child {
  border: 0;
  padding-bottom: 0;
}

.float-content>a>img {
  margin-bottom: 10px;
}

footer {
  background-color: var(--color-main);
  color: #9594ad;
}

.footer-t {
  display: flex;
  align-items: flex-start;
  padding: 40px 0;
}

.footer-t-content {
  display: flex;
}

.footer-tl {
  flex: 1;
  display: flex;
}

.footer-tl dl {
  width: 20%;
}

.footer-tl dl dt {
  font-size: 14px;
  color: white;
}

.footer-tl dl dd a {
  display: block;
  font-size: 12px;
  margin-top: 10px;
}

.footer-tr {
  width: 30%;
}

.footer-tr strong {
  display: block;
  font-size: 14px;
  color: white;
}

.footer-tr p {
  margin-top: 10px;
  font-size: 12px;
}

.footer-tr img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  margin-top: 15px;
}

.footer-t-content {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-b {
  border-top: 1px solid #2d2e4b;
  padding: 10px 0;
}

.footer-b-content {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  font-size: 12px;
}

.main-recom-list {
  display: grid; /* 改为grid布局 */
  grid-template-columns: repeat(5, 1fr); /* 两列等宽 */
  box-sizing: border-box;
  background-color: #eaeef5;
  border-radius: 15px;
  padding: 30px;
  max-width: 1430px; /* 最大宽度限制 */
  width: 100%; /* 宽度自适应父容器 */
  margin: 30px auto 80px; /* 居中 */
  gap: 20px; /* 列间距 */
}

@media (max-width: 922px) {
  .main-recom-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.main-recom-itemr {
  width: 300px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .main-recom-itemr {
    width: 420px;
  }
}

@media (max-width: 576px) {
  .main-recom-itemr {
    width: 280px;
  }
}

.main-recom-item-thumb {
  width: 100%;
}

.main-recom-al {
  display: block;
  width: 14px;
  height: 14px;
  background: url("../images/icon-trangle-left.png") no-repeat center/contain;
  cursor: pointer;
}

.main-recom-swiper {
  margin: 0 10px;
  flex: 1;
  min-width: 1px;
  border: 1px solid #989ffe;
  padding: 5px;
  border-radius: 10px;
  background-color: white;
}

.main-recom-swiper img {
  display: none;
  width: 100%;
  aspect-ratio: 0.75/1;
  border-radius: 6px;
}

.main-recom-swiper img.on {
  display: block;
}

.main-recom-ar {
  display: block;
  width: 14px;
  height: 14px;
  background: url("../images/icon-trangle-right.png") no-repeat center/contain;
  cursor: pointer;
}

.main-recom-change {
  margin-top: 20px;
}

.main-recom-change span {
  color: var(--color-orange);
  cursor: pointer;
}

.main-recom-change span::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("../images//icon-refresh.png") no-repeat center/contain;
  margin-right: 6px;
}

.main-recom-item-data {
  border-radius: 10px;
  background-color: white;
  padding: 30px;
  flex: 1;
  width: 950px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .main-recom-item-data {
    width: 576px;
  }
}

@media (max-width: 576px) {
  .main-recom-item-data {
    width: 339px;
  }
}

.main-recom-item-info {}

.main-recom-info-top {
  display: flex;
}

.main-recom-info-tl {
  flex: 1;
}

.main-recom-info-tr {
  color: var(--color-orange);
  font-weight: bold;
  font-size: clamp(6px, 2vw, 14px);
  text-align: right;
  width: 35%;
}

.main-recom-info-tr strong {
  display: block;
  font-size: clamp(12px, 2vw, 24px);
  margin-bottom: 10px;
}

.main-recom-info-title {
  font-size: clamp(12px, 2vw, 24px);
  font-weight: bolder;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.main-recom-info-author {
  margin-top: 10px;
}

.main-recom-info-author p {
  flex: 1;
  font-size: 14px;
}

.main-recom-info-label {
  gap: 6px;
  margin-top: 10px;
}

.main-recom-info-label span {
  display: block;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 12px;
  transform-origin: left center;
  transform: scale(0.8);
}

.label-orange {
  background-color: var(--color-orange);
  color: white;
}

.label-blue {
  background-color: var(--color-blue);
  color: white;
}

.label-red {
  background-color: var(--color-red);
  color: white;
}

.main-recom-info-middle {
  font-size: 12px;
  margin-top: 15px;
  height: 100px;
  color: var(--color-main-light);
}

.main-recom-info-bottom {
  margin-top: 40px;
}

.main-recom-info-bottom p {
  width: 130px;
  position: relative;
  font-size: clamp(6px, 2vw, 14px);
  color: #888;
  margin-right: 50px;
}

.main-recom-info-bottom p strong {
  color: var(--color-blue);
  font-size: clamp(8px, 1vw, 18px);
  display: block;
}

.main-recom-info-bottom p::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background-color: #767aa5;
  position: absolute;
  right: 0;
  top: 10px;
}

.main-recom-info-bottom p:last-child::after {
  display: none;
}

.scrollbar-inner {
  height: 100%;
  padding-right: 15px;
}

.page-inner {
  width: 100%;
  max-width: 2400px;
  margin: 6% auto;
}

.collection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 60px; 
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 976px) {
  .collection {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}

.collection-list {
  width: 100%;
  background-color: white;
  border: 1px dashed #aaa;
  border-radius: 5px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .collection-list {
    width: 90%;
    height: 400px;
  }
}

.collection-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
  border-bottom: 1px solid #eee;
}

.collection-tab ul {
  padding: 15px;
}

.collection-tab ul li {
  font-size: 14px;
  position: relative;
  margin-right: 30px;
  color: var(--color-main-light);
}

.collection-tab ul li a {
  display: flex;
  justify-content: center;
}

.collection-tab ul li a.on {
  color: var(--color-on);
  font-weight: bold;
}

.collection-tab ul li a.on::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  background-color: var(--color-on);
  bottom: -16px;
}

.collect-create-btn {
  background-color: var(--color-on);
  color: white;
  font-size: 15px;
  border-radius: 8px;
  padding: 2px 15px;
}

.collection-video-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  position: relative;
  color: var(--font-color-light);
}

.collection-video-card.on {
  background-color: #f4f8ff;
}

.collection-cover {
  width: 100%; /* 让图片宽度填满父容器 */
  max-width: 80px;
  aspect-ratio: 0.75 / 1;
  border-radius: 8px;
  flex-shrink: 0;
}

.collection-content {
  margin-left: 16px;
  flex: 1;
  color: #333;
}

.collection-title-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 600;
}

.collection-title {
  color: #333;
}

.collection-info {
  font-size: clamp(6px, 2vw, 16px);
  color: var(--font-color-light);
}

.collection-date {
  font-size: 12px;
  color: var(--font-color-light);
  margin-bottom: 15px;
}

.collection-meta {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666;
}

.collection-meta-item {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}

.collection-meta-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  background-color: #c2d0ef;
  position: absolute;
  top: 6px;
  right: 0;
}

.collection-meta-item:last-child {
  padding-right: 0;
  margin-right: 0;
}

.collection-meta-item:last-child::after {
  display: none;
}

.collection-meta-item span {
  display: block;
  color: var(--font-color-light);
  font-size: clamp(6px, 2vw, 12px);
}

.collection-meta-item strong {
  font-weight: 500;
  color: #333;
  margin-top: 2px;
}

.collection-edit-btn {
  background: #e6ebff;
  color: #556cff;
  border: none;
  border-radius: 6px;
  padding: 3px 15px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
}

.collection-videos {
  height: 600px;
  padding-left: 20px;
  margin: 20px 5px;
}

@media (max-width: 576px) {
  .collection-videos {
    height: 300px;
  }
}

.collection-videos .scrollbar-inner {
  padding-right: 10px;
}

.collection-addto {
  display: block;
  width: 34px;
  margin: 0 20px;
}

.collection-choose-list {
  width: 100%;
  background-color: white;
  border: 1px dashed #aaa;
  border-radius: 5px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .collection-choose-list {
    width: 90%;
  }
}

.collection-choose-head {
  margin: 0 20px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.collection-choose-head p {
  flex: 1;
  font-size: 14px;
  color: var(--color-on);
}

.collection-choose-scroll {
  height: 600px;
  margin: 20px 5px; /* 上下10px，左右5px */
}

.collection-choose-item {
  border-bottom: 1px solid #edeff6;
  margin: 0 20px;
  padding: 15px 0;
  position: relative;
}

.collection-choose-item:last-child {
  border-bottom: 0;
}

.collection-choose-item .collection-edit-btn {
  position: static;
}

.collection-choose-il {
  flex: 1;
  min-width: 1px;
}

.collection-choose-il strong {
  display: block;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collection-choose-il p {
  margin-top: 1px;
}

.collection-choose-il p span {
  font-size: 12px;
  color: var(--font-color-light);
  margin-right: 20px;
}

.collection-choose-il p img {
  display: block;
  width: 20px;
  margin-right: 5px;
}

.collection-choose-il p span:nth-child(2) img {
  width: 18px;
}

.data-none-text {
  font-size: 12px;
  color: var(--font-color-light);
  padding: 10px 0;
  text-align: center;
}

.page-memo {
  margin-top: 30px;
  font-size: 12px;
  color: var(--font-color-light);
}

.page-record {
  margin-top: 30px;
  font-size: 12px;
  text-align: center;
  color: var(--font-color-light);
}

.data-none {
  font-size: 12px;
  color: var(--font-color-light);
  width: 300px;
  height: 300px;
  background: url("../images/none.png") no-repeat center;
  background-size: 300px 300px; /* 让背景图片自适应宽高 */
  margin: 100px auto;
  box-sizing: border-box;
  padding-top: 110px; /* 如果不需要，可以删除 */
}

.header-message-tips {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icon-tips.png") no-repeat center/contain;
  position: relative;
  margin-right: 4.2vw;
}

.header-message-tips span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  color: white;
  border-radius: 50%;
  background-color: #f42626;
  transform: scale(0.6);
  position: absolute;
  top: -10px;
  right: -10px;
}

.header-user {
  position: relative;
}

.header-user:hover .header-user-panel {
  display: block;
}

.header-user-panel {
  background: white;
  border: 1px solid #bfd5ff;
  border-radius: 15px;
  padding: 15px 15px 0;
  position: absolute;
  z-index: 101;
  top: 53px;
  right: 0;
  width: 300px;
  box-shadow: 0 0 8px #2773ff52;
  display: none;
}

.header-headicon {
  display: block;
  padding: 5px 0;
}

.header-headicon img {
  display: block;
  width: 10vw; /* 根据视口宽度调整 */
  max-width: 45px; /* 不超过45px */
  height: auto; /* 自动调整高度 */
  border-radius: 50%;
}

.collection-create,
.examine {
  padding: 30px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

.collection-create-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 768px) {
  .collection-create-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.collection-create-wl {
  width: 90%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #f1f1f1;
  padding-right: 6%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .collection-create-wl {
    border-right: none;
    padding-right: 0;
  }
}

.collection-create-upload {
  flex: 1;
  border-radius: 15px;
  border: 1px solid var(--border-blue);
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.collection-create-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  height: 100%;
}

.collection-create-upload-input img {
  display: block;
  width: 70px;
}

.collection-create-upload-input strong {
  font-weight: 400;
  font-size: 14px;
  margin: 10px 0 20px;
}

.collection-create-upload-input p {
  font-size: 12px;
  color: #999;
}

.collection-create-upload-input input {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.page-inner-title {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 20px;
}

.form-item {
  position: relative;
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.form-label span {
  color: red;
  margin-left: 3px;
}

.collect-create-form {
  width: 100%;
  margin: 0 auto;
}

.form-item input[type="text"],
.form-item textarea {
  flex: 1;
  min-width: 1px;
  font-size: 14px;
  line-height: 18px;
}

.form-item input {
  margin-right: 10px;
}

.form-item textarea {
  height: 54px;
  resize: none;
  margin-bottom: 20px;
}

.form-item textarea+.form-input-fontnum {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.form-input{
  width: 100%;
}

.form-item-content {
  border-radius: 10px;
  border: 1px solid var(--border-blue);
  padding: 10px;
  display: flex;
}

.form-item-content.on {
  background-color: var(--input-bg);
}

.form-input-fontnum {
  font-size: 12px;
  color: #999;
}

.form-select {
  display: flex;
  width: 100%;
  position: relative;
}

.form-select.small {
  width: 160px;
}

@media (max-width: 576px) {
  .form-select.small {
    width: 120px;
  }
}

.form-select.small p {
  padding: 2px 5px;
  font-size: 12px;
  background: white url("../images/icon-dropdown.png") no-repeat 92% / auto 7px;
}

.form-select.small .form-select-list {
  top: 10px;
}

.form-select.rect p {
  border-radius: 5px;
}

.form-select.on {
  z-index: 9;
}

.form-select.on .form-select-list {
  display: block;
}

.form-select p {
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  color: #999;
  padding-right: 20px;
  background: url("../images/icon-dropdown.png") no-repeat 97% / auto 7px;
  border: 1px solid var(--border-blue);
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.form-select p.on {
  color: black;
  background-color: var(--input-bg);
}

.form-select-list {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  box-sizing: border-box;
  border-left: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  border-right: 1px solid var(--border-blue);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: white;
  padding: 20px 10px 10px;
  z-index: 1;
  display: none;
  max-height: 180px;
  overflow: auto;
}

.form-select-list li {
  cursor: pointer;
  color: #666;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 2px;
}

.form-select-list li.on,
.form-select-list li:hover {
  background-color: #e7eaff;
  color: black;
}

.form-radio {
  display: flex;
  align-items: center;
  margin-right: 40px;
  font-size: 14px;
}

.form-radio p {
  position: relative;
  margin-right: 10px;
}

.form-radio p span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--color-on);
}

.form-radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.form-radio input:checked+span::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 60%;
  height: 60%;
  background-color: var(--color-on);
}

.form-b-confirm {
  background-color: var(--color-on);
  color: white;
  font-size: 15px;
  padding: 5px 30px;
  border-radius: 20px;
  margin-right: 30px;
}

.form-b-confirm.small {
  padding: 0 20px;
  font-size: 12px;
}

.form-b-confirm.rect {
  border-radius: 4px;
}

.form-b-cancel {
  background-color: #dce6ff;
  color: var(--color-on);
  font-size: 15px;
  padding: 5px 30px;
  border-radius: 20px;
  margin-right: 30px;
}

.form-btns {
  padding-top: 15px;
}

.collection-create-upload-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collection-create-upload-video img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

.collection-create-upload-video video {
  display: block;
  width: 100%;
  height: 100%;
}

.collection-create-upload-video p {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.form-upload-btn {
  position: relative;
  background-color: var(--color-on);
  color: white;
  padding: 5px 25px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.form-upload-btn input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.account {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 992px) {
  .account {
    grid-template-columns: repeat(1, 1fr);
  }
}

.account-add {
  border-radius: 15px;
  background-color: white;
  padding: 30px;
  flex: 1;
}

.account-tips {
  font-size: 12px;
  color: #999;
  margin-top: -20px;
}

.account-list {
  border-radius: 15px;
  background-color: white;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-agreement {
  font-size: 12px;
  padding: 5px 0 20px;
}

.form-agreement input {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.form-agreement a {
  color: var(--color-on);
}

.margin-30 {
  margin-top: 30px;
}

.table-head {
  background-color: #f1f5fb;
}

.table-head p {
  min-width: 1px;
  padding: 10px 20px;
  font-size: 14px;
  box-sizing: border-box;
}

.table-col-50 {
  flex-shrink: 0;
  width: 50%;
  box-sizing: border-box;
}

.table-col-40 {
  flex-shrink: 0;
  width: 40%;
  box-sizing: border-box;
}

.table-col-30 {
  flex-shrink: 0;
  width: 30%;
  box-sizing: border-box;
}

.table-col-25 {
  flex-shrink: 0;
  width: 25%;
  box-sizing: border-box;
}

.table-col-20 {
  flex-shrink: 0;
  width: 20%;
  box-sizing: border-box;
}

.table-col-15 {
  flex-shrink: 0;
  width: 15%;
  box-sizing: border-box;
}

.table-col-10 {
  flex-shrink: 0;
  width: 10%;
  box-sizing: border-box;
}

.table-body {
  font-size: 12px;
}

.table-body li {
  border-bottom: 1px solid #eee;
}

.table-body li:last-child {
  border-bottom: 0;
}

.table-body li p,
.table-body .table-col {
  padding: 1% 4%;
}

.table-btn-blue {
  color: var(--color-blue);
  margin-right: 10px;
}

.table-btn-red {
  color: red;
  margin-right: 10px;
}

.table-td-thumb {
  border-radius: 10px;
  width: 120px;
}

.account-table {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.account-list-data {
  height: 450px;
}

.commission .account-add {
  width: 100%;
  flex: none;
  position: relative;
}

.os-scrollbar-handle {
  background-color: #ccc !important;
}

.gzh {
  position: absolute;
  top: 28px;
  right: 10px;
  background: url("../images/icon-tips-blue.png") no-repeat 4% center/15px;
  padding: 5px 8px 5px 28px;
  color: var(--color-blue);
  font-size: 12px;
  border: 1px solid var(--color-blue);
  border-radius: 5px;
}

.gzh img {
  display: block;
  transform: rotate(90deg);
  margin-left: 3px;
}

.account-money {
  margin-top: 30px;
}

.account-money dt {
  font-size: 14px;
}

.account-money dt span {
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url("../images/icon-s-eye.png") no-repeat center/contain;
  cursor: pointer;
}

.account-money dt span.on {
  background: url("../images/icon-s-eye-close.png") no-repeat center/contain;
}

.account-money dd {
  color: var(--color-blue);
  font-weight: bold;
  font-size: 24px;
}

.withdrawal {
  width: 100%;
  display: flex;
  margin-top: 30px;
  margin-bottom: 10px;
}

.withdrawal .form-item-content {
  flex: 1;
  border-radius: 8px;
  margin-right: 20px;
  padding: 8px 10px;
  margin-bottom: 0;
}

.form-btn-outline {
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-blue);
  width: 120px;
  cursor: pointer;
}

.withdrawal-text {
  margin-top: 0;
  justify-content: space-between;
  margin-bottom: 30px;
}

.withdrawal-text li {
  font-size: 12px;
}

.withdrawal-text li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 2px;
  background-color: var(--color-on);
  margin-right: 5px;
}

.withdrawal-confirm {
  margin-top: 100px;
}

.examine-filter {
  display: flex;
  justify-content: end;
}

.examine-select {
  width: 10%;
}

.examine-select .form-select p {
  padding: 7px 15px;
  border-radius: 8px;
}

.examine-search {
  border: 1px solid var(--color-blue);
  border-radius: 8px;
  display: flex;
}

.examine-search.on {
  background-color: var(--input-bg);
}

.examine-search input {
  font-size: 14px;
  padding: 0 15px;
}

.examine-search button {
  color: white;
  background-color: var(--color-blue);
  border-radius: 8px;
  padding: 0 20px;
  margin-right: -1px;
}

.examine-table {
  margin-top: 30px;
}

.examine-table-body {
  max-height: 400px;
}

.label-default {
  color: white;
  border-radius: 3px;
  padding: 3px 6px;
}

.label-ok {
  background-color: #00a500;
}

.label-ing {
  background-color: #ff5900;
}

.label-fail {
  background-color: #f60000;
}

.table-body a {
  color: #083cff;
}

.table-ellipsis p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.popup {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
}

.popup.on {
  display: flex;
}

.popup-content {
  border-radius: 15px;
  background-color: white;
  padding: 20px;
  width: 300px;
  font-size: 12px;
}

.popup-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.popup-confirm {
  background-color: var(--color-blue);
  color: white;
  font-size: 14px;
  border-radius: 30px;
  padding: 5px 50px;
}

.suggestion-title {
  font-size: 18px;
  text-align: center;
}

.suggestion-reason {
  margin-top: 10px;
  text-align: center;
  color: #666;
}

.suggestion-text {
  margin-top: 20px;
  text-align: center;
}

.suggestion-touch-innerhtml {
  display: none;
}

.user {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 10px;
  width: 100%;
}

@media (max-width: 1400px) {
  .user {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}

.user-left {
  border-radius: 20px;
  width: 100%;
}

.user-left-top {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 100%;
}

@media (max-width: 576px) {
  .user-left-top {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}

.user-data {
  flex: 1;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

@media (max-width: 576px) {
  .user-data {
    width: 95%;
  }
}

.user-right {
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  box-sizing: border-box;
  flex: 1;
  background-color: white;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .user-right {
    width: 95%;
  }
}

.user-people img {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 5px;
}

.user-people p {
  font-size: 14px;
  flex: 1;
  min-width: 1px;
}

.user-people a {
  display: block;
  background: var(--color-on);
  color: white;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 20px;
}

.user-count {
  border-radius: 10px;
  background-color: var(--bg-light-blue);
  padding: 15px;
  margin: 15px 0;
}

.user-count dl {
  flex: 1;
  min-width: 1px;
}

.user-count dl:first-child {
  border-right: 1px solid #e5e5e5;
  margin-right: 12%;
}

.user-count dt {
  font-size: 12px;
}

.user-count dd {
  font-size: 18px;
  color: var(--color-blue);
  font-weight: 700;
}

.user-count a {
  display: block;
  background: var(--color-on);
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 20px;
}

.user-income {
  border-radius: 10px;
  background-color: var(--bg-light-blue);
  padding: 20px 0;
  display: flex;
}

.user-income-item:first-child {
  border-right: 1px solid #e5e5e5;
}

.user-income-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.user-income-item strong {
  display: block;
  background: var(--color-on);
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 0;
  width: 70%;
  text-align: center;
}

.user-income-item dl {
  margin-top: 20px;
}

.user-income-item dt {
  font-size: 12px;
}

.user-income-item dd {
  font-size: 18px;
  color: var(--color-blue);
  font-weight: 700;
}

.user-income-detail {
  flex: 1;
  width: 100%;
  background-color: white;
  background-image: url("/static/pc/images/banner-m2.png");
  background-repeat: no-repeat;
  background-size: 120% 26%;
  background-position: center 0px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

@media (max-width: 576px) {
  .user-income-detail {
    width: 95%;
  }
}

.user-income-ad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.user-income-ad img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.user-income-detail-tab {
  background-color: var(--block-light-blue);
  justify-content: space-between;
  margin-top: 100px;
  border-radius: 5px;
  padding: 5px;
}

.user-income-detail-tab a {
  display: block;
  font-size: 13px;
  padding: 2px 5px;
  border-radius: 4px;
}

.user-income-detail-tab a.on {
  color: white;
  background-color: var(--color-blue);
}

.user-income-detail-data:first-child {
  border-bottom: 1px solid #e5e5e5;
}

.user-income-detail-data:last-child .user-income-detail-dd {
  padding-bottom: 0;
}

.user-income-detail-dt {
  margin-top: 10px;
}

.user-income-detail-dt strong {
  font-weight: 400;
  display: block;
  flex: 1;
  font-size: 14px;
}

.user-income-detail-dd {
  gap: 5px;
  padding: 10px 0 15px;
}

.user-income-detail-dd dl {
  background-color: var(--block-light-blue);
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
}

.user-income-detail-dd dt {
  font-size: 12px;
  color: #666;
}

.user-income-detail-dd dd {
  font-size: 14px;
}

.user-left-bottom {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .user-left-bottom {
    width: 95%;
  }
}

.user-invite-hc {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 10px 20px;
}

.user-invite-hc strong {
  flex: 1;
  color: var(--color-blue);
}

.user-invite-link {
  border-radius: 6px;
  border: 1px solid var(--color-blue);
  display: flex;
  width: 70%;
  height: 30px;
}

.user-invite-link p {
  flex: 1;
  font-size: clamp(5px, 2vw, 14px);
  overflow: hidden;
  padding: 0 5px;
  height: 30px;
  overflow: hidden;
  white-space: nowrap;
}

.user-invite-link span {
  background-color: var(--color-blue);
  color: white;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin-top: -1px;
  margin-right: -1px;
  height: 30px;
}

.user-invite-share {
  width: 100px;
  height: 30px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  margin-left: 20px;
}

.user-invite-list {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: white;
  padding: 10px 15px 15px;
  height: 130px;
}

.user-invite-list li {
  font-size: 12px;
  padding: 10px 0;
}

.user-invite-list li p {
  flex: 1;
  min-width: 1px;
}

.user-right-head strong {
  display: block;
  flex: 1;
  font-size: 14px;
  font-weight: 400;
}

.gzh-black {
  background-color: black;
  border-radius: 5px;
  padding: 3px 5px;
  color: #dab178;
  font-size: 12px;
}

.gzh-black img {
  display: block;
  height: 10px;
  margin: 0 5px;
}

.gzh-black img:first-child {
  height: 15px;
}

.user-income-filter {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 15px 0 0;
}

.user-income-filter>div {
  flex: 1;
}

.user-income-filter-date {
  width: 100%;
  font-size: 14px;
  color: #999;
  border: 1px solid var(--border-blue);
  border-radius: 5px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  position: relative;
}

.user-income-filter-date input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.user-income-filter-date p {
  font-size: 12px;
  height: 100%;
  background: url("../images/icon-dropdown.png") no-repeat 92% / auto 7px;
  padding: 0 20px 0 10px;
  box-sizing: border-box;
}

.user-income-filter-date.on {
  color: black;
  background-color: var(--input-bg);
}

.user-invite-head {
  position: relative;
}

.user-invite-head>img {
  display: block;
  width: 100%;
  height: 50px;
}

.user-product-list {
  background-color: var(--block-light-blue);
  margin-top: 20px;
  padding: 10px;
  border-radius: 10px;
  height: 480px;
}

.user-product-item {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.user-product-item>img {
  border-radius: 3px;
  width: 80px;
  aspect-ratio: 1/1;
}

.user-product-iteminfo {
  flex: 1;
  min-width: 1px;
  margin-left: 10px;
}

.user-product-itemit strong {
  display: block;
  font-weight: 400;
  flex: 1;
  min-width: 1px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 10px;
}

.user-product-itemit span {
  color: var(--color-blue);
  font-size: 14px;
}

.user-product-itemib {
  margin-top: 20px;
  padding-right: 10%;
}

.user-product-itemib p {
  flex: 1;
  font-size: 12px;
  color: #9195b5;
}

.user-product-itemib p img {
  display: block;
  width: 20px;
  margin-right: 5px;
}

.square {
  border-radius: 10px;
  background-color: white;
  padding: 30px;

}

.square-left {
  width: 100%;
}


.square-cates {
  margin-top: 40px;
}

.square-cates dl {
  margin-bottom: 20px;
  font-size: 12px;
}

.square-cates dt {
  font-weight: bold;
}

.square-cates dd {
  display: flex;
  flex-wrap: wrap;
}

.square-cates dd a {
  display: block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 0 3px;
  border-radius: 4px;
  color: #333;
}

.square-cates dd a.on {
  background-color: var(--color-on);
  color: white;
}

.square-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.square-right .examine-search {
  min-width: 500px;
  margin-left: auto; 
  margin-right: 5%; 
  margin-top: 10px;
}

@media (max-width: 768px) {
  .square-right .examine-search {
    min-width: 350px;
  }
}

.square-right .examine-search input {
  display: block;
  flex: 1;
  height: 40px;
}
.square-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 20px;
  gap: 40px;
  width: 100%;
}

@media (max-width: 1200px) {
  .square-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .square-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.square-item {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.square-item img {
  width: 25%;
  aspect-ratio: 0.75/1;
  border-radius: 8px;
  margin-right: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.square-iteminfo {
  flex: 1;
  min-width: 1px;
  font-size: 12px;
}

.square-item-title {
  font-size: 16px;
}

.square-item-labels {
  color: #333;
}

.square-item-desc {
  color: #aaa;
  margin-top: 10px;
}

.square-item-getshare {
  gap: 10px;
}

.square-item-getshare>a {
  display: block;
  margin-top: 20px;
  padding: 3px 0;
  border-radius: 5px;
  border: 1px solid var(--color-blue);
  width: 80px;
  text-align: center;
  font-size: 12px;
}

.scroll-to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--color-blue);
  border-radius: 20px;
  width: 84px;
  margin: 0 auto;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-blue);
  cursor: pointer;
  background-color: white;
}

.scroll-to-top span {
  display: block;
  width: 50px;
  height: 50px;
  background: url("../images/top-blue.png") no-repeat center/cover;
}

.header-user-funs {
  padding: 20px 0;
  border-bottom: 1px solid #c7daff;
  font-size: 14px;
}

.header-user-funs:last-child {
  border-bottom: 0;
}

.header-user-funs a {
  padding: 0 5px;
  margin-bottom: 15px;
}

.header-user-funs a:last-child {
  margin-bottom: 0;
}

.header-user-funs a img {
  display: block;
  width: 14px;
  margin-right: 10px;
}

.header-user-money {
  width: 100%;
  height: 80px;
  background: url("../images/tx-bg.png") no-repeat center/cover;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 15px;
  margin-bottom: 10px;
}

.header-user-money dt {
  display: block;
  flex: 1;
}

.header-user-money dt p {
  font-size: 12px;
}

.header-user-money dt strong {
  color: var(--color-on);
  font-size: 18px;
  display: flex;
  align-items: flex-end;
}

.header-user-money dt span {
  font-size: 12px;
  font-weight: 400;
}

.header-user-money dd a {
  background-color: white;
  border-radius: 20px;
  padding: 5px 15px;
  color: var(--color-on);
  font-size: 13px;
}

.header-user-name {
  margin-bottom: 20px;
}

.header-user-name img {
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.header-user-name div {
  flex: 1;
  min-width: 1px;
  font-size: 14px;
}

.header-user-name div strong {
  font-weight: 400;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-user-name div p {
  font-size: 12px;
  color: #333;
}

.square-right .examine-search>form {
  width: 100%;
}

.examine-search-content {
  display: flex;
}

.examine-search-content .form-select {
  margin-left: -1px;
}

.examine-search-content .form-select.rect p {
  border: 0;
  border-right: 1px solid #ddd;
  border-radius: 0;
  background: url(../images/icon-dropdown.png) no-repeat 92% / auto 7px;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.examine-search-content .form-select .form-select-list {
  top: 30px;
}

.examine-search-icon {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icon-search.png") no-repeat center/contain;
  margin: 12px 0 0 12px;
}

.popup-scroll {
  width: 40%;
  height: 60%;
  display: flex;
  flex-direction: column;
}

.popup-scroll-content {
  overflow-y: scroll;
  flex: 1;
  min-width: 1px;
}

.animation-page-message {
  text-align: center;
  width: 100%;
  padding: 8px 0;
  font-size: 12px;
  background-color: #2f363c;
  color: white;
  margin-top: 20px 0 0 0;
}

.animation-page-message-customer-service {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 8px 100px;
  font-size: 12px;
  background-color: #2f363c;
  margin-top: 20px 0 0 0;
  gap: 10px;
}

.animation-page {
  background-color: white;
  border-radius: 20px;
  margin: 20px auto;
  padding: 20px;
  width: 90%;
  box-sizing: border-box;
}

.g-round-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.g-round-tab a {
  display: block;
  padding: 5px 30px;
  background-color: var(--input-bg);
  color: black;
  font-size: clamp(6px, 2vw, 16px);
  border-radius: 20px;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .g-round-tab a {
    margin-bottom: 10px;
  }
}

.g-round-tab a:hover,
.g-round-tab a.on {
  background-color: var(--color-on);
  color: white;
}

.animation-filter {
  display: flex;
}

@media (max-width: 1400px) {
  .animation-filter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  }
}

.animation-cates {
  width: 60%;
  height: 70px;
  border: 1px solid #e5eaff;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 50px;
  box-sizing: border-box;
  padding: 2px;
}

@media (max-width: 1400px) {
  .animation-cates {
  width: 100%;
  }
}

.animation-cates .swiper,
.animation-cates .swiper-wrapper,
.animation-cates .swiper-slide {
  height: 100%;
}

.animation-cates .swiper-slide {
  width: auto;
}

.animation-cates a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 25px;
  border-radius: 4px;
  color: #90959c;
  font-size: 14px;
}

.animation-cates a.on {
  background-color: #e4e8ff;
  color: black;
}

.animation-filter-form {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--color-on);
  border-radius: 10px;
  background-color: #edf1f5;
  display: flex; 
  flex-direction: row; 
  flex-wrap: wrap; 
  align-items: center; 
  padding: 10px; 
}

.animation-filter-form form {
  display: flex;
  align-items: center;
  width: 100%;
}


.animation-filter-form span {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icon-search.png") no-repeat center/cover;
  margin-left: 10px;
  flex-shrink: 0; 
}

.animation-filter-form input {
  flex: 1 1 auto; 
  min-width: 100px; 
  margin: 0 10px;
  font-size: 16px;
  padding: 5px;
  box-sizing: border-box; 
}

.animation-filter-form button {
  background-color: var(--color-on);
  color: white;
  padding: 5px 20px;
  border-radius: 8px;
  font-size: 16px;
  flex-shrink: 0; 
  margin-left: 10px;
  
}

.animation-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding: 15px 0;
}

@media (max-width: 1200px) {
  .animation-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .animation-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .animation-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.animation-item {
  border: 1px solid #e5eaff;
  border-radius: 8px;
  position: relative;
  transition: transform 0.5s ease;
}

.animation-item-t {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}

/*.animation-item-t:hover .animation-item-thumb {
  transform: scale(1.2);
}*/

.animation-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.animation-item-thumb {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transition-duration: 500ms;
}

.animation-item-mark {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  color: white;
  font-size: 12px;
}

.animation-item-mark img {
  display: block;
  width: 28px;
}

.animation-item-mark span+img {
  width: 12px;
  margin-right: 5px;
}

.animation-item-labell {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  top: 12px;
  left: 12px;
  background-color: var(--color-orange);
  color: white;
  font-size: 12px;
  border-radius: 20px;
  padding: 0 12px;
}

.animation-item-labelr {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  top: 12px;
  right: 12px;
  background-color: #6AC249;
  color: white;
  font-size: 12px;
  border-radius: 20px;
  padding: 0 12px;
}

.animation-item-b {
  padding: 10px;
}

.animation-item-b strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.animation-item-b div {
  margin-top: 5px;
}

.animation-item-b span {
  color: #ff980d;
  font-size: 18px;
  font-weight: bold;
  flex: 1;
}

.animation-item-b small {
  font-size: 12px;
}

.animation-item-b p {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  top: 12px;
  left: 12px;
  background-color: var(--color-orange);
  font-size: 12px;
  border-radius: 20px;
  padding: 0 12px;
}

.animation-cates-content {
  display: flex;
  height: 100%;
}

.course-cates {
  width: 65%;
  height: 34px;
}

.course-cates .animation-cates {
  width: fit-content;
  height: 100%;
}

.animation-item-hot {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0 10px;
  border-radius: 20px;
  color: white;
  font-size: 12px;
  background-color: #ff432f;
}

.course-list .animation-item-thumb {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.course-item-desc {
  margin-bottom: 10px;
  text-align: left !important;
}

.animation-detail {
  position: fixed;
  z-index: 99;
  top: 45px;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .7);
}

.animation-detail.on {
  display: flex;
}

.animation-detail-close {
  position: absolute;
  top: 12%;
  z-index: 100;
  right: 22%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: url("../images/icon-close.png") no-repeat center/cover;
}

@media (max-width: 576px) {
  .animation-detail-close {
   top: 27%;
   right: 15%;
   width: 16px;
   height: 16px;
  }
}

.animation-detail-content {
  border-radius: 10px;
  padding: 40px;
  width: 60%;
  height: 80%;
  background-color: white;
  display: flex;
  flex-direction: column;
}

@media (max-width: 576px) {
  .animation-detail-content {
  width: 80%;
  height: 380px;
  }
}

.animation-detail-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
  width: 100%;
}

.animation-detail-title-title{
  font-size: clamp(12px, 2vw, 16px);
}

.animation-detail-baseinfo {
  border: 1px solid var(--border-gray);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.animation-detail-baseinfo-row {
  display: flex;
  border-right: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  font-size: 14px;
}

.animation-detail-baseinfo-row:nth-child(2n) {
  border-right: 0;
}

.animation-detail-baseinfo-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.animation-detail-baseinfo-row label {
  border-right: 1px solid var(--border-gray);
  padding: 10px;
  background-color: #f2f6f8;
  width: 40%;
}

.animation-detail-baseinfo-row p {
  padding: 10px;
}

.animation-detail-left {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-right: 5%;
  overflow-y: auto;
  /*border-right: 1px solid var(--border-gray);*/
}

.animation-detail-right {
  width: 35%;
  height: 100%;
  overflow-y: auto;
  padding-left: 5%;
}

.animation-detail-richtext {
  font-size: 12px;
  line-height: 20px;
}

.animation-detail-richtext img {
  display: block;
  width: 90%;
  word-break: break-all;
  margin: 0 auto !important;
}

.animation-show img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.animation-hr {
  margin: 40px 0;
  height: 0;
  background: none;
  border-top: 1px solid var(--border-gray);
}

.animation-detail-intro {}

.animation-di-title {
    padding-right: 5px;
    font-size: clamp(12px, 2vw, 16px); 
}

.animation-di-labels {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-bottom: 5px;
}

.animation-di-labels span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  font-size: 12px;
  color: #999;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 0 8px;
  margin-right: 8px;
  margin-bottom: 5px;
}

.animation-di-desc {
  display: flex;
  align-items: flex-end;
  font-size: 12px;
  margin-bottom: 10px;
}

.animation-di-desc dt {
  width: 100px;
  color: #999;
}

.animation-di-desc dd {
  flex: 1;
  word-break: break-all;
}

.animation-di-btns {
  width: 100%;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 1920px) {
  .animation-di-btns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .animation-di-btns {
    grid-template-columns: repeat(1, 1fr);
  }
}

.animation-di-btns a {
  display: block;
  width: 100%;
  padding: 5px 0;
  border-radius: 8px;
  background-color: #546aef;
  color: white;
  font-size: clamp(6px, 2vw, 16px);
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .animation-di-btns a {
    width: 80%;
  }
}

.page-inner-wrapper {
  padding: 20px;
  border-radius: 20px;
  background-color: white;
}

.course-detail-top {
  display: flex;
}

.course-detail-tl {
  width: 65%;
}

.course-detail-video {
  width: 100%;
  position: relative;
  padding-top: 56%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
}

.course-detail-video video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.course-video-paypanel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/video-bg.png") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.course-video-paypanel strong {
  display: block;
  font-size: 20px;
  font-weight: 400;
}

.course-video-paypanel p {
  font-size: 14px;
  color: #ccc;
  margin-top: 15px;
  margin-bottom: 60px;
}

.course-video-paybtn {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: white;
  display: block;
  background-color: var(--color-orange);
  border-radius: 5px;
}

.course-detail-tr {
  flex: 1;
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.course-video-title {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.course-video-title h5 {
  font-weight: 400;
  font-size: 16px;
  flex: 1;
}

.course-video-title a {
  display: flex;
  align-items: center;
  color: #777;
  font-size: 12px;
}

.course-video-title a img {
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

.course-video-info {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

.course-video-info span {
  color: var(--color-orange);
}

.course-detail-title {
  padding: 15px 0;
  font-size: 16px;
}

.course-video-catalogue {
  height: 430px;
}

.course-video-catalogue ul {}

.course-video-catalogue li {
  position: relative;
  display: flex;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  padding: 5px 10px 5px 0;
  margin-bottom: 5px;
}

.course-video-catalogue li.on {
  background-color: #f6f7ff;
  color: #5968ff;
}

.course-video-catalogue li.on .course-vc-num,
.course-video-catalogue li.on .course-vc-time p {
  color: #5968ff;
}

.course-video-catalogue li.on .course-vc-iplay {
  background: url("../images/icon-course-play-blue.png") no-repeat center/contain;
}

.course-video-catalogue li.on .course-vc-iclock {
  background: url("../images/icon-course-time-blue.png") no-repeat center/contain;
}

.course-vc-num {
  font-size: 14px;
  color: #888;
  width: 40px;
  text-align: center;
}

.course-vc-data {
  flex: 1;
  min-width: 0px;
}

.course-vc-title {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.course-vc-time {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.course-vc-time p {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: #888;
  font-size: 12px;
}

.course-vc-time p span {
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

.course-vc-iplay {
  background: url("../images/icon-course-play-gray.png") no-repeat center/contain;
}

.course-vc-iclock {
  background: url("../images/icon-course-time-gray.png") no-repeat center/contain;
}

.course-vc-lock {
  display: block;
  width: 13px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.course-detail-bottom {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.course-detail-shortintro dt {
  font-size: 12px;
}

.course-detail-shortintro dd {
  margin: 5px 0 20px;
  border-radius: 10px;
  background-color: #f3f3f3;
  font-size: 12px;
  padding: 10px 20px;
  word-break: break-all;
}

.course-detail-intro {
  display: flex;
  font-size: 12px;
  margin-top: 15px;
}

.course-detail-intro p {
  min-width: 200px;
  margin: 0 20px 0 0;
}

.course-detail-message {
  width: 65%;
  margin-top: 30px;
}

.course-detail-message-tab {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  display: flex;
  font-size: 16px;
}

.course-detail-message-tab a {
  display: block;
  padding: 0 20px;
  border-right: 1px solid #999;
  position: relative;
  height: 20px;
  line-height: 20px;
}

.course-detail-message-tab a.on {
  color: var(--color-blue);
}

.course-detail-message-tab a.on::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -8px;
  background-color: var(--color-blue);
}

.course-detail-message-tab a:last-child {
  border-right: 0;
}

.course-detail-content,
.course-material {
  padding: 15px 0;
  font-size: 12px;
  display: none;
}

.course-detail-content.on,
.course-material.on {
  display: block;
}

.course-material-title {
  background-color: #4155fe;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
}

.course-material-title::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icon-course-material.png") no-repeat center/contain;
  margin-right: 5px;
}

.course-material-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  font-size: 14px;
}

.course-material-pay a {
  display: flex;
  align-items: center;
  border-radius: 20px;
  background: var(--color-orange);
  padding: 5px 20px;
  color: white;
  margin-left: 30px;
}

.course-material-pay a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("../images/icon-course-pay.png") no-repeat center/contain;
  margin-right: 5px;
}

.course-material-paytips {
  margin: 50px 0;
  font-size: 12px;
  color: #999;
}

.course-material-paytips p {
  margin-top: 5px;
}

.course-paypanel-title {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 30px;
}

.course-paypanel-title p {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.course-paypanel-close {
  display: block;
  width: 16px;
  cursor: pointer;
}

.course-paypanel-content {
  border-top: 1px solid #f1f1f1;
  padding: 20px 0 30px 30px;
  display: flex;
}

.course-paypanel-cl {
  flex: 1;
  min-width: 0;
}

.course-payinfo-detail {
  display: flex;
}

.course-payinfo-detail img {
  width: 150px;
  height: 100px;
  border-radius: 10px;
  margin-right: 15px;
}

.course-payinfo-text {
  flex: 1;
  min-width: 0;
}

.course-payinfo-text strong {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.course-payinfo-text p {
  font-size: 16px;
  color: #999;
  margin-top: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.course-payinfo-price {
  padding: 5px 10px;
  border-radius: 10px;
  background-color: #f6f7f8;
  font-size: 16px;
  margin: 20px 0;
}

.course-payinfo-price p {
  flex: 1;
}

.course-payinfo-agreement {
  margin-top: 10px;
  font-size: 12px;
}

.course-payinfo-agreement input {
  margin-right: 5px;
}

.course-payinfo-agreement p {
  flex: 1;
}

.course-payinfo-agreement span {
  color: #999;
}

.course-payinfo-agreement a {
  color: var(--color-blue);
}

.course-paypanel-cr {
  border-left: 1px solid #f1f1f1;
  margin-left: 30px;
  width: 40%;
}

.course-scan-h1 {
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}

.course-scan-h1 span {
  color: var(--color-orange);
}

.course-scan-h2 {
  font-size: 12px;
  text-align: center;
  color: #999;
}

.course-scan-code {
  position: relative;
  width: 160px;
  height: 160px;
  background-color: #f6f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
  border-radius: 10px;
  margin: 15px auto;
  overflow: hidden;
}

.course-scan-code img {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  position: absolute;
}

.course-scan-type {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.course-scan-type li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-scan-type li img {
  display: block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.audio-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e8ff;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audio-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2979ff;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.audio-title {
  flex: 1;
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-download-btn {
  background: #2979ff;
  border: none;
  color: white;
  padding: 0 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.audio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 5px;
}

.audio-tag {
  color: #666;
  font-size: 12px;
  padding: 0 12px;
  border: 1px solid #ccc;
  border-radius: 12px;
  height: 18px;
  display: flex;
  align-items: center;
}

.audio-progress-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.audio-time {
  font-size: 12px;
  color: #555;
  min-width: 40px;
  text-align: center;
}

.audio-progress {
  flex: 1;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: #ddd;
  cursor: pointer;
}

.audio-progress::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: orange;
  cursor: pointer;
}

.audio-card-message {
  flex: 1;
  margin-left: 20px;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.color-gray {
  color: #abafb3;
}

.padding-b20 {
  padding-bottom: 20px;
}

.animation-banner {
  width: 100%;
}

.animation-banner a,
.animation-banner img {
  display: block;
  width: 100%;
  height: 100%;
}

/*首页的样式*/
.purchase_list {
  width: max-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px; 
  justify-items: center;
  margin: 0 auto;
  padding: 60px 0px 0px 0px;
}

@media (max-width: 1200px) {
  .purchase_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .purchase_list {
   grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .purchase_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.purchase_item {
  width: 380px;
  height: 830px;
  background-size: 374px 824px;
  background-position: center; /* 改为居中 */
  background-repeat: no-repeat;
  background-color: var(--ym-color-bg-panel);
  box-shadow: 3px 3px 16px 0 rgba(0, 5, 108, .1);
  border-radius: 16px;
  margin-right: 0px;
  padding: 29px 26px 29px 24px;
  box-sizing: border-box;
  position: relative;
  top: 0;
  transition-property: top;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}

/* 鼠标悬停时，触发动画 */
.purchase_item:hover {
  top: -20px; /* 改变top属性，触发动画 */
}

.type-icon {
  width: 72px;
  height: 72px;
  margin-right: 10px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.purchase-item-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.type-icon-title {
 color: #fff;
 background: none;
 font-weight: 700;
 font-size: 26px;
}

.purchase_label-title {
  font-size: 14px;
  line-height: 21px;
  margin-top: 33px;
  color: #fff;
}

.purchase_title_btn {
  margin-top: 28px;
  height: 60px;
  width: 100%;
  border-radius: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden; /* 裁剪超出部分 */
}

/* 在按钮内部添加动画伪元素 */
.purchase_title_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80px; /* 起始位置 */
  width: 183px; /* 与动画宽度一致 */
  height: 43px;
  background: #dbfff1;
  border-radius: 50%;
  filter: blur(20px);
  transform: translateY(-50%) rotate(51deg);
  animation: move-horizontal 2.6s linear infinite;
  z-index: 1; /* 在内容下面 */
}

.purchase_title_btn-customer-service {
  height: 100%;
  min-height: 30px;
  width: 100%;
  min-width: 60px;
  border-radius: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden; /* 裁剪超出部分 */
  
}

/* 在按钮内部添加动画伪元素 */
.purchase_title_btn-customer-service::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 28%; /* 起始位置 */
  width: 28%; /* 与动画宽度一致 */
  height: 43px;
  background: #dbfff1;
  border-radius: 50%;
  filter: blur(20px);
  transform: translateY(-50%) rotate(51deg);
  animation: move-horizontal 2.6s linear infinite;
  z-index: 1; /* 在内容下面 */
}

/* 内容文本 */
.purchase_title_btn_text {
  position: relative;
  z-index: 6; /* 内容在伪元素上面 */
  background-image: linear-gradient(90deg, #8043ff, #4056ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 24px;
  cursor: pointer;
  /*transition: all 0.3s ease; /* 添加过渡效果 */
}

.purchase_title_btn_text-customer-service {
  position: relative;
  z-index: 6; /* 内容在伪元素上面 */
  background-image: linear-gradient(90deg, #8043ff, #4056ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: clamp(6px, 2vw, 24px);
  cursor: pointer;
  /*transition: all 0.3s ease; /* 添加过渡效果 */
}

/* 鼠标悬停时 */
/*.purchase_title_btn_text:hover {*/
  /*background-image: none; /* 取消背景渐变色 */
  /*color:#efefef; /* 文字变红 */
/*}*/

/* 定义动画 */
@keyframes move-horizontal {
  0% {
    left: -80px;
  }
  100% {
    left: calc(100% + 80px); /* 移动到按钮外部 */
  }
}

.purchase_flash_light-white {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: #fff;
    border-radius: inherit;
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 2;
}

.purchase_equity {
  background: rgba(231, 229, 238, 0.06);
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  box-sizing: border-box;
  height: 44px;
  border-radius: 6px;
  margin-bottom: 20px;
  margin: 20px 0;
  padding-left: 8px;
}

.purchase_check-icon {
 display: inline-flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    background: linear-gradient(90deg, #8043ff, #4056ff);
}

.purchase_linear-label {
  color: transparent;
    background-clip: text;
    color: hsla(0, 0%, 100%, .8);
}

.purchase_equity_item {
  display: flex;
  height: 23px;
    color: #fff;
    margin-bottom: 16px;
    padding-left: 10px;
}

.purchase_check-icon-check-icon {
  color: #fff;
  width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: -.19em;
    fill: currentColor;
    overflow: hidden;
}

.purchase_count_text {
    font-size: 18px;
    font-weight: 700;
    height: 23px;
    color: #fff;
    padding-left: 10px;
}

.purchase_count_text_item {
  color: hsla(0, 0%, 100%, .8);
  height: 23px;
  padding-left: 10px;
  font-size: 18px;
}

/*弹窗*/

.popus-new {
  position: fixed;
  display: none; /* 初始隐藏 */
  top: 0;
  background-color: rgba(0, 0, 0, .7);
  z-index: 6;
  width: 100%;
  height: 100%;
}

/* 显示弹窗 */
.popus-new.on {
  display: block;
}

.popup_dialog_box {
  position: relative;
  margin: auto;
  padding: 15px 30px 20px 30px;
  width: 600px;
  height: 600px;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
}

@media (max-width: 576px) {
  .popup_dialog_box {
    width: 380px;
    height: 380px;
  }
}

.popup_dialog_box-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup_dialog_box-title_text{
  font-size: 20px;
    font-weight: 700;
    color: #000;
    justify-content: center;
}

.popup_el-icon-close {
  position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

.popup_dialog_desc {
  margin-top: 23px;
    display: flex;
    align-items: center;
    width: 100%;
}

.popup_dialog_desc_point {
  margin-right: 5px;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: #9766fe;
}

.popup_dialog_desc_point_tetxt_point {
  position: relative;
  margin-top: 8px;
  font-size: 14px;
  width: 70%;
  height: 70%;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .popup_dialog_desc_point_tetxt_point {
    width: 60%;
    height: 60%;
  }
}

.popup_dialog_desc_point_tetxt_point img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .popup_dialog_desc_point_tetxt_point img {
    height: 200px;
  }
}

.popup_dialog_desc_point_tetxt_point_text {
  position: relative;
  margin-top: 8px;
  font-size: 14px;
  width: 70%;
  height: 70%;
}

@media (max-width: 576px) {
  .popup_dialog_desc_point_tetxt_point_text {
    width: 60%;
    height: 60%;
  }
}

.popup-btns {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 100%;
  margin-top: 0;
  text-align: center;
  z-index: 9999;
}



.popup-confirm {
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.popup-confirm:hover {
  background-color: #0069d9;
}

/*侧边客服*/
.float1 {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  width: 64px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px 0 0 8px;
  height: 325px;
}

.float-rel1 {
  position: relative;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, .1);
  border-radius: 8px 0 0 8px;
  width: 64px;
}

.float-bg1 {
  display: block;
  width: 100px;
}

.float-content1 {
  position: absolute;
  inset: 0;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 0;
}

.float-content1>a {
  flex-direction: column;
  color: rgb(10, 10, 10);
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 10px;
  font-size: 8px;
  width: 60%;
  margin-bottom: 10px; 
  position: relative;
}

.float-content1>a:hover>.float-child {
  display: block;
}

.float-child1 {
  position: absolute;
  right: 100%;
  padding-right: 35px;
  display: none;
}

.float-qrcode1 {
  width: 140px;
  height: 160px;
  padding: 10px;
  background-color: white;
  border-radius: 3px;
  color: black;
  text-align: center;
  font-size: 12px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  display: block;
}

.float-qrcode1::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 11px solid transparent;
  top: 43%;
  right: -25px;
}

.float-qrcode1 img {
  display: block;
  width: 120px;
  height: 120px;
  margin-bottom: 5px;
}

.float-content1>a:last-child {
  border: 0;
  padding-bottom: 0;
}

.float-content1>a>img {
  margin-bottom: 10px;
}

/*250914*/
.table-btns {
  display: block;
  overflow: hidden;
}
.table-btns a {
  display: block;
  clear: both;
  float: left;
  margin-bottom: 5px;
}
.paging {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  padding: 20px 0;
  margin-top: 20px;
}

.arrow-rotate {
  display: block;
  width: 10px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  margin: 0;
}

.left-rotate {
  transform: rotate(135deg);
  margin: 0 5px;
}

.right-rotate {
  transform: rotate(-45deg);
}

.paging-item {
  border-radius: 3px;
  padding: 0 12px;
}

.paging-item.on {
  background-color: var(--color-on);
  color: white;
}

.paging-total {
  margin: 0 10px;
}

.paging-to {
  display: flex;
  align-items: center;
}

.paging-to input {
  height: 24px;
  width: 50px;
  border-radius: 3px;
  border: 1px solid #aaa;
  margin-right: 10px;
  box-sizing: border-box;
  padding: 5px;
}

.paging-to button {
  background-color: var(--color-on);
  color: white;
  border-radius: 3px;
  height: 24px;
  width: 40px;
}
/*250914*/
/*250915*/
.page-user-row {
  display: flex;
  align-items: center;
}

.user-tips {
  background-color: #fdf6ec;
  color: #e6a23c;
  border-radius: 10px;
  margin-right: 10px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.unlock-auth-btn {
  background-color: var(--color-light-blue);
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 700;
}

.unlock-auth-btn::before {
  content: '';
  display: block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background: url('../images/icon-lock.png') no-repeat center/contain;
}

.pu-confirm {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  animation: puFade .2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pu-confirm.on {
  display: flex;
}

.pu-confirm-content {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  min-width: 500px;
  transform: translateY(-20px);
  animation: puSlide .2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pu-confirm-head {
  display: flex;
  align-items: center;
}

.pu-confirm-title {
  flex: 1;
}

.pu-confirm-close {
  font-size: 24px;
  font-weight: 400;
  color: #999;
  line-height: 1px;
  cursor: pointer;
}

.pu-confirm-body {
  padding: 30px 0;
}

.pu-confirm-body svg {
  margin-right: 10px;
}

.pu-confirm-foot {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.pu-confirm-foot button {
  border-radius: 4px;
  padding: 3px 15px;
  border: 1px solid #ccc;
  font-size: 14px;
  cursor: pointer;
}

.pu-confirm-foot button:last-child {
  color: white;
  background-color: var(--color-light-blue);
  border-color: var(--color-light-blue);
}

@keyframes puFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes puSlide {
  from {
    transform: translateY(-20px);
  }

  to {
    transform: translateY(0);
  }
}

.user-platform {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.user-platform-block {
  background-color: white;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .02);
}

.user-platform-dt {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.user-platform-dt img {
  display: block;
  width: 40px;
}

.user-platform-dt strong {
  display: block;
  margin: 0 5px;
  font-size: 20px;
}

.user-platform-dt span {
  color: #999;
  font-size: 14px;
  padding: 0 5px;
}

.user-platform-dt p {
  color: #e6a23c;
  font-size: 14px;
  flex: 1;
  margin-left: 10px;
}

.user-platform-dt a {
  border-radius: 50%;
  border: 2px solid var(--color-light-blue);
  color: var(--color-light-blue);
  font-family: Arial;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 22px;
  height: 22px;
  line-height: 20px;
}

.user-platform-dd {
  height: 700px;
}

.user-platform-dd-item {
  position: relative;
  background-color: #f5f7f9;
  padding: 10px;
  border-radius: 10px;
  margin-top: 15px;
}

.user-platform-dd-item label {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  font-size: 12px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 2px 5px;
}

.user-platform-dd-item img {
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.user-platform-dd-text {
  flex: 1;
  min-width: 0;
}

.user-platform-dd-text strong {
  font-weight: 400;
  display: block;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.user-platform-dd-text p {
  font-size: 12px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.user-platform-status-ok {
  background-color: var(--color-green);
}

.user-platform-status-fail {
  background-color: var(--color-red);
}

.user-platform-auth-tips {
  background-color: #fdf6ec;
  color: #e6a23c;
  border-radius: 10px;
  margin-right: 10px;
  height: 40px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}

.user-platform-auth-form {
  width: 80%;
  margin: 0 auto;
}

.user-platform-auth-fitem {
  width: 100%;
  margin-top: 30px;
}

.user-platform-auth-fitem>span {
  font-size: 14px;
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.user-platform-auth-fitem>span label {
  color: var(--color-red);
  display: block;
  width: 10px;
}

.user-platform-auth-fitem>input {
  border: 1px solid #ddd;
  display: block;
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

.pu-confirm-auth-info .pu-confirm-foot {
  margin-top: 20px;
}

.pu-confirm-auth-info .pu-confirm-foot button {
  border-radius: 40px;
  padding: 8px 25px;
}
/*250915*/