.xianxing-container {
    max-width: 1800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 20px;
    background-image: linear-gradient(0deg, #fbfbfb, #ffffff);
    border: 2px solid #ffffff;
    box-shadow: 0 0px 8px rgb(0 0 0 / 10%);
}
.container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: center;
}
.limit-section {
    padding: 20px;
    border-radius: 10px;
     background-image: linear-gradient(0deg, #fbfbfb, #ffffff);
    border: 2px solid #ffffff;
    box-shadow: 0 0px 8px rgb(0 0 0 / 10%);
    margin-bottom: 15px;
}
.rules {
    margin: 15px 0;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}
.weekly-rules {
    margin-top: 30px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.carousel {
    display: none;
}
.carousel.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.week-info {
    flex: 1;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
     background-image: linear-gradient(0deg, #fbfbfb, #ffffff);
    border: 2px solid #ffffff;
    box-shadow: 0 0px 8px rgb(0 0 0 / 10%);
    text-align: left;
}
.horizontal-list {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
    flex-wrap: wrap;
}
.day-info {
    flex: 1 1 120px; /* 使每个条目在小屏幕上自适应 */
    text-align: center;
    padding: 15px;
    border: 2px solid #2655ff;
    border-radius: 8px;
    margin: 5px;
    background-color: #e7f3fe;
    color: #31708f;
    transition: transform 0.3s, background-color 0.3s;
}
.day-info:hover {
    transform: translateY(-3px);
    background-color: #fff;
}
.buttons {
    margin-top: 10px;
}
.button {
    padding: 10px 20px;
    border: none;
    background-color: #2655ff;
    color: white;
    cursor: pointer;
    border-radius: 15px;
    margin: 0 5px;
    transition: background-color 0.3s, transform 0.2s;
}
.button:hover {
    background-color: #2655ff;
    transform: translateY(-2px);
}
@media (min-width: 600px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .limit-section {
        flex: 1;
        margin: 0 10px;
    }
}