/*@font-face {*/
/*  font-family: 'pingfang';*/
/*  src: url('../font/pingfangsc-light.otf');*/
/*}*/
:root {
  /* 中性色 */
  --black-10: rgba(0, 0, 0, 0.1);
  --black-30: rgba(0, 0, 0, 0.3);
  --black-50: rgba(0, 0, 0, 0.5);
  --black-80: rgba(0, 0, 0, 0.8);
  --black-100: #000000;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-100: #ffffff;
  --gray-10: rgba(128, 128, 128, 0.1);
  --gray-30: rgba(128, 128, 128, 0.3);
  --gray-50: rgba(128, 128, 128, 0.5);
  --gray-80: rgba(128, 128, 128, 0.8);
  --gray-100: #808080;
  --dark-gray-10: rgba(53, 53, 53, 0.1);
  --dark-gray-30: rgba(53, 53, 53, 0.3);
  --dark-gray-50: rgba(53, 53, 53, 0.5);
  --dark-gray-80: rgba(53, 53, 53, 0.8);
  --dark-gray-100: #353535;
  --light-gray-10: rgba(211, 211, 211, 0.1);
  --light-gray-30: rgba(211, 211, 211, 0.3);
  --light-gray-50: rgba(211, 211, 211, 0.5);
  --light-gray-80: rgba(211, 211, 211, 0.8);
  --light-gray-100: #d3d3d3;
  /* 蓝色调 */
  --blue-100: #eff6ff;
  --blue-200: #bdd7fb;
  --blue-300: #78abf7;
  --blue-400: #4186ee;
  --blue-500: #1560be;
  --blue-600: #0e499c;
  /* 绿色调 */
  --green-100: #effdf2;
  --green-200: #c0ecc9;
  --green-300: #93dba5;
  --green-400: #54c468;
  --green-500: #1e9d3f;
  --green-600: #126b2f;
  /* 红色调 */
  --red-100: #fff1f0;
  --red-200: #ffbfbc;
  --red-300: #ef6a61;
  --red-400: #d63027;
  --red-500: #a41917;
  --red-600: #620e10;
  /* 黄色调 */
  --yellow-100: #fffeea;
  --yellow-200: #fff9a2;
  --yellow-300: #fff366;
  --yellow-400: #f2d324;
  --yellow-500: #c3921c;
  --yellow-600: #8a520d;
  /* 橙色调 */
  --orange-100: #fbf3e6;
  --orange-200: #f6ca9c;
  --orange-300: #ef9f53;
  --orange-400: #ec6b35;
  --orange-500: #cc4c02;
  --orange-600: #783204;
  /* 紫色调 */
  --purple-100: #f7f3f8;
  --purple-200: #d3bee2;
  --purple-300: #af86c2;
  --purple-400: #965daa;
  --purple-500: #7d3c98;
  --purple-600: #5d266b;
  /* 粉色调 */
  --pink-100: #fef3f4;
  --pink-200: #feccd7;
  --pink-300: #e887a0;
  --pink-400: #d94d73;
  --pink-500: #ac1d49;
  --pink-600: #691228;
  --linear-background: linear-gradient(-90deg, #43CBFF, #9708CC);
  --black-333: #333;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: pingfang;
}
a {
  text-decoration: none;
}
i {
  font-style: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body {
  max-width: 1320px;
  margin: 0 auto;
}
body * {
  transition: all 0.5s ease-in-out;
}
img {
  object-fit: cover;
  display: block;
}
h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--black-100);
}
h2 {
  font-size: 22px;
  font-weight: bold;
  color: var(--black-100);
}
h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--black-100);
}
h4 {
  font-size: 18px;
  font-weight: bold;
  color: var(--black-100);
}
.flex {
  width: fit-content;
  display: flex;
  align-items: center;
}
.wrap-topNav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.wrap-topNav .wrap-topNav-item {
  width: 25%;
  padding: 10px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap-topNav .wrap-topNav-item p {
  color: var(--w-color);
  text-align: center;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.nav-bar {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  height: fit-content;
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--white-100);
  border-bottom: solid 1px var(--gray-50);
}
.nav-bar a {
  font-size: 14px;
  color: var(--black-80);
}
.nav-bar .nav-item {
  width: fit-content;
  height: fit-content;
  margin-right: 10px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
  color: var(--black-80);
  font-weight: bold;
  user-select: none;
}
.nav-bar .nav-item:hover {
  background-color: var(--gray-30);
}
.nav-bar .nav-item .logo {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.nav-bar .nav-item .logo i {
  font-size: 30px;
}
.nav-bar .nav-item .logo img {
  width: 30px;
  height: 100%;
}
.nav-bar .nav-item .back {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.nav-bar .nav-item .back i {
  font-size: 20px;
}
.nav-bar .nav-item .back img {
  width: 20px;
  height: 100%;
}
.nav-bar .nav-select {
  position: relative;
  transition: all 0.2s ease-in-out;
}
.nav-bar .nav-select::after {
  content: '\F282';
  position: relative;
  width: 20px;
  height: 20px;
  font-family: bootstrap-icons !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
}
.nav-bar .nav-select:hover::after {
  transform: rotate(180deg);
  transition: all 0.2s ease-in-out;
}
.nav-bar .nav-select:hover .nav-opention {
  display: flex;
}
.nav-bar .nav-select .nav-opention {
  position: absolute;
  width: 100%;
  height: fit-content;
  padding: 5px;
  top: calc(100%);
  background-color: var(--white-100);
  display: none;
  flex-wrap: wrap;
  z-index: 999;
  border-radius: 4px;
  border: solid 1px var(--gray-50);
}
.nav-bar .nav-select .nav-opention .nav-opention-item {
  width: 100%;
  padding: 5px;
  border-radius: 4px;
  color: var(--black-80);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.nav-bar .nav-select .nav-opention .nav-opention-item a {
  font-size: 14px;
  color: var(--black-80);
}
.nav-bar .nav-select .nav-opention .nav-opention-item:hover {
  background-color: var(--gray-30);
}
.nav-bar .nav-input {
  margin-left: auto;
}
.nav-bar .nav-input:hover {
  background-color: var(--white-50);
}
.banner {
  width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.banner a {
  color: var(--black-333);
}
.banner .banner-window {
  width: 100%;
  overflow: hidden;
}
.banner .banner-window .banner-container {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-out;
}
.banner .banner-window .banner-container .banner-item {
  flex-shrink: 0;
  min-height: 300px;
  position: relative;
}
.banner .banner-window .banner-container .banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner-window .banner-container .banner-item.active + .banner-item {
  visibility: visible;
}
.banner .banner-btn-previous,
.banner .banner-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.banner .banner-btn-previous i,
.banner .banner-btn-next i {
  width: 100%;
  height: 100%;
  display: flex;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  color: var(--black-333);
}
.banner .banner-btn-previous {
  left: 20px;
}
@media (max-width: 767px) {
  .banner .banner-btn-previous {
    left: 10px;
  }
}
.banner .banner-btn-next {
  right: 20px;
}
@media (max-width: 767px) {
  .banner .banner-btn-next {
    right: 10px;
  }
}
.banner .banner-page {
  width: 50%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  position: absolute;
  bottom: 10px;
  left: 25%;
}
.banner .banner-page .banner-page-item {
  margin: 0 6px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s;
}
.banner .banner-page .banner-page-item:hover,
.banner .banner-page .banner-page-item.active {
  background-color: var(--white-100);
}
.banner .banner-page .banner-page-item.active {
  width: 24px;
}
.btn-blue {
  background-color: var(--blue-400);
  border-color: var(--blue-400);
}
.btn-yellow {
  background-color: var(--yellow-400);
  border-color: var(--yellow-400);
}
.btn-red {
  background-color: var(--red-400);
  border-color: var(--red-400);
}
.btn-green {
  background-color: var(--green-400);
  border-color: var(--green-400);
}
.btn-orange {
  background-color: var(--orange-400);
  border-color: var(--orange-400);
}
.btn-purple {
  background-color: var(--purple-400);
  border-color: var(--purple-400);
}
.btn-pink {
  background-color: var(--pink-400);
  border-color: var(--pink-400);
}
button {
  width: fit-content;
  height: fit-content;
  padding: 5px 10px;
  font-size: 16px;
  border: solid 2px;
  border-color: #666;
  background-color: #666;
  border-radius: 4px;
  color: var(--white-100);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
button i {
  color: var(--white-100);
  font-size: 20px;
  margin-left: 10px;
}
button:hover {
  filter: brightness(0.8);
}
button:disabled {
  background-color: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--white-50);
  cursor: not-allowed;
}
input,
.input {
  border: solid 1px var(--white-100);
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 4px;
  color: #333;
  margin-right: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
input:disabled,
.input:disabled {
  background-color: var(--gray-100);
  border: solid 1px var(--gray-100);
  color: var(--white-50);
  cursor: not-allowed;
}
input::placeholder,
.input::placeholder {
  font-size: 16px;
}
.input {
  background-color: var(--white-100);
  color: var(--black-80);
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
}
.input[data-placeholder]:empty:before {
  content: attr(data-placeholder);
  color: #999;
}
.input:not([contenteditable="true"]) {
  cursor: not-allowed;
  background-color: var(--gray-100);
  border: solid 1px var(--gray-100);
  color: var(--white-50);
}
.wrapper {
  position: relative;
  height: fit-content;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.wrapper .scroller .scroller-item {
  border: 1px solid #ccc;
  padding: 10px;
}
.wrapper .scroller ul {
  width: 100%;
  display: flex;
}
.wrapper .scroller li {
  padding: 10px;
  flex-shrink: 0;
  width: fit-content;
  text-align: center;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 10px;
}
.grid-container .grid-item {
  background-color: #ccc;
  padding: 20px;
  text-align: center;
}
.grid-container .item1-2 {
  grid-column: span 2;
}
.flex-box {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.flex-box .flex-item {
  flex: 1;
  padding: 10px;
  min-width: 100px;
  background-color: var(--white-50);
  color: var(--black-50);
  margin: 10px;
  border-radius: 4px;
}
p {
  font-size: 16px;
  color: var(--black-333);
}
.bold {
  font-weight: bold;
}
.custom-text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2px;
}
.foot-nav-bar {
  width: 100%;
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white-100);
}
.foot-nav-bar .foot-nav-item {
  flex: 1;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-wrap: wrap;
}
.foot-nav-bar .foot-nav-item .foot-nav-item-ico {
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot-nav-bar .foot-nav-item .foot-nav-item-ico i {
  font-size: 24px;
  color: var(--black-333);
}
.foot-nav-bar .foot-nav-item .foot-nav-item-ico img {
  width: 25px;
  height: 25px;
}
.foot-nav-bar .foot-nav-item .foot-nav-item-text {
  width: 100%;
  text-align: center;
  color: var(--black-333);
}
.foot-nav-bar .foot-nav-item:hover {
  background-color: var(--black-10);
}
.pagination {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.pagination .page-link {
  display: flex;
  width: 50px;
  height: 30px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  margin-right: 10px;
  background-color: var(--white-100);
  font-weight: bold;
}
.pagination .page-link i {
  color: var(--black-333);
}
.pagination .page-link:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
.pagination .page-link:hover i {
  color: #fff;
}
.pagination .next i,
.pagination .prev i {
  font-size: 20px;
}
.pagination .active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
.video-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  background-color: var(--white-100);
  border-radius: 4px;
  position: relative;
}
.video-list .video-item {
  flex-grow: 0;
  flex-basis: calc(16.6666667% - 10px);
  flex-shrink: 0;
  max-width: calc(50% - 10px);
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 10px;
}
.video-list .video-item .video-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4.5;
  margin-bottom: 5px;
  user-select: none;
}
.video-list .video-item .video-img img {
  width: 100%;
  height: 100%;
}
.video-list .video-item .video-name {
  width: 100%;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  color: var(--black-333);
  user-select: none;
}
.video-list .video-item .video-text {
  width: 100%;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  user-select: none;
}
.video-list-scroll {
  width: 100%;
  display: flex;
  padding: 10px;
  background-color: var(--white-100);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.video-list-scroll .scroller .clearfix {
  width: 100%;
  display: flex;
}
.video-list-scroll .scroller .clearfix li {
  width: 140px;
  padding: 0 5px;
}
.video-list-scroll .scroller .clearfix li .video-list-scroller-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 10px;
  background-color: var(--white-100);
}
.video-list-scroll .scroller .clearfix li .video-list-scroller-item .video-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4.5;
  margin-bottom: 5px;
  user-select: none;
}
.video-list-scroll .scroller .clearfix li .video-list-scroller-item .video-img img {
  width: 100%;
  height: 100%;
}
.video-list-scroll .scroller .clearfix li .video-list-scroller-item .video-name {
  width: 100%;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  color: var(--black-333);
  user-select: none;
}
.video-list-scroll .scroller .clearfix li .video-list-scroller-item .video-text {
  width: 100%;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  user-select: none;
}
.video-vip {
  position: relative;
}
.video-vip .video-vip-tag {
  position: absolute;
  width: fit-content;
  height: fit-content;
  padding: 2.5px 5px;
  right: 0;
  top: 5%;
  background-image: linear-gradient(-90deg, #FF8008, #FFC837);
  color: var(--black-333);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-hot-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 4px;
  position: relative;
}
.video-hot-list .video-hot-item {
  flex-grow: 0;
  flex-basis: calc(33.3333% - 10px);
  flex-shrink: 0;
  max-width: calc(50% - 10px);
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.video-hot-list .video-hot-item .video-hot-item-img {
  width: 100%;
}
.video-hot-list .video-hot-item .video-hot-item-img img {
  width: 100%;
  height: 100%;
}
.video-hot-list .video-hot-item .video-hot-item-main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  justify-content: space-between;
  background-color: var(--white-100);
}
.video-hot-list .video-hot-item .video-hot-item-main .video-hot-item-main-left {
  width: 60px;
  height: 100%;
  aspect-ratio: 3/4.5;
  border-radius: 10px;
  overflow: hidden;
}
.video-hot-list .video-hot-item .video-hot-item-main .video-hot-item-main-left img {
  width: 100%;
  height: 100%;
}
.video-hot-list .video-hot-item .video-hot-item-main .video-hot-item-main-right {
  width: calc(100% - 80px);
}
.video-hot-list .video-hot-item .video-hot-item-main .video-hot-item-main-right div {
  margin-bottom: 10px;
}
.video-hot-list .video-hot-item .video-hot-item-main .video-hot-item-main-right .video-hot-item-name {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  color: var(--black-333);
  font-size: 20px;
}
.video-hot-list .video-hot-item .video-hot-item-main .video-hot-item-main-right .video-hot-item-actor {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  color: var(--gray-100);
}
.video-hot-list .video-hot-item .video-hot-item-main .video-hot-item-main-right .video-hot-item-text {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  color: var(--gray-100);
  font-size: 16px;
}
.video-info-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.video-info-list .video-info-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--white-100);
  padding: 10px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.video-info-list .video-info-item .video-info-item-left {
  width: 30%;
}
.video-info-list .video-info-item .video-info-item-left .video-info-item-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.video-info-list .video-info-item .video-info-item-left .video-info-item-img img {
  width: 100%;
}
.video-info-list .video-info-item .video-info-item-right {
  width: calc(70% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video-info-list .video-info-item .video-info-item-right .video-info-item-title {
  width: 100%;
  font-size: 18px;
  color: var(--black-333);
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.video-info-list .video-info-item .video-info-item-right .video-info-item-text {
  width: 100%;
  font-size: 18px;
  color: var(--black-333);
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  font-size: 14px;
}
.video-info-list .video-info-item .video-info-item-right .video-info-item-main {
  width: 100%;
  display: flex;
}
.video-info-list .video-info-item .video-info-item-right .video-info-item-main div {
  margin-right: 20px;
}
.video-info-list .video-info-item .video-info-item-right .video-info-item-main button {
  margin-left: auto;
}
.activity-Preview {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: var(--white-100);
  position: relative;
}
.activity-Preview .activity-Preview-title {
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 30px;
  color: var(--black-333);
  font-weight: bold;
}
.activity-Preview .activity-Preview-item {
  width: 160px;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.activity-Preview .activity-Preview-item .activity-Preview-item-title {
  width: fit-content;
  position: relative;
}
.activity-Preview .activity-Preview-item .activity-Preview-item-title p {
  width: fit-content;
  position: relative;
  font-size: 20px;
  color: var(--black-333);
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  z-index: 2;
}
.activity-Preview .activity-Preview-item .activity-Preview-item-title::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 15px;
  left: -10%;
  bottom: 0;
  background-color: var(--blue-100);
  z-index: 1;
  border-radius: 25px;
}
.activity-Preview .activity-Preview-item .activity-Preview-item-text {
  width: 100%;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.activity-Preview .activity-Preview-item:nth-child(3) {
  left: 55%;
  top: 25%;
  justify-content: flex-start;
}
.activity-Preview .activity-Preview-item:nth-child(4) {
  left: 35%;
  top: 50%;
  justify-content: flex-end;
}
.activity-Preview .activity-Preview-item:nth-child(4) .activity-Preview-item-text {
  text-align: right;
}
.activity-Preview .activity-Preview-item:nth-child(5) {
  left: 50%;
  top: 70%;
  justify-content: flex-start;
}
.activity-Preview .activity-Preview-item:nth-child(6) {
  left: 40%;
  bottom: 0;
  justify-content: flex-end;
}
.activity-Preview svg {
  background-color: var(--white-100);
}
.activity-Preview svg path {
  stroke-width: 2px;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 2s linear forwards;
  stroke: #43CBFF;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.activity-Preview svg circle {
  stroke: var(--white-50);
  stroke-width: 5px;
  fill: var(--blue-400);
}
.ico-nav {
  width: 100%;
}
.ico-nav .grid-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  background-color: var(--white-100);
  padding: 10px;
  /* 可选项，用于设置元素之间的空隙 */
}
.ico-nav .grid-container .item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px 10px;
}
.ico-nav .grid-container .item .item-img {
  width: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-size: 150% 150%;
  background-position: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.ico-nav .grid-container .item .item-img i {
  font-size: 3rem;
  color: var(--white-100);
  text-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.ico-nav .grid-container .item .item-img i:hover {
  transform: scale(1.1) translateY(-10px) translateZ(10px);
  text-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.ico-nav .grid-container .item:nth-child(1) .item-img {
  background-image: linear-gradient(180deg, #FF8008, #FFC837);
}
.ico-nav .grid-container .item:nth-child(2) .item-img {
  background-image: linear-gradient(180deg, #000DFF, #6B73FF);
}
.ico-nav .grid-container .item:nth-child(3) .item-img {
  background-image: linear-gradient(180deg, #A18CD1, #FBC2EB);
}
.ico-nav .grid-container .item:nth-child(4) .item-img {
  background-image: linear-gradient(180deg, #EC008C, #FC6767);
}
.ico-nav .grid-container .item:nth-child(5) .item-img {
  background-image: linear-gradient(180deg, #02AAB0, #00CDAC);
}
.ico-nav .grid-container .item:nth-child(6) .item-img {
  background-image: linear-gradient(180deg, #F8D800, #FDEB71);
}
.ico-nav .grid-container .item:nth-child(7) .item-img {
  background-image: linear-gradient(180deg, #32CCBC, #90F7EC);
}
.ico-nav .grid-container .item:nth-child(8) .item-img {
  background-image: linear-gradient(180deg, #0396FF, #ABDCFF);
}
.ico-nav .grid-container .item .item-text {
  width: 100%;
  text-indent: 0;
  font-size: 1.3rem;
  margin-top: 10px;
  color: var(--black-333);
  font-weight: bold;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  text-align: center;
}
.box-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  background-color: var(--white-100);
  border-radius: 4px;
  position: relative;
}
.box-list .box-item {
  width: calc(24% - 10px);
  flex-grow: 0;
  flex-basis: 232px;
  flex-shrink: 0;
  max-width: calc(50% - 10px);
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.box-list .box-item .box-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.box-list .box-item .box-img img {
  width: 100%;
  height: 100%;
}
.box-list .box-item .box-text {
  width: 100%;
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
  color: var(--black-333);
}
.box-list .box-item .box-text p {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.introduce {
  width: 100%;
  display: flex;
  background-color: var(--white-100);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.introduce::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../../images/introduce.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  filter: blur(15px);
  z-index: 1;
}
.introduce .introduce-main {
  flex-shrink: 0;
  flex-basis: 80%;
  flex-grow: 0;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 2;
}
.introduce .introduce-main .introduce-left {
  width: 38%;
  margin-right: 2%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--white-50);
  border-radius: 4px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.introduce .introduce-main .introduce-left:hover {
  transform: scale(1.1) translateY(-10px) translateZ(10px);
}
.introduce .introduce-main .introduce-left .introduce-title {
  width: 100%;
  font-size: 30px;
  color: var(--black-333);
  font-weight: bold;
  margin-bottom: 10px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.introduce .introduce-main .introduce-left .introduce-text {
  width: 100%;
  font-size: 22px;
  color: var(--black-80);
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  text-indent: 44px;
}
.introduce .introduce-main .introduce-right {
  width: 60%;
}
.introduce .introduce-main .introduce-right .introduce-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.introduce .introduce-main .introduce-right .introduce-img:hover {
  transform: scale(1.1) translateY(-10px) translateZ(10px);
}
.introduce .introduce-main .introduce-right .introduce-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.functionCard {
  display: flex;
  max-width: 1320px;
  min-width: 520px;
  flex-wrap: wrap;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white-100);
  padding: 10px;
}
.functionCard .functionCard-item {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 240px;
  aspect-ratio: 1/1.25;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 20px;
}
.functionCard .functionCard-item:hover {
  transform: translateY(-5px) translateZ(10px);
}
.functionCard .functionCard-item .card-top,
.functionCard .functionCard-item .card-bottom {
  width: 100%;
  height: 50%;
  padding: 10px;
}
.functionCard .functionCard-item .card-top .card-title,
.functionCard .functionCard-item .card-bottom .card-title,
.functionCard .functionCard-item .card-top .card-text,
.functionCard .functionCard-item .card-bottom .card-text {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.functionCard .functionCard-item .card-top .card-title,
.functionCard .functionCard-item .card-bottom .card-title {
  font-size: 20px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.functionCard .functionCard-item .card-top .card-text,
.functionCard .functionCard-item .card-bottom .card-text {
  font-size: 16px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.functionCard .functionCard-item .card-bottom {
  background-color: var(--white-100);
}
.functionCard .functionCard-item .card-bottom * {
  color: var(--black-333);
}
.functionCard .functionCard-item .card-top {
  background-size: 150%;
  background-position: center center;
}
.functionCard .functionCard-item .card-top * {
  color: var(--white-100);
}
.functionCard .functionCard-item .card-top button {
  margin: 0 auto;
  display: block;
  background-color: transparent;
  border: solid 1px var(--white-100);
  border-radius: 25px;
  padding: 5px 20px;
}
.functionCard .functionCard-item:nth-child(1) .card-top {
  background-image: linear-gradient(90deg, #FCCF31, #F55555);
}
.functionCard .functionCard-item:nth-child(2) .card-top {
  background-image: linear-gradient(90deg, #ABDCFF, #0396FF);
}
.functionCard .functionCard-item:nth-child(3) .card-top {
  background-image: linear-gradient(90deg, #E2B0FF, #9F44D3);
}
.functionCard .functionCard-item:nth-child(4) .card-top {
  background-image: linear-gradient(90deg, #00E4FF, #69FF97);
}
.matrix-box {
  width: 100%;
}
.matrix-box .matrix-main {
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, minmax(auto, auto));
  grid-gap: 10px;
  background-color: var(--white-100);
  padding: 10px;
}
.matrix-box .matrix-main .matrix-item {
  background-color: var(--white-100);
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 4px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.matrix-box .matrix-main .matrix-item:hover {
  transform: scale(1.1) translateY(-10px) translateZ(10px);
}
.matrix-box .matrix-main .matrix-item .matrix-item-img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
.matrix-box .matrix-main .matrix-item .matrix-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.matrix-box .matrix-main .matrix-item .matrix-item-main {
  width: calc(100% - 70px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.matrix-box .matrix-main .matrix-item .matrix-item-main .matrix-item-title {
  width: 100%;
  font-size: 18px;
  color: var(--black-333);
  font-weight: bold;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.matrix-box .matrix-main .matrix-item .matrix-item-main .matrix-item-text {
  width: 100%;
  font-size: 14px;
  color: #adb5bd;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.matrix-box .matrix-main .matrix-item-max {
  grid-row: span 2;
  background-image: linear-gradient(90deg, #1904E5, #FAB2FF);
  background-position: center center;
  background-size: 200%;
}
.matrix-box .matrix-main .matrix-item-max .matrix-item-max-main {
  width: calc(100% - 100px);
  min-width: 150px;
  display: flex;
  flex-wrap: wrap;
}
.matrix-box .matrix-main .matrix-item-max .matrix-item-max-main .matrix-item-max-title {
  width: 100%;
  color: var(--white-100);
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.matrix-box .matrix-main .matrix-item-max .matrix-item-max-main button {
  margin-top: 20px;
  display: flex;
  padding: 5px 20px;
  background-color: var(--white-50);
  border: none;
  border-radius: 25px;
  /*字体阴影 */
  -webkit-box-reflect: below 10px -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0.3)));
  /*字体倒影 */
  margin: 0 auto;
}
.matrix-box .matrix-main .matrix-item-max .matrix-item-max-img {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.matrix-box .matrix-main .matrix-item-max .matrix-item-max-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.function-card-2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--white-100);
  padding: 20px;
}
.function-card-2 .function-card-2-item {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 240px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.function-card-2 .function-card-2-item:hover {
  transform: translateY(-10px) translateZ(10px);
}
.function-card-2 .function-card-2-item .card-2-top {
  position: relative;
  width: 100%;
  padding: 20px 10px;
  background-image: linear-gradient(90deg, #130CB7, #52E5E7);
  background-size: 300%;
  background-position: center center;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.function-card-2 .function-card-2-item .card-2-top::after,
.function-card-2 .function-card-2-item .card-2-top::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 200%;
  top: 0;
  left: 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  background-image: linear-gradient(90deg, #130CB7, #52E5E7);
  transform: rotate(-210deg);
  border-radius: 15px;
}
.function-card-2 .function-card-2-item .card-2-top::after {
  top: 100%;
  left: -20%;
}
.function-card-2 .function-card-2-item .card-2-top::before {
  top: -200%;
  left: 60%;
}
.function-card-2 .function-card-2-item .card-2-top .card-2-title {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: var(--white-100);
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.function-card-2 .function-card-2-item .card-2-bottom {
  width: 100%;
  background-color: var(--white-100);
  padding: 10px;
}
.function-card-2 .function-card-2-item .card-2-bottom .card-2-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  color: var(--black-333);
  font-weight: bold;
  margin-bottom: 5px;
}
.function-card-2 .function-card-2-item .card-2-bottom .card-2-title::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 25px;
  background-color: var(--blue-600);
  margin: 5px;
}
.function-card-2 .function-card-2-item .card-2-bottom .card-2-text {
  text-indent: 28px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  margin-bottom: 10px;
}
.function-card-2 .function-card-2-item .card-2-bottom button {
  margin: 0 auto;
  display: block;
  padding: 5px 20px;
  border: solid 1px var(--blue-400);
  color: var(--blue-400);
  background-color: transparent;
  border-radius: 25px;
  margin-top: 10px;
}
.screen {
  width: 100%;
  border-radius: 4px;
  position: relative;
  aspect-ratio: 4/2;
  overflow: hidden;
}
.screen .screen-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  color: var(--white-100);
}
.screen .screen-info .time {
  font-size: 14px;
  margin-bottom: 5px;
}
.screen .screen-info .time,
.screen .screen-info .text {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.index-foot-wrap {
  width: 100%;
  padding: 10px;
}
.index-foot-wrap p {
  color: var(--white-80);
  font-size: 14px;
  text-align: center;
  line-height: 28px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.content {
  width: 100%;
  padding: 20px;
  background-color: var(--white-100);
}
.content .content-title p,
.content .content-title-1 p {
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}
.content .content-title p {
  font-size: 20px;
  font-weight: bold;
}
.content .content-info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  flex-grow: 0;
}
.content .content-info .content-info-item {
  margin: 5px 10px;
}
.content .content-text {
  width: 100%;
  padding: 10px;
  text-indent: 32px;
}
.text-overflow {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
