header {
  width: 100%;
  padding: 0 80px;
  height: var(--header-h);
  --nav-h: calc(var(--header-h) - 20px);
  position: fixed;
  top: 20px;
  z-index: 999;
  transition: .3s;
}

.header-wrap {
  width: 100%;
}

.scrolled header {
  top: 0;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px);
}

header .logo {
  height: 100%;
  flex-shrink: 0;
}

header .logo img {
  height: var(--nav-h);
}

.header-area {
  padding: 0 20px;
  gap: 30px;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: rgba(0, 0, 0, 0.1);
  height: var(--nav-h);
}

.header-nav,
.btn-large-nav-expand,
.mobile-nav,
footer {
  opacity: 0;
}

.header-nav {
  gap: 10px;
}

.header-nav a {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

.header-nav a:hover {
  text-decoration: underline;
}

.header-nav .sign {
  position: relative;
}

.header-nav .sign-wrap {
  width: 100%;
  gap: 10px;
  cursor: pointer;
  color: #fff;
}

.header-nav .sign.logged {
  color: var(--theme-color);
  background-color: #fff;
  display: none;
}

.header-nav .sign.logged img {
  filter: url(#block-overlay);
}

.header-nav .sign.logged .sign-wrap {
  color: var(--theme-color);
}

body.logined .header-nav .sign.not-log {
  display: none;
}

body.logined .header-nav .sign.logged {
  display: flex;
}

.header-nav .sign span {
  flex-shrink: 0;
  max-width: 4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}

.header-nav .sign:hover {
  text-decoration: underline;
}

.header-nav .sign img {
  filter: url(#white-overlay);
}

.nav-expand {
  width: max-content;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  transform: translateY(-10px);
  transition: .3s;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}

.nav-cont {
  margin-top: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.nav-cont .item {
  transition: .3s;
  padding: 10px 20px;
}

.nav-cont .item:hover {
  background-color: #cecece;
}

.header-nav .sign:hover .nav-expand {
  visibility: visible;
  opacity: 1;
  transform: unset;
}

.header-right {
  gap: 10px;
}

.lang-wrap {
  position: relative;
}

.lang-wrap .lang-cont {
  padding: 0 20px;
  gap: 10px;
  cursor: pointer;
  color: var(--theme-color);
  background-color: #fff;
  border-radius: 10px;
  height: var(--nav-h);
}

.lang-wrap .lang-cont img {
  height: 25px;
  filter: url(#black-overlay);
}

.lang-expand {
  width: 100%;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  transform: translateY(-10px);
  transition: .3s;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}

.lang-expand-cont {
  margin-top: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.lang-expand-cont .item {
  transition: .3s;
  padding: 20px;
  display: block;
  text-align: center;
}

.lang-expand-cont .item:hover {
  background-color: #cecece;
}

.lang-wrap:hover .lang-expand {
  visibility: visible;
  opacity: 1;
  transform: unset;
}

.lang-mo-wrap {
  gap: 10px;
}

.lang-mo-wrap img {
  filter: url(#black-overlay);
}

.sec-title {
  font-size: max(28px, 68 * var(--px));
  line-height: 1.3;
  overflow: hidden;
  font-weight: bold;
  color: var(--theme-color-purple);
}

.sec-title p {
  line-height: unset;
}

.sec-title-thin {
  font-weight: bold;
  font-size: max(24px, 48 * var(--px));
  line-height: 1.2;
  text-transform: uppercase;
  overflow: hidden;
}

.sec-title-sub {
  font-size: max(20px, 38 * var(--px));
  font-weight: bold;
  overflow: hidden;
}

.sec-intro {
  font-size: max(18px, 28 * var(--px));
  overflow: hidden;
}

.sec-intro-thin {
  font-size: max(16px, 20 * var(--px));
  overflow: hidden;
}

.sec-intro-sub {
  font-size: max(14px, 18 * var(--px));
  font-weight: 300;
  overflow: hidden;
}

.sec-top .sec-title,
.sec-top .sec-title-thin {
  margin-top: 0.3em;
}

.sec-top .sec-intro {
  margin-top: 2em;
}

.sec-top .sec-intro-sub {
  margin-top: 1em;
}

.sec-top>*:nth-child(1) {
  margin-top: 0 !important;
}

.sec-wrap-padding {
  --padding: max(20px, calc(var(--header-h) + 40 * var(--px)));
  padding: var(--padding) 0;
}

.sec-wrap-padding-thin {
  --padding: max(20px, calc(var(--header-h) + 20 * var(--px)));
  padding: var(--padding) 0;
}

.sec-wrap-padding-min {
  --padding: max(20px, calc(var(--header-h)));
  padding: var(--padding) 0;
}

.notice-wrap {
  width: max(300px, 380 * var(--px));
  position: absolute;
  bottom: max(20px, 40 * var(--px));
  right: max(40px, 80 * var(--px));
  border-radius: 30px;
  background: rgba(246, 246, 246, 1);
  font-size: max(14px, 18 * var(--px));
  text-align: center;
  padding: 50px 20px;
  z-index: 1;
}

.notice-cont {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--theme-color-purple);
  font-size: 12px;
  border-top-right-radius: 30px;
  background-color: var(--theme-color-green);
  padding: 11px 17px;
  font-weight: bold;
  text-transform: uppercase;
}

.index-banner .swiper-slide {
  color: var(--theme-color-purple);
}

.index-banner .swiper .title {
  font-size: calc(68 * var(--px));
  font-weight: bold;
  line-height: 1.2;
}

.index-banner .swiper .title p {
  line-height: 1.2;
}

.index-banner .swiper-slide.first-screen .sec-title {
  color: #fff;
}

.index-banner .swiper-slide.first-screen .title {
  font-size: calc(108 * var(--px));
  color: #fff;
}

.index-banner .swiper-pagination {
  width: max-content;
  bottom: 10%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 300px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
}

.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  width: 60px;
  background-color: #fff;
  border-radius: 300px;
}

.learn-more {
  width: max(120px, 180 * var(--px));
  height: max(40px, 60 * var(--px));
  border-radius: 10px;
  background-color: var(--theme-color-purple-thin);
  padding: 0 max(10px, 30 * var(--px));
  position: relative;
  margin-top: var(--px-20-40);
  cursor: pointer;
  overflow: hidden;
  color: var(--theme-color-purple-weak);
  font-weight: bold;
  transition: .3s;
}

.learn-more span {
  position: relative;
  z-index: 2;
}

.learn-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: max(10px, 30 * var(--px));
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--theme-color-purple-weak);
  z-index: 1;
  transition: .7s;
}

.learn-more:hover {
  color: #fff;
  justify-content: center;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
}

.learn-more:hover::after {
  transform: translateY(-50%) scale(30);
}

.learn-more-lay1 {
  background-color: unset;
}

.sec-index-1 .item {
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.sec-index-1 .item:last-child {
  margin-bottom: 0;
}

.sec-index-1 .item:nth-child(even) {
  flex-direction: row-reverse;
}

.sec-index-1 .item .pic {
  width: calc(520 * var(--px));
  aspect-ratio: 1;
  padding: max(30px, 5%);
  border-radius: 20px;
  background-color: var(--theme-color-purple-thin);
}

.sec-index-1 .item .txt {
  padding: max(30px, 5%) max(50px, 8%) max(30px, 5%) max(40px, 6%);
  gap: 20px;
  flex: 1;
}

.sec-index-1 .item .linkTo {
  font-size: var(--font-24);
  font-weight: bold;
  gap: 10px;
  margin-top: var(--px-10-20);
  cursor: pointer;
}

.sec-index-1 .item .linkTo:hover {
  text-decoration: underline;
}

.sec-index-1 .item .linkTo .icon-lay {
  --lay-icon-w: 30px;
  background: linear-gradient(180.00deg, rgba(132, 84, 252, 1), rgba(182, 159, 255, 1) 75%);
}

.sec-index-1 .item .linkTo .icon-lay img {
  margin-left: -3px;
}

.sec-index-1 .learn-more {
  border-radius: 300px;
  margin-top: 10px;
}

.label-wrap {
  gap: 6px;
}

.label {
  height: 40px;
  border-radius: 300px;
  padding: 0 24px;
  width: max-content;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.label.success {
  color: var(--theme-color-purple);
  background-color: var(--theme-color-green);
}

.label.info {
  color: #333333;
  background-color: #f0f0f0;
}

.bg-color {
  background-color: var(--theme-color-gray);
}

.sec-index-1 .item .info-wrap {
  margin-top: var(--px-10-20);
}

.info-wrap p {
  padding-left: 30px;
  background: url(../../skin/images/icon-check.svg) no-repeat;
  background-size: 20px;
  background-position: left 0.25em;
  font-size: var(--font-20);
}

.sec-index-2 .sec-title p:last-child {
  margin-left: 8%;
}

.sec-index-2 .container {
  gap: max(30px, 10%);
}

.sec-index-2 .pic {
  width: 50%;
  flex-shrink: 0;
}

.sec-index-3 .item {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: var(--px-20-40) 0;
  display: block;
}

.sec-index-3 .item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.sec-index-3 .item .sec-intro-thin {
  margin-top: var(--px-10-20);
}

.sec-index-3 .container {
  gap: 5%;
}

.sec-index-3 .pic {
  aspect-ratio: 92 / 58;
  height: 100%;
  /* flex-shrink: 0.7; */
}

.sec-index-4 .sec-wrap {
  gap: max(30px, 20%);
}

.sec-index-4 .sec-title {
  color: #fff;
  text-transform: initial;
}

.sec-index-4 .info-wrap {
  color: #fff;
  margin-top: var(--px-20-40);
}

.sec-index-4 .info-wrap p:nth-of-type(1) {
  background-image: url(../images/location.svg);
  background-size: 1em;
}

.sec-index-4 .info-wrap p:nth-of-type(2) {
  background-image: url(../images/tel.svg);
  background-size: 1em;
}

.sec-index-4 .info-wrap p:nth-of-type(3) {
  background-image: url(../images/email.svg);
  background-size: 1em;
}

.sec-index-4 .sec-top {
  width: 40%;
}

.sec-index-4 .container {
  flex: 1;
  margin-top: var(--px-10-20);
}

.sec-index-4 .form-top .intro {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

#contact-us-form-dialog .dialog-cont {
  width: max(768px, 1280 * var(--px));
  aspect-ratio: 1280 / 720;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
  background-color: #000;
  background: url(../images/form-bg.jpg) no-repeat center / contain;
}

#contact-us-form-dialog .dialog-wrap {
  width: 60%;
  border-top-left-radius: 200px;
  padding: 30px;
}

#contact-us-form-dialog .dialog-wrap_head {
  padding-top: 5%;
  padding-bottom: 10%;
}

#contact-us-form-dialog .dialog-wrap_head .txt {
  color: #252525;
}

#contact-us-form-dialog .dialog-close {
  top: 30px;
  right: 30px;
  left: unset;
  transform: unset;
}

.contact-us-form {
  flex-wrap: wrap;
  --gap: 10px;
  gap: var(--gap);
  margin-top: var(--px-20-40);
}

.contact-us-form .input-filed input,
.contact-us-form .input-filed textarea,
.contact-us-form .input-filed select {
  width: 100%;
  background-color: #f1f2f5;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  padding: max(6px, 13 * var(--px)) max(10px, 20 * var(--px));
  color: #000;
  font-size: var(--font-16);
}

.contact-us-form .input-filed select {
  -webkit-appearance: none;
  /* Chrome, Safari, Edge */
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
}

.contact-us-form .input-filed {
  position: relative;
}

.contact-us-form .input-filed .custom-select-title select {
  padding-left: 100px;
}

.contact-us-form .input-filed .custom-select::after {
  content: "";
  width: 12px;
  height: 8px;
  background: url(../images/arrow-bottom.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: max(10px, 20 * var(--px));
  transform: translateY(-50%);
  z-index: 5;
}

.contact-us-form .input-filed .custom-select .prefix {
  position: absolute;
  top: 0;
  left: max(10px, 20 * var(--px));
  z-index: 1;
  height: 100%;
  color: #666;
  font-size: var(--font-16);
  display: flex;
  align-items: center;
}

.contact-us-form .input-filed .custom-select .prefix::after {
  content: "";
  width: 1px;
  height: 60%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(15px, -50%);
  background-color: #666;
  opacity: 0.5;
}

.contact-us-form .input-filed .custom-select-prefix {
  flex-shrink: 0;
  position: relative;
}

.contact-us-form .input-filed .custom-select-prefix .prefix {
  position: relative;
  top: unset;
  left: unset;
}

.contact-us-form .input-filed .custom-select-prefix select {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

.contact-us-form .input-filed .custom-select-prefix+input {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
  padding-left: calc(max(10px, 20 * var(--px)) * 2);
}

.contact-us-form .input-filed .custom-select-prefix::after {
  right: 0;
  transform: translateX(50%, -50%);
}

.contact-us-form .input-filed textarea {
  height: max(70px, 250 * var(--px));
}

.contact-us-form .input-filed input::placeholder,
.contact-us-form .input-filed textarea::placeholder {
  color: #666;
}

.contact-us-form .input-filed.w33 {
  width: calc((100% - var(--gap) * 2) / 3);
}

.contact-us-form .input-filed.w50 {
  width: calc((100% - var(--gap)) / 2);
}

.contact-us-form .input-filed.w100 {
  width: 100%;
}

.contact-us-form .error-text {
  font-size: 14px;
  color: red;
  position: absolute;
  left: 0px;
  bottom: 0px;
  opacity: 0;
  transform: translateY(100%);
}

.contact-us-form .privacy {
  color: #252525;
  gap: 10px;
  position: relative;
}

.contact-us-form .privacy-tips {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #f00;
  opacity: 0;
}

.contact-us-form .privacy.not-pass .privacy-tips {
  opacity: 1;
}

.contact-us-form .privacy a {
  color: var(--theme-color-purple-weak);
}

.contact-us-form .privacy a:hover {
  text-decoration: underline;
}

.contact-us-form .privacy span {
  margin-top: 0;
  background-color: #f1f2f5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}

.contact-us-form .privacy span.active {
  background: url(../images/agree.svg) no-repeat center / contain;
}

.contact-us-form .btn-lay {
  margin-top: var(--px-20-40);
}

.btn-wrap {
  gap: 20px;
}

.btn-lay {
  padding: max(10px, 20 * var(--px)) max(20px, 130 * var(--px));
  border-radius: 10px;
  background: linear-gradient(270deg,
      rgba(90, 43, 172, 1),
      rgba(132, 84, 252, 1) 100%);
  color: #fff;
  font-weight: bold;
  width: max-content;
  cursor: pointer;
  user-select: none;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.btn-lay:hover {
  letter-spacing: 2px;
}

.btn-lay::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  /* 初始位置在左侧外部 */
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transform: skewX(-30deg);
  transition: none;
}

.btn-lay:hover::after {
  animation: lightMove 0.6s ease-in-out;
}

@keyframes lightMove {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.footer-wrap {
  gap: 5%;
}

.footer-nav {
  padding-top: var(--px-20-40);
}

.footer-nav a {
  color: #fff;
}

.footer-nav .item {
  margin: 0 var(--px-20-40);
}

footer .nav-title {
  font-size: 16px;
  margin-bottom: var(--px-20-40);
  text-transform: uppercase;
}

footer .nav-list a {
  font-size: 16px;
  font-weight: 200;
  display: block;
  margin-bottom: 10px;
  opacity: 0.7;
}

footer .footer-nav a:hover {
  text-decoration: underline;
}

footer .contact-wrap {
  width: max(300px, 25%);
  padding: max(30px, 3%) 0;
  flex-shrink: 0;
  gap: max(50px, 20%);
}

footer .contact-wrap .top .title,
footer .contact-wrap .bottom p {
  font-size: var(--font-16);
  text-transform: uppercase;
  color: #fff;
}

footer .contact-wrap .top .footer-submit {
  margin-top: var(--px-10-20);
  position: relative;
  height: 60px;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.5);
}

footer .contact-wrap .top .footer-submit input {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  color: rgba(0, 0, 0, 1);
  background-color: transparent;
}

footer .contact-wrap .top .footer-submit input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

footer .contact-wrap .top .footer-submit .btn-lay {
  padding: 20px;
  height: calc(100% - 20px);
  margin-top: 10px;
  margin-right: 10px;
  font-size: 14px;
  text-transform: uppercase;
}

footer .contact-wrap .bottom p {
  margin-bottom: var(--px-20-40);
}

footer .icon-wrap {
  gap: 10px;
}

footer .img-wrap {
  background-color: rgba(255, 255, 255, 1);
  cursor: pointer;
  transition: 0.3s;
}

footer .img-wrap:hover {
  transform: translateY(-10px);
  /* background-color: rgba(25, 45, 141, 0.5); */
}

.footer-cont {
  flex: 1;
}

.copyright {
  padding: max(20px, 2%) 0;
  color: #fff;
  gap: 30px;
}

.copyright .txt {
  max-width: 50%;
}

.copyright .privacy {
  gap: 30px;
}

.copyright a {
  color: #fff;
}

.copyright a:hover {
  text-decoration: underline;
}

.sec-login {
  background-position: right;
}

.sec-login .sec-wrap {
  padding: calc(var(--header-h) + 20vh) max(50px, 10%) 0;
}

.sec-login .form-wrap {
  width: 420px;
}

.form-wrap {
  margin-top: var(--px-20-40);
}

.form-wrap .input-wrap {
  height: 60px;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: rgba(240, 240, 240, 1);
  padding: 5px;
  position: relative;
  margin-bottom: 10px;
}

.form-wrap .input-wrap .icon {
  height: 100%;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 10px;
}

.form-wrap .input-wrap input {
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 56px;
  background-color: transparent;
}

.inp-btn {
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  cursor: pointer;
}

.inp-btn img {
  height: 100%;
  width: auto;
  border-radius: 10px;
}

.inp-btn span {
  border-radius: 5px;
  background: rgba(255, 255, 255, 1);
  height: calc(100% - 10px);
  aspect-ratio: 5 / 2;
  margin-right: 5px;
  cursor: pointer;
}

.sec-login .tips {
  font-size: 14px;
  margin-top: var(--px-10-20);
}

.sec-login .tips span {
  color: var(--theme-color-purple-weak);
  text-decoration: underline;
}

.sec-login .submit {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin-top: var(--px-20-40);
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.sec-login .submit.prev {
  background: var(--theme-color-green);
}

.sec-login .register {
  text-align: center;
}

.sec-login .register a {
  color: #666;
}

.sec-register .sec-wrap {
  padding-left: max(30px, 5%);
  padding-right: max(30px, 5%);
}

.sec-register .sec-top {
  width: max(660px, 860 * var(--px));
}

.sec-register .contact-us-form {
  margin-top: var(--px-10-20);
  --gap: 5px;
}

.sec-register .submit {
  text-transform: uppercase;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: none;
}

.dialog-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(30px);
  background: rgba(0, 0, 0, 0.8);
}

.dialog-close {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.dialog-close-right {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  transition: .3s;
}

.dialog-close-right:hover {
  transform: rotate(90deg);
}

.dialog-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  /* aspect-ratio: 88 / 52; */
  z-index: 1;
  background-color: #fff;
  opacity: 0;
  border-radius: 20px;
  padding: max(30px, 60 * var(--px));
}

.dialog.active {
  display: block;
}

.dialog.active .dialog-wrap {
  opacity: 1;
}

.cookies-wrap .title {
  font-weight: bold;
  font-size: 24px;
  margin-top: var(--px-20-40);
}

.cookies-wrap .intro {
  margin-top: var(--px-10-20);
}

.cookies-wrap .btn-wrap {
  gap: 10px;
  margin-top: var(--px-20-40);
}

.cookies-wrap .btn-lay {
  text-transform: uppercase;
  padding-left: var(--px-20-40);
  padding-right: var(--px-20-40);
  text-align: center;
}

.cookies-wrap .btn-lay.lay1 {
  background: unset;
  background-color: var(--theme-color-purple-thin);
  color: var(--theme-color-purple-weak);
}

.page-banner {
  height: max(450px, 650 * var(--px));
}

.personal-wrap {
  gap: max(30px, 10%);
}

.personal-wrap-level .personal-area {
  width: 100%;
}

.personal-info {
  flex-shrink: 0;
  width: max(260px, 320 * var(--px));
}

.personal-info .lable {
  gap: 14px;
  margin-top: var(--px-10-20);
}

.personal-info .change-btn {
  height: 40px;
  background: var(--theme-linear-gradient);
  color: #fff;
  border-radius: 10px;
  margin-top: var(--px-10-20);
  gap: 10px;
  cursor: pointer;
}

.info-medal {
  margin-top: max(20px, 50 * var(--px));
}

.info-medal .title {
  font-size: 20px;
}

.info-medal .fox {
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 100px;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
  cursor: pointer;
  overflow: hidden;
}

.info-medal .fox:hover,
.chooes-wrap .item:hover {
  border-color: rgba(0, 0, 0, 0.5);
}

.info-medal .fox.active {
  color: #fff;
  background: var(--theme-linear-gradient);
  border-color: transparent;
}

.info-medal .fox img {
  width: 60px;
}

.info-medal .level {
  gap: 10px;
  background-color: var(--theme-color-purple-thin);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.info-medal .level span {
  font-weight: 300;
}

.info-medal .btn-lay {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  display: block;
  line-height: 1;
}

.personal-area {
  width: calc(100% - max(260px, 320 * var(--px)) - max(30px, 10%));
}

.personal-area .info-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.personal-area .info-type span {
  text-transform: uppercase;
  gap: 10px;
  padding: 15px 10px;
  position: relative;
  width: max-content;
  cursor: pointer;
}

.personal-area .info-type span::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--theme-color-purple-weak);
  transition: .3s;
}

.personal-area .info-type span:hover::after,
.personal-area .info-type span.active::after {
  width: 100%;
}

.personal-area .swiper {
  margin-top: var(--px-20-40);
}

.personal-area .swiper .record {
  background-color: var(--theme-color-gray);
  border-radius: 30px;
  padding: 10px;
  height: max(100px, 140 * var(--px));
  gap: max(20px, 5%);
  position: relative;
  margin-bottom: 20px;
}

.personal-area .swiper .record .pic {
  height: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  padding: 5px;
  background-color: #fff;
}

.personal-area .swiper .record .title {
  font-size: 20px;
}

.personal-area .swiper .record .time {
  font-size: 14px;
  color: #999;
  gap: 10px;
  margin-top: 5px;
}

.personal-area .swiper .record .time span {
  font-size: 20px;
  color: var(--theme-color-purple);
}

.personal-area .swiper .record .state {
  width: 135px;
  height: 36px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  border-radius: 300px;
  padding: 0 5.5px;
  font-size: 14px;
  color: #fff;
  background: #c8c8c8;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

.personal-area .swiper .record .state .icon {
  width: 25px;
  height: 25px;
  display: none;
}

.personal-area .swiper .record .state.complete {
  background: var(--theme-linear-gradient);
  justify-content: start;
  gap: 8px;
}

.personal-area .swiper .record .state.passed {
  background: var(--theme-linear-gradient);
}

.personal-area .swiper .record .state.pending {
  background-color: var(--theme-color-purple);
}

.personal-area .swiper .record .state.complete .icon {
  display: flex;
}

.sec-loading {
  visibility: hidden;
}

.personal-area .form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.el-upload-list div {
  height: 100%;
}

.el-upload-list div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.personal-area .form .el-form-item {
  width: calc((100% - 14px) / 2);
  margin-bottom: 0;
}

.personal-area .el-form--label-top .el-form-item__label {
  padding-bottom: 0;
}

.personal-area .el-input__inner {
  border-color: transparent;
  background-color: var(--theme-color-gray);
}

.upload-wrap {
  padding-bottom: max(30px, 60 * var(--px));
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.picture-wrap .title {
  font-size: max(18px, 24 * var(--px));
  margin-top: calc(var(--px-20-40) * 2);
}

.picture-cont {
  border: 1px solid rgba(157, 157, 157, 0.5);
  border-radius: 10px;
  backdrop-filter: blur(30px);
  padding: 20px;
  margin-top: var(--px-20-40);
  min-height: max(300px, 425 * var(--px));
}

.picture-cont .card-wrap {
  --column: 7;
  --gap: 20px;
}

.picture-cont .item {
  aspect-ratio: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background-color: #F6F6F6;
}

.picture-cont .item .el-image {
  display: block;
  height: 100%;
}

.picture-cont .item a {
  height: 100%;
}

.picture-cont .item .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  gap: 3px;
  font-size: 14px;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.picture-cont .item:hover .mask {
  opacity: 1;
}

.picture-cont .tips {
  background-color: var(--theme-color-purple-thin);
  padding: 15px 25px;
  font-size: 14px;
  margin-bottom: var(--px-10-20);
  border: 1px solid rgba(134, 85, 254, 0.5);
  border-radius: 10px;
  color: #666;
  gap: 20px;
}

/* .picture-cont .tips li {
  list-style-type: disc;
  list-style-position: inside;
} */

.btn-lay.format1 {
  margin-top: max(30px, 50 * var(--px));
  text-transform: uppercase;
}

.sec-upload .sec-top .intro {
  font-size: 20px;
  opacity: 0.5;
  margin: var(--px-20-40) 0;
  max-width: 60%;
}

.sec-upload .personal-area .info-type span {
  text-transform: initial;
  font-weight: bold;
}

.sec-upload .picture-wrap .title {
  margin-top: 0;
}

.chooes-wrap {
  margin-top: var(--px-20-40);
}

.chooes-wrap .card-wrap {
  --column: 2;
}

.chooes-wrap .item {
  border-radius: 10px;
  /* border: 1px solid rgba(157, 157, 157, 0.5); */
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.chooes-wrap .item .txt {
  gap: 10px;
  padding: 15px 25px;
  background-color: var(--theme-color-purple-thin);
}

.chooes-wrap .item .serail {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(270deg,
      rgba(90, 43, 172, 1),
      rgba(132, 84, 252, 1) 100%);
  color: #fff;
  font-size: 14px;
}

.chooes-wrap .item .txt small {
  color: #666;
}

/* .chooes-wrap .item.active {
  border-color: var(--theme-color-purple-weak);
  background-color: var(--theme-color-purple-thin);
}

.chooes-wrap .item.active span {
  border-color: transparent;
  background: url(../images/icon-check-1.svg) no-repeat center / contain;
} */

.picture-wrap {
  padding: 15px 25px;
}

.sec-aboutus-2 .main {
  width: 100%;
}

.sec-aboutus-2 .year {
  font-size: calc(228 * var(--px));
  color: rgba(37, 37, 37, 0.3);
  font-weight: 300;
}

.sec-aboutus-2 .year .year-num {
  color: var(--theme-color-purple);
}

.sec-aboutus-2 .info {
  gap: max(30px, 10%);
  color: #666;
  font-size: max(16px, 28 * var(--px));
}

.sec-aboutus-2 .pic {
  width: max(100px, 320 * var(--px));
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.sec-aboutus-2 .pic img {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 1s;
  transform: scale(0);
}

.sec-aboutus-2 .pic img.active {
  transform: scale(1);
}

.sec-aboutus-2 .txt .font {
  display: none;
  font-size: 14px;
}

.sec-aboutus-2 .txt .font:first-child {
  display: block;
}

.sec-aboutus-2 .year-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  font-size: 14px;
  --h: 40px;
  font-weight: 300;
}

.sec-aboutus-2 .year-wrap .swiper {
  height: calc(var(--h) * 7);
  padding: 0 10px;
  user-select: none;
}

.sec-aboutus-2 .year-wrap .swiper-slide {
  height: var(--h);
  line-height: var(--h);
  color: var(--theme-color-dark);
}

.sec-aboutus-2 .year-wrap .swiper-slide-active {
  color: #25e577;
}

.sec-aboutus-2 .year-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: var(--h);
  background-color: #25e577;
  transform: translateY(-50%);
}

.sec-aboutus-2 .swiper::after,
.sec-aboutus-2 .swiper::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(var(--h) * 3);
  z-index: 2;
}

.sec-aboutus-2 .swiper::after {
  top: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.9) 20%,
      transparent);
}

.sec-aboutus-2 .swiper::before {
  bottom: 0;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 0.9) 20%,
      transparent);
}

.sec-aboutus-2 .container {
  gap: max(30px, 18%);
  --margin: max(40px, 120 * var(--px));
  margin: calc(var(--margin) * 1.5) 0;
}

.mobile-nav {
  display: none;
}

.wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.sec-aboutus-4 .container {
  flex-direction: row-reverse;
}

.sec-aboutus-4 .container .txt {
  display: flex;
  /* align-items: flex-end; */
}

.sec-aboutus-4 .sec-area {
  margin-top: max(40px, 80 * var(--px));
}

.sec-aboutus-4 .swiper-slide {
  height: auto;
}

.sec-aboutus-4 .swiper-slide .pic {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 480 / 312;
}

.sec-aboutus-4 .swiper-slide .txt {
  flex: 1;
  text-align: center;
  padding: var(--px-10-20);
  font-weight: 300;
  font-size: 20px;
  border-bottom: 1px solid #cecece;
  line-height: 1.2;
}

.sec-aboutus-4 .swiper-slide {
  height: auto;
}

.custom-swiper {
  padding-bottom: 70px;
}

.custom-swiper .swiper-pagination-bullet {
  background-color: #000;
}

.custom-swiper .swiper-pagination-bullet-active {
  background-color: var(--theme-color-green);
}

/* ========== News List 基础样式（遵循现有配色与圆角） ========== */

.sec-news-list .search {
  width: max(240px, 420 * var(--px));
}

.sec-news-list .hero {
  display: flex;
  align-items: stretch;
}

.sec-news-list .hero .pic {
  width: 50%;
  flex-shrink: 0;
  aspect-ratio: 800 / 512;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.sec-news-list .hero .txt {
  flex: 1;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
  padding: max(30px, 70 * var(--px)) max(20px, 60 * var(--px));
}

.sec-news-list .hero .label {
  font-weight: normal;
  font-size: 14px;
}

.sec-news-list .sec-title-thin {
  margin-top: var(--px-10-20);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.sec-news-list .sec-intro-thin {
  margin-top: var(--px-10-20);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
  opacity: 0.6;
}

.sec-news-list .hero .learn-more {
  margin-top: var(--px-20-40);
}

.sec-news-list .card-wrap {
  --column: 3;
  --gap: max(10px, 30 * var(--px));
}

.sec-news-list .item .pic {
  aspect-ratio: 506 / 320;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}

.sec-news-list .item .txt {
  flex: 1;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
  padding: max(18px, 32 * var(--px)) max(15px, 25 * var(--px));
}

.sec-news-list .item .txt .sec-title-thin {
  font-size: 24px;
}

.sec-news-list .item .txt .sec-intro-thin {
  -webkit-line-clamp: 2;
}

.sec-news-list .item .label-wrap {
  margin-top: var(--px-10-20);
  flex-wrap: wrap;
}

.sec-news-list .item .learn-more {
  margin-top: var(--px-10-20);
}

.sec-news-list .form-wrap .input-wrap {
  border-radius: 300px;
}

/* ========== News Detail ========== */

.sec-news-detail .breadcrumb {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: var(--px-10-20);
}

.sec-news-detail .breadcrumb a {
  color: inherit;
}

.sec-news-detail .article {
  width: max(768px, 1280 * var(--px));
  margin: 0 auto;
}

.sec-news-detail .article ul,
.sec-news-detail .article li {
  list-style: disc;
  list-style-position: inside;
}

.sec-news-detail .content p+p {
  margin-top: var(--px-10-20);
}

.sec-news-detail .content .cover {
  margin: calc(var(--px-20-40)) 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

/* ========== Other News（复用卡片样式） ========== */

.sec-news-related .card-wrap {
  --column: 3;
}

.sec-news-related .card-wrap .item {
  background: #fff;
  border-radius: 14px;
  padding: max(10px, 20 * var(--px));
}

.sec-news-related .card-wrap .pic {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.sec-news-related .card-wrap .label-wrap {
  margin-top: var(--px-10-20);
}

.sec-news-related .card-wrap .learn-more {
  margin-top: var(--px-10-20);
}

/* ========== News Detail: 面包屑 + 标签 + 标题（按设计修正） ========== */

/* 面包屑：右侧对齐、弱化灰度、间距统一 */

.sec-news-detail {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sec-news-detail .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* 右对齐 */
  flex-wrap: wrap;
  gap: 10px;
  /* 分隔符与项之间的距离 */
  font-size: 14px;
  color: rgba(37, 37, 37, 0.55);
  /* 弱化灰度 */
  margin-bottom: max(30px, 10%);
}

.sec-news-detail .breadcrumb a {
  color: inherit;
  transition: 0.2s;
}

.sec-news-detail .breadcrumb a:hover {
  color: var(--theme-color-purple-weak);
  text-decoration: underline;
}

.sec-news-detail .breadcrumb span {
  color: var(--theme-color);
  font-weight: 600;
  /* 当前页面高亮 */
}

/* 标签（位于标题上方的小胶囊） */

.sec-news-detail .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  /* 标签间距更紧凑 */
  margin-bottom: var(--px-20-40);
}

.sec-news-detail .meta .label {
  font-weight: normal;
  font-size: 14px;
}

.sec-news-detail .meta .label:first-child {
  background: linear-gradient(270deg,
      rgba(90, 43, 172, 1),
      rgba(132, 84, 252, 1) 100%);
  color: #fff;
}

.sec-news-detail {
  background-image: url(../images/bg.png);
  background-size: 300% auto;
  background-position: center -80%;
}

/* 标题层级与留白 */

.sec-news-detail .sec-title {
  font-weight: 600;
  font-size: max(28px, 56 * var(--px));
  /* 保持大标题层级 */
  line-height: 1.2;
  /* 紧贴上方标签 */
  letter-spacing: 0;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: max(30px, 8%);
}

.sec-news-detail .content {
  background-color: rgba(246, 246, 246, 0.5);
  padding: max(26px, 80 * var(--px)) max(20px, 60 * var(--px));
  backdrop-filter: blur(30px);
}

.sec-news-related .swiper {
  height: auto;
  /* 覆盖全局 .swiper 高度，以内容自适应 */
}

.sec-news-related .swiper .swiper-slide {
  height: auto;
}

/* 分页圆点位置与间距（按设计在卡片下方） */

.sec-news-related .swiper-pagination {
  position: static;
  margin-top: var(--px-20-40);
}

.btn-large-nav-expand {
  display: none;
}

.el-select {
  width: 100%;
}

.el-form-item {
  margin-bottom: 0;
}

.el-form-item__content {
  margin-left: 0 !important;
}

.el-input__suffix,
.el-form-item__error {
  display: none;
}

.el-select .el-input__suffix,
.el-select .el-form-item__error {
  display: block;
}


.sec-register .el-upload-dragger .el-upload__text {
  text-transform: uppercase;
  color: var(--theme-color);
}

.sec-register .el-upload__tip {
  text-align: center;
}

.sec-register .el-upload-dragger {
  height: auto;
  width: auto;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sec-register .el-upload--picture-card {
  border: 0;
  line-height: initial;
  width: auto;
  height: auto;
}

.sec-register .el-upload-list--picture-card .el-upload-list__item {
  width: 80px;
  height: 80px;
  margin-right: 0;
}

.sec-register .el-upload-list--picture-card .el-upload-list__item+.el-upload-list__item {
  margin-left: 8px;
}

.step-bar {
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  margin-top: var(--px-20-40);
}

.step-bar::before {
  content: '';
  width: 55%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90.00deg, rgba(182, 159, 255, 1), rgba(132, 84, 252, 1) 100%);
  clip-path: polygon(0 -1px, calc(100% - 25px) -1px, 100% 50%, calc(100% - 25px) 100%, 0 100%);
  transition: .3s;
}

.step-bar.complete::before {
  width: calc(100% + 50px);
}

.step-bar .item {
  width: 50%;
  padding: 20px;
  gap: 5px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.step-bar .item .label {
  height: 24px;
  padding: 0 7px;
  background-color: var(--theme-color-purple-thin);
  color: var(--theme-color-purple-weak);
  font-size: 14px;
  white-space: nowrap;
}

.step-bar .item span {
  text-transform: uppercase;
  font-size: 14px;
}

.step-bar .item:first-child span,
.step-bar.complete .item span {
  color: #fff;
}

.step-bar .item:first-child .label,
.step-bar.complete .item .label {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.sec-register .submit {
  margin-top: var(--px-20-40);
}

.sec-register .swiper-slide {
  height: auto;
  margin-right: 1px;
}

.sec-register .form-wrap {
  height: 100%;
}

.file-wrap {
  background-color: #fff;
  padding: 20px;
}

.file-cont {
  aspect-ratio: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background-color: #F6F6F6;
  padding: 10px;
}

.upload-cont {
  padding: var(--px-10-20) 0;
}

.file-example {
  width: 40%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--px-10-20);
}

.file-example-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  gap: 5px;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.sec-index-1-expand {
  padding: 10px;
  display: none;
}

.sec-index-1-expand .top {
  border-radius: 20px;
  background-color: rgba(243, 238, 255, .3);
  gap: max(30px, 5%);
  margin-bottom: max(10px, 5%);
}

.sec-index-1-expand .top .pic {
  flex-shrink: 0;
  width: calc(350 * var(--px));
  height: calc(350 * var(--px));
  padding: max(10px, 5%);
  border-radius: 20px;
  background-color: var(--theme-color-purple-thin);
}

.sec-index-1-expand .top .sec-title-thin {
  margin-top: var(--px-10-20);
}

.sec-index-1-expand .info-wrap-title {
  font-size: 24px;
  font-weight: bold;
  padding: 0 max(10px, 5%);
}

.sec-index-1-expand .info-wrap {
  padding: max(10px, 5%);
  padding-top: 10px;
  --column: 2;
  --gap: 10px;
  gap: var(--gap);
  flex-wrap: wrap;
}

.sec-index-1-expand .info-wrap p {
  width: calc((100% - (var(--column) - 1) * var(--gap)) / var(--column));
  padding-right: 20px;
  margin-top: 0;
}

.index-dialog-wrap .dialog-wrap {
  padding: 0;
  max-height: 80vh;
  overflow-y: auto;
}

.index-dialog-wrap .sec-index-1-expand {
  display: block;
}

.tips-wrap .dialog-slot {
  height: 100%;
}

.tips-wrap .tips-cont {
  width: 70%;
  height: 100%;
  gap: 10px;
  margin: 0 auto;
}

.tips-wrap .tips-cont .icon {
  width: max(40px, 100 * var(--px));
}

.tips-wrap .tips-cont .icon img {
  width: 100%;
}

.tips-wrap .tips-cont .title {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.tips-wrap .tips-cont li {
  list-style-type: disc;
  list-style-position: inside;
}

.sec-register .btn-lay.back {
  margin-top: 0;
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
}

.sec-personal .picture-wrap {
  padding: 0;
}

.sec-index-2 .sec-wrap {
  padding-top: 0;
}

.not-more {
  margin-top: var(--px-20-40);
}

.sec-news-list .form-wrap .inp-btn {
  width: 50px;
}

.sec-news-list .form-wrap .inp-btn img {
  height: 50%;
  filter: url(#black-overlay);
}

.sec-index-4 .privacy {
  margin-top: 20px;
}

.el-button:hover,
.el-button:focus {
  background-color: transparent;
  color: #606266;
  border-color: rgba(134, 85, 254, .9);
}

.el-button--primary {
  background-color: rgba(134, 85, 254, 1);
  border-color: rgba(134, 85, 254, 1);
}

.el-button--primary:hover,
.el-button--primary:focus {
  background-color: rgba(134, 85, 254, .9);
  border-color: rgba(134, 85, 254, .9);
  color: #fff;
}

.el-message-box__headerbtn:focus .el-message-box__close,
.el-message-box__headerbtn:hover .el-message-box__close {
  color: rgba(134, 85, 254, .9);
}

.sec-index-1 .sec-wrap {
  padding-bottom: 10px;
}

.sec-aboutus-2 .txt li {
  list-style-type: disc;
  list-style-position: inside;
}

.sec-news-list .label {
  font-size: 12px;
}

.filter-wrap {
  border-radius: 300px;
  padding: 10px 10px;
  background: var(--theme-linear-gradient);
  gap: 20px;
}

.filter-wrap a {
  color: #fff;
  padding: 5px;
  border-radius: 300px;
}

.filter-wrap a:hover,
.filter-wrap a.active {
  background-color: #f0f0f0;
  color: var(--theme-color);
}