/* 
 * 车型展示页面样式
 */

/* 页面标题 */
.page-header {
    background-color: #0066CC;
    color: #fff;
    padding: 100px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 筛选区域 */
.fleet-filter {
    background-color: #f9f9f9;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-group label {
    font-weight: 500;
    color: #333;
    min-width: 120px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #0066CC;
    color: #0066CC;
}

.filter-btn.active {
    background-color: #0066CC;
    border-color: #0066CC;
    color: #fff;
}

/* 车型展示 */
.fleet-showcase {
    padding: 60px 0;
}

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

.fleet-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.fleet-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-item:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fleet-item:hover .fleet-overlay {
    opacity: 1;
}

.view-btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: #0066CC;
    color: #fff;
}

.fleet-info {
    padding: 20px;
}

.fleet-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.spec {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-label {
    font-size: 0.9rem;
    color: #666;
}

.spec-value {
    font-weight: 500;
    color: #333;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature {
    padding: 5px 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #666;
}

.fleet-usage {
    margin-bottom: 20px;
}

.fleet-usage h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.fleet-usage p {
    color: #666;
    font-size: 0.9rem;
}

.book-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #0066CC;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

/* 预订流程 */
.booking-process {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.step-icon img {
    width: 40px;
    height: 40px;
}

.step h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

.step-arrow {
    width: 50px;
    height: 2px;
    background-color: #ddd;
    position: relative;
}

.step-arrow:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #ddd;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* FAQ部分 */
.faq {
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: #fff;
}

.faq-answer p {
    color: #666;
    margin-bottom: 15px;
}

.faq-answer ul {
    padding-left: 20px;
}

.faq-answer li {
    color: #666;
    margin-bottom: 8px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .filter-group label {
        min-width: auto;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        width: 2px;
        height: 30px;
    }
    
    .step-arrow:after {
        top: auto;
        bottom: -6px;
        right: 50%;
        transform: translateX(50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #ddd;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-filter {
        position: static;
        padding: 20px 0;
    }
    
    .filter-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .page-header {
        padding: 80px 0 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .fleet-image {
        height: 150px;
    }
    
    .fleet-specs {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}