.event_activities {
    background: #F4F4F4;
}

.nav_white_box {
    background-color: #fff;
}


/* 赛事导航 */
.event_activities_main {
    margin-top: 8rem;
    padding-bottom: 10.7rem;
}
.activities_main_nav {
    height: 8rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E2E2E2;
}

.activities_nav_box {
    display: flex;
    gap: 4.8rem;
}

.activities_nav_item {
    
    font-weight: 400;
    
    color: #7A7980;
    cursor: pointer;
}

.activities_nav_active {
    
    font-weight: 600;
    
    color: #333333;
    position: relative;
}

.activities_nav_active::after {
    content: '';
    position: absolute;
    width: 6.4rem;
    height: 0.2rem;
    background: #8465FF;
    bottom: -2.9rem;
    left: 0;
}

.activities_hold_btn {
    position: absolute;
    right: 0;
    width: 10.4rem;
    height: 3.2rem;
    background: #8465FF;
    border-radius: 2rem;
    
    font-weight: 500;
    font-size: 1.2rem; ;
    color: #FFFFFF;
    line-height: 3.2rem;
    text-align: center;
    cursor: pointer;
}

/* 活动列表 */
.activities_main_list {
    margin-top: 3.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3.2rem;
}

.activities_list_item {
    width: 70.4rem;
    /*height: 466px;
    */box-sizing: border-box;
    border-radius: 1.2rem;
    position: relative;
    background-color: #fff;
}

.activities_list_item_img {
    width: 70.4rem;
    height: 35.5rem;
    background: #EBEBEB;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
}

.activities_list_item_state {
    position: absolute;
    left: 0;
    top: 2.4rem;
    height: 3.6rem;
    padding: 0 2.4rem 0 1.6rem;
    line-height: 3.6rem;
    
    font-weight: 500;
    font-size: 1.4rem;
    color: #FFFFFF;
}

.state_1 {
    background: #FFB908;
}

.state_2 {
    background: #08B5FF;
}

.state_3 {
    background: #CCCCCC;
}

.activities_list_item_title {
    
    font-weight: 600;
    
    color: #333333;
    margin-top: 2rem;
    margin-bottom: 1.4rem;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.activities_list_item_time {
    
    font-weight: 500;
    font-size: 1.4rem;
    color: #AAAAAA;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.activities_list_item_bottom {
    padding: 2rem;
    width: 100%;
    margin-top: 2rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f2f2f2;
    /* align-items: center; */
}

.activities_list_bottom_item {
    display: flex;
    align-items: center;
    margin-right: 2.4rem;
}

.activities_list_bottom_item2 {
    display: flex;
    align-items: center;
}

.activities_list_bottom_item2 .activities_list_bottom_item:last-child {
    margin-right: 0;
}

.activities_list_bottom_text {
    
    font-weight: 500;
    font-size: 1.2rem; ;
    color: #AAAAAA;
    margin-left: 1rem;
}

/* 分页 */
.activities_main_paging {
    margin-top: 3.6rem;
    display: flex;
    justify-content: center;
}