/* 关于我们样式 */
.about-section {
    position: relative;
    background-image: url('https://res.yzfz.net/website/fz_about_1_n.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 2rem 0 2rem 0;
    overflow: hidden;
    min-height: 40rem;
}
.about-content {
    max-width: 60rem;
    z-index: 2;
    position: relative;
    /* background-color: rgba(255, 255, 255, 0.95); */
    padding: 40px;
    border-radius: 12px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
}
.about-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}
.about-tip{
    font-size: 18px;
}

.about-contact-btn {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
}
.about-contact-btn:hover {
    background-color: #e0f7fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 96, 100, 0.15);
}

/* 第二个内容区域样式 */
.about-section-two {
    position: relative;
    background-image: url('https://res.yzfz.net/website/fz_about_2_bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 3.9rem 0 5rem;
}

.about-content-two {
    z-index: 2;
    position: relative;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-section-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #333;
}

.about-section-text {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image-container {
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-section-two .row {
        flex-direction: column-reverse;
    }
    
    .about-section-two .col-lg-6 {
        margin-bottom: 30px;
    }
    
    .about-content-two {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
    .about-subtitle {
        font-size: 16px;
    }
    .about-section {
        padding: 60px 0 150px 0;
        min-height: 500px;
    }
    .about-content {
        max-width: 100%;
        padding: 30px 20px;
    }
    .about-btn,
    .about-contact-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .about-section-two {
        padding: 80px 0 60px 0;
        margin-top: -60px;
    }
    
    .about-section-title {
        font-size: 28px;
    }
    
    .about-section-text {
        font-size: 15px;
    }
}

/* 第三个内容区域样式 */
.about-section-three {
    position: relative;
    padding: 7rem 0 5rem; 
    background: #fff;
}

.value-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.value-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.value-card:hover .value-image {
    transform: scale(1.05);
}

.value-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.value-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list-item {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
}

.value-list-item:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-section-three .row {
        justify-content: center;
    }
    
    .about-section-three .col-lg-4 {
        max-width: 500px;
        margin-bottom: 30px;
    }
    
    .about-section-three .col-lg-4:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .about-section-three {
        padding: 80px 0 60px 0;
    }
    
    .value-title {
        font-size: 22px;
    }
    
    .value-text,
    .value-list-item {
        font-size: 15px;
    }
    
    .value-content {
        padding: 20px;
    }
    
    .value-image-container {
        height: 180px;
    }
}

/* 地址部分样式 */
.about-section-address {
    position: relative;
    padding: 1rem 0 3rem;
    background-color: white;
}

.address-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.address-card {
    /* background-color: white; */
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.address-image-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.address-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.address-card:hover .address-image {
    transform: scale(1.05);
}

.address-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.address-badge {
    background-color: rgba(4, 134, 254, 0.1);
    color:rgba(4, 134, 254, 1);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.address-city {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.address-detail {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
}

/* 地址部分响应式设计 */
@media (max-width: 992px) {
    .about-section-address .row {
        justify-content: center;
    }
    
    .about-section-address .col-lg-4 {
        max-width: 500px;
        margin-bottom: 30px;
    }
    
    .about-section-address .col-lg-4:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .about-section-address {
        padding: 80px 0 60px 0;
    }
    
    .address-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .address-content {
        padding: 20px;
    }
    
    .address-image-container {
        height: 200px;
    }
    
    .address-city {
        font-size: 16px;
    }
    
    .address-detail {
        font-size: 15px;
    }
}