/* 亿媒汇公司介绍页面样式 */

/* 全局样式 */
.yimhui-company-container {
    font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* 通用区块标题样式 */
.yimhui-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.yimhui-section-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 15px 0;
}

.yimhui-title-en {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #2c6bed;
    text-transform: uppercase;
}

.yimhui-title-cn {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.yimhui-title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    width: 100%;
    max-width: 300px;
}

.yimhui-separator-line {
    height: 1px;
    background-color: #e1e1e1;
    flex-grow: 1;
}

.yimhui-separator-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2c6bed;
    color: #fff;
    margin: 0 15px;
    font-size: 16px;
}

.yimhui-section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* 通用内容容器样式 */
.yimhui-section-content {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* 通用按钮样式 */
.yimhui-btn {
    display: inline-block;
    background-color: #2c6bed;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yimhui-btn:hover {
    background-color: #1a57c8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 107, 237, 0.15);
}

.yimhui-btn-outline {
    background-color: transparent;
    border: 2px solid #2c6bed;
    color: #2c6bed;
}

.yimhui-btn-outline:hover {
    background-color: #2c6bed;
    color: #fff;
}

/* 响应式媒体查询 */
@media (max-width: 1199px) {
    .yimhui-section-content {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .yimhui-section-content {
        max-width: 720px;
    }
    
    .yimhui-title-cn {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .yimhui-section-content {
        max-width: 540px;
    }
    
    .yimhui-section-header {
        margin-bottom: 40px;
    }
    
    .yimhui-title-cn {
        font-size: 28px;
    }
    
    .yimhui-section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .yimhui-section-content {
        padding: 0 15px;
    }
    
    .yimhui-title-cn {
        font-size: 24px;
    }
    
    .yimhui-section-subtitle {
        font-size: 14px;
    }
    
    .yimhui-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.yimhui-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.yimhui-fade-in {
    animation: fadeIn 0.8s ease forwards;
} 