/* 电脑维修页面专属样式 */

/* Hero Section 样式 */
#repair-hero {
    background-color: var(--section-bg-color);
}

/* 服务部分样式 */
.repair-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--section-bg-color) 100%);
}

.repair-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.repair-service-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.repair-service-card:hover {
    transform: translateY(-5px);
}

.repair-service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.repair-service-card .service-icon i {
    font-size: 30px;
    color: #fff;
}

.repair-service-card h3 {
    font-size: 24px;
    margin: 0 0 15px;
    color: #333;
}

.repair-service-card p {
    color: #666;
    margin-bottom: 20px;
}

.repair-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.repair-service-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
}

.repair-service-card ul li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* 品牌部分样式 */
.repair-brands-section {
    padding: 60px 0;
    background-color: #fff;
}

.repair-brands-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.repair-brands-logos span {
    padding: 15px;
    background: var(--section-bg-color);
    border-radius: 10px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.repair-brands-logos span:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* 维修流程部分样式 */
.repair-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--section-bg-color) 0%, #e9ecef 100%);
}

.repair-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.repair-process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    z-index: 0;
}

.repair-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.repair-step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.repair-process-step h3 {
    margin: 0 0 10px;
    color: #333;
}

.repair-process-step p {
    margin: 0;
    color: #666;
}

/* 价格表部分样式 */
.repair-pricing-section {
    padding: 80px 0;
    background: #fff;
}

.repair-pricing-table-wrapper {
    margin-top: 50px;
    overflow-x: auto;
}

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

.repair-pricing-table th,
.repair-pricing-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
}

.repair-pricing-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.repair-pricing-table tr:nth-child(even) {
    background: var(--section-bg-color);
}

.repair-pricing-note {
    margin-top: 20px;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* 为什么选择我们部分样式 */
.repair-why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
}

.repair-why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.repair-why-us-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.repair-why-us-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.repair-why-us-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.repair-why-us-item h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.repair-why-us-item p {
    margin: 0;
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .repair-services-grid {
        grid-template-columns: 1fr;
    }

    .repair-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .repair-process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .repair-process-steps {
        grid-template-columns: 1fr;
    }

    .repair-why-us-grid {
        grid-template-columns: 1fr;
    }

    .repair-pricing-table {
        font-size: 14px;
    }

    .repair-pricing-table th,
    .repair-pricing-table td {
        padding: 10px;
    }
} 