/* styles\style-about.css */
#brief {
    padding: 40px 120px;
}

.brief-text {
    font-size: 16px;
    font-family: Microsoft-YaHei;
    line-height: 2;
    color: rgba(68, 68, 68);
}

/* 新增：确保自定义文本框内容的样式与原有设计一致 */
.briefbox .brief-text {
    font-size: 16px;
    font-family: Microsoft-YaHei;
    line-height: 2;
    color: rgba(68, 68, 68);
}

.briefbox .brief-content {
    font-size: 16px;
    font-family: Microsoft-YaHei;
    line-height: 2;
    color: rgba(68, 68, 68);
}

/* 处理换行样式 */
.briefbox br {
    content: "";
    display: block;
    margin-bottom: 0.6em;
}

/* 覆盖可视化编辑器的内联样式 - 使用更温和的方式 */
.briefbox p[style] {
    font-family: Microsoft-YaHei !important;
    font-size: 16px !important;
    line-height: 2 !important;
    color: rgba(68, 68, 68) !important;
}

#briefimg {
    background-color: rgba(245, 246, 247);
    padding: 40px 120px;
}

.awards-container {
    position: relative;
    margin: 30px 0;
    padding: 0 50px;
}

.awards-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 15px 0;
}

.award-item {
    flex: 0 0 auto;
    width: 250px;
    margin: 0 15px;
    border-radius: 6px;
    padding: 0;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
    box-shadow: none;
}

.award-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.award-title {
    color: #2c3e50;
    font-size: 16px;
    margin-top: 12px;
    font-weight: 500;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #555;
    transition: all 0.2s ease;
    z-index: 10;
}

.nav-btn:hover:not(:disabled) {
    background: #9370DB;
    color: white;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}