html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #F2F0EB;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  max-width: 1900px;
  min-width: 1000px;
  margin: 0 auto;
}

/* 滚动后添加的样式 */
.fixed.scrolled {
  background-color: #fff;
  /* 轻微阴影 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.scrolled .nav-menu a {
  color: #000000 !important;
}

.logo {
  width: 132px;
  height: 26px;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  cursor: pointer;
}

.logo-white {
  width: 132px;
  height: 26px;
  background-image: url("../images/logo_white.png");
  background-repeat: no-repeat;
  cursor: pointer;
}

.scrolled .logo {
  background-image: url("../images/logo.png");
}

.scrolled .logo-white {
  background-image: url("../images/logo.png");
}

.nav-menu {
  flex: 1;
  list-style: none;
  display: flex;
  gap: 25px;
  /* 菜单项间距 */
  margin-left: 30px;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-family: Actor, Actor;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  line-height: 17px;
  font-style: normal;
  text-transform: none;
  padding: 5px 18px;
  border-radius: 20px;
}

.nav-menu a.active {
  color: #F2F0EB !important;
  background-color: #4D4EFF;
}

.language,
.language_white {
  width: 27px;
  height: 56px;
  margin-right: 45px;
}

.language {
  background: url(../images/index/language.png) no-repeat center center;
}

.language_white {
  background: url(../images/index/language_white.png) no-repeat center center;
}

.scrolled .language_white {
  background-image: url("../images/index/language.png");
}

.dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.dropdown-content {
  display: none;
  position: absolute;
  width: 172px;
  height: 110px;
  top: 50px;
  left: -75px;
  background: #FAFBFB;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: 8px;
}

.dropdown-content span {
  color: #9E9E9E;
  font-size: 14px;
  padding: 10px 0 10px 36px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  margin-bottom: 5px;
}

.dropdown-content span:hover {
  color: #000000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content span.selected {
  color: #000000;
  position: relative;
}

.dropdown-content span.selected::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 10px;
  width: 7px;
  height: 15px;
  border: solid #000000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.nav-menu #mySelect {
  display: none;
}

.cta-btn {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: #4D4EFF;
  /* PC端按钮颜色 */
  color: #fff;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-btn img {
  width: 13px;
  margin-right: 8px;
}

.cta-btn:hover {
  background: #333;
}

.hamburger {
  display: none;
  /* PC端默认隐藏 */
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #000;
  /* 汉堡线颜色 */
  transition: all 0.3s ease;
  /* 动画过渡 */
}

#menu-toggle {
  display: none;
}

.fixed {
  position: fixed;
  background-color: transparent;
  width: 100%;
  z-index: 9997;
}

@media (max-width: 768px) {
  body {
    min-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    padding: 20px 16px;
  }

  .navbar-choice {
    background-color: #ffffff;
  }

  .navbar-choice .logo-white {
    background-image: url("../images/logo.png");
  }

  /* 1. 显示汉堡按钮 */
  .hamburger {
    display: block;
    width: 45px;
    height: 45px;
    padding-top: 8px;
    border-radius: 50%;
    background-color: #ffffff;
  }

  /* 2. 隐藏PC端菜单，改为绝对定位的折叠菜单 */
  .nav-menu {
    position: absolute;
    top: 82px;
    /* 导航栏高度，需与.navbar的height匹配 */
    left: 0;
    margin-left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    /* 背景色，防止透明 */
    flex-direction: column;
    /* 垂直排列 */
    align-items: center;
    /* 文字居中 */
    gap: 0;
    /* 取消间距，垂直排列更紧凑 */
    display: none;
  }

  .nav-menu li {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    color: #000000 !important;
    padding: 9px 40px;
    text-align: center;
  }

  .nav-menu a.active {
    width: 80%;
  }

  /* 3. 点击汉堡按钮后，展开菜单 */
  #menu-toggle:checked~.nav-menu {
    display: flex;
  }

  .logo,
  .logo-white {
    position: absolute;
    left: 70px;
  }

  .dropdown {
    display: none;
  }

  .nav-menu #mySelect {
    display: flex;
  }

  .nav-menu select {
    width: 150px;
    height: 35px;
    font-family: Actor, Actor;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    border-radius: 4px;
    border: 1px solid #4D4EFF;
    text-align: center;
  }

  .nav-menu select option {
    background-color: #FFFFFF;
    color: #000000;
  }

  .nav-menu select option.checked {
    background-color: #4D4EFF !important;
    color: #F2F0EB;
  }

  /* 5. 移动端CTA按钮调整（可选，比如右对齐） */
  .cta-btn {
    position: absolute;
    right: 20px;
    /* 与Logo对齐 */
    padding: 6px 12px;
    /* 缩小尺寸 */
    font-size: 0.9rem;
  }
}

.contact-book-time {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  z-index: 8;
  padding: 126px 20px;
}

.music_19_5892 {
  position: relative;
  width: 100%;
  max-width: 1527px;
  border-radius: 59px;
  background: linear-gradient(180.69deg, #1515c5 2.08%, #2929ef 48.85%, #1616c7 108.5%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  padding-bottom: 104px;
  margin-left: auto;
  margin-right: auto;
}

.music_2_12493 {
  text-align: center;
  font-size: 30px;
  font-family: Archivo Black, Archivo Black;
  font-weight: 800;
  line-height: 33px;
  color: #fefefe;
  position: relative;
  margin: 89px auto 0;
}

.music_2_12489 {
  text-align: center;
  font-size: 20px;
  font-family: Actor;
  font-weight: 400;
  line-height: 24px;
  color: #d1d1ee;
  position: relative;
  margin: 48px auto 0;
}

.music_2_12503 {
  position: relative;
  padding: 10px 19px;
  border-radius: 19px;
  background-color: #ffa70f;
  margin: 54px auto 0;
  cursor: pointer;
}

.music_2_12499 {
  font-size: 16px;
  font-family: Alata;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  white-space: pre;
  position: relative;
  margin-top: 4px;
}

/* 蒙层样式 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 半透明黑色 */
  z-index: 9998;
  /* 低于弹窗，但高于页面内容 */
  display: none;
  /* 默认隐藏 */
  backdrop-filter: blur(2px);
  /* 毛玻璃效果（可选） */
}

.music_19_5958 {
  position: fixed;
  right: -75%;
  top: 50%;
  /* 垂直居中 */
  transform: translate(50%, -45%);
  backdrop-filter: blur(2px);
  z-index: 9999;
}

.music_19_5958.active {
  right: 50%;
}

.music_2_12401 {
  position: relative;
  width: 322px;
  height: 514px;
  background-color: #F2F0EB;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  isolation: isolate;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
}

.music_19_5962 {
  width: 98px;
  height: 98px;
  z-index: 1;
  position: relative;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.music_2_12411 {
  text-align: center;
  font-size: 18px;
  font-family: 'Alibaba Sans';
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.04em;
  color: #06131c;
  white-space: pre;
  z-index: 3;
  position: relative;
  margin-top: 23px;
  margin-left: auto;
  margin-right: auto;
}

.music_2_12419 {
  text-align: center;
  font-size: 18px;
  font-family: 'Alibaba Sans';
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.04em;
  color: #06131c;
  white-space: pre;
  z-index: 2;
  position: relative;
  margin-top: 13px;
  margin-left: auto;
  margin-right: auto;
}

.music_2_12406 {
  text-align: center;
  font-size: 18px;
  font-family: 'Alibaba Sans';
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.04em;
  text-decoration: underline;
  color: #4d4eff;
  white-space: pre;
  z-index: 4;
  position: relative;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}

.music_2_12410 {
  width: 159px;
  height: 161px;
  border-radius: 13px;
  object-fit: cover;
  z-index: 0;
  position: relative;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}

.music_2_12415 {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 5;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-book-time {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .music_19_5892 {
    max-width: 100%;
    padding: 86px 30px 127px;
  }

  .music_2_12493 {
    width: 100%;
    margin-top: 0;
    font-size: 23px;
    line-height: 25px;
    text-align: center;
  }

  .music_2_12489 {
    width: 100%;
    margin-top: 20px;
  }

  .music_2_12503 {
    background: #FFA70F;
    border-radius: 19px 19px 19px 19px;
    margin: 38px auto 0;
  }

  .music_19_5958 {
    width: 100%;
  }

  .music_2_12401 {
    width: 80%;
    height: calc(90% - 120px);
    padding-bottom: 50px;
  }

  .music_2_12415 {
    top: 6%;
    right: 9%;
  }

  .music_19_5962 {
    width: 25%;
    height: auto;
    margin-top: 50px;
  }

  .music_2_12411 {
    margin-top: 12px;
  }

  .music_2_12419 {
    margin-top: 0;
  }

  .music_2_12406 {
    margin-top: 0;
  }

  .music_2_12410 {
    width: 120px;
    height: auto;
  }
}

.info-popup {
  position: fixed;
  right: -75%;
  top: 50%;
  /* 垂直居中 */
  transform: translate(50%, -45%);
  backdrop-filter: blur(2px);
  z-index: 9999;
}

.info-popup.active {
  right: 50%;
}

.info-popup .content {
  position: relative;
  width: 526px;
  background-color: #F2F0EB;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  isolation: isolate;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  padding: 50px 55px 40px;
}

.info-popup .content .contact_icon {
  width: 98px;
  height: 98px;
  margin: 0 auto;
}

.info-popup .content .close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 5;
  cursor: pointer;
}

.info-popup .popup-title {
  font-family: Alibaba Sans, Alibaba Sans;
  font-weight: 700;
  font-size: 18px;
  color: #06131C;
  line-height: 25px;
  margin-top: 35px;
  margin-bottom: 5px;
}

.info-popup .popup-text {
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  line-height: 19px;
}

.info-popup .content .input {
  width: 100%;
  height: 80px;
  position: relative;
}

.info-popup .content .input input {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  border: none;
  font-size: 20px;
  padding-left: 15px;
  padding-right: 25px;
}

.info-popup .content .info-error {
  display: none;
  font-size: 12px;
  position: absolute;
  bottom: 8px;
  left: 16px;
  color: #FF0000;
}

.info-popup .content .submit {
  width: 100%;
  border-radius: 0;
}

.info-popup .content .policy {
  font-family: Actor, Actor;
  font-weight: 400;
  font-size: 16px;
  color: #9CA1A7;
  line-height: 19px;
  margin-top: 15px;
}

.info-popup .content .policy a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .info-popup {
    width: 100%;
  }

  .info-popup .content {
    width: 80%;
    padding: 50px 30px 30px;
  }

  .info-popup .popup-title {
    font-size: 16px;
    margin-top: 25px;
  }

  .info-popup .popup-text {
    font-size: 14px;
  }

  .info-popup .content .input {
    height: 65px;
  }

  .info-popup .content .input input {
    height: 40px;
  }

  .info-popup .content .info-error {
    bottom: 7px;
  }

  .info-popup .content .submit {
    margin-top: 0;
  }

  .info-popup .content .policy {
    font-size: 12px;
  }
}

.btn {
  font-size: 16px;
  line-height: 22px;
  padding: 8px 28px;
  border-radius: 19px 19px 19px 19px;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  color: #FFFFFF;
  background-color: #4D4EFF;
  border: 1px solid #4D4EFF;
}

.btn-plan {
  color: #141215;
  background-color: #FFA70F;
  border: 1px solid #FFA70F;
}

.footer {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 60px;
  background: #272d41;
}

footer {
  max-width: 1200px;
  min-width: 1000px;
  margin: 0 auto;
  display: flex;
}

.footer-menu {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-menu-item h2 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

.footer-menu-item h3 {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff80;
  margin-top: 20px;
  margin-bottom: 15px;
}

.footer-menu-title {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 5px;
  color: #e7ecf6;
  display: block;
  text-decoration: none;
}

.footer-menu-title:hover {
  color: rgb(114, 115, 117);
}

.footer-title {
  font-size: 28px;
  line-height: 40px;
  color: #e7ecf6;
}

.footer-text {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: #a8b7cd;
}

.footer-info {
  width: 500px;
  display: flex;
  align-items: center;
}

.footer-info img {
  width: 140px;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .footer {
    width: 100%;
    padding: 10px 20px 40px;
    overflow: hidden;
  }

  footer {
    max-width: 100%;
    min-width: 100%;
    flex-direction: column;
  }

  .footer-menu {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-menu-item {
    width: 100%;
  }

  .footer-menu-item .footer-menu-module {
    width: 100%;
    display: flex;
  }

  .footer-menu-item .footer-menu-module>div {
    flex: 1;
  }

  .footer-menu-item h2 {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .footer-menu-item h3 {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .footer-menu-title {
    font-size: 12px;
    line-height: 16px;
  }

  .footer-info {
    margin-top: 40px;
  }

  .footer-info img {
    width: 100px;
  }

  .footer-title {
    font-size: 20px;
    line-height: 28px;
  }

  .footer-company {
    margin-bottom: 15px !important;
  }

  .footer-text {
    font-size: 14px;
    line-height: 20px;
  }
}