/* 原创保护页面样式 */
.ycbh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 标题区域样式 */
.ycbh-header {
    text-align: center;
    padding: 40px 0;
    background: #f8f9fa;
    border-radius: 8px;
}

.ycbh-header h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.ycbh-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #333;
}

.ycbh-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

/* 认证类型容器 */
.auth-types {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 16px;
}

/* 单个认证卡片 */
.auth-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* 认证卡片内容 */
.auth-content {
    flex: 1;
}

.auth-content h3 {
    color: #1a7bcd;
    font-size: 20px;
    margin-bottom: 15px;
}

.auth-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-indent: 2em;
    line-height:180%;
}

/* 认证卡片图片 */
.auth-image {
    width: 110px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

/* 图片展示区域 */
.image-section {
    text-align: center;
    margin-bottom: 40px;
}

.image-section h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.image-section p {
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.image-section p::before,
.image-section p::after {
    content: '';
    flex: 0 0 30px;
    height: 1px;
    background-color: #333;
    margin: 0 10px;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .auth-types {
        flex-direction: column;
        align-items: center;
    }
    
    .auth-card {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .ycbh-header {
        padding: 30px 15px;
    }
    
    .ycbh-header h2 {
        font-size: 24px;
    }
    
    .auth-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .auth-image {
        width: 100px;
        height: 100px;
    }
}