/* 客户页面样式 */
.clients-page, .global-business {
    padding: 60px 0;
}

.global-business {
    background-color: transparent;
}

/* 页面标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* 国内客户卡片样式 */
.domestic-clients {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    width: 100%;
    padding: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.client-card {
    background-color: transparent;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 25px 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 100%;
    min-height: 240px; /* 增加最小高度 */
    gap: 5px;
}

.client-logo {
    width: 100%;
    height: 120px; /* 增加logo容器高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin-bottom: 0;
    overflow: hidden;
}

.client-info {
    width: 100%;
    height: 100px; /* 增加信息区域高度 */
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.client-info h3 {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* 固定标题高度 */
    margin: 0;
}

.client-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制为3行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 58px; /* 固定描述文字高度 */
    margin: 0;
}

/* 全球业务覆盖区域样式 */
.country-count {
    color: #e74c3c;
    font-weight: 700;
}

.continent-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.continent-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.continent-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.continent-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.continent-section h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 20px;
    background: #e74c3c;
    margin-right: 10px;
    border-radius: 3px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px;
}

.country-card {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    border-color: #d0d0d0;
}

.flag {
    width: 45px;
    height: 45px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.flag i {
    font-size: 24px;
}

.country-card h4 {
    font-size: 14px;
    color: #444;
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}


.flag-icon {
    width: 30px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.country-card .flag {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}