:root {
    --theme-color: #aa8e72;
    --theme-light: #d8c0a6;
    --theme-dark: #8a6d53;
    --theme-light-bg: #f3eadf;
    --theme-gradient: linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%);
    --theme-gradient-strong: linear-gradient(180deg, #ead6c0 0%, #aa8e72 55%, #8a6d53 100%);
    --theme-shadow: rgba(170, 142, 114, 0.35);
}
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #5f7198;
    background: #fff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.new-container {
    width: 1200px;
    margin: 0 auto;
}

.new-page {
    min-width: 1200px;
}

.new-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 48px;
    padding: 0 30px;
    border-radius: 999px;
    color: #fff;
    font-size: 18px;
    background: linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%);
    box-shadow: 0 8px 18px rgba(47, 124, 255, 0.35);
    border: 0;
    cursor: pointer;
}

.new-btn.small {
    min-width: 120px;
    height: 40px;
    font-size: 15px;
}

.new-btn:hover {
    filter: brightness(1.05);
}

.sports-hero {
    background: linear-gradient(180deg, #edf6ff 0%, #f7fbff 100%);
    padding: 60px 0 100px;
}

.sports-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sports-hero-img {
    width: 610px;
    min-height: 500px;
    position:relative;
}

.sports-main-img {
    max-width: 100%;
    display: block;
    top:0;
    opacity: 0;
    position:absolute;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.sports-main-img.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sports-hero-info {
    width: 520px;
}

.sports-hero-info h1 {
    margin: 0 0 28px;
    font-size: 62px;
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--theme-light);
    text-shadow: 0 4px 0 #d7e9ff, 0 10px 20px rgba(47, 124, 255, 0.18);
    font-weight: 900;
}

.sports-hero-info p {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.8;
    color: #7284aa;
}

.sports-small-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 34px;
}

.sports-small {
    width: 78px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #65779e;
    font-size: 13px;
    padding: 0;
}

.sports-small img {
    width: 78px;
    height: 68px;
    object-fit: cover;
    border-radius: 14px;
    padding: 6px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(47, 124, 255, 0.12);
    margin-bottom: 10px;
}

.sports-small.active img,
.sports-small:hover img {
    background: var(--theme-gradient);
    box-shadow: 0 10px 22px rgba(47, 124, 255, 0.32);
}

.new-notice-bar {
    margin-top: -34px;
    position: relative;
    z-index: 5;
}

.notice-inner {
    height: 50px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(70, 120, 200, 0.16);
    display: flex;
    align-items: center;
    padding: 0 18px;
}

.notice-icon {
    width: 40px;
    font-size: 24px;
}

.notice-text {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    color: #6b7da2;
    font-size: 14px;
}

.notice-more {
    width: 70px;
    height: 30px;
    border: 1px solid var(--theme-light);
    color: var(--theme-color);
    border-radius: 999px;
    text-align: center;
    line-height: 28px;
}

.new-section {
    padding: 80px 0 70px;
}

.new-section-title {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.new-section-title h2 {
    display: inline-block;
    margin: 0;
    font-size: 38px;
    color: var(--theme-color);
    font-weight: 800;
}

.new-section-title p {
    margin: 12px 0 0;
    color: #8290ad;
    font-size: 14px;
}

.sports-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
}

.sports-card {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.sports-card-img {
    flex: 1;
}

.sports-card-info {
    width: 170px;
    padding-left: 10px;
}

.sports-card-info h3 {
    margin: 0 0 18px;
    color: #6378a8;
    font-size: 24px;
}

.sports-card-info p {
    margin: 0 0 18px;
    color: #8a98b4;
    font-size: 14px;
    line-height: 1.7;
}

.new-header {
    height: 90px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(65, 91, 140, 0.06);
    position: relative;
    z-index: 100;
    min-width: 1200px;
}

.new-header-inner {
    width: 1420px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.new-logo {
    width: 170px;
    height: 72px;
    display: flex;
    align-items: center;
    margin-right: 28px;
}

.new-logo img {
    max-width: 170px;
    max-height: 72px;
}

.new-nav {
    display: flex;
    align-items: center;
    height: 90px;
    gap: 22px;
    flex-shrink: 0;
}

.new-nav > a,
.new-nav-item > a {
    position: relative;
    display: flex;
    align-items: center;
    height: 90px;
    font-size: 18px;
    color: #62749f;
    text-decoration: none;
    white-space: nowrap;
}

.new-nav > a:hover,
.new-nav-item > a:hover,
.new-nav > a.on,
.new-nav-item > a.on {
    color: #aa8e72;
}

.new-nav > a.on::after,
.new-nav-item > a.on::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: #aa8e72;
    transform: translateX(-50%);
}

.new-nav-item {
    position: relative;
    height: 90px;
}

.new-dropdown {
    position: absolute;
    left: 50%;
    top: 82px;
    min-width: 118px;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(57, 101, 180, 0.18);
    border-radius: 12px;
    transform: translateX(-50%);
    display: none;
}

.new-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.new-nav-item:hover .new-dropdown {
    display: block;
}

.new-dropdown a {
    display: block;
    padding: 9px 18px;
    color: #63749d;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
}

.new-dropdown a:hover {
    color: var(--theme-dark);
    background: var(--theme-light-bg);
}

.new-header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 90px;
    min-width: 590px;

}

.new-top-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 18px;
}

.new-top-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    color: #6c7ca5;
    text-decoration: none;
    font-size: 14px;
}

.new-top-icons a:hover {
    color: var(--theme-dark);
}

.new-icon {
    height: 24px;
    line-height: 22px;
    font-size: 20px;
}

.new-top-icons em {
    font-style: normal;
    margin-top: 2px;
    white-space: nowrap;
}

.new-login-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-login-form input {
    width: 110px;
    height: 32px;
    border: 0;
    outline: none;
    border-radius: 999px;
    background: #b7c1d9;
    color: #fff;
    padding: 0 16px;
    font-size: 13px;
}

.new-login-form input::placeholder {
    color: #fff;
}

.new-password-wrap {
    position: relative;
}

.new-password-wrap input {
    padding-right: 32px;
}

.new-eye {
    position: absolute;
    right: 10px;
    top: 6px;
    color: #fff;
    font-size: 14px;
}

.new-login-btn {
    width: 58px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%);
    box-shadow: 0 6px 14px rgba(47, 124, 255, 0.28);
}

.new-register-btn {
    width: 58px;
    height: 34px;
    border-radius: 999px;
    background: #f6f9ff;
    box-shadow: 0 6px 14px rgba(63, 96, 150, 0.14);
    color: #7a89aa;
    font-size: 14px;
    text-align: center;
    line-height: 34px;
    text-decoration: none;
}

.new-user-panel {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #6b7da3;
}

.new-user-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-user-main strong {
    font-size: 16px;
    font-weight: 500;
}

.new-user-main span {
    display: inline-flex;
    height: 22px;
    min-width: 42px;
    border-radius: 999px;
    background: #7382a5;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.new-user-money {
    display: flex;
    align-items: center;
    gap: 6px;
}

.new-user-money em {
    font-style: normal;
    font-size: 16px;
}

.new-user-money a {
    color: #6d7da2;
    text-decoration: none;
}

.new-user-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.new-user-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6d7da2;
    text-decoration: none;
    font-size: 14px;
}

.new-user-actions a:hover {
    color: #2f7cff;
}

.home-hero {
/*    background: var(--theme-gradient);*/
    min-height: 420px;
    position: relative;
    overflow: hidden;
    min-width: 1200px;
}

.home-banner {
    position: relative;
    width: 1200px;
    height: 420px;
    margin: 0 auto;
    overflow: hidden;
    background: #f8f3ee;
}

.home-banner-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 1200px;
    height: 420px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    z-index: 1;
}

.home-banner-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.home-banner-item img {
    width: 1200px;
    height: 420px;
    object-fit: cover;
}


.home-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 36px;
}

.home-hero-left {
    width: 610px;
}

.home-logo-big img {
    width: 360px;
    margin-left: 40px;
    margin-bottom: 10px;
}

.home-domain-card {
    width: 600px;
    min-height: 168px;
    border-radius: 10px;
    background: linear-gradient(180deg, #1784ff, #126df0);
    box-shadow: 0 8px 24px rgba(18, 109, 240, 0.28);
    padding: 18px 28px;
}

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

.domain-list span {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.domain-list span:nth-child(odd) {
    color: #fff;
}

.domain-list span:nth-child(even) {
    color: #ffe158;
}

.home-hero-right {
    width: 520px;
}

.home-hero-right img {
    width: 100%;
}

.home-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 5;
    text-align: center;
}

.home-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 8px;
    background: #c7d0df;
    cursor: pointer;
    transition: all 0.25s ease;
}

.home-dots span.active {
    width: 12px;
    height: 12px;
    background: var(--theme-color, #aa8e72);
    box-shadow: 0 0 0 6px rgba(170, 142, 114, 0.14);
}

.home-notice {
    margin-top: 16px;
}

.live-box {
    width: 880px;
    margin: 0 auto;
    background: #f7fbff;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(59, 113, 190, 0.12);
    padding: 24px;
}

.live-tabs {
    text-align: center;
    margin-bottom: 18px;
}

.live-tabs button {
    width: 84px;
    height: 30px;
    border: 1px solid #b7d8ff;
    border-radius: 999px;
    background: #fff;
    color: #6f80a4;
    cursor: pointer;
}

.live-tabs button.active {
    color: #fff;
    background: linear-gradient(180deg, #69b8ff, #2878ff);
    border-color: transparent;
}

.live-main {
    display: flex;
    gap: 14px;
}

.live-video {
    flex: 1;
}

.live-score {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    color: #4f5e7d;
}

.live-score strong {
    font-size: 26px;
    color: #333d55;
}

.live-player {
    height: 320px;
    border-radius: 6px;
    background: #000;
}

.live-list {
    width: 260px;
}

.live-search {
    height: 38px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 0 12px;
}

.live-search input {
    width: 100%;
    height: 38px;
    border: 0;
    outline: none;
    color: #7b89a7;
}

.live-match {
    height: 70px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(71, 120, 190, 0.08);
    margin-bottom: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #69799d;
}

.live-match strong {
    color: #405178;
}

.game-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 42px;
}

.game-tabs button {
    width: 88px;
    height: 30px;
    border: 1px solid var(--theme-light);
    border-radius: 999px;
    background: #fff;
    color: #6c7ea5;
    cursor: pointer;
}

.game-tabs button.active,
.game-tabs button:hover {
    color: #fff;
    border-color: transparent;
    background: var(--theme-gradient);
    box-shadow: 0 6px 14px rgba(47, 124, 255, 0.2);
}

.home-game-panel {
    width: 560px;
    min-height: 310px;
    margin: 0 auto;
    position: relative;
}

.home-game-card {
    display: none;
    min-height: 310px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fcff, #eef7ff);
    box-shadow: 0 18px 36px rgba(50, 92, 150, 0.18);
    padding: 38px 46px;
}

.home-game-card.active {
    display: block;
}

.home-game-info h3 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 0.95;
    color: var(--theme-light);
    text-shadow: 0 4px 0 #dceeff;
    font-weight: 900;
}

.home-game-info p {
    margin: 0 0 22px;
    color: #7184aa;
    line-height: 1.8;
}

.home-game-platforms {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}

.home-game-platforms a {
    width: 60px;
    text-align: center;
    color: #6377a2;
    font-size: 12px;
}

.home-game-platforms .active img,
.home-game-platforms a:hover img {
    background: var(--theme-gradient);
    box-shadow: 0 10px 22px rgba(47, 124, 255, 0.32);
}

.home-game-platforms img {
    width: 58px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
    padding: 4px;
    margin-bottom: 6px;
    box-shadow: 0 6px 14px rgba(47, 124, 255, 0.12);
}

.app-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-left {
    width: 540px;
}

.app-card {
    width: 430px;
    min-height: 360px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fcff, #eef7ff);
    box-shadow: 0 18px 36px rgba(50, 92, 150, 0.16);
    padding: 42px;
}

.app-card h3 {
    margin: 0 0 16px;
    color: #50658e;
    font-size: 28px;
}

.app-card p {
    color: #7184aa;
    line-height: 1.8;
}

.app-download-box {
    display: flex;
    gap: 24px;
    margin-top: 26px;
}

.app-qr {
    width: 130px;
    text-align: center;
    color: #6d7da3;
}

.app-qr img {
    width: 130px;
    height: 130px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
}

.app-links {
    flex: 1;
}

.app-links a {
    display: block;
    border: 1px solid var(--theme-light);
    color: var(--theme-color);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    text-align: center;
    background: #f8fbff;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 46px;
    margin-bottom: 48px;
}

.service-stats div {
    text-align: center;
}

.service-stats em {
    font-size: 13px;
    font-style: normal;
}

.service-stats span {
    display: block;
    margin-top: 18px;
    color: #506181;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 34px;
}

.service-card {
    min-height: 112px;
    border-radius: 10px;
    background: #f6fbff;
    box-shadow: 0 10px 24px rgba(60, 110, 180, 0.1);
    padding: 24px 28px 24px 88px;
    position: relative;
}

.service-card i {
    position: absolute;
    left: 28px;
    top: 32px;
    font-style: normal;
    font-size: 34px;
}

.service-card h4 {
    margin: 0 0 8px;
    color: #51648b;
    font-size: 18px;
}

.service-card p {
    margin: 0;
    color: #7b89a8;
    line-height: 1.7;
}

.new-footer {
    min-width: 1200px;
    background: #3f4658;
    padding: 20px 0 28px;
    color: #a9b3c8;
    text-align: center;
}

.new-footer-line {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin-bottom: 28px;
}

.new-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.new-footer-cert {
    display: flex;
    justify-content: center;
    gap: 190px;
    margin-bottom: 36px;
    color: #aeb8cc;
}

.new-footer-links {
    margin-bottom: 18px;
}

.new-footer-links a,
.new-footer-links em {
    color: #aeb8cc;
    margin: 0 8px;
    font-style: normal;
}

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

.new-footer-copy {
    color: #9faabe;
}

.new-backtop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 70px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--theme-gradient);
    color: #fff;
    text-align: center;
    line-height: 42px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(47, 124, 255, 0.35);
    z-index: 1000;
}

/* 热门游戏 + APP 下载同一行布局 */
.games-app-section {
    padding: 80px 0 90px;
}

.games-app-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
}

.games-app-left {
    width: 60%;
    min-width: 0;
}

.games-app-right {
    width: 40%;
    min-width: 0;
}

.compact-title {
    margin-bottom: 42px;
}

.compact-title h2 {
    font-size: 42px;
}

.compact-title p {
    margin-top: 8px;
    font-size: 16px;
}

/* 左侧热门游戏 */
.games-app-left .game-tabs {
    margin-bottom: 44px;
}

.games-app-left .home-game-panel {
    width: 100%;
    min-height: 360px;
    margin: 0;
}

.games-app-left .home-game-card {
    width: 100%;
    min-height: 360px;
    padding: 54px 62px;
    border-radius: 18px;
}

.games-app-left .home-game-info h3 {
    font-size: 46px;
    line-height: 1.05;
}

.games-app-left .home-game-info p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
}

.games-app-left .home-game-platforms {
    margin-top: 28px;
    margin-bottom: 34px;
}

.games-app-left .home-game-platforms a {
    width: 78px;
    font-size: 14px;
}

.games-app-left .home-game-platforms img {
    width: 72px;
    height: 62px;
}

/* 右侧 APP 下载 */
.games-app-right .app-card {
    width: 100%;
}

.app-card-inline {
    min-height: 360px;
    padding: 52px 28px;
    border-radius: 18px;
}

.app-card-inline h3 {
    font-size: 32px;
    margin-bottom: 22px;
}

.app-card-inline p {
    font-size: 18px;
    line-height: 1.9;
}

.app-card-inline .app-download-box {
    margin-top: 34px;
    gap: 30px;
}

.app-card-inline .app-qr {
    width: 150px;
}

.app-card-inline .app-qr img {
    width: 150px;
    height: 150px;
}

.app-card-inline .app-links a {
    font-size: 20px;
    padding: 15px 18px;
    margin-bottom: 18px;
}

/* 不再使用原来单独 APP section 的左右大图 */
.app-section {
    display: none;
}

.cpyx-bg {
    width:100%;
    height:auto;
    background:var(--theme-light);
    display: flex;
}

.new-password-wrap {
    position: relative;
}

.new-captcha-pop {
    display: none;
    position: absolute;
    right: 0;
    top: 46px;
    width: 270px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(60, 66, 86, 0.18);
    z-index: 9999;
}

.new-captcha-pop::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 42px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.new-captcha-title {
    margin-bottom: 12px;
    color: #6f604f;
    font-size: 15px;
    font-weight: 600;
}

.new-captcha-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-login-form .new-captcha-row input {
    width: 92px;
    height: 36px;
    border-radius: 999px;
    background: #f5f0ea;
    color: #6f604f;
    padding: 0 14px;
}

.new-login-form .new-captcha-row input::placeholder {
    color: #b59f88;
}

.new-captcha-row img {
    width: 90px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    background: #f3eadf;
}

.new-captcha-refresh {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background: var(--theme-gradient, linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%));
    box-shadow: 0 6px 14px rgba(170, 142, 114, 0.25);
}

.new-captcha-tips {
    margin-top: 10px;
    color: #a99783;
    font-size: 12px;
}

#sportsTitle span {
    display: block;
}

.service-stat-item strong {
    position: relative;
    display: inline-flex;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: none !important;
    overflow: hidden;

    /* 默认 0% */
    background: conic-gradient(
            var(--theme-color, #aa8e72) 0deg,
            #f1f3f7 0deg
    );
}

.service-stat-item strong::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #fff;
    z-index: 1;
}

.service-stat-item strong b,
.service-stat-item strong em {
    position: relative;
    z-index: 2;
}

.service-stat-item strong b {
    font-size: 28px;
    font-weight: 600;
    color: var(--theme-color, #aa8e72);
}

.service-stat-item strong em {
    margin-left: 2px;
    font-size: 13px;
    font-style: normal;
    color: var(--theme-color, #aa8e72);
}

/* 以下是注册弹窗页的样式*/
.new-modal-mask {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: rgba(20, 24, 32, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-register-modal {
    position: relative;
    width: 1080px;
    height: 720px;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    display: flex;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.new-modal-close {
    position: absolute;
    right: 18px;
    top: 14px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(170, 142, 114, 0.12);
    color: var(--theme-color, #aa8e72);
    font-size: 26px;
    line-height: 30px;
    cursor: pointer;
}

.new-modal-close:hover {
    background: var(--theme-gradient, linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%));
    color: #fff;
}

.register-modal-left {
    position: relative;
    width: 430px;
    height: 720px;
    background: url("/139hgtpl/assets/images/register-bg.png") center center / cover no-repeat;
}

.register-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 28, 42, 0.22), rgba(20, 28, 42, 0.58));
}

.register-left-text {
    position: absolute;
    left: 40px;
    bottom: 150px;
    z-index: 2;
    color: #fff;
}

.register-left-text h2 {
    margin: 0;
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.register-left-text i {
    display: block;
    width: 95px;
    height: 3px;
    margin: 28px 0 20px;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}

.register-left-text p {
    margin: 0;
    font-size: 36px;
    font-weight: 300;
}

.register-modal-right {
    flex: 1;
    height: 720px;
    padding: 60px 92px 50px;
    background: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-switch {
    width: 390px;
    height: 54px;
    margin: 0 auto 34px;
    padding: 3px;
    border-radius: 999px;
    background: #eef0f5;
    display: flex;
    box-shadow: inset 0 0 0 1px rgba(80, 90, 110, 0.04);
}

.register-switch button {
    flex: 1;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #333b4c;
    font-size: 18px;
    cursor: pointer;
}

.register-switch button.active {
    color: #fff;
    background: var(--theme-gradient, linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%));
    box-shadow: 0 8px 18px rgba(170, 142, 114, 0.32);
}

.register-form-scroll {
    max-height: 530px;
    overflow-y: auto;
    padding-right: 6px;
}

.register-form-scroll::-webkit-scrollbar {
    width: 5px;
}

.register-form-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(170, 142, 114, 0.35);
}

.register-field {
    position: relative;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #eef0f5;
    display: flex;
    align-items: center;
}

.register-icon {
    width: 50px;
    text-align: center;
    font-size: 18px;
    color: #4e5668;
}

.register-field input {
    flex: 1;
    height: 50px;
    border: 0;
    outline: none;
    background: transparent;
    color: #303747;
    font-size: 16px;
    padding-right: 40px;
}

.register-field input::placeholder {
    color: #969eac;
}

.register-eye {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    border: 0;
    background: transparent;
    color: #6a7180;
    font-size: 18px;
    cursor: pointer;
}

.register-code-field input {
    padding-right: 125px;
}

.register-code-field img {
    position: absolute;
    right: 12px;
    top: 9px;
    width: 104px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
}

.register-agree {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 20px;
    color: #2f3542;
    font-size: 15px;
    cursor: pointer;
}

.register-agree input {
    display: none;
}

.register-agree span {
    position: relative;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--theme-gradient, linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%));
}

.register-agree span::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 6px;
    height: 11px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
}

.register-agree input:not(:checked) + span {
    background: #dfe3ec;
}

.register-agree input:not(:checked) + span::after {
    display: none;
}

.register-agree em {
    font-style: normal;
}

.register-agree a {
    color: var(--theme-color, #aa8e72);
}

.register-submit-btn {
    display: block;
    width: 390px;
    height: 50px;
    margin: 10px auto;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    background: var(--theme-gradient, linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%));
    box-shadow: 0 8px 18px rgba(170, 142, 114, 0.34);
}

.register-submit-btn:hover {
    filter: brightness(1.04);
}

.register-service {
    display: block;
    margin-top: 24px;
    text-align: center;
    color: #5f7198;
    font-size: 16px;
}

.register-service::before {
    content: "◔";
    color: var(--theme-color, #aa8e72);
    margin-right: 6px;
}

/* 条款与隐私样式*/
.rule-modal-mask {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 18, 30, 0.55);
}

.rule-modal-box {
    width: 760px;
    max-width: calc(100% - 40px);
    height: 760px;
    max-height: calc(100vh - 40px);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.rule-modal-header {
    position: relative;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--theme-gradient, linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%));
}

.rule-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.rule-modal-header button {
    position: absolute;
    right: 22px;
    top: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 42px;
    line-height: 36px;
    cursor: pointer;
}

.rule-modal-tabs {
    display: flex;
    gap: 10px;
    padding: 16px 22px 0;
    background: #fff;
}

.rule-modal-tabs button {
    height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(170, 142, 114, 0.35);
    background: #fff;
    color: #8a6d53;
    cursor: pointer;
}

.rule-modal-tabs button.active {
    color: #fff;
    border-color: transparent;
    background: var(--theme-gradient, linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%));
    box-shadow: 0 6px 14px rgba(170, 142, 114, 0.26);
}

.rule-modal-content {
    height: calc(100% - 114px);
    overflow-y: auto;
    padding: 30px 26px 40px;
    color: #6d789d;
    font-size: 16px;
    line-height: 1.75;
}

.rule-modal-content::-webkit-scrollbar {
    width: 6px;
}

.rule-modal-content::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(170, 142, 114, 0.42);
}

.rule-content-item h4 {
    margin: 0 0 18px;
    color: #65749d;
    font-size: 20px;
    font-weight: 700;
}

.rule-content-item h5 {
    margin: 20px 0 10px;
    color: #65749d;
    font-size: 16px;
}

.rule-content-item p {
    margin: 0 0 22px;
}

.rule-content-item ol,
.rule-content-item ul {
    margin: 0;
    padding-left: 30px;
}

.rule-content-item li {
    margin-bottom: 14px;
}

.rule-content-item a {
    color: var(--theme-color, #aa8e72);
}

/* myabout 页面样式*/
.new-about-page {
    min-width: 1200px;
    padding: 42px 0 70px;
    background: #fff;
    color: var(--theme-light);
}

.new-about-layout {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    min-height: 680px;
}

.new-about-left {
    width: 245px;
    flex: 0 0 245px;
    padding: 28px 22px 36px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(170, 142, 114, 0.18);
}

.about-left-title {
    margin-bottom: 22px;
    text-align: center;
}

.about-left-title span {
    display: block;
    color: var(--theme-color);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(216, 192, 166, 0.55);
}

.about-left-title em {
    display: block;
    width: 120px;
    height: 2px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, transparent, var(--theme-color, #aa8e72), transparent);
}

.about-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-menu-list li {
    border-bottom: 1px dashed rgba(216, 192, 166, 0.28);
}

.about-menu-list li:last-child {
    border-bottom: 0;
}

.about-menu-list a {
    position: relative;
    display: block;
    height: 52px;
    line-height: 52px;
    text-align: center;
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.about-menu-list a:hover,
.about-menu-list a.active {
    color: #fff;
    background: var(--theme-gradient);
    box-shadow: inset 0 0 18px rgba(216, 192, 166, 0.18);
}

.about-menu-list a.active::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 5px;
    height: 22px;
    margin-top: -11px;
    border-radius: 999px;
    background: var(--theme-gradient, linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%));
}

.new-about-right {
    flex: 1;
    min-height: 680px;
    padding: 34px 38px 42px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(170, 142, 114, 0.16);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.new-about-right h1 {
    margin: 0 0 24px;
    color: var(--theme-color);
    font-size: 22px;
    font-weight: 700;
}

.new-about-content {
    color: #5f7198;
    font-size: 16px;
    line-height: 1.85;
    word-break: break-word;
}

.new-about-content p {
    margin: 0 0 14px;
}

.new-about-content h1,
.new-about-content h2,
.new-about-content h3,
.new-about-content h4 {
    color: #fff;
    margin: 22px 0 12px;
}

.new-about-content a {
    color: var(--theme-light, #d8c0a6);
}

.new-about-content strong,
.new-about-content b {
    color: #f6df9f;
}

.new-about-content img {
    max-width: 100%;
    height: auto;
}

.new-about-content table {
    max-width: 100%;
    color: inherit;
}

.new-about-content td {
    color: inherit;
    line-height: 1.8;
}

.new-about-content ul,
.new-about-content ol {
    padding-left: 24px;
    margin: 10px 0 18px;
}

.new-about-content li {
    margin-bottom: 8px;
}

/* 优惠活动页面样式 */
.new-promo-page {
    min-width: 1200px;
    padding: 54px 0 82px;
    background:
            radial-gradient(circle at top left, rgba(170, 142, 114, 0.09), transparent 360px),
            linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
}

.new-promo-title {
    margin-bottom: 34px;
    text-align: center;
}

.new-promo-title h1 {
    margin: 0;
    color: var(--theme-color, #aa8e72);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
}

.new-promo-title p {
    margin: 10px 0 0;
    color: #9a8978;
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 600;
}

.new-promo-list {
    width: 100%;
}

.promo-item {
    margin-bottom: 28px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(110, 88, 66, 0.10);
    overflow: hidden;
    border: 1px solid rgba(170, 142, 114, 0.16);
}

.promo-cover {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #f7f1eb;
}

.promo-cover img {
    width: 100%;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.promo-cover:hover img {
    transform: scale(1.015);
    filter: brightness(1.03);
}

.promo-arrow {
    position: absolute;
    right: 28px;
    bottom: 22px;
    height: 36px;
    line-height: 36px;
    padding: 0 22px;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    background: var(--theme-gradient, linear-gradient(180deg, #d8c0a6 0%, #aa8e72 100%));
    box-shadow: 0 8px 18px rgba(170, 142, 114, 0.34);
}

.promo-item.open .promo-arrow {
    background: #fff;
    color: var(--theme-color, #aa8e72);
    box-shadow: 0 8px 18px rgba(80, 60, 40, 0.12);
}

.promo-detail {
    display: none;
    padding: 26px;
    background: #fff;
    border-top: 1px solid rgba(170, 142, 114, 0.14);
}

.promo-item.open .promo-detail {
    display: block;
}

.promo-detail-img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.promo-html-content {
    color: #5f7198;
    font-size: 16px;
    line-height: 1.85;
    word-break: break-word;
}

.promo-html-content img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.promo-html-content table {
    width: 100% !important;
    max-width: 100%;
    border-collapse: collapse;
}

.promo-html-content td,
.promo-html-content th {
    color: inherit;
    line-height: 1.75;
}

.promo-html-content p {
    margin: 0 0 14px;
}

.promo-html-content h1,
.promo-html-content h2,
.promo-html-content h3,
.promo-html-content h4 {
    color: var(--theme-color, #aa8e72);
    margin: 18px 0 12px;
}

.promo-empty,
.promo-empty-box {
    padding: 50px 20px;
    text-align: center;
    color: #9a8978;
    font-size: 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(170, 142, 114, 0.16);
}