/* 规划头部 */
.plan-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.plan-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plan-title {
    font-size: 32px;
    font-weight: 700;
    color: #0A2463;
    font-family: 'SourceHanSans-Bold', sans-serif;
}

/* 数字汇客厅区域 */
.digital-hall-section {
    background: white;
}

.digital-hall-content {
    display: grid;
    grid-template-columns: 1fr 32px 1fr;
    gap: 0;
    align-items: center;
}

.digital-hall-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-hall-image img,
.workshop-image img,
.energy-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.plan-details {
    padding: 0 32px;
}

.plan-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-card {
    background: rgba(245, 247, 250, 1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.workshop-section .plan-card {
    background: white;
}

.plan-card:hover {
    transform: translateY(-4px);
}

.plan-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.plan-card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2E5AAC;
    border-radius: 50%;
    flex-shrink: 0;
}

.plan-card-icon i {
    font-size: 18px;
    color: white;
    font-family: 'remixicon' !important;
}

.plan-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #2E5AAC;
    font-family: 'SourceHanSans-Bold', sans-serif;
}

.plan-card-desc {
    font-size: 14px;
    color: rgba(102, 102, 102, 1);
    line-height: 1.8;
    padding-left: 48px;
}

/* 移动车间区域 */
.workshop-section {
    background: rgba(245, 247, 250, 1);
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 32px 1fr;
    gap: 0;
    align-items: center;
}

.workshop-details {
    padding: 0 32px;
}

/* 移动储能区域 */
.energy-section {
    background: white;
}

.energy-content {
    display: grid;
    grid-template-columns: 1fr 32px 1fr;
    gap: 0;
    align-items: center;
}

.energy-details {
    padding: 0 32px;
}

/* 三年发展目标区域 */
.goals-section {
    background: linear-gradient(180deg, #2E5AAC 0%, rgba(20, 56, 129, 1) 100%);
}

.goals-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 48px;
    font-family: 'SourceHanSans-Bold', sans-serif;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.goal-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.goal-value {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'SourceHanSans-Bold', sans-serif;
}

.goal-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'SourceHanSans-Medium', sans-serif;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .digital-hall-content,
    .workshop-content,
    .energy-content {
        grid-template-columns: 1fr;
    }

    .digital-hall-image,
    .workshop-image,
    .energy-image {
        margin-bottom: 32px;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }
    .plan-icon {
        width: 44px;
        height: 44px;
    }
    .plan-title {
        font-size: 24px;
    }
    .plan-card {
        padding: 20px;
    }
    .plan-card-title {
        font-size: 14px;
    }
    .plan-card-desc {
        font-size: 13px;
    }
    .plan-card-icon {
        width: 32px;
        height: 32px;
    }
    .plan-card-icon i {
        font-size: 16px;
    }
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .goal-card {
        padding: 24px 16px;
    }
    .goal-value {
        font-size: 32px;
    }
    .goal-label {
        font-size: 14px;
    }
    .goals-title {
        font-size: 22px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .plan-title {
        font-size: 20px;
    }
    .plan-card {
        padding: 16px;
    }
    .plan-card-title {
        font-size: 13px;
    }
    .plan-card-desc {
        font-size: 12px;
    }
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .goal-value {
        font-size: 28px;
    }
    .goals-title {
        font-size: 20px;
    }
}