/* ===== 全局样式 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 按钮样式 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, #754fbf 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(117, 79, 191, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(117, 79, 191, 0.4);
}

.btn-secondary {
    background: #f8f9fa;
    color: #754fbf;
    border: 2px solid #754fbf;
}

.btn-secondary:hover {
    background: #754fbf;
    color: white;
}

.btn-login {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-login:hover {
    background: #f8f9fa;
}

.btn-trial {
    background: #754fbf;
    color: white;
}

.btn-trial:hover {
    background: #663d9e;
}

/* ===== 导航栏 ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
}

.nav {
    height: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    flex-shrink: 0;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #754fbf;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #754fbf;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

/* ===== 联系我们二维码弹窗 ===== */
.contact-dropdown {
    position: relative;
}

.qrcode-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.qrcode-popup::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.qrcode-popup::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.1);
}

.contact-dropdown:hover .qrcode-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.qrcode-content {
    text-align: center;
}

.qrcode-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.qrcode-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #eee;
}

.qrcode-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* ===== 英雄区域 ===== */
.hero-section {
    margin-top: 80px;
    position: relative;
    height: 673px;
    overflow: hidden;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: #444;
    z-index: 2;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #754fbf;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ===== 内容区域 ===== */
.features-section {
    margin-top: 100px;
}
.solutions-section {
    padding: 388px 0;
    padding-top: 388px;
    padding-bottom: 200px;
    padding-left: 0px;
    padding-right: 0px;
    background: #fafafa;
}

.positions-section {
    height: 686px;
    padding: 80px 0;
    background: url('assets/images/p4.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.positions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.positions-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

/* ===== 特色项目 ===== */
.feature-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-item.feature-reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    max-width: 500px;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.feature-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f8f9fa;
    color: #666;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag:hover {
    background: #e9ecef;
    color: #754fbf;
    transform: translateY(-1px);
}

.tag.active {
    background: #754fbf;
    color: white;
    border-color: #754fbf;
    box-shadow: 0 2px 8px rgba(117, 79, 191, 0.3);
}

.dsxxx{
    list-style: none;
    /* margin: 24px 0; */
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    /* flex: 1; */
    width: 389px;
    margin-left: 44px;
    /* margin-left: 24px; */
}

.dsxxx.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dsxxx li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.dsxxx strong {
    color: #754fbf;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.feature-list.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.feature-list li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.check {
    position: absolute;
    left: 0;
    top: 0;
    color: #754fbf;
    font-weight: bold;
}

.feature-list strong {
    color: #754fbf;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===== 岗位优势区域 ===== */
.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1148px;
    margin-left: auto;
    margin-right: auto;
}

.position-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.position-item:hover {
    transform: translateY(-5px);
}

.position-item.active {
    transform: translateY(-5px);
}

.position-item.active .position-avatar {
    box-shadow: 0 8px 25px rgba(117, 79, 191, 0.3);
    border: 3px solid #754fbf;
}

.position-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.position-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(117, 79, 191, 0.2);
}

.position-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.position-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.highlight {
    color: #754fbf;
}

.position-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 12px;
}

.position-description {
    font-size: 16px;
    color: #888;
}

/* ===== CTA区域 ===== */
.cta-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.cta-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ===== 页脚 ===== */
.footer {
    background: rgba(243, 247, 253, 1);
    color: #333;
    padding: 40px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.company-info p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.company-info strong {
    color: #333;
    font-weight: 500;
}

.contact-info p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.footer-qrcodes {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-qrcode .qrcode-image {
    width: 100px;
    height: 100px;
    display: block;
    margin-bottom: 8px;
}

.qrcode-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
}

.footer-icp {
    color: #999;
    font-size: 12px;
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-buttons {
        gap: 8px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .feature-item {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }

    .feature-item.feature-reverse {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-title {
        font-size: 24px;
    }

    .positions-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
    }

    .position-avatar {
        width: 60px;
        height: 60px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    /* 移动端二维码弹窗样式 */
    .contact-dropdown .qrcode-popup.show {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .contact-dropdown .qrcode-popup {
        position: static;
        transform: none;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .contact-dropdown .qrcode-popup::before,
    .contact-dropdown .qrcode-popup::after {
        display: none;
    }

    /* 移动端ddd布局调整 */
    .ddd {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 12px;
        padding: 16px;
        height: auto;
        margin-left: 16px;
    }

    /* 移动端岗位内容切换样式 */
    .position-content.active {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }

    .tt {
        flex-direction: column;
        height: auto;
        width: 100%;
        padding: 20px;
    }

    .ttt {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }

    /* 移动端悬浮元素样式 */
    .floating-element {
        width: 90%;
        height: auto;
        min-height: 300px;
        top: calc(100% - 150px);
        /* 覆盖部分内容 */
        padding: 30px 20px;
    }

    .floating-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .floating-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .floating-content .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* 调整解决方案区域在移动端的间距 */
    .solutions-section {
        margin-top: 150px;
        /* 减少上边距 */
        padding-top: 80px;
    }

    /* 移动端footer样式 */
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-left {
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-qrcodes {
        justify-content: center;
        gap: 15px;
    }

    .footer-qrcode .qrcode-image {
        width: 80px;
        height: 80px;
    }

    /* 移动端footer-bottom样式 */
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    /* 行业按钮移动端样式 */
    .industry-buttons {
        gap: 12px;
        margin-bottom: 40px;
    }

    .industry-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-title {
        font-size: 20px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* 小屏幕悬浮元素样式 */
    .floating-element {
        width: 95%;
        min-height: 250px;
        top: calc(100% - 125px);
        /* 覆盖部分内容 */
        padding: 20px 15px;
    }

    .floating-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .floating-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .floating-content .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .solutions-section {
        margin-top: 287px;
        /* 250px(最小高度) + 37px(距离) */
        padding-top: 60px;
    }

    /* 小屏幕footer样式 */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-top {
        gap: 25px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .company-info p,
    .contact-info p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-qrcode .qrcode-image {
        width: 80px;
        height: 80px;
    }

    .footer-qrcodes {
        gap: 10px;
    }

    .footer-qrcode .qrcode-image {
        width: 70px;
        height: 70px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-icp {
        font-size: 11px;
    }

    /* 行业按钮小屏幕样式 */
    .industry-buttons {
        gap: 8px;
        margin-bottom: 30px;
    }

    .industry-btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 20px;
    }
}

.nav-menu.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    margin: 10px 0;
}

.tt {
    margin-top: 26px;
    height: 148px;
    width: 1148px;
    opacity: 1;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(249, 252, 255, 1) 0%, rgba(241, 247, 255, 1) 100%);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.ttt {
    height: 148px;
    width: 106px;
    margin-left: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ttt .job-btn {
    background: rgba(225, 236, 254, 1);
    color: rgba(105, 105, 105, 1);
    border-radius: 4px;
    padding: 6px 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    border: none;
    margin-top: 8px;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.ttt .job-btn:hover {
    background: rgba(117, 79, 191, 0.1);
    color: #754fbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(117, 79, 191, 0.2);
}

.ddd {
    flex: 1;
    height: 148px;
    margin-left: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    align-items: center;
}

.ddt {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/* 岗位内容切换样式 */
.position-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.position-content.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

/* ===== 悬浮元素 ===== */
.floating-element-price {
    position: absolute;
    top: 139px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: #333;
    padding: 8px 20px;
    border-radius: 8px;
    box-shadow: none;
    z-index: 10;
    font-size: 36px;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 47px;
}
.floating-element {
    position: absolute;
    top: 543px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: #333;
    padding: 8px 20px;
    border-radius: 8px;
    box-shadow: none;
    z-index: 10;
    font-size: 36px;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 47px;
    height: 435px;
    width: 832px;
    background-image: url('assets/images/laptop.png');
}

.floating-element:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: none;
}

.floating-text {
    color: #333;
    font-weight: 400;
    font-size: 36px;
    line-height: 47px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .floating-element {
        top: 120px;
        padding: 6px 16px;
        font-size: 28px;
        line-height: 37px;
    }

    .floating-text {
        font-size: 28px;
        line-height: 37px;
    }
}

@media (max-width: 480px) {
    .floating-element {
        top: 110px;
        padding: 5px 12px;
        font-size: 24px;
        line-height: 31px;
    }

    .floating-text {
        font-size: 24px;
        line-height: 31px;
    }
}

/* ===== 价格页面样式 ===== */
.page-hero {
    /* padding: 120px 0 80px; */
    height: 2640px;
    width: 100%;
    background: white;
    text-align: center;
    position: relative;
}

/* 创建一个覆盖层来显示price.png图片 */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    /* 只显示700px高度的图片 */
    background-image: url('assets/images/price.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #754fbf 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 占位元素样式 */
.placeholder-section {
    position: absolute;
    top: 257px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
}

.placeholder-container {
    width: 1300px;
    height: 1500px;
    background: transparent;
    /* 透明背景 */
    border: none;
    /* 移除边框 */
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    /* 明确设置flex方向 */
    flex-wrap: wrap;
    /* 允许换行 */
    align-items: flex-start;
    /* 改为flex-start以便更好地控制子元素 */
    justify-content: flex-start;
    /* 改为flex-start以便更好地控制子元素 */
    color: #999;
    font-size: 16px;
    position: relative;
    padding: 20px;
    /* 添加内边距 */
    gap: 16px;
    /* 添加子元素间距 */
}

.placeholder-container::before {
    content: none;
    /* 移除伪元素内容 */
    position: absolute;
    top: 10px;
    left: 10px;
    transform: none;
    text-align: left;
    line-height: 1.5;
    font-size: 14px;
    color: #ccc;
    z-index: 1;
}

/* 为placeholder-container的子元素添加基础样式 */
.placeholder-container>div {
    flex: 0 0 auto;
    /* 防止子元素被拉伸 */
    min-width: 0;
    /* 允许子元素收缩 */
    min-height: 0;
    /* 允许子元素收缩 */
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 价格方案区域 */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #754fbf;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #754fbf 0%, #8b5cf6 100%);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 16px 0 16px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 20px;
    color: #666;
    margin-right: 4px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #754fbf;
}

.period {
    font-size: 16px;
    color: #666;
    margin-left: 4px;
}

.plan-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 16px;
}

.pricing-footer {
    text-align: center;
}

.trial-text {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
}

.trial-link {
    color: #754fbf;
    text-decoration: none;
    font-weight: 500;
}

.trial-link:hover {
    text-decoration: underline;
}

/* 功能对比区域 */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-table {
    margin-top: 60px;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    background: linear-gradient(135deg, #754fbf 0%, #8b5cf6 100%);
    color: white;
    padding: 20px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #333;
}

.comparison-table .check {
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.comparison-table .partial {
    color: #f59e0b;
    font-weight: 500;
}

.comparison-table .cross {
    color: #ef4444;
    font-weight: bold;
    font-size: 18px;
}

/* 常见问题区域 */
.faq-section {
    position: absolute;
    top: 1880px;
    left: 0;
    right: 0;
    padding: 80px 0;
    background: white;
    z-index: 10;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .amount {
        font-size: 36px;
    }

    .comparison-table {
        margin-top: 40px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-item {
        padding: 24px;
    }

    /* 行业按钮移动端样式 */
    .industry-buttons {
        gap: 12px;
        margin-bottom: 40px;
    }

    .industry-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .pricing-section,
    .comparison-section,
    .faq-section {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .amount {
        font-size: 32px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 4px;
        font-size: 11px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    /* 行业按钮小屏幕样式 */
    .industry-buttons {
        gap: 8px;
        margin-bottom: 30px;
    }

    .industry-btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 20px;
    }
}

/* ===== 新价格区域重构样式 ===== */
.new-pricing-layout {
    background: linear-gradient(180deg, #f6f7fb 0%, #e9eafd 100%);
    padding: 60px 0 80px;
}

.pricing-flex {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-features-list {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(120, 100, 200, 0.08);
    padding: 32px 24px;
    margin-top: 32px;
}

.feature-group {
    margin-bottom: 32px;
}

.feature-group-title {
    font-weight: 600;
    font-size: 16px;
    color: #754fbf;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-group-title .icon {
    font-size: 18px;
}

.feature-item {
    font-size: 15px;
    color: #333;
    padding: 7px 0 7px 24px;
    position: relative;
}

.feature-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.pricing-cards-list {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: flex-end;
}

.pricing-card.new-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e9eafd 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(120, 100, 200, 0.10);
    padding: 36px 28px 24px 28px;
    min-width: 260px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card.new-card.featured {
    background: linear-gradient(135deg, #f3eaff 0%, #e0e7ff 100%);
    box-shadow: 0 12px 40px 0 rgba(120, 100, 200, 0.18);
    z-index: 2;
    transform: scale(1.04);
}

.pricing-card.new-card.flagship {
    background: linear-gradient(135deg, #a18fff 0%, #754fbf 100%);
    color: #fff;
}

.plan-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #333;
    text-align: center;
}

.pricing-card.flagship .plan-title {
    color: #fff;
}

.plan-title .badge {
    font-size: 12px;
    font-weight: 600;
    border-radius: 10px;
    padding: 2px 10px;
    margin-left: 8px;
    vertical-align: middle;
}

.badge-popular {
    background: linear-gradient(90deg, #ffe6a7 0%, #ffd700 100%);
    color: #754fbf;
}

.badge-strong {
    background: linear-gradient(90deg, #ffd6e0 0%, #ffb6c1 100%);
    color: #754fbf;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #754fbf;
    text-align: center;
}

.pricing-card.flagship .plan-price {
    color: #fff;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 500;
    margin-right: 2px;
}

.plan-price .period {
    font-size: 16px;
    font-weight: 400;
    margin-left: 2px;
}

.btn.new-buy-btn {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    background: #fff;
    color: #754fbf;
    border: 1.5px solid #754fbf;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}

.btn.new-buy-btn:hover {
    background: #f3eaff;
    color: #4b2fa6;
}

.btn.new-buy-btn.dark {
    background: #22223b;
    color: #fff;
    border: none;
}

.btn.new-buy-btn.dark:hover {
    background: #754fbf;
    color: #fff;
}

.btn.new-buy-btn.light {
    background: #fff;
    color: #754fbf;
    border: 1.5px solid #fff;
}

.btn.new-buy-btn.light:hover {
    background: #f3eaff;
    color: #4b2fa6;
}

.plan-features {
    width: 100%;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.plan-feature {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card.flagship .plan-feature {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.plan-feature:last-child {
    border-bottom: none;
}

.plan-feature .check {
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
}

.plan-feature {
    font-weight: 500;
}

@media (max-width: 1024px) {
    .pricing-flex {
        flex-direction: column;
        gap: 24px;
    }

    .pricing-features-list {
        margin: 0 auto 24px auto;
    }

    .pricing-cards-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-flex {
        flex-direction: column;
        gap: 16px;
    }

    .pricing-features-list {
        padding: 20px 10px;
        min-width: 0;
        max-width: 100%;
    }

    .pricing-cards-list {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .pricing-card.new-card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

/* 响应式设计：确保placeholder-container在不同屏幕尺寸下的flex布局 */
@media (max-width: 1200px) {
    .placeholder-container {
        width: 90%;
        max-width: 1000px;
        height: auto;
        min-height: 800px;
    }
}

@media (max-width: 768px) {
    .placeholder-container {
        width: 95%;
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        /* 在小屏幕上改为垂直布局 */
    }

    .placeholder-container>div {
        width: 100%;
        /* 在小屏幕上占满宽度 */
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .placeholder-container {
        width: 98%;
        padding: 10px;
        gap: 8px;
    }
}

/* 价格表格列样式 */
.pricing-column {
    display: flex;
    flex-direction: column;
    font-size: 0;
    /* 消除子元素之间的空白间隙 */
    transition: all 0.3s ease;
    /* 添加过渡效果 */
    border-radius: 8px;
    /* 为所有列添加统一的圆角 */
    overflow: hidden;
    /* 确保内容不超出圆角边界 */
    border: 1px solid #e9ecef;
    /* 为所有列添加统一的边框 */
}

.pricing-column .pricing-header,
.pricing-column .pricing-body {
    font-size: 16px;
    /* 恢复字体大小 */
}

.pricing-column .pricing-header {
    margin-bottom: 0;
    /* 确保没有底部间距 */
    border-radius: 8px 8px 0 0;
    /* 头部圆角 */
    border-bottom: none;
    /* 移除底部边框，避免重复 */
}

.pricing-column .pricing-body {
    margin-top: 0;
    /* 确保没有顶部间距 */
    border-radius: 0 0 8px 8px;
    /* 身体圆角 */
    border-top: none;
    /* 移除顶部边框，避免重复 */
}

/* 鼠标悬停效果 - 排除第一列 */
.pricing-column:nth-child(n+2):hover {
    transform: translateY(-8px);
    /* 向上移动效果 */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    /* 阴影效果 */
    z-index: 10;
    /* 确保悬停的列在最上层 */
}

/* 悬停时头部和身体的样式调整 */
.pricing-column:nth-child(n+2):hover .pricing-header {
    border-radius: 8px 8px 0 0;
    /* 头部圆角 */
}

.pricing-column:nth-child(n+2):hover .pricing-body {
    border-radius: 0 0 8px 8px;
    /* 身体圆角 */
    border-left: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

/* 第4列（旗舰版）悬停时去掉身体部分的边框 */
.pricing-column:nth-child(4):hover .pricing-body {
    border-left: none;
    border-right: none;
    border-bottom: none;
}

/* 第2列和第3列悬停时也去掉身体部分的边框 */
.pricing-column:nth-child(2):hover .pricing-body,
.pricing-column:nth-child(3):hover .pricing-body {
    border-left: none;
    border-right: none;
    border-bottom: none;
}

/* 行业按钮样式 */
.industry-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.industry-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #666;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.industry-btn:hover {
    background: #f5f5f5;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.industry-btn.active {
    background: #000;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

