/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #F8FAFB;
}

/* 导航栏 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e53935;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-english {
    font-size: 0.6rem;
    font-weight: bold;
    color: #e53935;
    text-transform: uppercase;
    margin-top: 0.1rem;
    display: block;
    align-self: flex-start;
    width: 100%;
    text-align: left;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2C3E50;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e53935;
}

.nav-appointment-btn {
    background-color: #e53935;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-appointment-btn:hover {
    background-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

/* 响应式导航 */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .nav-appointment-btn {
        display: none;
    }
}

/* 横幅 */
.banner {
    background: linear-gradient(135deg, #e53935, #ef5350);
    color: #fff;
    padding: 4rem 2rem;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.banner-image {
    flex: 1;
    max-width: 500px;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.banner-content {
    flex: 1;
    text-align: left;
}

.banner h1,
.banner .banner-content p:first-of-type {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-content {
        text-align: center;
    }
    
    .banner-image {
        max-width: 300px;
    }
}

.btn-primary {
    background-color: #fff;
    color: #e53935;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 公司产品 */
.company-products {
    background-color: #F8FAFB;
    padding: 3rem 2rem;
    text-align: center;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.product-item {
    flex: 1;
    background-color: #E8F4F8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 400px;
    text-align: center;
    cursor: pointer;
}

.product-item:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.product-item:hover h3 {
    color: #e53935;
    transition: color 0.3s ease;
}

.product-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: #2C3E50;
}

/* 公司产品响应式设计 */
@media (max-width: 768px) {
    .products-container {
        flex-direction: column;
        align-items: center;
    }
    
    .product-item {
        max-width: 100%;
        width: 100%;
    }
    
    .company-products {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-item {
        padding: 1.5rem;
    }
    
    .product-item h3 {
        font-size: 1.1rem;
    }
    
    .company-products {
        padding: 2rem 1rem;
    }
}

/* 服务优势 */
.advantages {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.advantage-items {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantage-item {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    background-color: #E8F4F8;
    cursor: pointer;
}

.advantage-item:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.advantage-item:hover h3 {
    color: #e53935;
    transition: color 0.3s ease;
}

.advantage-icon {
    font-size: 2rem;
    color: #e53935;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

/* 服务项目 */
.services {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.services p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7F8C8D;
}

.service-items {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-color: #E8F4F8;
    cursor: pointer;
}

.service-item:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.service-item:hover h3 {
    color: #e53935;
    transition: color 0.3s ease;
}

.service-item h3 {
    margin-bottom: 1rem;
    color: #e53935;
}

/* 服务流程 */
.process {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.process h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.process p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7F8C8D;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.process-step {
    background-color: #E8F4F8;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 180px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-step:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.process-step:hover .step-number {
    background-color: #c62828;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.process-step:hover h3 {
    color: #e53935;
    transition: color 0.3s ease;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #e53935;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

/* 陪诊师团队 */
.team {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.team h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.team p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7F8C8D;
}

.team-stats {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    background-color: #E8F4F8;
}

.stat-item h3 {
    font-size: 2rem;
    color: #e53935;
    margin-bottom: 0.5rem;
}

.team-members {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member-item {
    background-color: #E8F4F8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.member-item:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.member-item:hover h3 {
    color: #2C3E50;
    transition: color 0.3s ease;
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-item h3 {
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.member-item p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #7F8C8D;
}

.member-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.member-rating span:first-child {
    color: #ffc107;
}

.member-rating span:last-child {
    font-weight: bold;
    color: #e53935;
}

.member-experience {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* 用户评价 */
.reviews {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.reviews h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.reviews p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7F8C8D;
}

.review-items {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-item {
    background-color: #E8F4F8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-item:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.review-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #2C3E50;
}

.review-rating {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.review-rating span {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 0.2rem;
    display: block;
}

.reviewer-location {
    font-size: 0.9rem;
    color: #7F8C8D;
    display: block;
}

/* 考证培训 */
.training {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.training h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.training p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7F8C8D;
}

.training-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.training-features h3,
.training-courses h3,
.training-process h3 {
    margin-bottom: 1.5rem;
    color: #e53935;
    text-align: center;
}

.training-features {
    background-color: #E8F4F8;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.training-features:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.training-features:hover h3 {
    color: #e53935;
    transition: color 0.3s ease;
}

.training-courses {
    background-color: #E8F4F8;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.training-courses .courses-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.training-courses .course-section {
    flex: 1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .training-courses .courses-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.training-courses:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.training-courses:hover h3 {
    color: #e53935;
    transition: color 0.3s ease;
}

.course-section {
    margin-bottom: 2rem;
}

.course-section h4 {
    margin-bottom: 1rem;
    color: #2C3E50;
    font-size: 1.1rem;
}

.course-section ul {
    list-style: none;
}

.course-section li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.course-section li:before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #e53935;
    font-weight: bold;
}

.training-process {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: left;
}

.training-process h3 {
    text-align: center;
}

.certificate-image {
    margin-bottom: 2rem;
    text-align: center;
}

.certificate-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.training-courses .certificate-image img {
    max-width: 70%;
}

.certificate-image img:hover {
    transform: scale(1.05);
}

.training-features ul {
    list-style: none;
}

.training-features li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.training-features li:before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #e53935;
    font-weight: bold;
}

.contact-info {
    margin-top: 1rem;
    font-weight: bold;
    color: #333;
}

.join-text {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
}

.price-btn {
    margin-top: 1.5rem;
    background-color: #e53935;
    color: #fff;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.price-btn:hover {
    background-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 57, 53, 0.4);
}

.faq-section {
    max-width: 1200px;
    margin: 3rem auto;
}

.faq-section h3 {
    margin-bottom: 2rem;
    color: #e53935;
    text-align: center;
}

.faq-items {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
    overflow-x: auto;
}

.faq-item {
    background-color: #E8F4F8;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.faq-item:hover h4 {
    color: #e53935;
    transition: color 0.3s ease;
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: #2C3E50;
    font-size: 1.1rem;
}

.faq-item p {
    color: #7F8C8D;
    line-height: 1.4;
}

/* 城市合伙人 */
.partner {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.partner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.partner p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7F8C8D;
}

.partner-advantages {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-advantages .advantage-item {
    text-align: center;
    background-color: #E8F4F8;
}

.partner-advantages .advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e53935;
}

.partner-advantages .advantage-item h3 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

.partner-process {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: left;
}

.partner-process h3 {
    margin-bottom: 1.5rem;
    color: #e53935;
    text-align: center;
}

.partner-guarantees {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.partner-guarantees h3 {
    margin-bottom: 2rem;
    color: #e53935;
    text-align: center;
}

.guarantee-items {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
    overflow-x: auto;
}

.guarantee-item {
    background-color: #E8F4F8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    cursor: pointer;
}

.guarantee-item:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.guarantee-item:hover h4 {
    color: #e53935;
    transition: color 0.3s ease;
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e53935;
}

.guarantee-item h4 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

.guarantee-item p {
    color: #7F8C8D;
    line-height: 1.4;
}

/* 媒体报道 */
.media-report {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.media-report h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.media-report > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7F8C8D;
}

.report-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    text-align: left;
}

.report-content {
    flex: 1;
}

.report-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e53935;
}

.report-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2C3E50;
}

/* 媒体报道响应式布局 */
@media (max-width: 992px) {
    .report-container {
        flex-direction: column;
        text-align: center;
    }
    
    .report-content {
        order: 1;
    }
    
    .report-carousel {
        order: 2;
        max-width: 100%;
        width: 100%;
    }
    
    .report-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .media-report {
        padding: 3rem 1.5rem;
    }
    
    .media-report h2 {
        font-size: 1.8rem;
    }
    
    .media-report > p {
        font-size: 1rem;
    }
    
    .report-content h3 {
        font-size: 1.2rem;
    }
    
    .carousel-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .media-report {
        padding: 2rem 1rem;
    }
    
    .media-report h2 {
        font-size: 1.5rem;
    }
    
    .report-content h3 {
        font-size: 1.1rem;
    }
    
    .carousel-container {
        height: 200px;
    }
    
    .report-link .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

.report-carousel {
    flex: 1;
    max-width: 500px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    height: 300px;
}

.carousel-slide {
    position: relative;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 1);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: rgba(255, 255, 255, 1);
}

.report-link {
    margin-top: 2rem;
    text-align: center;
}

.report-link .btn-primary {
    background-color: #e53935;
    color: #fff;
    text-decoration: none;
}

.report-link .btn-primary:hover {
    background-color: #c62828;
}

/* 公司介绍 */
.company {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.company-image {
    flex: 1.5;
    max-width: 600px;
}

.company-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 4px solid #fff;
    object-fit: cover;
    min-height: 400px;
    cursor: pointer;
}

.company-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.company-content {
    flex: 1;
    text-align: left;
}

.company h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.company p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #7F8C8D;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .company-container {
        flex-direction: column;
        text-align: center;
    }
    
    .company-content {
        text-align: center;
    }
    
    .company-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .company-image img {
        max-height: 400px;
        object-fit: cover;
    }
}

/* 关于我们 */
.about {
    background-color: #F8FAFB;
    padding: 4rem 2rem;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.about p {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
    color: #7F8C8D;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    text-align: left;
}

.about-qr {
    text-align: center;
    background-color: #E8F4F8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-qr:hover {
    background-color: #D1E9F2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.about-qr h3 {
    margin-bottom: 1.5rem;
    color: #e53935;
    font-size: 1.2rem;
}

.qr-code {
    margin: 0 auto 1rem;
    max-width: 200px;
}

.qr-code img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.qr-code img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.about-qr p {
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
}

.service-time {
    font-weight: normal;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.about-features {
    max-width: 100%;
    margin: 2rem 0 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
    overflow-x: auto;
}

.feature-item {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    font-weight: bold;
    color: #e53935;
    flex: 1;
    min-width: 150px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #c62828;
}

/* 页脚 */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: left;
}

.footer-info h3,
.footer-links h3 {
    margin-bottom: 1.5rem;
    color: #e53935;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #e53935;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #555;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom p {
    margin: 0;
    color: #999;
    font-family: Arial, sans-serif;
}

.contact-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.contact-label {
    font-weight: bold;
    color: #fff;
    min-width: 70px;
    display: inline-block;
}

.contact-value {
    color: #ccc;
    flex: 1;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .advantage-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .training-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .report-container {
        flex-direction: column;
        text-align: center;
    }
    
    .report-content {
        text-align: center;
    }
    
    .report-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-content {
        text-align: center;
    }
    
    .banner-image {
        max-width: 300px;
    }
    
    .banner h1 {
        font-size: 2rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .advantage-items {
        grid-template-columns: 1fr;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-items {
        grid-template-columns: 1fr;
    }
    
    .training-process .process-steps {
        flex-direction: column;
    }
    
    .faq-items {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-item {
        width: 100%;
        max-width: 400px;
    }
    
    .partner-advantages {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantee-items {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-item {
        width: 100%;
        max-width: 300px;
    }
    
    .company-container {
        flex-direction: column;
        text-align: center;
    }
    
    .company-content {
        text-align: center;
    }
    
    .company-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .contact-label {
        text-align: right;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 2rem 1rem;
    }
    
    .banner h1 {
        font-size: 1.5rem;
    }
    
    .advantages,
    .services,
    .process,
    .team,
    .reviews,
    .training,
    .partner,
    .about,
    .company {
        padding: 2rem 1rem;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .partner-advantages {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 200px;
    }
}
