html {
    font-size: 10px;
    font-family: SourceHanSansCN-Regular, SourceHanSansCN , PingFangSC, PingFang SC IM !important;
    line-height: normal;
}
body {
    font-family: SourceHanSansCN-Regular, SourceHanSansCN , PingFangSC, PingFang SC IM !important;
    line-height: normal
}
#app {
    background: #F0F4FA;
    display: flex;
    justify-content: center;
}
.comm_banner {
    background: url(https://www.openkylin.top/upload/202501/1736757426705272.png) no-repeat center center;
}

.schedule {
    width: 75%;
    /* min-width: 1440px; */
}

.schedule_search {
    display: flex;
    gap: 1.2rem;
    margin: 6rem 0 4.5rem 0;
}
.schedule_select {
    width: 16rem !important;
}

.schedule_month {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    width: 100%;
}

.schedule_month_item {
    display: inline-block;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.2);
}

.schedule_month_item:hover {
    color: #fff;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.schedule_month_item.active {
    background: linear-gradient(90deg, #ff8c00, #ff2e63);
    color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}


.schedule_content {
    min-height: 100vh;
}
.schedule_date {
    font-weight: bold;
    font-size: 3.2rem;
    color: #262626;
    margin-bottom: 2.1rem;
}

.schedule_item_warp {
    background: #FFFFFF;
    border-radius: 1.2rem;
    padding: 3rem;
    margin-bottom: 4.5rem;
}
.schedule_item {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.schedule_type {
    width: 100%;
    font-weight: bold;
    font-size: 2.4rem;
    color: #262626;
}
.schedule_activity {
    width: calc(33% - 1.5rem);
    /* max-width: 44rem; */
    background: #FFEBD7;
    border-radius: 8px;
    padding: 1.5rem 3.75rem;
    border-left: .8rem solid #FE9024;;
    color: #262626
}
.schedule_activity_end {
    background: #EAEAEA;
    border-left: .8rem solid #4C4E59;
    color: #0C7BEB;
}
.schedule_activity_meeting {
    background: #F0F4FA;
    border-left: .8rem solid #0C7BEB;
    color: #262626

}
.schedule_activity_name {
    font-weight: bold;
    font-size: 2rem;
    /* color: #0C7BEB; */
    margin-bottom: 2rem;
    /* 仅显示一行，溢出省略号 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1; /* 限制显示一行 */
    -webkit-box-orient: vertical;
}

.schedule_activity_date, .schedule_activity_location {
    font-weight: 400;
    font-size: 1.6rem;
    color: #262626;
    margin-bottom: 1.2rem;
}

/* 平板、移动端分辨率兼容 */
@media screen and (max-width: 1524px) {
    .schedule {
        width: 90%;
    }
    .schedule_activity {
        width: 48%;
    }
}

@media screen and (max-width: 768px) {
    .schedule_search {
        flex-direction: column;
        align-items: flex-start;
    }
    .schedule_select {
        width: 100%;
        margin-bottom: 1rem;
    }
    .schedule_month {
        flex-wrap: wrap;
    }
    .schedule_month_item {
        width: auto;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .schedule_activity {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
    }
    .schedule_item {
        margin-bottom: 2rem;
    }
    .schedule_date {
        margin-bottom: 1rem;
    }
}
/* 移动端 */
@media screen and (max-width: 576px) {
    .schedule_activity_name {
        font-size: 1.4rem;
    }
    .schedule_activity_date, .schedule_activity_location {
        font-size: 1.1rem;
    }
}
