/* ========================================
   产品详情页样式
   主色：#0086F1
   ======================================== */

/* 基础容器 */
.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Hero区域 ===== */
.product-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 背景图片（报销云） */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/skin/images/报销云.png') center/cover no-repeat;
    z-index: 1;
}

/* 无遮罩层 */
.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 80px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-price {
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.price-value {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.price-note {
    font-size: 16px;
    margin-left: 15px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #0086F1;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== 产品亮点 ===== */
.product-highlights {
    padding: 120px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,134,241,0.15);
}

.highlight-item svg {
    margin-bottom: 20px;
}

.highlight-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

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

/* ===== 功能详解 ===== */
.feature-section {
    padding: 120px 0;
}

.feature-section.feature-alt {
    background: #f8f9fa;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.feature-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #0086F1;
    font-size: 18px;
    margin-right: 12px;
    font-weight: bold;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ===== 移动端体验 ===== */
.mobile-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
}

.section-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.mobile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mobile-item {
    text-align: center;
    padding: 20px;
}

.mobile-item img {
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mobile-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.mobile-item p {
    font-size: 14px;
    color: #666;
}

/* ===== 适用场景 ===== */
.usage-section {
    padding: 120px 0;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.usage-item {
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s ease;
}

.usage-item:hover {
    border-color: #0086F1;
    box-shadow: 0 5px 20px rgba(0,134,241,0.1);
}

.usage-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0086F1;
    margin-bottom: 10px;
}

.usage-item p {
    font-size: 15px;
    color: #666;
}

/* ===== 咨询引导 ===== */
.consult-guide {
    padding: 100px 0;
    background: #f8f9fa;
}

.guide-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    background: linear-gradient(135deg, #0086F1 0%, #0056B3 100%);
    border-radius: 16px;
    color: #fff;
}

.guide-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.guide-content p {
    font-size: 16px;
    opacity: 0.9;
}

.guide-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

.guide-phone {
    font-size: 24px;
    font-weight: 600;
}

/* ===== 什么是金蝶AI星辰 ===== */
.intro-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.intro-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.intro-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.intro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,134,241,0.15);
}

.intro-item img {
    max-width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.intro-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.intro-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-item li {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    line-height: 1.5;
}

/* ===== 重新定义业财税一体化 ===== */
.redefine-section {
    padding: 120px 0;
    background: #fff;
}

.redefine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.redefine-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.redefine-card:hover {
    border-color: #0086F1;
    box-shadow: 0 10px 30px rgba(0,134,241,0.15);
    transform: translateY(-5px);
}

.redefine-card img {
    max-width: 100px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
}

.redefine-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0086F1;
    margin-bottom: 12px;
}

.redefine-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== 响应式适配 ===== */
@media (max-width: 992px) {
    .intro-features,
    .redefine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlights-grid,
    .mobile-grid,
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .guide-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .guide-action {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 26px;
    }
    
    .intro-features,
    .redefine-grid,
    .highlights-grid,
    .mobile-grid,
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-item img {
        max-width: 150px;
    }
}

/* ===== 视频按钮样式 ===== */
.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-video:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.8);
}

.btn-video svg {
    width: 20px;
    height: 20px;
}

/* ===== 视频弹窗样式 ===== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10002;
    display: none;
}

.video-modal.show {
    display: block;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 900px;
    width: 90%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
}

.video-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== 功能对比表格 ===== */
.compare-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
    font-size: 16px;
}

.compare-table th {
    background: #0086F1;
    color: #fff;
    font-weight: 600;
}

.compare-table th:first-child {
    text-align: left;
    background: #0066c2;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #333;
}

.compare-table tbody tr:hover {
    background: #f5f9ff;
}

.compare-table .has {
    color: #0086F1;
    font-weight: 600;
}

.compare-table .none {
    color: #999;
}

/* 对比总结区块 */
.compare-summary {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.compare-summary .summary-box {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.compare-summary .summary-box h4 {
    color: #0086F1;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.compare-summary .summary-box ul {
    list-style: none;
    padding: 0;
}

.compare-summary .summary-box li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
}
.version-compare {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
}

.version-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.version-card {
    position: relative;
    padding: 30px 40px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.version-card:hover {
    border-color: #0086F1;
    box-shadow: 0 10px 40px rgba(0,134,241,0.15);
}

.version-card.advanced {
    border-color: #0086F1;
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
}

.version-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    padding: 6px 20px;
    background: #0086F1;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

.version-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.version-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.version-price {
    margin-bottom: 20px;
}

.price-num {
    font-size: 42px;
    font-weight: 700;
    color: #0086F1;
}

.price-unit {
    font-size: 16px;
    color: #666;
}

.version-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0086F1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.version-btn:hover {
    background: #0056B3;
    transform: translateY(-2px);
}

/* 功能对比表格 */
.compare-table-wrap {
    overflow-x: auto;
    margin-bottom: 30px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.compare-table thead {
    background: #0086F1;
    color: #fff;
}

.compare-table th {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.compare-table th.feature-col {
    text-align: left;
    width: 50%;
}

.compare-table td {
    padding: 14px 20px;
    font-size: 15px;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.compare-table td:first-child {
    text-align: left;
    color: #444;
}

.compare-table tr.category-row td {
    background: #f0f7ff;
    font-size: 16px;
    color: #0086F1;
    padding: 12px 20px;
}

.compare-table tbody tr:hover {
    background: #f8f9fa;
}

.check {
    color: #0086F1;
    font-size: 18px;
    font-weight: 700;
}

.partial {
    color: #ffa500;
    font-size: 14px;
}

.cross {
    color: #999;
    font-size: 16px;
}

.compare-tip {
    padding: 20px 30px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 1px solid #ffd700;
    border-radius: 12px;
    font-size: 16px;
    color: #666;
}

.compare-tip strong {
    color: #333;
}

/* 响应式 - 版本对比 */
@media (max-width: 992px) {
    .version-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .compare-table th,
    .compare-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .price-num {
        font-size: 32px;
    }
    
    .version-card h3 {
        font-size: 20px;
    }
}
/* ===== 功能模块（个人代账版专用） ===== */
.product-features {
    padding: 120px 0;
    background: #fff;
}

.product-features .feature-block {
    padding: 60px 0;
}

.product-features .feature-block:first-child {
    padding-top: 0;
}

.product-features .feature-block:last-child {
    padding-bottom: 0;
}

/* 功能块交替背景 */
.product-features .feature-block:nth-child(even) {
    background: #f8f9fa;
}

.product-features .feature-block:nth-child(even) .feature-block {
    padding: 60px 40px;
}

/* ===== 版本对比表格（账无忧专用） ===== */
.version-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.version-table thead {
    background: linear-gradient(135deg, #0086F1 0%, #0056B3 100%);
    color: #fff;
}

.version-table th {
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.version-table th:first-child {
    text-align: left;
}

.version-table td {
    padding: 16px 24px;
    font-size: 16px;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.version-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #444;
}

.version-table tbody tr:hover {
    background: #f0f7ff;
}

.version-table .price-row {
    background: #f8f9fa;
}

.version-table .price-row td {
    font-weight: 600;
    color: #0086F1;
}

.version-table .price-row small {
    color: #666;
    font-weight: normal;
}


/* ===== 功能图标样式 ===== */
.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    height: 34px;
    width: auto;
}

.feature-content .check-icon {
    color: #0086F1;
    font-weight: bold;
    margin-right: 8px;
}

/* ===== 图片叠加效果（参照官网） ===== */
.feature-image-overlay {
    position: relative;
}

.feature-image-overlay .main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.feature-image-overlay .overlay-img {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 500px;
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

/* ===== 多端协同模块 ===== */
.multi-platform {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
}

.multi-platform .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 60px;
}

.platform-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.platform-item img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.platform-item p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.platform-item span {
    font-size: 14px;
    color: #666;
}

@media (max-width: 992px) {
    .platform-grid {
        gap: 20px;
    }
    
    .platform-item {
        min-width: 140px;
        padding: 20px 15px;
    }
    
    .platform-item img {
        width: 100px;
    }
}

@media (max-width: 576px) {
    .multi-platform {
        padding: 60px 0;
    }
    
    .multi-platform .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .platform-grid {
        gap: 15px;
    }
    
    .platform-item {
        min-width: 100px;
        padding: 15px 10px;
    }
    
    .platform-item img {
        width: 70px;
    }
    
    .platform-item p {
        font-size: 14px;
    }
    
    .platform-item span {
        font-size: 12px;
    }
}
