/* 活动详情页样式 */

/* 面包屑导航 */
.breadcrumb {
    background: transparent;
    padding: 20px 0;
    font-size: 14px;
    color: #666666;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #666666;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #5D7EFF;
}

.breadcrumb .separator {
    color: #999999;
    margin: 0 5px;
}

.breadcrumb .current {
    color: #333333;
    font-weight: 400;
}

/* 活动详情页专用背景 */
body.activity-detail-page {
    background: url('../images/activity_detail/bg-other.png') center top no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

/* 活动详情主体 */
.activity-detail {
    padding: 40px 0 60px;
}

.activity-detail .container {
   width: 1000px;
   max-width: 100%;
}

/* 活动主图 */
.activity-hero {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.activity-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* 活动标题 */
.activity-title {
        font-style: italic;
    font-size: 50px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}

.activity-title img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* 活动章节 */
.activity-section {
    margin-bottom: 50px;
}

/* 章节标题图片 */
.section-title-img {
    margin-bottom: 25px;
}

.section-title-img img {
    max-width: 400px;
    height: auto;
    display: block;
}

/* 活动描述 */
.activity-description ,
.registration-description  {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    text-align: justify;
}
.activity-description *,
.registration-description *{
    max-width: 100%;
        text-wrap-mode: wrap !important;
        word-break: break-word;
}
/* 赛程图片 */
.schedule-content {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.schedule-image {
    width: 870px;
    height: auto;
    display: block;
}

/* 导航按钮 */
.activity-navigation {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.nav-btn {
    background: #6B8FFF;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 6px 55px;
    font-size: 48px;
    font-family: 'YouSheFont';
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.nav-btn:hover {
    background: #5D7EFF;
    transform: translateY(-2px);
}

.nav-btn:active {
    transform: translateY(0);
}

/* 响应式设计 - 移动端 */
@media (max-width: 768px) {
  
    .activity-detail .container,
    .activity-hero{
        max-width: 100%;
    }
    .breadcrumb {
        padding: 12px 0;
        font-size: 12px;
    }
    
    .activity-detail {
        padding: 30px 0;
    }
    
    .activity-detail .container {
        padding: 0 15px;
    }
    
    .activity-hero {
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .activity-title img {
        max-width: 90%;
    }
    
    .section-title-img img {
        max-width: 250px;
    }
    
    .activity-info {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .info-item {
        flex-direction: column;
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .info-label {
        min-width: auto;
        margin-bottom: 5px;
    }
    
    .activity-description p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .section-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .schedule-image {
        width: 100%;
        height: auto;
        max-width: 870px;
    }
    
    .registration-content {
        padding: 20px;
        margin-top: 15px;
    }
    
    .registration-content p,
    .registration-content ul li {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .activity-navigation {
       
        gap: 15px;
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .nav-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}
