:root {
  --primary-color: #2174ff;
  --primary-dark: #0086b3;
  --bg-dark: #1d1d24;
  --bg-darker: #0a0a0a;
  --bg-card: #282a2e;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --border-color: #2d2d2d;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

.logo {
    display: inline-block;
    margin-right: 1.5rem;
    padding: 0;
}

.logo img {
    width: 160px;
    height: 36px;
}

/* å¯¼èˆªæ æ ·å¼ */
.navbar {
  background: rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
  padding: 0 1rem;
  height: 80px;
}

/* ç™»å½•æŒ‰é’®æ ·å¼ */
.login-dropdown {
  position: relative;
  margin-right: 1rem;
}

.user-info {
  position: relative;
  cursor: pointer;
}

.navbar-dark .navbar-nav .nav-link.down-btn {
    --button-corner: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: 138px;
    height: 40px;
    color: #fffc;
    white-space: nowrap;
    font-size: 14px;
    text-align: center;
    transition: all .15s ease-in-out;
    position: relative;
    gap: 4px;
}

.down-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(var(--button-corner) 0,100% 0,100% calc(100% - var(--button-corner)),calc(100% - var(--button-corner)) 100%,0 100%,0 var(--button-corner));
    background-color: #ffffff1a;
    color: #fffc;
    border-radius: 50px;
    transform-origin: 50% 50%;
    transition: all .15s ease-in-out;
    pointer-events: none
}
.down-btn:hover {
    background: #2174ff;
    border-radius: 50px;
}
.login-btn {
    --button-corner: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: 86px;
    height: 40px;
    color: #fffc;
    white-space: nowrap;
    font-size: 14px;
    text-align: center;
    transition: all .15s ease-in-out;
    position: relative;
    margin: 0;
    gap: 4px;
}

.login-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(var(--button-corner) 0,100% 0,100% calc(100% - var(--button-corner)),calc(100% - var(--button-corner)) 100%,0 100%,0 var(--button-corner));
    background-color: #ffffff1a;
    color: #fffc;
    border-radius: 50px;
    transform-origin: 50% 50%;
    transition: all .15s ease-in-out;
    pointer-events: none
}
.login-btn:hover {
    background: #2174ff;
    border-radius: 50px;
}

.user-info .avatar {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
}

.user-info .not-login {
  position: absolute;
  top: -12px;
  right: -33px;
  width: 48px;
}

.user-info-pop {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(40, 42, 46, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: 320px;
}

/* ä¸‹æ‹‰èœå•æŒ‡å‘ä¸‰è§’å½¢ */
.user-info-pop::before {
    content: '';
    position: absolute;
    top: -8px;
    padding: 8px 20px;
    margin-top: -8px;
    right: 16px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(40, 42, 46, 0.95);
    z-index: 1001;
}
/* ä¸‹æ‹‰èœå•ä¸‰è§’å½¢è¾¹æ¡† */
.user-info-pop::after {
  content: '';
  position: absolute;
  top: -9px;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

/* ä¸‹æ‹‰èœå•æ ·å¼ */
.login-content,
.logged-in-content {
  text-align: center;
}

/* ç™»å½•åŽå†…å®¹æ ·å¼ */
.user-profile {
  margin-bottom: 16px;
  position: relative;
}

.user-name {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: left;
}

.vip-badge {
  background: linear-gradient(90deg, #ffb700 0%, #ff9500 100%);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 8px;
  margin-left: 8px;
}

.user-actions {
  display: flex;
  gap: 4px;
}

.action-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 12px;
}

.action-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.assets-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-align: left;
}

.user-menu {
  margin: 16px 0;
  border-radius: 8px;
  overflow: hidden;
}

.logged-in-content hr {
  border-color: #fff;
  opacity: 0.2;
}

.user-menu hr {
    border-color: #fff;
    opacity: .2;
}
.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.user-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.time-value {
  color: #4CAF50;
  font-weight: 500;
  font-size: 16px;
}

.asset-top {
    display: flex;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.asset-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.asset-center-link {
  color: #1976D2;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s;
  text-align: right;
}

.asset-center-link:hover {
  color: #fff;
}

.user-assets {
  display: flex;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  background: #1c1c22;
  border-radius: 12px;
  padding: 16px;
  flex-wrap: wrap;
  flex-direction: column;
}

.asset-item {
  text-align: center;
  flex: 1;
}

.asset-value {
  color: #4CAF50;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 4px;
}

.asset-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 16px;
}

.asset-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 16px;
}

/* SVIPä¿ƒé”€æ ·å¼ */
.svip-promotion {
  background: #1c1c22;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.svip-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 16px;
}
.svip-title {
  color: #FFC107;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: left;
}

.svip-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFC107;
  font-size: 20px;
  margin-bottom: 8px;
}

.benefit-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.member-center-link {
  color: #FFC107;
  font-size: 14px;
  text-align: right;
  cursor: pointer;
  transition: color 0.3s;
}

.member-center-link:hover {
  color: #FFD700;
}

.logout-btn {
  width: 100%;
  height: 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  gap: 4px;
}

.logout-btn:hover {
}

.benefit-item {
  flex: 0 0 20%;
  text-align: center;
  margin-bottom: 8px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.game-time {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.quick-queue {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"/></svg>');
}

.new-game {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M15 11H5v2h10v-2zm-3-8C9.48 3 7 5.48 7 8s2.48 5 5 5 5-2.48 5-5-2.48-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm9 11H3v-1h18v1z"/></svg>');
}

.exclusive-gift {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M18.12 17.88l-4-4L14.71 16l-6-6 1.41-1.41 4.24 4.24 6.71-6.71L22 9.24l-3.88 8.64z"/></svg>');
}

.game-pack {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
}

.benefit-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.member-center-link {
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s;
}

.member-center-link:hover {
  color: #fff;
}

.user-info-pop-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.user-info-pop-list {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}

.user-info-pop-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 0;
  border-radius: 6px;
  transition: background-color 0.3s;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-align: left;
}

/* å›¾æ ‡æ ·å¼ */
.user-info-pop-item i {
  color: #fff;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.user-info-pop-item.cloud::before,
.user-info-pop-item.gift::before,
.user-info-pop-item.point::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 12px;
  color: #0286ff;
}

.user-info .btn {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.user-info .btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.navbar-brand {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.navbar-brand i {
  margin-right: 8px;
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 700;
  margin-right: 1.5rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}
.user-actions .nav-link {
    margin-right: 0px;
}
.search-bar {
  position: relative;
  width: 400px;
  z-index: 100;
}

.search-container {
  position: relative;
  width: 100%;
}

.search-bar input {
  background-color: #ffffff1a;
  border: none;
  color: var(--text-primary);
  border-radius: 50px;
  padding: 10px 60px 10px 24px;
  width: 100%;
  font-size: 14px;
  outline: none;
  transition: background-color .2s 
linear;
}

.search-bar input:hover {
  background-color: #fff3
}

.search-bar .clear-search-btn {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar .clear-search-btn:hover {
  color: var(--text-primary);
}

.search-bar .search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  cursor: pointer;
}

.search-bar .search-icon:hover {
  color: var(--primary-color);
}

/* æœç´¢å»ºè®®ä¸‹æ‹‰æ¡†æ ·å¼ */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* æœç´¢ç»“æžœåˆ—è¡¨æ ·å¼ */
.search-results {
  max-height: 400px;
  overflow-y: auto;
}

/* é»˜è®¤æ˜¾ç¤ºæ ·å¼ - çƒ­é—¨æœç´¢ */
.hot-search-container {
  padding: 20px;
}

.hot-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hot-search-title {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.hot-search-refresh {
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 12px;
  transition: color 0.3s;
}

.hot-search-refresh:hover {
  color: var(--text-primary);
}

.hot-search-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hot-search-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.hot-search-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hot-search-rank {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 12px;
  font-weight: bold;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.hot-search-rank.top {
  background: #ff4757;
  color: white;
}

.hot-search-rank.second {
  background: #ffa502;
  color: white;
}

.hot-search-rank.third {
  background: #ffa502;
  color: white;
}

.hot-search-name {
  flex: 1;
  font-size: 13px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* è¾“å…¥å†…å®¹æ˜¾ç¤ºæ ·å¼ - æœç´¢ç»“æžœ */
.search-results-container {
  padding: 0;
}

.search-result-item {
  padding: 14px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item .result-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.search-result-item .result-info {
  flex: 1;
  text-align: left;
}

.search-result-item .result-title {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 500;
}

.search-result-item .result-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* æ— æœç´¢ç»“æžœæç¤º */
.no-results {
  padding: 32px 20px;
  text-align: center;
  color: var(--text-secondary);
}

.no-results i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-results p {
  margin: 0;
  font-size: 14px;
}

/* çƒ­é—¨æœç´¢æ ‡ç­¾å¤‡ç”¨æ ·å¼ */
.hot-search-tags {
  padding: 16px;
}

.hot-search-tags .tags-title {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-align: left;
}

.hot-search-tag {
  display: inline-block;
  padding: 6px 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--text-secondary);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.hot-search-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.user-actions .nav-item {
  margin-left: 1rem;
}

/* é¡µè„šæ ·å¼ - å…¨æ–°è®¾è®¡ */
footer {
  background-color: #1a1a1a;
  padding: 20px 0;
  color: #999;
  font-size: 14px;
}

/* ä¸»åŠŸèƒ½å¯¼èˆª */
.footer-main-nav {
  padding: 15px 0;
  margin-bottom: 20px;
}

.footer-main-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-main-nav-item {
  color: #999;
  text-decoration: none;
  width: 310px;
  height: 100px;
  display: flex;
  align-items: center;
  margin: 0px 10px;
  position: relative;
  transition: color 0.3s;
}

.footer-main-nav-item:hover {
  color: #fff;
}

.footer-main-nav-item i {
  margin-right: 1rem;
  font-size: 3rem;
}

.footer-main-nav-item::after {
  content: '|';
  position: absolute;
  right: 0;
  color: #444;
}

.footer-main-nav-item:last-child::after {
  display: none;
}

/* æŽ¨èæ¸¸æˆåˆ—è¡¨ */
.footer-games {
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}

.footer-games a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-games a:hover {
  color: #fff;
}

.footer-games span {
  color: #999;
  margin-right: 10px;
}

/* åº•éƒ¨ç‰ˆæƒä¿¡æ¯ */
.footer-copyright {
  text-align: center;
  padding: 20px 0;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.footer-legal-links {
  margin: 15px 0;
}

.footer-legal-links a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.5;
}

.footer-licenses {
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.6;
}

/* å“åº”å¼è°ƒæ•´çš„é€šç”¨éƒ¨åˆ† */
@media (max-width: 768px) {
  .search-bar {
    width: 100%;
    margin: 1rem 0;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1440px;
  }
}


/* æ»šåŠ¨æ¡æ•´ä½“æ ·å¼ */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* æ»šåŠ¨æ¡è½¨é“ */
::-webkit-scrollbar-track {
  background: #2a2c31;
  border-radius: 10px;
}

/* æ»šåŠ¨æ¡æ»‘å— */
::-webkit-scrollbar-thumb {
  background: #3f4146;
  border-radius: 10px;
  transition: background 0.3s ease;
}

/* ç™»å½•/æ³¨å†Œå¼¹çª—çš„é€šç”¨æ ·å¼ */
.modal-content {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  padding-bottom: 2rem;
}

/* ç™»å½•æ ‡ç­¾æ ·å¼ */
.login-tab {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.login-tab:not(.active):hover {
  color: #0d6efd;
}

/* è¾“å…¥æ¡†æ ·å¼å¢žå¼º */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* èŽ·å–éªŒè¯ç æŒ‰é’®æ ·å¼ */
.btn-outline-secondary {
  transition: all 0.2s ease;
}

.btn-outline-secondary:hover:not(:disabled) {
  background-color: #e9ecef;
  border-color: #adb5bd;
}

/* ç¬¬ä¸‰æ–¹ç™»å½•å›¾æ ‡æ ·å¼ */
.login-icon {
  transition: all 0.2s ease;
}

.login-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* åè®®å¤é€‰æ¡†æ ·å¼ */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* å¼¹çª—ç›¸å…³çš„å“åº”å¼è°ƒæ•´ */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 0.5rem;
  }
}

/* å¼¹çª—åŠ¨ç”»æ•ˆæžœ */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

/* æäº¤æŒ‰é’®ç¦ç”¨çŠ¶æ€çš„è¿‡æ¸¡æ•ˆæžœ */
button[id$="-submit"] {
  transition: all 0.2s ease;
}

:root {
  --primary-color: #2174ff;
  --primary-dark: #0086b3;
  --bg-dark: #0e0f15;
  --bg-darker: #0a0a0a;
  --bg-card: #282a2e;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --border-color: #2d2d2d;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

a:link {
    text-decoration: none;
}

.logo {
    display: inline-block;
    margin-right: 1.5rem;
    padding: 0;
}

.logo img {
    width: 160px;
    height: 36px;
}

/* å¯¼èˆªæ æ ·å¼ */
.navbar {
  background: rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
  padding: 0 1rem;
  height: 80px;
}

/* ç™»å½•æŒ‰é’®æ ·å¼ */
.login-dropdown {
  position: relative;
  margin-right: 1rem;
}

.user-info {
  position: relative;
  cursor: pointer;
}

.navbar-dark .navbar-nav .nav-link.down-btn {
    --button-corner: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: 138px;
    height: 40px;
    color: #fffc;
    white-space: nowrap;
    font-size: 14px;
    text-align: center;
    transition: all .15s ease-in-out;
    position: relative;
    gap: 4px;
}

.down-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(var(--button-corner) 0,100% 0,100% calc(100% - var(--button-corner)),calc(100% - var(--button-corner)) 100%,0 100%,0 var(--button-corner));
    background-color: #ffffff1a;
    color: #fffc;
    border-radius: 50px;
    transform-origin: 50% 50%;
    transition: all .15s ease-in-out;
    pointer-events: none
}
.down-btn:hover {
    background: #2174ff;
    border-radius: 50px;
}
.login-btn {
    --button-corner: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: 86px;
    height: 40px;
    color: #fffc;
    white-space: nowrap;
    font-size: 14px;
    text-align: center;
    transition: all .15s ease-in-out;
    position: relative;
    margin: 0;
    gap: 4px;
}

.login-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(var(--button-corner) 0,100% 0,100% calc(100% - var(--button-corner)),calc(100% - var(--button-corner)) 100%,0 100%,0 var(--button-corner));
    background-color: #ffffff1a;
    color: #fffc;
    border-radius: 50px;
    transform-origin: 50% 50%;
    transition: all .15s ease-in-out;
    pointer-events: none
}
.login-btn:hover {
    background: #2174ff;
    border-radius: 50px;
}

.user-info .avatar {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
}

.user-info .not-login {
  position: absolute;
  top: -12px;
  right: -33px;
  width: 48px;
}

.user-info-pop {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(40, 42, 46, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: 320px;
}

/* ä¸‹æ‹‰èœå•æŒ‡å‘ä¸‰è§’å½¢ */
.user-info-pop::before {
    content: '';
    position: absolute;
    top: -8px;
    padding: 8px 20px;
    margin-top: -8px;
    right: 16px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(40, 42, 46, 0.95);
    z-index: 1001;
}
/* ä¸‹æ‹‰èœå•ä¸‰è§’å½¢è¾¹æ¡† */
.user-info-pop::after {
  content: '';
  position: absolute;
  top: -9px;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

/* ä¸‹æ‹‰èœå•æ ·å¼ */
.login-content,
.logged-in-content {
  text-align: center;
}

/* ç™»å½•åŽå†…å®¹æ ·å¼ */
.user-profile {
  margin-bottom: 16px;
  position: relative;
}

.user-name {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: left;
}

.vip-badge {
  background: linear-gradient(90deg, #ffb700 0%, #ff9500 100%);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 8px;
  margin-left: 8px;
}

.user-actions {
  display: flex;
  gap: 4px;
}

.action-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 12px;
}

.action-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.assets-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-align: left;
}

.user-menu {
  margin: 16px 0;
  border-radius: 8px;
  overflow: hidden;
}

.logged-in-content hr {
  border-color: #fff;
  opacity: 0.2;
}

.user-menu hr {
    border-color: #fff;
    opacity: .2;
}
.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.user-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.time-value {
  color: #4CAF50;
  font-weight: 500;
  font-size: 16px;
}

.asset-top {
    display: flex;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.asset-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.asset-center-link {
  color: #1976D2;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s;
  text-align: right;
}

.asset-center-link:hover {
  color: #fff;
}

.user-assets {
  display: flex;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  background: #1c1c22;
  border-radius: 12px;
  padding: 16px;
  flex-wrap: wrap;
  flex-direction: column;
}

.asset-item {
  text-align: center;
  flex: 1;
}

.asset-value {
  color: #4CAF50;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 4px;
}

.asset-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 16px;
}

.asset-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 16px;
}

/* SVIPä¿ƒé”€æ ·å¼ */
.svip-promotion {
  background: #1c1c22;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.svip-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 16px;
}
.svip-title {
  color: #FFC107;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: left;
}

.svip-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFC107;
  font-size: 20px;
  margin-bottom: 8px;
}

.benefit-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.member-center-link {
  color: #FFC107;
  font-size: 14px;
  text-align: right;
  cursor: pointer;
  transition: color 0.3s;
}

.member-center-link:hover {
  color: #FFD700;
}

.logout-btn {
  width: 100%;
  height: 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  gap: 4px;
}

.logout-btn:hover {
}

.benefit-item {
  flex: 0 0 20%;
  text-align: center;
  margin-bottom: 8px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.game-time {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.quick-queue {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"/></svg>');
}

.new-game {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M15 11H5v2h10v-2zm-3-8C9.48 3 7 5.48 7 8s2.48 5 5 5 5-2.48 5-5-2.48-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm9 11H3v-1h18v1z"/></svg>');
}

.exclusive-gift {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M18.12 17.88l-4-4L14.71 16l-6-6 1.41-1.41 4.24 4.24 6.71-6.71L22 9.24l-3.88 8.64z"/></svg>');
}

.game-pack {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
}

.benefit-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.member-center-link {
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s;
}

.member-center-link:hover {
  color: #fff;
}

.user-info-pop-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.user-info-pop-list {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}

.user-info-pop-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 0;
  border-radius: 6px;
  transition: background-color 0.3s;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-align: left;
}

/* å›¾æ ‡æ ·å¼ */
.user-info-pop-item i {
  color: #fff;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.user-info-pop-item.cloud::before,
.user-info-pop-item.gift::before,
.user-info-pop-item.point::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 12px;
  color: #0286ff;
}

.user-info .btn {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.user-info .btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.navbar-brand {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.navbar-brand i {
  margin-right: 8px;
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 700;
  margin-right: 1.5rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}
.user-actions .nav-link {
    margin-right: 0px;
}
.search-bar {
  position: relative;
  width: 400px;
  z-index: 100;
}

.search-container {
  position: relative;
  width: 100%;
}

.search-bar input {
  background-color: #ffffff1a;
  border: none;
  color: var(--text-primary);
  border-radius: 50px;
  padding: 10px 60px 10px 24px;
  width: 100%;
  font-size: 14px;
  outline: none;
  transition: background-color .2s 
linear;
}

.search-bar input:hover {
  background-color: #fff3
}

.search-bar .clear-search-btn {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar .clear-search-btn:hover {
  color: var(--text-primary);
}

.search-bar .search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  cursor: pointer;
}

.search-bar .search-icon:hover {
  color: var(--primary-color);
}

/* æœç´¢å»ºè®®ä¸‹æ‹‰æ¡†æ ·å¼ */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* æœç´¢ç»“æžœåˆ—è¡¨æ ·å¼ */
.search-results {
  max-height: 400px;
  overflow-y: auto;
}

/* é»˜è®¤æ˜¾ç¤ºæ ·å¼ - çƒ­é—¨æœç´¢ */
.hot-search-container {
  padding: 20px;
}

.hot-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hot-search-title {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.hot-search-refresh {
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 12px;
  transition: color 0.3s;
}

.hot-search-refresh:hover {
  color: var(--text-primary);
}

.hot-search-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hot-search-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.hot-search-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hot-search-rank {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 12px;
  font-weight: bold;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.hot-search-rank.top {
  background: #ff4757;
  color: white;
}

.hot-search-rank.second {
  background: #ffa502;
  color: white;
}

.hot-search-rank.third {
  background: #ffa502;
  color: white;
}

.hot-search-name {
  flex: 1;
  font-size: 13px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* è¾“å…¥å†…å®¹æ˜¾ç¤ºæ ·å¼ - æœç´¢ç»“æžœ */
.search-results-container {
  padding: 0;
}

.search-result-item {
  padding: 14px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item .result-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.search-result-item .result-info {
  flex: 1;
  text-align: left;
}

.search-result-item .result-title {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 500;
}

.search-result-item .result-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* æ— æœç´¢ç»“æžœæç¤º */
.no-results {
  padding: 32px 20px;
  text-align: center;
  color: var(--text-secondary);
}

.no-results i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-results p {
  margin: 0;
  font-size: 14px;
}

/* çƒ­é—¨æœç´¢æ ‡ç­¾å¤‡ç”¨æ ·å¼ */
.hot-search-tags {
  padding: 16px;
}

.hot-search-tags .tags-title {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-align: left;
}

.hot-search-tag {
  display: inline-block;
  padding: 6px 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--text-secondary);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.hot-search-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.user-actions .nav-item {
  margin-left: 1rem;
}

/* é¡µè„šæ ·å¼ - å…¨æ–°è®¾è®¡ */
footer {
  background-color: #1a1a1a;
  padding: 20px 0;
  color: #999;
  font-size: 14px;
}

/* ä¸»åŠŸèƒ½å¯¼èˆª */
.footer-main-nav {
  padding: 15px 0;
  margin-bottom: 20px;
}

.footer-main-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-main-nav-item {
  color: #999;
  text-decoration: none;
  width: 310px;
  height: 100px;
  display: flex;
  align-items: center;
  margin: 0px 10px;
  position: relative;
  transition: color 0.3s;
}

.footer-main-nav-item:hover {
  color: #fff;
}

.footer-main-nav-item i {
  margin-right: 1rem;
  font-size: 3rem;
}

.footer-main-nav-item::after {
  content: '|';
  position: absolute;
  right: 0;
  color: #444;
}

.footer-main-nav-item:last-child::after {
  display: none;
}

/* æŽ¨èæ¸¸æˆåˆ—è¡¨ */
.footer-games {
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}

.footer-games a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-games a:hover {
  color: #fff;
}

.footer-games span {
  color: #999;
  margin-right: 10px;
}

/* åº•éƒ¨ç‰ˆæƒä¿¡æ¯ */
.footer-copyright {
  text-align: center;
  padding: 20px 0;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.footer-legal-links {
  margin: 15px 0;
}

.footer-legal-links a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.5;
}

.footer-licenses {
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.6;
}

/* å“åº”å¼è°ƒæ•´çš„é€šç”¨éƒ¨åˆ† */
@media (max-width: 768px) {
  .search-bar {
    width: 100%;
    margin: 1rem 0;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1440px;
  }
}


/* æ»šåŠ¨æ¡æ•´ä½“æ ·å¼ */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* æ»šåŠ¨æ¡è½¨é“ */
::-webkit-scrollbar-track {
  background: #2a2c31;
  border-radius: 10px;
}

/* æ»šåŠ¨æ¡æ»‘å— */
::-webkit-scrollbar-thumb {
  background: #3f4146;
  border-radius: 10px;
  transition: background 0.3s ease;
}

/* ç™»å½•/æ³¨å†Œå¼¹çª—çš„é€šç”¨æ ·å¼ */
.modal-content {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  padding-bottom: 2rem;
}

/* ç™»å½•æ ‡ç­¾æ ·å¼ */
.login-tab {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.login-tab:not(.active):hover {
  color: #0d6efd;
}

/* è¾“å…¥æ¡†æ ·å¼å¢žå¼º */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* èŽ·å–éªŒè¯ç æŒ‰é’®æ ·å¼ */
.btn-outline-secondary {
  transition: all 0.2s ease;
}

.btn-outline-secondary:hover:not(:disabled) {
  background-color: #e9ecef;
  border-color: #adb5bd;
}

/* ç¬¬ä¸‰æ–¹ç™»å½•å›¾æ ‡æ ·å¼ */
.login-icon {
  transition: all 0.2s ease;
}

.login-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* åè®®å¤é€‰æ¡†æ ·å¼ */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* å¼¹çª—ç›¸å…³çš„å“åº”å¼è°ƒæ•´ */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 0.5rem;
  }
}

/* å¼¹çª—åŠ¨ç”»æ•ˆæžœ */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

/* æäº¤æŒ‰é’®ç¦ç”¨çŠ¶æ€çš„è¿‡æ¸¡æ•ˆæžœ */
button[id$="-submit"] {
  transition: all 0.2s ease;
}

/**newfoot**/
.footer {
    background: #000;
    width: 100%
}

.footer-wrap {
    margin: 0 auto;
    padding-bottom: .625rem;
    width: 90rem
}

.footer-top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 10.25rem;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%
}

.follow-us-left {
    width: 13.125rem
}

.follow-us-left img {
    width: 100%
}

.follow-us-right {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 2.3125rem;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 25rem;
    align-items: center
}

.follow-us {
    color: #fff;
    font-size: 1.375rem;
    height: 2.3125rem;
    line-height: 2.3125rem;
    width: 9.375rem;
}

.focus-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 16rem;
}

.footer-top .focus-list li {
    display: inline-block;
    float: left
}

.footer-top .focus-list li a {
    display: block;
    height: 28px;
    width: 28px
}

.footer-top .focus-list li a .icon {
    display: block;
    height: 28px;
    width: 28px;
    background: url(https://www.gocent.com/template/pc/images/icon_wechat.png) no-repeat center;
    background-size: 100% 100%;
    position: relative;
    transition: background .2s ease-in-out
}

.footer-top .focus-list li a:hover .icon {
    background: url(https://www.gocent.com/template/pc/images/icon_wechat_hover.png) no-repeat center;
    background-size: 100% 100%;
}

.footer-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 60px 0;
    border-top: .0625rem solid rgb(255 255 255 / 15%);
    border-bottom: .0625rem solid rgb(255 255 255 / 15%);
}

.footer-center-inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: .875rem auto 0;
    width: 100%;
}

.footer-center-item {
    margin-right: 5rem;
}
.footer-center-item:last-child {
    margin-right: 0;
}
.footer-center-title {
    margin-bottom: 1rem;
}

.footer-center-item .center-a {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-center-li {
    cursor: pointer;
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25rem;
}

.footer-center-li a {
    color: #fffc;
}

.footer-center-li a:hover {
    color: #fff;
}

.footer-bottom {
    align-items: center;
    display: flex;
    height: 7.25rem;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    color: rgb(255 255 255 / 65%);
}

.footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-right a {
    margin: 0 .2rem;
    color: rgb(255 255 255 / 65%);
}