/* 企业页英雄区域 */
.hero {
    height: 45vh;
    margin-top: var(--navbar-height);
    background: linear-gradient(135deg, rgba(10, 92, 122, 0.9), rgba(39, 174, 96, 0.8)), 
                url('../images/yingxiong/yx11.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #E0F2FE;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 企业简介区域 */
.about-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

/* 通用标题样式已移至common.css */

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-image {
    width: 45%;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-image.show {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    width: 50%;
    padding: 0 20px;
}

.company-fullname {
    font-size: 32px;
    font-weight: 700;
    color: #0A5C7A;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.company-fullname::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #27AE60;
    border-radius: 2px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-text.show {
    opacity: 1;
    transform: translateY(0);
}

.about-text p {
    margin-bottom: 20px;
}

.about-text strong {
    color: #0A5C7A;
    font-weight: 600;
}

.values-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(10, 92, 122, 0.9), rgba(39, 174, 96, 0.8)), url('../images/yingxiong/yx02.jpg') no-repeat center center/cover fixed;
    position: relative;
    color: white;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.values-section .values-container {
    position: relative;
    z-index: 2;
}

.values-section .section-title {
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.values-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.7));
    border-radius: 2px;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(40px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A5C7A, #27AE60);
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card.show {
    opacity: 1;
    transform: translateY(0);
}

.value-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 92, 122, 0.1), rgba(39, 174, 96, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(10, 92, 122, 0.15);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(10, 92, 122, 0.15), rgba(39, 174, 96, 0.15));
}

.value-icon i {
    font-size: 42px;
    color: #0A5C7A;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon i {
    color: #27AE60;
    transform: scale(1.1);
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    color: #0A5C7A;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-description {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
    transition: all 0.3s ease;
}

.value-card:hover .value-title {
    color: #27AE60;
}

.value-card:hover .value-description {
    color: #333;
}

.mission-section {
    padding: 60px 40px;
    background-color: white;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mission-card {
    width: 48%;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.mission-card:nth-child(even) {
    transform: translateX(30px);
}

.mission-card.show {
    opacity: 1;
    transform: translateX(0);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mission-title {
    font-size: 24px;
    font-weight: 600;
    color: #0A5C7A;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.mission-title i {
    margin-right: 15px;
    font-size: 28px;
    color: #27AE60;
}

.mission-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-image, .about-content {
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 35px;
    }
    
    .value-card {
        width: 100%;
        margin: 0;
        padding: 35px 25px;
    }
    
    .mission-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* 企业页英雄区域移动端优化 */
    .hero {
        height: 40vh;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .about-section, .values-section, .mission-section {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .values-container {
        padding: 0 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .value-card {
        padding: 35px 25px;
        margin-bottom: 0;
    }
    
    .values-section .section-title {
        font-size: 2.2rem;
    }
    
    .company-fullname {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 16px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon i {
        font-size: 32px;
    }
    
    .value-title {
        font-size: 20px;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .mission-title {
        font-size: 22px;
    }
    
    .mission-title i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    /* 企业页英雄区域超小屏优化 */
    .hero {
        height: 35vh;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .about-section, .values-section, .mission-section {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .company-fullname {
        font-size: 24px;
    }
    
    .about-text {
        font-size: 15px;
    }
    
    .values-section {
        padding: 40px 15px;
    }
    
    .values-container {
        padding: 0 10px;
    }
    
    .values-grid {
        gap: 18px;
        margin-top: 25px;
    }
    
    .value-card {
        padding: 25px 18px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 28px;
    }
    
    .values-section .section-title {
        font-size: 1.8rem;
    }
    
    .value-title {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .value-description {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .mission-card {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    
    .mission-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .mission-title i {
        font-size: 22px;
        margin-right: 10px;
    }
    
    .mission-description {
        font-size: 15px;
    }
}

@media (max-width: 375px) {
    .values-section {
        padding: 35px 10px;
    }
    
    .values-container {
        padding: 0 5px;
    }
    
    .value-card {
        padding: 20px 15px;
    }
    
    .value-icon {
        width: 55px;
        height: 55px;
    }
    
    .value-icon i {
        font-size: 26px;
    }
    
    .value-title {
        font-size: 16px;
    }
    
    .value-description {
        font-size: 13px;
    }
}