/* 产品页面特定样式 */
.product-page .product-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 产品模块样式 */
.product-page .product-module {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.product-page .product-module:last-child {
    margin-bottom: 0;
}

/* 缩略图样式 */
.product-page .thumbnails {
    position: absolute;
    bottom:20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
    width: 80%;
    padding: 15px;
}

.product-page .thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-page .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-page .thumbnail.active {
    border-color: #FFD700;
    transform: translateY(-5px);
}

.product-page .thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 主图区域样式 */
.product-page .main-image-container {
    position: relative;
    width: 80%;
    max-width: 1200px;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 0;
}

.product-page .main-image {
    width: 100%;
    height: 100%;
}

.product-page .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 遮罩层样式 */
.product-page .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: rgba(51, 51, 51, 0.5);
    display: flex;
    align-items: center;
    padding: 40px;
}

.product-page .content {
    color: white;
}

.product-page .icon {
    width: 80px;
    height: 90px; /* 更紧凑 */
    margin-bottom: 20px;
    background-color: rgba(255, 215, 0, 0.7);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 0; /* 更紧凑 */
}

.product-page .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-text {
    font-size: 12px;
    color: #333;
    margin-top: 2px; /* 更小的间距 */
    font-weight: 500;
    text-align: center;
}

.product-page .content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #FFD700;
}

.product-page .content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-page .cta-button {
    background: #0066CC;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-page .cta-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #FFD700;
    border-radius: 5px 0 0 5px;
}

.product-page .cta-button:hover {
    background: #0052A3;
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.button-group .cta-button {
    margin: 0;
} 

.icon-size { 
    font-size: 3.5rem !important; /* 调小图标大小 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333; /* 添加图标颜色 */
    line-height: 0.9;
}