﻿/* 企业实力展示板块 - 加大版（调整间距） */
.yh-trust-section {
    background: rgb(0, 52, 82);
    color: white;
    padding: 50px 0 10px 0;  /* 关键：底部padding从30px缩至10px，减少底部空白 */
    margin: 0 auto !important; 
    width: 100vw !important; 
    max-width: 100% !important; 
    box-sizing: border-box; 
    position: relative; 
    left: 0 !important; 
}

.yh-trust-container {
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto !important; 
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 0 !important; /* 新增：取消容器底部默认间距 */
}

.yh-section-intro {
    text-align: center;
    margin-top: 20px;  
    margin-bottom: 20px;  
}

.yh-section-title {
    font-size: 38px;  
    font-weight: 800;
    margin-bottom: 15px;  
    color: #ffff00; 
    line-height: 1.3;
}

.yh-section-subtitle {
    font-size: 12px;  
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.yh-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;  
    margin-bottom: 10px !important;  /* 关键：网格底部间距从40px缩至10px */
    justify-items: center; 
    width: 100%;
    margin-left: 0 !important; 
    margin-right: 0 !important;
}

.yh-trust-badge {
    border-radius: 10px;  
    padding: 25px 15px;  
    text-align: center;
    border: 0px solid rgba(255, 255, 255, 0.1);
    min-height: 200px;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%; 
    max-width: 220px; 
}

.yh-badge-icon {
    margin-bottom: 20px;  
    color: #ff9800; 
    height: 60px;  
    display: flex;
    align-items: center;
    justify-content: center;
}

.yh-badge-icon svg {
    width: 48px;  
    height: 48px;
}

.yh-badge-number {
    font-size: 36px;  
    font-weight: 800;
    margin-bottom: 10px;  
    color: #00ADFF;
    font-family: 'Arial', sans-serif;
    line-height: 1;
}

.yh-badge-number .yh-plus {
    font-size: 28px;  
    color: #ff9800; 
    margin-left: 2px;
}

.yh-badge-label {
    font-size: 18px;  
    font-weight: 600;
    margin-bottom: 8px;  
    color: #fff;
    line-height: 1.3;
}

.yh-badge-desc {
    font-size: 14px;  
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    max-width: 140px;
}

.yh-trust-footer {
    text-align: center;
    padding-top: 15px;  /* 顶部padding从25px缩至15px */
    border-top: 2px solid rgba(255, 255, 255, 0.15);  
    margin-top: 10px; /* 顶部margin从20px缩至10px */
    margin-bottom: 0 !important; /* 新增：取消footer底部间距 */
}

.yh-client-logos {
    display: flex;
    justify-content: center;
    gap: 25px;  
    margin-bottom: 5px;  /* 底部间距从10px缩至5px */
    flex-wrap: wrap;
}

.yh-logo-text {
    font-size: 15px;  
    font-weight: 700;
    color: #fff;
    padding: 10px 20px;  
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;  
    min-width: 80px;
    text-align: center;
}

.yh-client-tagline {
    font-size: 22px;  
    color: #ffff00;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 15px; /* 顶部margin从30px缩至15px */
    margin-bottom: 0 !important; /* 关键：取消标语底部20px间距 */
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .yh-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .yh-trust-grid {
        grid-template-columns: 1fr;
    }
    .yh-section-title {
        font-size: 28px;
    }
}