@import url('//at.alicdn.com/t/c/font_4889994_57rpp5qifqd.css');
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf');
  font-weight: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf');
  font-weight: 600;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.ttf');
  font-weight: 700;
}
body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: 'Inter';
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
em {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
table {
  border-spacing: 0;
}
p {
  word-wrap: break-word;
}
div,
section,
li {
  box-sizing: border-box;
}
input,
textarea {
  outline: none;
  border: none;
  resize: none;
}
button {
  border: none;
}
img:not([src]):not([srcset]) {
  visibility: hidden;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.pc-style {
  display: block;
}
.mb-style {
  display: none;
}
.android-style {
  display: none;
}
.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
* {
  font-family: 'Inter';
  font-style: normal;
}
header {
  height: 60px;
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-logo {
  display: block;
}
header .header-nav {
  height: 100%;
}
header .header-nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
header .header-nav-menu .header-nav-item {
  padding: 0 15px;
  position: relative;
  height: 100%;
}
header .header-nav-menu .header-nav-item:hover .header-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
header .header-nav-menu .header-nav-item:hover .header-nav-link {
  color: #007bff;
}
header .header-nav-menu .header-nav-item:hover .icon-down-arrow {
  transform: rotate(180deg);
  color: #007bff;
}
header .header-nav-menu .header-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
header .header-nav-menu .icon-down-arrow {
  font-size: 10px;
  color: #111827;
  font-weight: 900;
  line-height: 1;
  transition: all 0.3s;
}
header .header-nav-menu .header-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  width: fit-content;
  min-width: 155px;
  border-radius: 6px;
  box-shadow: 0 4px 12px 0 rgba(53, 76, 128, 0.26);
  visibility: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  z-index: 999;
}
header .header-nav-menu .header-submenu-item {
  padding: 14px 18px;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
header .header-nav-menu .header-submenu-item:hover {
  background: #f2f3f6;
  border-radius: 6px;
}
header .header-menu-toggle {
  display: none;
}
footer {
  padding: 72px 0 60px;
}
footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #f3f4f6;
}
footer .footer-top .top-desc {
  flex: 0 0 602px;
  font-size: 16px;
  line-height: 160%;
  color: #6b7280;
}
footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 50px;
}
footer .footer-bottom .footer-media {
  display: flex;
  align-items: center;
  gap: 32px;
}
footer .footer-bottom .footer-media-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
footer .footer-bottom .footer-media-item:hover path:first-child {
  fill: #000000;
}
footer .footer-sub {
  display: flex;
  width: 236px;
  padding: 12px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: all 0.3s;
  cursor: pointer;
}
footer .footer-sub:hover {
  transform: translateY(-6px);
}
footer .footer-reserved {
  color: #999;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
  header .header-nav-menu .header-submenu {
    left: 0;
  }
}
@media (max-width: 996px) {
  footer .footer-top .top-desc {
    flex: 0 0 344px;
  }
}
@media (max-width: 768px) {
  .mb-style {
    display: block;
  }
  .pc-style {
    display: none;
  }
  header {
    height: 54px;
  }
  header .header-nav {
    position: fixed;
    height: auto;
    top: 54px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  header .header-nav.active {
    transform: translateX(0);
  }
  header .header-logo img {
    width: 98px;
    height: 24px;
  }
  header .header-menu-toggle {
    display: block;
  }
  header .header-menu-toggle .icon-down-arrow {
    display: flex;
    transition: all 0.3s;
  }
  header .header-menu-toggle.active .icon-down-arrow {
    transform: rotate(180deg);
  }
  header .header-nav-menu {
    flex-direction: column;
    gap: 0;
  }
  header .header-nav-menu .header-nav-link {
    height: 54px;
  }
  header .header-nav-menu .icon-down-arrow {
    display: none;
  }
  header .header-nav-menu .header-submenu {
    display: none;
    position: static;
    transform: unset;
    box-shadow: none;
    width: 100%;
    box-shadow: unset;
    opacity: 1;
    visibility: visible;
    transition: unset;
  }
  header .header-nav-menu .header-submenu-item {
    display: block;
    font-size: 12px;
    padding: 0 0 10px 10px;
  }
  header .header-nav-menu .header-nav-item {
    width: 100%;
    min-height: 54px;
    height: auto;
    border-top: 1px solid #eaeaea;
  }
  header .header-nav-menu .header-nav-item:hover .header-submenu {
    transform: unset;
  }
  footer {
    padding: 28px 0 6px;
  }
  footer .footer-top {
    padding-bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer .footer-top .top-logo {
    width: 148px;
    height: 36px;
  }
  footer .footer-top .top-desc {
    flex: auto;
    font-size: 14px;
  }
  footer .footer-bottom {
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer .footer-bottom .footer-media {
    gap: 18px;
  }
  footer .footer-bottom .footer-media-item {
    width: 20px;
    height: 20px;
  }
  footer .footer-bottom .footer-media-item svg {
    width: 20px;
    height: auto;
  }
  footer .footer-sub {
    width: 100%;
    height: auto;
    padding: 12px 0px;
  }
  footer .footer-reserved {
    display: none;
  }
}


.spotify-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}
.spotify-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.spotify-modal-content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  max-width: 560px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  padding: 36px 16px 16px;
  box-sizing: border-box;
}
.spotify-modal-close {
  position: absolute;
  right: 12px;
  top: 0px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.spotify-modal-body iframe {
  display: block;
  width: 100%;
  border-radius: 12px;
}
.spotify-modal-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px 14px 10px;
  border-radius: 12px;
  background: url('https://img-library.tunefab.com/uploads/page/happy-music/bottom-bg.png') no-repeat center / cover;
}
.spotify-modal-promo .spotify-modal-promo-img {
  flex-shrink: 0;
  height: auto;
}
.spotify-modal-promo .spotify-modal-promo-info {
  flex: 1;
  min-width: 0;
}
.spotify-modal-promo .spotify-modal-promo-tit {
  color: #302C74;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}
.spotify-modal-promo .spotify-modal-promo-desc {
  color: #302C74;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.spotify-modal-promo .spotify-modal-promo-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 13px;
  border-radius: 7px;
  background: linear-gradient(180deg, #8774FF 0%, #614FF4 100%);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  transition: transform 0.3s;
}
.spotify-modal-promo .spotify-modal-promo-btn:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .spotify-modal-promo {
    margin-top: -20px;
    gap: 5px;
    padding: 10px 18px 10px 8px;
  }
  .spotify-modal-promo .spotify-modal-promo-img {
    width: 100px;
  }
  .spotify-modal-promo .spotify-modal-promo-info {
    padding: 0;
  }
  .spotify-modal-promo .spotify-modal-promo-tit {
    font-size: 14px;
  }
  .spotify-modal-promo .spotify-modal-promo-desc {
    font-size: 12px;
  }
  .spotify-modal-promo .spotify-modal-promo-btn {
    font-size: 12px;
    padding: 6px 8px;
    margin-top: 4px;
  }
}
body.spotify-modal-open {
  overflow: hidden;
}
