.agent-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-top: 45px;
}

.agent-header {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
    color: #5a5a5a;
    position: relative;
}

.agent-header span {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.agent-header span::after {
    content: '';
    width: 100px;
    height: 4px;
    background: #5fa8b8;
    display: block;
    margin: 25px auto 0;
    border-radius: 2px;
}

.agent-header p {
    font-size: 17px;
    font-weight: 400;
    margin-top: 15px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Tab导航样式 */
.agent-tabs {
    background: #fff;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    /* background: #f8f9fa; */
    padding: 30px 40px 0;
    border-bottom: 3px solid #e2e8f0;
}

.tab-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    margin: 0 5px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tab-item i {
    font-size: 24px;
    color: #718096;
    transition: all 0.3s ease;
}

.tab-item span {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s ease;
}

.tab-item:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.tab-item:hover i {
    color: #ff0000;
    transform: scale(1.1);
}

.tab-item.active {
    background: #fff;
    border-color: #ff0000;
    border-bottom: none;
    transform: translateY(0);
    box-shadow: 0 -4px 12px rgba(14, 165, 233, 0.15);
    z-index: 10;
}

.tab-item.active i {
    color: #ff0000;
    transform: scale(1.15);
}

.tab-item.active span {
    color: #ff0000;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
    z-index: 11;
}

.tab-content {
    background: #fff;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 代理级别升级内部Tab样式 */
.agent-upgrade-tabs {
    padding: 40px;
}

.upgrade-tab-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.upgrade-tab-item {
    padding: 15px 40px;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.upgrade-tab-item i {
    font-size: 20px;
    color: #718096;
    transition: all 0.3s ease;
}

.upgrade-tab-item span {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s ease;
}

.upgrade-tab-item:hover {

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

    border-color: #ff0000;
}

.upgrade-tab-item:hover i,
.upgrade-tab-item:hover span {
    color: #ff0000;
}

.upgrade-tab-item.active {
    background: linear-gradient(135deg, #ff0000 0%, #d41906 100%);
    border-color: #e97d0e;
    box-shadow: 0 8px 24px rgb(233 14 14 / 30%);
}

.upgrade-tab-item.active i,
.upgrade-tab-item.active span {
    color: #fff;
}

.upgrade-tab-content {
    position: relative;
}

.upgrade-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.upgrade-tab-pane.active {
    display: block;
}

.agent-section {
    margin-bottom: 0;
    position: relative;
    background: #fff;

}

.agent-section h2 {
    font-size: 28px;
    color: #1a202c;
    margin: 0 0 15px;
    padding-bottom: 20px;
    position: relative;
    font-weight: 700;
    text-align: center;
}

.agent-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 2px;
}

.level-desc {
    font-size: 16px;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 代理级别样式 */
.agent-levels {
    padding: 40px;
    background: #fafbfc;
}

.agent-levels-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.agent-level-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

.agent-level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff0000 0%, #d43d06 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.agent-level-card:hover::before {
    transform: scaleX(1);
}

.agent-level-card:hover {

    box-shadow: 0 16px 40px rgb(233 46 14 / 20%);

    border-color: #e95f0e;
}

.agent-level-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.agent-level-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: currentColor;
    border-radius: 2px;
    opacity: 0.3;
}

.agent-level-card p {
    font-size: 15px;
    color: #718096;

    min-height: 45px;
    line-height: 1.6;
}

.agent-discount {
    font-size: 42px;
    color: #ff0000;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1;
}

.agent-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.agent-features li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #4a5568;
    font-size: 15px;
    transition: all 0.25s ease;
    line-height: 1.6;
}

.agent-features li:hover {
    transform: translateX(3px);
    color: #e90e0e;
}

.agent-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(233 58 14 / 10%);
    border-radius: 50%;
}

/* 预存款升级样式 */
.agent-deposit {
    background: #fafbfc;
    padding: 40px;
}

.deposit-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.deposit-desc {
    font-size: 16px;
    color: #718096;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.deposit-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.deposit-level-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

.deposit-level-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff0000 0%, #ffb500 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.deposit-level-item:hover::before {
    transform: scaleX(1);
}

.deposit-level-item:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 16px 40px #ffe3e3;
    border-color: #ff9300;
    background: #fff;
}

.deposit-level-item .deposit-amount:first-child {
    font-size: 13px;
    color: #ffffff;
    padding: 6px 16px;
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    border-radius: 20px 0 20px 0;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 101, 101, 0.3);
}

.deposit-level-item .deposit-amount:nth-child(2) {
    font-size: 38px;
    color: #ff5722;
    font-weight: 700;
    margin: 25px 0;
    line-height: 1;
}

.deposit-level {
    font-size: 20px;
    color: #2d3748;
    font-weight: 600;
    margin: 20px 0 15px;
    position: relative;
}

.deposit-level::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000 0%, #ffc622 100%);
    border-radius: 2px;
}

.deposit-benefit {
    font-size: 15px;
    color: #718096;
    border-radius: 20px;
    display: inline-block;
    margin-top: 25px;
    font-weight: 600;
    line-height: 1.6;
}

.deposit-action {
    text-align: center;
    margin-top: 40px;
}

.deposit-tip {
    font-size: 14px;
    color: #a0aec0;
    margin-top: 20px;
}

/* 分销网站样式 */
.agent-distribution {
    padding: 40px;
    background: transparent;
}

/* 价格展示横幅 */
.distribution-price-banner {
    background: linear-gradient(135deg, #ff7800 0%, #d40b06 100%);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 12px 32px rgb(233 54 14 / 25%);
    position: relative;
    overflow: hidden;
}

.distribution-price-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.distribution-price-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.price-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.price-info h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.price-info p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.price-display {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 50px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.price-tag {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.open-btn {
    background: #fff;
    color: #e90e0e;
    border: none;
    font-size: 16px;
    padding: 14px 40px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.open-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.open-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.open-btn:hover i {
    transform: translateX(3px);
}

/* 优势卡片网格 */
.distribution-advantages {
    margin-bottom: 50px;
}

.advantages-title {
    font-size: 28px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.advantages-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000 0%, #ff5722 100%);
    border-radius: 2px;
}

.advantages-grid-distribution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-item-distribution {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.advantage-item-distribution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722 0%, #d40b06 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-item-distribution:hover::before {
    transform: scaleX(1);
}

.advantage-item-distribution:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.12);
    border-color: #ff5722;
    background: #fafbfc;
}

.advantage-icon-distribution {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffa5a5 0%, #d45206 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgb(233 14 14 / 30%);
}

.advantage-item-distribution:hover .advantage-icon-distribution {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 28px rgb(233 76 14 / 40%);
}

.advantage-icon-distribution i {
    font-size: 36px;
    color: #fff;
}

.advantage-item-distribution h4 {
    font-size: 19px;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-item-distribution p {
    font-size: 15px;
    color: #718096;
    line-height: 1.8;
    margin: 0;
}

/* 按钮样式统一 */
.level-btn {
    background: linear-gradient(135deg, #ff0000 0%, #d43d06 100%);
    color: #fff;
    border: none;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: auto;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgb(233 61 14 / 30%);
}

.level-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.level-btn:hover {

    box-shadow: 0 12px 28px rgb(233 46 14 / 40%);
}

.level-btn:hover::before {
    left: 100%;
}

.deposit-btn {
    background: linear-gradient(135deg, #ff0000 0%, #ffd800 100%);
    color: #fff;
    border: none;
    font-size: 17px;
    padding: 16px 48px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 8px 20px rgb(233 106 14 / 30%);
}

.deposit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgb(233 46 14 / 40%);
}

/* 优势介绍部分样式 */
.agent-advantages {
    background: #fff;

}

.advantages-content {
    width: 1380px;
    margin: 0 auto;
}

.advantages-intro {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.advantages-intro i {
    color: #f1c40f;
    margin-right: 10px;
    animation: starRotate 3s infinite linear;
}

.platform-support, .target-users {
    margin-bottom: 50px;
}

.platform-support h3, .target-users h3 {
    font-size: 28px;
    color: #2d3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-support h3 i, .target-users h3 i {
    color: #3498db;
    font-size: 24px;
}

.platform-support h3::after, .target-users h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.platform-list {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    justify-content: center;
}

.platform-group {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.platform-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.platform-group h4 {
    font-size: 20px;
    color: #2d3e50;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.platform-group h4 i {
    color: #3498db;
}

.platform-group ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.platform-group li {
    color: #666;
    margin: 15px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.platform-group li:hover {
    color: #3498db;
    transform: translateX(5px);
}

.platform-group li i {
    font-size: 18px;
    color: #3498db;
}

.platform-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.platform-desc i {
    color: #3498db;
    font-size: 20px;
    animation: spin 4s infinite linear;
}

.user-groups {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.user-group-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.user-group-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 24px;
    color: #fff;
}

.user-group-item:hover .icon-wrapper {
    transform: rotateY(180deg);
}

.user-group-item h4 {
    font-size: 20px;
    color: #2d3e50;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.user-group-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #3498db;
}

.user-group-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.conclusion {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.8;
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(to right, rgba(52, 152, 219, 0.05), rgba(46, 204, 113, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.conclusion i {
    color: #3498db;
    font-size: 20px;
    animation: handshake 2s infinite;
}

/* 动画效果 */
@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes handshake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

/* 优势介绍部分新样式 */
.agent-advantages {
    background: transparent;
    padding: 40px;
}

.advantages-content {
    max-width: 100%;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722 0%, #ff0000 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #ff5722;
    background: #fafbfc;
}

.advantage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffcf00 0%, #ff0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 16px rgba(113, 128, 150, 0.2);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgb(150 132 113 / 30%);
}

.advantage-icon i {
    font-size: 40px;
    color: #fff;
}

.advantage-card h3 {
    font-size: 19px;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p {
    color: #718096;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* 平台部分样式 */
.platform-section {
    background: #fafbfc;
    padding: 50px 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.platform-section h3 {
    font-size: 19px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 500;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    justify-items: center;
}

.platform-item {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 20px;
    width: 124px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-item:hover::before {
    opacity: 1;
}

.platform-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #fafbfc;
    border-color: currentColor;
}

.platform-item span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 18px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.platform-item:nth-child(1) {
    color: #ff0000;
}
.platform-item:nth-child(1) span:first-child {
    background: linear-gradient(135deg, #ff6b6b, #ff0000);
}

.platform-item:nth-child(2) {
    color: #1a202c;
}
.platform-item:nth-child(2) span:first-child {
    background: linear-gradient(135deg, #2d3748, #1a202c);
}

.platform-item:nth-child(3) {
    color: #ff6b00;
}
.platform-item:nth-child(3) span:first-child {
    background: linear-gradient(135deg, #ffc000, #ff6b00);
}

.platform-item:nth-child(4) {
    color: #ff1493;
}
.platform-item:nth-child(4) span:first-child {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.platform-item:nth-child(5) {
    color: #e3b21f;
}
.platform-item:nth-child(5) span:first-child {
    background: linear-gradient(135deg, #ffc000, #e3b21f);
}

.platform-item:nth-child(6) {
    color: #ff0000;
}
.platform-item:nth-child(6) span:first-child {
    background: linear-gradient(135deg, #ff6b6b, #ff0000);
}

.platform-item:nth-child(7) {
    color: #2d3748;
}
.platform-item:nth-child(7) span:first-child {
    background: linear-gradient(135deg, #718096, #2d3748);
}

.platform-item span:last-child {
    display: block;
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
}

.platform-item:hover span:first-child {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* 目标用户部分样式 */
.target-section {
    margin-bottom: 50px;
    background: #fafbfc;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.target-section h3 {
    font-size: 19px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 500;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.target-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #cbd5e0 0%, #a0aec0 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.target-card:hover::before {
    transform: scaleY(1);
}

.target-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.target-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 6px 16px rgba(113, 128, 150, 0.2);
}

.target-card:hover .target-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(113, 128, 150, 0.3);
}

.target-icon i {
    font-size: 28px;
    color: #fff;
}

.target-info {
    flex: 1;
}

.target-info h4 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.target-info p {
    color: #718096;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* CTA部分样式 */
.cta-section {
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: #ff0602;
    margin: 0;
}

.cta-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 骨架屏样式 */
.skeleton-agent-header {
    height: 40px;
    width: 200px;
    margin: 0 auto 15px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-agent-desc {
    height: 20px;
    width: 300px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 6px;
}

.skeleton-agent-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 40px 30px;
}

.skeleton-agent-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skeleton-agent-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    margin-bottom: 20px;
}

.skeleton-agent-title {
    height: 20px;
    width: 120px;
    background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-agent-text {
    height: 16px;
    width: 100%;
    background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .agent-container {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .agent-header span {
        font-size: 24px;
    }

    .agent-section {
        padding: 30px 20px;
    }

    .advantages-grid,
    .agent-levels-table,
    .deposit-levels,
    .target-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .distribution-content {
        flex-direction: column;
        padding: 30px 20px;
    }

    .target-card {
        flex-direction: column;
        text-align: center;
    }

    .target-icon {
        margin: 0 auto 15px;
    }

    /* Tab响应式 */
    .tab-nav {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .tab-item {
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
        border: 2px solid #e2e8f0;
    }

    .tab-item.active::after {
        display: none;
    }

    .upgrade-tab-nav {
        flex-direction: column;
        gap: 15px;
    }

    .upgrade-tab-item {
        min-width: 100%;
    }

    .agent-upgrade-tabs {
        padding: 20px;
    }

    .agent-advantages,
    .agent-levels,
    .agent-deposit,
    .agent-distribution {
        padding: 20px;
    }

    /* 分销价格横幅响应式 */
    .distribution-price-banner {
        padding: 30px 20px;
    }

    .price-banner-content {
        flex-direction: column;
        gap: 30px;
    }

    .price-info h3 {
        font-size: 24px;
    }

    .price-display {
        padding: 30px;
        width: 100%;
    }

    .advantages-grid-distribution {
        grid-template-columns: 1fr;
    }
}
