@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

input,
button,
select,
textarea {
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

span {
  display: inline-block;
}

ol,
ul,
li {
  list-style-type: none;
}

a {
  text-decoration: none;
  display: block;
  cursor: pointer;
  color: initial;
  -webkit-tap-highlight-color: transparent;
}
a:active, a:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a:visited {
  color: inherit;
}

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

img,
video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1600px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px) saturate(200%);
  -webkit-backdrop-filter: blur(15px) saturate(200%);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.05);
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
@media (max-width: 768px) {
  .header__content {
    height: 60px;
  }
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .header .header-right {
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media (max-width: 768px) {
  .header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px) saturate(160%);
    -webkit-backdrop-filter: blur(8px) saturate(160%);
  }
}
.header .marquee {
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}
.header .marquee p {
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  color: #007bff;
  display: inline-block;
}
.header .marquee p a {
  position: relative;
  color: #007bff;
}
.header .marquee p a::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/messgae.svg") no-repeat center/cover;
  animation: blink 1s ease-in-out infinite;
}
.header .marquee p a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header .marquee p {
    animation: marquee 15s linear infinite;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.logo {
  height: 50%;
}
.logo img {
  width: auto;
}
@media (max-width: 768px) {
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 35%;
  }
}

.nav {
  display: flex;
  align-items: center;
  order: 2;
}
@media (min-width: 768px) {
  .nav {
    order: 1;
  }
}
.nav__menu {
  position: absolute;
  top: 70px;
  z-index: 999;
  left: 0;
  width: 100%;
  list-style: none;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .nav__menu {
    position: static;
    padding: 0;
    display: flex;
    gap: 30px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    pointer-events: auto;
  }
}
.nav__menu li {
  margin-bottom: 15px;
  padding: 10px 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}
.nav__menu li:nth-child(1) {
  transition-delay: 0.1s;
}
.nav__menu li:nth-child(2) {
  transition-delay: 0.2s;
}
.nav__menu li:nth-child(3) {
  transition-delay: 0.3s;
}
.nav__menu li:nth-child(4) {
  transition-delay: 0.4s;
}
.nav__menu li:nth-child(5) {
  transition-delay: 0.5s;
}
.nav__menu li:nth-child(6) {
  transition-delay: 0.6s;
}
.nav__menu li:nth-child(7) {
  transition-delay: 0.7s;
}
.nav__menu li:nth-child(8) {
  transition-delay: 0.8s;
}
.nav__menu li:nth-child(9) {
  transition-delay: 0.9s;
}
.nav__menu li:nth-child(10) {
  transition-delay: 1s;
}
.nav__menu li:nth-child(11) {
  transition-delay: 1.1s;
}
.nav__menu li:nth-child(12) {
  transition-delay: 1.2s;
}
.nav__menu li:nth-child(13) {
  transition-delay: 1.3s;
}
.nav__menu li:nth-child(14) {
  transition-delay: 1.4s;
}
.nav__menu li:nth-child(15) {
  transition-delay: 1.5s;
}
.nav__menu li:nth-child(16) {
  transition-delay: 1.6s;
}
.nav__menu li:nth-child(17) {
  transition-delay: 1.7s;
}
.nav__menu li:nth-child(18) {
  transition-delay: 1.8s;
}
.nav__menu li:nth-child(19) {
  transition-delay: 1.9s;
}
.nav__menu li:nth-child(20) {
  transition-delay: 2s;
}
.nav__menu li:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .nav__menu li {
    margin-bottom: 0;
    opacity: 1;
    transform: none;
    position: relative;
  }
}
.nav__link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.nav__link:hover, .nav__link.active {
  color: #007bff;
}
@media (max-width: 768px) {
  .nav__link {
    display: block;
    padding: 10px 0;
    font-size: 16px;
  }
  .nav__link.active {
    color: #007bff;
    font-weight: 600;
  }
}
@media (min-width: 768px) {
  .nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #8400ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
  }
  .nav__link:hover::after, .nav__link.active_always::after, .nav__link.active::after {
    width: 100%;
    opacity: 1;
  }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  margin: 0;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-toggle span:nth-child(1) {
  top: 13px;
}
.nav-toggle span:nth-child(2) {
  top: 19px;
}
.nav-toggle span:nth-child(3) {
  top: 25px;
}
.nav-toggle.active span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.nav-toggle.active span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  min-width: 140px;
  text-align: center;
  text-transform: uppercase;
}
.btn--primary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}
.btn--primary:hover {
  background-color: #0062cc;
  border-color: #0062cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.btn--secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.btn--secondary:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.btn--secondary_black {
  border-color: #000 !important;
  color: #000 !important;
}
.btn--secondary_black:hover {
  border-color: #fff !important;
  color: #fff !important;
}
.btn--colourful {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #007bff, #8400ff);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  overflow: hidden;
  position: relative;
}
.btn--colourful::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(90deg, #007bff, #8400ff);
  border-radius: 50px; /* 圆角需比容器大边框宽度 */
  z-index: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 2px; /* 边框宽度 */
}
.btn--colourful::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #007bff, #8400ff);
  transition: all 0.3s;
}
.btn--colourful:hover {
  color: #fff;
}
.btn--colourful:hover::before {
  top: 0;
}
@media (max-width: 768px) {
  .btn {
    padding: 10px 24px;
    min-width: 120px;
    font-size: 14px;
  }
}

.main {
  padding-top: 70px;
}
@media (max-width: 768px) {
  .main {
    padding-top: 60px;
  }
}

.footer {
  background-color: #212324;
  padding: 40px 0 180px;
  text-align: left;
}
.footer__text {
  margin-bottom: 20px;
  color: #c1b5a5;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1px;
  text-align: justify;
}
.footer .footer__text-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}
.footer__links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline;
}
.footer__links a:hover {
  color: #007bff;
}
.footer__links span {
  color: rgba(102, 102, 102, 0.5);
  font-size: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 15px;
  }
  .footer__links {
    gap: 20px;
    font-size: 15px;
  }
}

.lang-switch {
  position: relative;
  margin-left: 30px;
  order: 1;
}
@media (min-width: 768px) {
  .lang-switch {
    display: block;
    order: 2;
  }
}
.lang-switch .lang-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 1px solid rgba(102, 102, 102, 0.2);
  border-radius: 20px;
  padding: 8px 35px 8px 15px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.lang-switch .lang-select:hover {
  border-color: #007bff;
  color: #007bff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23007bff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.lang-switch .lang-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.lang-switch .lang-select option {
  color: #333;
  background: #fff;
  padding: 10px;
}
@media (max-width: 768px) {
  .lang-switch {
    margin: 0;
    width: auto;
    position: relative;
  }
  .lang-switch .lang-select {
    min-width: 70px !important;
    max-width: 70px !important;
    min-height: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background-image: none !important;
    text-align: center !important;
    font-size: 14px !important;
  }
}

.lang-select option {
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 16px;
}

@media (max-width: 768px) {
  .nav.active .nav__menu {
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
            backdrop-filter: blur(12px) saturate(180%);
    isolation: isolate;
  }
  .nav.active .nav__menu li {
    opacity: 1;
    transform: translateX(0);
  }
}
.mobile-nav {
  position: fixed;
  top: 87px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px - 32px);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-nav__list {
  padding: 20px;
  list-style: none;
}
.mobile-nav__list li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}
.mobile-nav__list li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav__list li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav__list li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-nav__list li:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-nav__list li:nth-child(5) {
  transition-delay: 0.5s;
}
.mobile-nav__list li:nth-child(6) {
  transition-delay: 0.6s;
}
.mobile-nav__list li:nth-child(7) {
  transition-delay: 0.7s;
}
.mobile-nav__list li:nth-child(8) {
  transition-delay: 0.8s;
}
.mobile-nav__list li:nth-child(9) {
  transition-delay: 0.9s;
}
.mobile-nav__list li:nth-child(10) {
  transition-delay: 1s;
}
.mobile-nav__list li:nth-child(11) {
  transition-delay: 1.1s;
}
.mobile-nav__list li:nth-child(12) {
  transition-delay: 1.2s;
}
.mobile-nav__list li:nth-child(13) {
  transition-delay: 1.3s;
}
.mobile-nav__list li:nth-child(14) {
  transition-delay: 1.4s;
}
.mobile-nav__list li:nth-child(15) {
  transition-delay: 1.5s;
}
.mobile-nav__list li:nth-child(16) {
  transition-delay: 1.6s;
}
.mobile-nav__list li:nth-child(17) {
  transition-delay: 1.7s;
}
.mobile-nav__list li:nth-child(18) {
  transition-delay: 1.8s;
}
.mobile-nav__list li:nth-child(19) {
  transition-delay: 1.9s;
}
.mobile-nav__list li:nth-child(20) {
  transition-delay: 2s;
}
.mobile-nav__link {
  display: block;
  padding: 15px 0;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.mobile-nav__link.active {
  color: #007bff;
  font-weight: 600;
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav.active li {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .nav__menu {
    display: none;
  }
}
.float-panel {
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
  padding: 5px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .float-panel {
    right: 30px;
    bottom: 30px;
  }
}
.float-panel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  color: #333;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.float-panel__item span {
  display: none;
}
.float-panel__item img {
  width: 30px;
  height: auto;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .float-panel__item {
    width: 60px;
    height: 60px;
  }
}
.float-panel__item:hover img {
  transform: scale(0.8);
}

@media (max-width: 768px) {
  .detailsPage-float {
    width: 95%;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
  }
  .detailsPage-float .float-panel__item {
    display: flex;
    flex: 1;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }
  .detailsPage-float .float-panel__item span {
    display: block;
  }
  .detailsPage-float .float-panel__item img {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: rgba(51, 51, 51, 0.2);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(51, 51, 51, 0.3);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(51, 51, 51, 0.2) transparent;
}

/* 添加自定义弹窗样式 */
.custom-alert {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  max-width: 800px;
  width: 400px;
  text-align: center;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .custom-alert {
    width: 90vw;
  }
}

.custom-alert_show .custom-alert {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  transition: all 0.3s;
}

.custom-alert_show .custom-alert-overlay {
  opacity: 1;
}

.custom-alert h3 {
  color: #007bff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.custom-alert button {
  position: relative;
  background: linear-gradient(90deg, #007bff, #8400ff);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 16px;
}
.custom-alert button::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #007bff, #8400ff);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
  filter: blur(10px);
}
.custom-alert button:hover::after {
  bottom: -15px;
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */