/* 产品页面专用样式 */

/* 产品分类标签页样式 */
.product-tabs-section {
    background-color: #000;
    padding: 40px 0;
    border-bottom: 1px solid #333;
}

.product-tabs-container {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 0;
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #333;
    overflow: hidden;
}

.tab-item {
    flex: 1;
    padding: 16px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
}

.tab-item span {
    color: #999;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.tab-item:hover span {
    color: #fff;
}

.tab-item.active span {
    color: #fff;
    font-weight: 600;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb700 0%, #ffd700 50%, #ffb700 100%);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* 产品卡片样式 */
.product-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    /* min-height: 350px; */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    aspect-ratio: 4 / 3;
}

/* 新卡片重新设计 */
.product-card.redesigned {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    padding: 28px 28px 24px 28px;
    background: linear-gradient(135deg, rgba(55,45,20,0.55) 0%, rgba(25,20,10,0.6) 100%);
    border: 1px solid rgba(255, 215, 120, 0.25);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.product-card.redesigned:hover { 
    border-color: rgba(255,215,120,0.5); 
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    transform: translateY(-5px);
}

.product-card.redesigned .product-main { 
    flex: 1; 
    margin-bottom: 20px;
}

.product-card.redesigned .product-name { 
    font-size: clamp(1.4rem, 2.2vw, 1.8rem); 
    font-weight: 700; 
    color: #fff; 
    margin: 0 0 8px; 
    line-height: 1.3; 
}

.product-card.redesigned .product-subtitle { 
    font-size: clamp(0.9rem, 1.2vw, 1.1rem); 
    color: #ffcc66; 
    font-weight: 600; 
    margin-bottom: 15px; 
}

.product-card.redesigned .product-desc { 
    font-size: clamp(0.85rem, 1vw, 1rem); 
    line-height: 1.4; 
    color: rgba(255,255,255,0.85); 
    overflow: hidden; 
    text-align: justify;
}

.product-card.redesigned .product-bottom { 
    position: relative;
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
    margin-top: auto;
    height: auto;
}

.product-card.redesigned .product-metrics { 
    position: relative;
    z-index: 2;
    display: flex; 
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none; /* Make transparent to mouse events */
}

.product-card.redesigned .period-desc { 
    font-size: 1rem; 
    font-weight: 600; 
    color: #fff; 
    letter-spacing: 0.5px; 
    margin-bottom: 8px;
}

.product-card.redesigned .expected-desc { 
    font-size: 1rem; 
    font-weight: 600; 
    color: #ffcc66; 
    display: flex; 
    align-items: baseline; 
    gap: 6px; 
}

.product-card.redesigned .expected-desc .expected-apy { 
    font-size: 1.2rem; 
    color: #ffd700; 
    font-weight: 700;
}

/* 小图表区域 */
.chart-wrapper { 
    position: relative; 
    width: 120px;
    height: 80px;
    cursor: pointer; 
    border-radius: 8px;
    overflow: hidden;
}

.mini-chart { 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%; 
    height: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
}

.product_head { 
    display: flex;
    flex-direction: row; 
    justify-content: space-between; 
    align-items: stretch; 
    margin-bottom: 15px;
}
.product_title_section {
  flex: 1;
}
.product-logo {
    display: flex;
    align-items: center; /* 垂直居中图片 */
}
.product_logo img {
  max-height: 100%;
  height: 60px;
}
/* 移动端图表调整 */
@media (max-width: 768px) {
    .chart-wrapper {
        width: 100px;
        height: 70px;
    }
    
    .chart-wrapper img {
        width: 35px !important;
        height: 35px !important;
        top: 8px !important;
        right: 8px !important;
    }
    
    .product-card.redesigned {
        min-height: 280px;
        padding: 24px 20px;
        aspect-ratio: unset;
    }
}

/* 固收类产品专用样式 */
.class-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 15, 10, 0.9) 100%);
    min-height: 100vh;
    padding: 60px 0;
    color: #fff;
}

.class-header {
    margin-bottom: 50px;
}

.class-header .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(121deg, #fdf7e0 0%, #fbc92f 113.87%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 20px;
}

.class-header .section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* 产品网格布局 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 移动端响应式 - 每行一个卡片 */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .fixed-income-content {
        padding: 40px 0;
    }
}

/* 产品列表区域背景 */
.frm_product_list {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 30, 30, 0.9) 100%);
    /* min-height: 600px; */
    padding: 50px 0;
}

/* 三个并列产品面板 */
.product-panels-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.product-panel {
    flex: 1;
    display: none; /* 仅激活的显示 */
    animation: fadeIn 0.4s ease;
}

.product-panel.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

/* 让内部 row 不挤满，保持卡片样式 */
.product-panel .product-grid { margin-top: 10px; }


@media (max-width: 992px) {
    .product-panels-wrapper { flex-direction: column; }
    .product-panel { width: 100%; }
}

.frm_product_list .section-title {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.frm_product_list .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    text-align: left;
    padding: 0 40px;
}

/* 产品概述区域样式 */
.product-overview-section {
    margin-bottom: 50px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.overview-header {
    margin-bottom: 20px;
}

.toggle-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
}

.toggle-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

.toggle-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.toggle-btn.expanded .toggle-icon {
    transform: rotate(180deg);
}

.section-content {
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-content p {
    margin-bottom: 16px;
    text-align: center;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.collapsed-content {
    margin-bottom: 0;
}


.product-category-content {
    height: 60%;
}

.left-content, .right-content {
    width: 50%;
    height: 100%;
}

.category-title-cn {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: bold;
    background: linear-gradient(121deg, #fdf7e0 0%, #fbc92f 113.87%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-title-en {
    font-size: clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(121deg, #888 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 300;
    text-align: center;
}

.text-center {
    text-align: center;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-tabs-container {
        flex-direction: column;
    }
    
}


.aggressive-equity-product {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* height: 100%; */
    width: 85%;
    margin: 0 auto;
}

.aggressive-equity-product-part {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 40%;
    flex: 1;
}

.venture-capital-product {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* height: 100%; */
    width: 85%;
    margin: 0 auto;
}

.venture-capital-product-part {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 40%;
    flex: 1;
}

@media (max-width: 768px) {


    .venture-capital-product {
        display: block;
        /* flex-direction: column; */
        /* justify-content: center; */
        /* height: 100%; */
        /* width: 85%; */
        /* height: auto; */
        width: 100%;
        margin: 0 auto;
    }

    .venture-capital-product-part {
        display: block;
        width: 100%;
        margin: 20px 0;
        /* margin-bottom: 30px; */
    }

}

/* 新增：重叠卡片样式 */
.equity-description-cards {
    position: relative;
    width: 100%;
    height: 100%;;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 400px; */
    /* margin: 20px 0; */
}

.description-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* height: 280px; */
    /* background: rgba(42, 42, 42, 0.95);  */
    border: 1px solid rgba(255, 204, 102, 0.3);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 16/5.6;
}

.description-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 204, 102, 0.6);
}

.description-card .card-title {
    color: #ffcc66;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 204, 102, 0.2);
}

.description-card .card-content {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    
    
    .description-card .card-title {
        font-size: 18px;
    }
    
    .description-card .card-content {
        font-size: 13px;
    }
}

/* 新增：特色卡片样式 */
.feat-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin: 60px 0;
    perspective: 1000px;
}

.aggressive-equity-feat-card {
    border: 1px solid rgba(255, 204, 102, 0.3);
    border-radius: 16px;
    /* backdrop-filter: blur(8px); */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aggressive-equity-feat-card.secondary {
    width: 300px;
    /* height: 420px; */
    background: rgba(35, 35, 35, 0.9);
    border-color: rgba(255, 204, 102, 0.25);
    transform: scale(0.95) translateY(15px);
    /* opacity: 0.9; */
    aspect-ratio: 3/6;
}

.aggressive-equity-feat-card.primary {
    width: 340px;
    /* height: 460px; */
    background: rgba(42, 42, 42, 0.95);
    border-color: rgba(255, 204, 102, 0.5);
    box-shadow: 0 12px 36px rgba(255, 204, 102, 0.15);
    z-index: 2;
    aspect-ratio: 3/6;
}

.aggressive-equity-feat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 204, 102, 0.6);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.aggressive-equity-feat-card.secondary:hover {
    transform: scale(1) translateY(5px);
    /* opacity: 1; */
}

.feat-card-inner {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.feat-title {
    color: #ffcc66;
    /* font-size: 18px; */
    font-weight: 600;
    margin-bottom: 12px;
}

.aggressive-equity-feat-card.primary .feat-title {
    /* font-size: 22px; */
    margin-bottom: 16px;
}

.feat-subtitle {
    color: #ffcc66;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 500;
}

.aggressive-equity-feat-card.primary .feat-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
}

.feat-content1, .feat-content2, .feat-content3 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 12px;
}

.aggressive-equity-feat-card.primary .feat-content1,
.aggressive-equity-feat-card.primary .feat-content2,
.aggressive-equity-feat-card.primary .feat-content3 {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.feat-icon {
    /* height: 30%; */
    width: min(150px, 30%);
    aspect-ratio: 1/1;
    /* width: 80px; */
    /* height: 80px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto;
    /* background: rgba(255, 204, 102, 0.1); */
    /* border-radius: 50%; */
    /* border: 2px solid rgba(255, 204, 102, 0.3); */
    /* flex-shrink: 0; */
}

.aggressive-equity-feat-card.primary .feat-icon {
    /* width: 100px; */
    /* height: 100px; */
    /* background: rgba(255, 204, 102, 0.15); */
    /* border-color: rgba(255, 204, 102, 0.5); */
    margin: 20px auto;
}

.feat-icon img {
    /* width: 60%; */
    /* height: 60%; */
    height: 100%;
    object-fit: contain;
}

/* VC Feature Container Styles */
.vc-feat-container {
    margin-top: 3rem;
    padding: 2rem 0;
}

.vc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vc-card {
    position: relative;
    min-width: 300px;
    max-width: 560px;
    aspect-ratio: 57 / 48;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(40, 40, 40, 0.85) 100%);
    border: 1px solid rgba(255, 204, 102, 0.2);
    border-radius: 12px;
    overflow: visible;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.vc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 204, 102, 0.15);
    border-color: rgba(255, 204, 102, 0.4);
}

.vc-card-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.vc-card-number {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.6;
    color: #ffcc66;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.vc-card-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.4;
    /* flex-grow: 1; */
}

.vc-card-icon {
    position: relative;
    /* bottom: 1rem; */
    /* right: 1rem; */
    width: 52px;
    height: 52px;
    opacity: 1;
}

.vc-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vc-card-description li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vc-feat-container {
        margin-top: 0;
        padding-top: 0;
    }
    .vc-grid {
        display: flex;
        flex-direction: column;
        /* grid-template-columns: 1fr; */
        /* grid-template-rows: repeat(4, 1fr); */
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .vc-card {
        min-width: 250px;
        aspect-ratio: unset;
        height: auto;
    }
    
    .vc-card-content {
        padding: 1.2rem;
    }

    .vc-card-icon {
    
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .vc-card {
        min-width: 220px;
    }
    
    .vc-card-content {
        padding: 1rem;
    }
    
    
    .vc-card-description {
        font-size: 0.75rem;
    }
}

/* Success Examples Section */
.successExamples {
    padding: 60px 0;
    /* background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(34, 34, 34, 0.95) 100%); */
}

.success-header {
    margin-bottom: 40px;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffcc66;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    grid-template-areas:
    "r1 r2"
    "r3 r4"
    "r5 r6";
}

.r1 { grid-area: r1; }
.r2 { grid-area: r2; }
.r3 { grid-area: r3; }
.r4 { grid-area: r4; }
.r5 { grid-area: r5; }
.r6 { grid-area: r6; }

.success-card {
    /* border-radius: 16px; */
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.image-card {
    /* background: linear-gradient(135deg, rgba(255, 204, 102, 0.1) 0%, rgba(255, 204, 102, 0.05) 100%); */
    /* border: 1px solid rgba(255, 204, 102, 0.2); */
    background: unset;
    border: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 300px;
}

.success-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* border-radius: 8px; */
}

.content-card {
    /* background: linear-gradient(135deg, rgba(34, 34, 34, 0.95) 0%, rgba(51, 51, 51, 0.95) 100%); */
    /* border: 1px solid rgba(255, 204, 102, 0.15); */
    padding: 30px;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gold-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffcc66;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-attributes {
    background: linear-gradient(135deg, rgba(255, 204, 102, 0.08) 0%, rgba(255, 204, 102, 0.15) 50%, rgba(255, 204, 102, 0.08) 100%);
    border: 1px solid rgba(255, 204, 102, 0.2);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.attribute-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 204, 102, 0.1);
}

.attribute-item:last-child {
    border-bottom: none;
}

.attribute-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.attribute-value {
    font-size: 0.95rem;
    color: #ffcc66;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
        "r1"
        "r2"
        "r4"
        "r3"
        "r5"
        "r6";
        grid-template-rows: auto;
        gap: 20px;
        padding: 0 15px;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .content-card {

        padding: 20px;
    }
    
    .gold-title {
        font-size: 1.5rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .image-card {
        min-height: 200px;
    }

    .successExamples {
        padding-bottom: 20px;
    }
}

/* Footer Section */
.footerSection {
    width: 100%;
    margin-top: 80px;
    padding-bottom: 60px;
}

.footer-separator {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 204, 102, 0.3) 20%, 
        rgba(255, 204, 102, 0.8) 50%, 
        rgba(255, 204, 102, 0.3) 80%, 
        transparent 100%
    );
    margin-bottom: 40px;
}

.footer-content {
    text-align: center;
    padding: 0 20px;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footerSection {
        margin-top: 60px;
        padding-bottom: 40px;
    }
    
    .footer-separator {
        height: 3px;
        margin-bottom: 30px;
    }
    
    .footer-disclaimer {
        font-size: 12px;
        padding: 0 10px;
    }
}

/* 移动端优化 - 360-480px */
@media screen and (max-width: 480px) {
    /* 基础容器调整 */
    .pan_container {
        /* padding: 0 8px; */
    }
    
    /* 产品类别标题优化 */
    .category-title-cn {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .category-title-en {
        font-size: 1rem !important;
        margin-top: 0.5rem;
    }
    
    /* Tab标签优化 */
    .product-tabs-container {
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
    }
    
    .tab-item {
        font-size: 0.85rem;
        padding: 12px 16px;
        text-align: center;
        border-radius: 8px;
    }
    
    /* 产品网格布局 */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }
    
    /* 产品卡片优化 */
    .product-card.redesigned {
        padding: 16px;
        min-height: auto;
    }
    
    .product_head {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .product_title_section {
        margin-bottom: 12px;
    }
    
    .product-name {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .product-subtitle {
        font-size: 0.8rem;
    }
    
    .product_logo img {
        width: 40px;
        height: 40px;
    }
    
    /* 产品描述优化 */
    .product-desc {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    
    /* 产品底部信息 */
    .product-bottom {
        flex-direction: column;
        gap: 12px;
    }
    
    .product-metrics {
        text-align: center;
    }
    
    .period-desc {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .expected-apy {
        font-size: 1.1rem;
    }
    
    /* 图表优化 */
    .mini-chart {
        height: 80px !important;
        margin: 0 auto;
    }
    
    /* 权益类产品布局 */
    .aggressive-equity-product {
        display: block;
        width: 100%;
    }
    
    .aggressive-equity-product-part {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* 描述卡片 */
    .description-card {
        margin-bottom: 16px;
        padding: 16px;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .card-content {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* 特性卡片 */
    .feat-container {
        margin-top: 0px;
        display: block;
        /* grid-template-columns: 1fr; */
        gap: 16px;
    }
    
    .aggressive-equity-feat-card {
        padding: 16px;
        aspect-ratio: unset;
        margin: 20px auto;
    }
    
    .feat-title {
        font-size: 1.1rem;
    }
    
    .feat-subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .feat-content1, .feat-content2, .feat-content3 {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
/*     
    .feat-icon img {
        width: 30px;
        height: 30px;
    }
     */
    /* 风险创投类优化 */
    .venture-capital-product {
        flex-direction: column;
    }
    
    .vc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .vc-card {
        padding: 16px;
    }
    
    .vc-card-number {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .vc-card-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .vc-card-description ul li p {
        margin-bottom: 8px;
    }
    
    /* 成功案例优化 */
    .success-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .success-card.image-card {
        height: 200px;
        order: -1; /* 图片优先显示 */
    }
    
    .success-card.content-card {
        padding: 16px;
    }
    
    .card-title.gold-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .card-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    
    .card-attributes {
        flex-direction: column;
        gap: 8px;
    }
    
    .attribute-item {
        font-size: 0.8rem;
    }
    
    /* 导航栏优化 */
    .mobile-nav {
        padding: 8px 16px;
    }
    
    .mobile-nav button {
        padding: 8px 12px;
    }
    
    /* 语言切换按钮 */
    #langToggle1, #langToggle2 {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    /* 章节标题 */
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .section-description {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 8px;
    }

    .footer-disclaimer {
        font-size: 10px;
    }
}

/* 超小屏幕优化 - 360px以下 */
@media screen and (max-width: 360px) {
    .pan_container {
        padding: 0 4px;
    }
    
    .product-card.redesigned {
        padding: 12px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-desc {
        font-size: 0.8rem;
    }
    
    .tab-item {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .mini-chart {
        height: 60px !important;
    }
}

/* 确保触摸目标足够大 */
@media screen and (max-width: 480px) {
    .tab-item {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* Fix: prevent overlap on mobile by removing forced aspect-ratio/height */
@media (max-width: 768px) {
  .equity-description-cards {
    height: auto !important;
    margin: 30px 0;
  }

  .description-card {
    aspect-ratio: auto !important;
    height: auto !important;
    overflow: visible;
  }

  .description-card + .description-card {
    margin-top: 12px;
  }

  /* If the VC cards are the ones overlapping, keep content inside */
  .vc-card {
    overflow: hidden;
    height: auto;
  }
}
