/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 导航栏样式 */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1600px;
    width: 70%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 78px;
    width: 252px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 94px;
    flex: 1;
    margin-left: 30px;
}

.desktop-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin: 0 3px;
    text-decoration: none;
    color: #333;
    font-family: PingFangSC;
    font-weight: 500;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    height: 100%;
}

.desktop-menu a:hover {
    color: #000;
    background: #FFF200;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 242, 0, 0.15);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-btn {
    display: block;
    width: 152px;
    height: 62px;
    line-height: 62px;
    background-image: url("/static/image/shop_ownhome/登录.png");
    background-size: 100% 100%;
    background-position: center;
    font-family: PingFangSC;
    font-size: 20px;
    color: #000;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.login-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    background-image: url("/static/image/shop_ownhome/登录.png");

}

.register-btn {
    padding: 8px 20px;
    background-color: #165DFF;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(22, 93, 255, 0.2);
}

.register-btn:hover {
    background-color: #0E47CC;
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
    transform: translateY(-1px);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 120;
    border-radius: 8px;
    background: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #f5f5f5;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2.5px;
    width: 24px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-menu-btn span:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 20px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 28px;
}

.mobile-menu-btn.active span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    z-index: 110;
    transition: right 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 80px 16px 20px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.sidebar-menu a:hover {
    color: #000;
    background: #FFF200;
    /* padding-left: 20px; */
    font-weight: 600;
}

.sidebar-menu .mobile-auth {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: center;
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 页面主体样式 */
.full-width-box {
    width: 100%;
    max-width: 100%;
    height: 2081px;
    margin: 64px 0 0 auto;
    background-image: url('../image/01-banner.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: relative;
    background-color: #020617;
}

.full-width-box .content {
    width: 600px;
    margin: 0 auto;
    padding-top: 270px;
}

.full-width-box .content2 {
    font-family: Source Han Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 69px;
    margin: 30px auto 0;
    text-align: center;
}

.button-container {
    margin-top: 90px;
    text-align: center;
}

.bg-img-btn {
    width: 384px;
    height: 96px;
    background-image: url('/static/image/shop_ownhome/btn1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #000000;
    font-family: Source Han Sans SC;
    font-weight: 400;
    font-size: 30px;
    line-height: 69px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    background-color: transparent;
}

.bg-img-btn:hover {
    transform: scale(1.03);
    background-image: url('/static/image/shop_ownhome/btn1-选中.png');
}

.bg-img-btn:active {
    transform: scale(0.98);
}

.content3 {
    margin-top: 314px;
    text-align: center;
}


.footer_mune {
    width: 100%;
    max-width: 100%;
    height: 625px;
    margin: 0 auto;
    background: #020517;
}

.footer_mune_son {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #0F172A;
    text-align: center;
    padding: 30px 0px;
}

.footer_mune_son_span {
    width: 75%;
    font-family: Source Han Sans SC;
    font-weight: 400;
    font-size: 16px;
    color: #DEE5F7;
    margin: 0 auto;
}

/* 产品档位模块 - 关键优化 */
.x_plan-section {
    background-color: #0b1b35;
    padding: 40px 0;
}

.x_plan-title {
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
}

.x_plan-title img {
    margin-top: 30px;
    margin-bottom: 20px;
}

.x_plan-title p {
    font-family: PingFangSC;
    font-weight: 400;
    font-size: 18px;
    color: #E7F0FE;
    line-height: 28px;
    margin-bottom: 100px;
}

.x_plan-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    width: 70%;
    margin: 0 auto;
}

.x_plan-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 300px;
    max-width: 622px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: url("/static/image/shop_ownhome/border3.png");
    background-size: 100% 100%;
    background-color: transparent;

    border-top-left-radius: 7px;
    border-top-right-radius: 7px
}

.x_plan-card:hover {
    transform: translateY(-5px);
}

.x_plan-card .img {
    max-width: 361px;
    object-fit: cover;
    margin-bottom: 0;
    height: 287px;
    border-radius: 5px;
    margin-top: 91px;
}

.x_plan-card .xpdiv {
    padding: 0 5px;
    text-align: center;


    
}

.x_plan-card-content {
    padding: 20px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: PingFangSC;
    font-weight: 400;
    font-size: 30px;
    color: #ECFAFF;
    line-height: 48px;
}

.x_plan-card-content div {
    margin-top: 30px;
}

.x_plan-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffd700;
}

.x_plan-card .x_price {
    font-size: 26px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.x_plan-card ul {
    list-style: none;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
    color: #cfe2ff;
    text-align: left;
    width: 100%;
    max-width: 300px;
}

.x_plan-card button {
    background: url('/static/image/shop_ownhome/btn3.png') no-repeat center;
    background-size: 100% 100%;
    border: none;
    width: 268px;
    height: 98px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: PingFangSC;
    font-weight: 500;
    font-size: 36px;
    color: #000000;
    line-height: 54px;
}

.x_plan-card button:hover {
    transform: translateY(-3px);
    background: url('/static/image/shop_ownhome/btn3-选中.png') no-repeat center;
    background-size: 100% 100%;
}

.x_img {
    width: 100%;
    max-width: 226px;
    margin-top: 50px;
    height: 100%;
}

.x_img2 {
    object-fit: cover;
    max-width: 356px;
    height: 100%;
    margin-top: 56px;
}

/* 核心优势模块 */
.core-advantages {
    background-color: #020617;
    padding: 60px 0;
    overflow: hidden;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.core-advantages-container {
    width: 70%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-title {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-align: center;
}

.core-subtitle {
    font-size: 16px;
    color: #A0AEC0;
    margin-bottom: 40px;
    text-align: center;
    margin-top: 30px;
}

.core-content {
    display: flex;
    width: 100%;
    gap: 40px;
}

.core-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.core-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.core-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.core-icon img {
    width: 41px;
    height: 45px;
}

.core-text .core-text_son1 {
    font-family: PingFangSC;
    font-weight: 400;
    font-size: 21px;
    color: #FFFFFF;
    line-height: 34px;
}

.core-text .core-text_son2 {
    font-family: Source Han Sans SC;
    font-weight: 400;
    font-size: 16px;
    color: #E5EFFF;
    line-height: 18px;
    padding-top: 10px;
}

.core-image {
    /* flex: 1; */
}

.core-image img {
    width: 100%;
    max-width: 748px;
    height: auto;
    max-height: 520px;
    margin-top: 30px;
}

.core-button {
    margin-top: 40px;
}

.core-button button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    margin-top: 100px;
}

.core-button button:hover {
    background-color: #FFE04D;
    transform: translateY(-2px);
}

/* 创业方案与权益模块 */
.business-plan {
    background-color: #0F172A;
    padding: 60px 0;
    overflow: hidden;
}

.business-container {
    width: 75%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.business-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-align: center;
}

.business-subtitle {
    font-family: PingFangSC;
    font-weight: 400;
    font-size: 18px;
    color: #E7F0FE;
    line-height: 28px;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 40px;
}

.plan-card {
    background: linear-gradient(145deg, #1A253C, #0F172A);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 622px;
    height: 1096px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.2);
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-list li {
    font-size: 24px;
    color: #E7F0FE;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

/* 角色卡片模块 - PC端保持原样 */
.king-section {
    background-color: transparent;
    padding: 40px 0;
    text-align: center;
}

.king-section p {
    font-family: PingFangSC;
    font-weight: 400;
    font-size: 18px;
    color: #E7F0FE;
    line-height: 28px;
}

.king-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
}

.character-cards {
    width: 70%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.character-card {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.character-img {
    max-width: 100%;
    height: auto;
    flex-shrink: 0;

}

.others {
    position: relative;
    left: 1%;
}

.others2 {
    position: relative;
    left: -5%;
}

.px1 {
    margin-left: -30px;
}

.character-info {
    text-align: left;
    flex: 1;
    position: relative;
}

.character-name {
    color: #0ff;
    font-size: 18px;
    margin-bottom: 8px;
}

.character-desc {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

.character-btn {
    background: url('/static/image/shop_ownhome/新手.png') no-repeat center;
    background-size: 100% 100%;
    border: none;
    width: 207px;
    height: 72px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: Source Han Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #1F3E6C;
    line-height: 39px;
    position: absolute;
    left: 10%;
    top: -19%;
}

.character-btn2 {
    background: url('/static/image/shop_ownhome/新手礼包.png') no-repeat center;
    background-size: 100% 100%;
    border: none;
    width: 207px;
    height: 72px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: Source Han Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 69px;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.45);
    margin: 0 auto;
}

.btn2s {
    width: 100%;
    /* background-color: red; */
    text-align: center;
}

.character-btn3 {
    display: inline-block;
    background: url('/static/image/shop_ownhome/对话框.png') no-repeat center;
    background-size: 100% 100%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: SourceHanSansSC;
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    line-height: 39px;
    padding: 55px 70px 30px 75px;
}

.character-btn2:hover {
    background: url('/static/image/shop_ownhome/新手礼包-选中.png') no-repeat center;
}

/* 联系我们模块 */
.contact_fa {
    background: #020517;
    padding: 60px 0;
}

.contact_fa .container {
    width: 75%;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-us {
    background: #020517;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    margin: 0 auto;
}

.contact-title {
    margin-bottom: 40px;
}

.contact-title img {
    max-width: 280px;
    height: auto;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.info {
    font-family: PingFangSC;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 18px;
    padding-bottom: 51px;
}

.contact-form-container {
    flex: 0 1 45%;
    max-width: 649px;
}

.contact-form-wrapper {
    border-radius: 12px;
    padding: 30px;
    background: #0F162A;
    position: relative;
}

.contact-form {
    width: 100%;
}

.contact-form input {
    width: 100%;
    height: 102px;
    margin-bottom: 25px;
    padding: 0 20px;
    border: none;
    transition: all 0.3s ease;
    font-family: PingFangSC;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 54px;
    background-color: transparent;
    background-image: url("/static/image/shop_ownhome/inpu-选中.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus {
    outline: none;
    background-image: url("/static/image/shop_ownhome/input.png");
}

.contact-form button {
    background: url('/static/image/shop_ownhome/提交.png') no-repeat center;
    background-size: 100% 100%;
    border: none;
    width: 100%;
    height: 102px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Source Han Sans SC;
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    line-height: 68px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.contact-form button:hover {
    background: url('/static/image/shop_ownhome/提交-选中.png') no-repeat center;
    background-size: 100% 100%;
    transform: translateY(-4px);
}

.contact-qrcode {
    text-align: center;
}

.contact-qrcode img {
    width: 283px;
    height: 283px;
}

.contact-qrcode img:hover {
    transform: scale(1.05);
}

.qrcode-text {
    color: #E7F0FE;
    margin-top: 25px;
    font-size: 20px;
    font-weight: 400;
}

/* 核心按钮样式 */
.core-button {
    text-align: center;
    margin: 0 auto;
}

.core-button button {
    width: 376px;
    height: 80px;
    background: url('/static/image/shop_ownhome/btn3.png') no-repeat center;
    background-size: 100% 100%;
    color: #000;
    font-family: Source Han Sans SC;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    line-height: 50px;
    transition: transform 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.core-button button:hover {
    transform: translateY(-4px);
    background: url('/static/image/shop_ownhome/btn3-选中.png') no-repeat center;
    background-size: 100% 100%;
}

/* 响应式断点 - 仅修改移动端适配，保持PC端样式不变 */
@media (max-width: 1400px) {

    .nav-container,
    .core-advantages-container,
    .business-container,
    .character-cards,
    .contact_fa .container,
    .x_plan-cards {
        width: 90%;
    }

    .plan-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .core-content {
        flex-direction: column;
    }

    .core-list,
    .core-image {
        width: 100%;
    }

    .core-image {
        margin-top: 30px;
    }

    .character-card {
        flex-direction: row;
        align-items: center;
    }

    .character-img {
        max-width: 150px;
        margin-right: 15px;
    }

    .character-info {
        text-align: left;
    }
}

@media (max-width: 900px) {
    .x_plan-card {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .character-cards {
        padding-top: 50px;
    }

    .info {
        font-size: 18px;
    }

    .x_plan-cards {
        justify-content: center;
    }

    .x_plan-card .img {
        width: 60%;
        height: 100%;
        border-radius: 5px;
        margin-top: 20px;
    }

    .x_plan-card .xpdiv {
        padding: 0 2px;
    }
}

/* 移动端适配 - 仅修改此处，保持与PC端相同布局结构 */
@media (max-width: 768px) {
    .x_plan-card .img {
        width: 60%;
        height: 100%;
        border-radius: 5px;
        margin-top: 20px;
    }

    .qrcode-text {
        font-size: 14px;
        margin-top: 5px;

    }

    .x_plan-card .xpdiv {
        padding: 0 2px;
    }

    .x_plan-title {
        width: 75%;
        margin: 0 auto;
    }

    .x_plan-title img {
        width: 90%;
    }

    .x_plan-title p {
        font-size: 14px;
    }

    .x_plan-card button {
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .x_img {
        width: 100%;
        max-width: 100px;
        margin-top: 5px;
    }

    .x_img2 {
        width: 50%;
        height: auto;
        margin-top: 20px;
    }

    .div_c {
        font-size: 16px;
        line-height: 24px;
    }

    .x_0 {
        width: 65px;
        height: 60px;
    }

    .x_5 {
        width: 58%;
        height: 60px;
    }

    .desktop-menu,
    .auth-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-img {
        /* width: 100%; */
        width: 176px;
        height: 56px;
    }

    .business-title {
        font-size: 30px;
    }

    .info {
        font-size: 14px;
    }

    .business-subtitle {
        margin-bottom: 40px;
    }

    .plan-card {
        height: auto;
        padding: 25px;
    }

    .king-section {
        padding: 30px 0;
    }

    .king-section img {
        max-width: 50%;
        height: auto;
    }

    /* 角色卡片移动端核心适配 - 保持水平布局 */
    .character-card {
        flex-direction: row;
        padding: 10px;
        gap: 12px;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .fits_son {
        margin-bottom: 70px;
    }

    /* 角色图片 - 按比例缩小 */
    .character-img {
        width: 120px;
        height: auto;
        margin-right: 0;
        flex-shrink: 0;
    }

    /* 右侧内容区域 - 占剩余宽度 */
    .character-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* 气泡文本 - 按比例缩小 */
    .character-btn3 {
        padding: 20px 25px 15px;
        font-size: 11px;
        line-height: 1.5;
        max-width: 100%;
        box-sizing: border-box;
        background-size: 100% 100%;
    }

    /* 按钮 - 按比例缩小 */
    .character-btn,
    .character-btn2 {
        width: 100px;
        height: 30px;
        font-size: 12px;
        background-size: 100% 100%;
        line-height: 0px;

    }

    .contact-us {
        padding: 30px 20px;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .contact-form input {
        height: 60px;
        font-size: 14px;
    }

    .contact-form button {
        height: 60px;
        font-size: 16px;
    }

    .contact-qrcode img {
        width: 160px;
        height: 160px;
    }

    .x_plan-card button {
        width: 240px;
        height: 56px;
        font-size: 16px;
    }

    .core-button button {
        width: 280px;
        height: 70px;
        font-size: 20px;
    }
}

/* 小屏手机进一步适配 */
@media (max-width: 480px) {

    /* 角色卡片进一步缩小 */
    .character-card {
        gap: 8px;
        padding: 8px;
    }

    .character-img {
        width: 100px;
    }

    .character-btn3 {
        padding: 15px 20px 10px;
        font-size: 11px;
    }

    .character-btn,
    .character-btn2 {
        width: 90px;
        height: 30px;
        font-size: 11px;
        line-height: 0px;
    }
}