* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 导航栏样式 */
.navbar {
    background-color: #fff;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e70012;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #e70012;
}

.login-btn a {
    background: #e70012;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    margin-left: 1rem;
}

.login-btn a:hover {
    background: #d4001a;
}

.login-link {
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-link:hover {
    color: white !important;
    text-decoration: none;
}

/* 搜索区域样式 */
.search-section {
    padding-top: 80px;
    background: linear-gradient(135deg, #f5f5f5, #fff);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container {
    width: 90%;
    max-width: 1200px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.search-container h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.form-group select,
.form-group input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-btn {
    background: #e70012;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background: #d4001a;
}

/* 特色服务区域 */
.features-section {
    padding: 3rem 5%;
    background: #fff;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: #e70012;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-item p {
    color: #666;
}

/* 车型展示区域样式 */
.cars-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.cars-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.car-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #e70012;
    color: white;
    border-color: #e70012;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.car-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.car-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e70012;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-info {
    padding: 1.5rem;
}

.car-type {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.car-features {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    color: #666;
}

.car-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.car-price {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.car-price .price {
    color: #e70012;
    font-size: 1.5rem;
    font-weight: bold;
}

.rent-button {
    width: 100%;
    padding: 0.8rem;
    background: #e70012;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.rent-button:hover {
    background: #d4001a;
}

/* 服务网点区域 */
.service-section {
    padding: 4rem 5%;
    background: white;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.service-map img {
    width: 100%;
    border-radius: 8px;
}

.location-list {
    margin-top: 1.5rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.location-item i {
    color: #e70012;
    font-size: 1.2rem;
}

/* APP下载区域 */
.app-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f5f5f5, #fff);
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.app-btn:hover {
    background: #000;
}

/* 页脚样式 */
footer {
    background: #333;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.hotline {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .service-container {
        grid-template-columns: 1fr;
    }

    .app-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .app-buttons {
        justify-content: center;
    }
}

/* 登录/注册页面样式 */
.auth-section {
    padding: 120px 5% 60px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5f5, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    flex: 1;
    padding: 1.2rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-tab.active {
    color: #e70012;
    border-bottom: 2px solid #e70012;
}

.auth-content {
    padding: 2rem;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.9rem;
}

.auth-form label i {
    margin-right: 0.5rem;
    color: #666;
}

.auth-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    border-color: #e70012;
    outline: none;
}

.verification-code {
    display: flex;
    gap: 1rem;
}

.verification-code input {
    flex: 1;
}

.send-code {
    padding: 0.8rem 1.5rem;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.send-code:hover {
    background: #e70012;
    color: white;
    border-color: #e70012;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me input {
    margin-right: 0.5rem;
}

.forgot-password {
    color: #e70012;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    background: #e70012;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth-btn:hover {
    background: #d4001a;
}

.social-login {
    margin-top: 2rem;
    text-align: center;
}

.social-login p {
    color: #666;
    margin-bottom: 1rem;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #eee;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #e70012;
    color: white;
}

.agree-terms {
    font-size: 0.9rem;
    color: #666;
}

.agree-terms a {
    color: #e70012;
    text-decoration: none;
}

.agree-terms a:hover {
    text-decoration: underline;
}

/* 车型详情页样式 */
.car-detail-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.car-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.car-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.thumbnail-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 150px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #e70012;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-info {
    padding: 1rem;
}

.car-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.car-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.car-tag {
    background: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #666;
}

.car-price {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.car-price .price {
    color: #e70012;
    font-weight: bold;
}

.car-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.feature i {
    font-size: 1.5rem;
    color: #e70012;
}

.rent-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-group label {
    font-size: 0.875rem;
    color: #666;
}

.option-group input,
.option-group select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.rent-now-btn {
    background: #e70012;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.rent-now-btn:hover {
    background: #c6000f;
}

.car-specs {
    margin-bottom: 3rem;
}

.car-specs h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.spec-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #333;
}

.spec-item ul {
    list-style: none;
    padding: 0;
}

.spec-item li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.car-notice {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.car-notice h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.notice-content h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 1rem;
    color: #333;
}

.notice-content ul {
    list-style: none;
    padding: 0;
}

.notice-content li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.notice-content li:before {
    content: "•";
    color: #e70012;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .car-detail-container {
        grid-template-columns: 1fr;
    }

    .car-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* 预订流程页面样式 */
.booking-section {
    padding: 120px 5% 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #e70012;
    color: white;
}

.step-title {
    color: #666;
    font-size: 0.875rem;
}

.step.active .step-title {
    color: #e70012;
    font-weight: bold;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #eee;
    margin: 0 1rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.booking-summary {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.booking-summary h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.summary-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.car-image img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.car-details h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.car-details p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.car-details .price {
    color: #e70012;
    font-weight: bold;
}

.rental-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #666;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 1.125rem;
}

.total-price .price {
    color: #e70012;
    font-weight: bold;
    font-size: 1.5rem;
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.booking-form label i {
    margin-right: 0.5rem;
    color: #666;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.booking-form textarea {
    height: 100px;
    resize: vertical;
}

.insurance-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insurance-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insurance-option:hover {
    border-color: #e70012;
}

.insurance-option input[type="radio"] {
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #e70012;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #c6000f;
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .step-line {
        display: none;
    }
}

/* 关于我们页面样式 */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.about-header .subtitle {
    font-size: 18px;
    color: #666;
}

.company-intro {
    margin-bottom: 80px;
}

.company-intro h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.intro-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #e70012;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.company-history {
    margin-bottom: 80px;
}

.company-history h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #e70012;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #e70012;
    border-radius: 50%;
    top: 30px;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-item .year {
    font-size: 24px;
    font-weight: bold;
    color: #e70012;
    margin-bottom: 10px;
}

.timeline-item .content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-item .content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.timeline-item .content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.company-culture {
    margin-bottom: 80px;
}

.company-culture h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.culture-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.culture-item:hover {
    transform: translateY(-5px);
}

.culture-item i {
    font-size: 40px;
    color: #e70012;
    margin-bottom: 20px;
}

.culture-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.culture-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 联系我们页面样式 */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.contact-header .subtitle {
    font-size: 18px;
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 40px;
    color: #e70012;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.info-card .phone {
    font-size: 24px;
    font-weight: bold;
    color: #e70012;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #e70012;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #c6000f;
}

.office-locations {
    margin-bottom: 80px;
}

.office-locations h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.location-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.location-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.map-section {
    margin-bottom: 80px;
}

.map-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.map-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }

    .intro-stats {
        flex-wrap: wrap;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* 服务网点页面样式 */
.service-locations-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-locations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.locations-header {
    text-align: center;
    margin-bottom: 40px;
}

.locations-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.locations-header .subtitle {
    font-size: 18px;
    color: #666;
}

.locations-search {
    margin-bottom: 40px;
}

.search-box {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    position: relative;
}

.search-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-input input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.search-btn {
    padding: 0 30px;
    background: #e70012;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #c6000f;
}

.quick-cities {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-cities span {
    color: #666;
}

.city-tag {
    padding: 5px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.city-tag:hover {
    background: #e70012;
    color: white;
    border-color: #e70012;
}

.locations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.locations-map {
    height: 600px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.locations-list {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.list-header h2 {
    font-size: 24px;
    color: #333;
}

.list-filter select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.location-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s;
}

.location-item:hover {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.location-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.location-info p {
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info i {
    color: #e70012;
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.nav-btn, .detail-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn {
    background: #e70012;
    color: white;
    border: none;
}

.nav-btn:hover {
    background: #c6000f;
}

.detail-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.detail-btn:hover {
    border-color: #e70012;
    color: #e70012;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a.active {
    background: #e70012;
    color: white;
    border-color: #e70012;
}

.pagination a:hover:not(.active) {
    border-color: #e70012;
    color: #e70012;
}

.pagination .next {
    width: auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .locations-content {
        grid-template-columns: 1fr;
    }

    .locations-map {
        height: 400px;
    }

    .search-box {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
        padding: 15px;
    }
}

/* 帮助中心页面样式 */
.help-section {
    padding: 120px 5% 60px;
    background-color: #f8f9fa;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
}

.help-header {
    text-align: center;
    margin-bottom: 40px;
}

.help-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.help-header .subtitle {
    font-size: 18px;
    color: #666;
}

.help-search {
    margin-bottom: 40px;
}

.help-search .search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.help-search .search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.help-search input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
}

.help-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.help-category {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.help-category h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-category h2 i {
    color: #e70012;
}

.help-category ul {
    list-style: none;
    padding: 0;
}

.help-category ul li {
    margin-bottom: 15px;
}

.help-category ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.help-category ul li a:hover {
    color: #e70012;
}

.contact-support {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-support h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.support-option {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s;
}

.support-option:hover {
    border-color: #e70012;
    transform: translateY(-5px);
}

.support-option i {
    font-size: 30px;
    color: #e70012;
    margin-bottom: 15px;
}

.support-option h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.support-option p {
    color: #e70012;
    font-weight: bold;
    margin-bottom: 5px;
}

.support-option span {
    color: #666;
    font-size: 14px;
}

/* 常见问题页面样式 */
.faq-section {
    padding: 120px 5% 60px;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.faq-header .subtitle {
    font-size: 18px;
    color: #666;
}

.faq-search {
    margin-bottom: 30px;
}

.faq-search .search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-search .search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background: #e70012;
    color: white;
    border-color: #e70012;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-more-help {
    text-align: center;
    margin-top: 60px;
}

.faq-more-help h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.help-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.help-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
}

.help-option:hover {
    transform: translateY(-5px);
}

.help-option i {
    font-size: 30px;
    color: #e70012;
}

.help-option span {
    font-size: 16px;
}

@media (max-width: 768px) {
    .help-content {
        grid-template-columns: 1fr;
    }

    .support-options {
        grid-template-columns: 1fr;
    }

    .faq-categories {
        flex-direction: column;
    }

    .category-btn {
        width: 100%;
    }

    .help-options {
        flex-direction: column;
    }
}

/* 新闻资讯页面样式 */
.news-section {
    padding: 120px 5% 60px;
    background-color: #f8f9fa;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.news-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.category-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active {
    background-color: #e70012;
    color: white;
    border-color: #e70012;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(231, 0, 18, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-meta i {
    margin-right: 5px;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #e70012;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* 加入我们页面样式 */
.join-section {
    padding: 120px 5% 60px;
    background-color: #f8f9fa;
}

.join-header {
    text-align: center;
    margin-bottom: 60px;
}

.join-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.join-header .subtitle {
    font-size: 18px;
    color: #666;
}

.join-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-join {
    text-align: center;
    margin-bottom: 60px;
}

.why-join h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 36px;
    color: #e70012;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.job-listings {
    margin-top: 60px;
}

.job-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.filter-group {
    flex: 1;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.job-list {
    display: grid;
    gap: 20px;
}

.job-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-header h3 {
    font-size: 18px;
    color: #333;
}

.salary {
    color: #e70012;
    font-weight: bold;
}

.job-info {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.job-info i {
    margin-right: 5px;
}

.job-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.apply-btn {
    background-color: #e70012;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-btn:hover {
    background-color: #d10010;
}

.join-process {
    margin-top: 60px;
    text-align: center;
}

.join-process h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: #ddd;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 2px solid #e70012;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 30px;
    color: #e70012;
}

.step-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: #666;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a.active {
    background-color: #e70012;
    color: white;
    border-color: #e70012;
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
}

.pagination a:hover:not(.active) {
    border-color: #e70012;
    color: #e70012;
}

.pagination span {
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .job-filters {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }
} 