.program-form-box {
    margin-left: 40px;
    flex-grow: 1;
    height: 400px;
    overflow: hidden;
}
.program-form {
    transform: translatey(0);
}
.program-form:hover {
    animation-play-state: paused !important;
}

.channel-title, .program-date, .program-date {
    font-size: 18px;
    font-family: harmonyos sans sc-regular, harmonyos sans sc;
    font-weight: 400;
    color: #333333;
    line-height: 44px;
}

.program-info {
    font-size: 18px;
    font-family: harmonyos sans sc-regular, harmonyos sans sc;
    font-weight: 400;
    color: #333333;
    line-height: 44px;
}
.program-info ul li {
    padding-left: 20px;
    line-height: 44px;
    position: relative;
}
.program-info ul li::before {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(-50%, -50%);
    content: ' ';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background-color: #e2371c;
}
@keyframes movelist {
    0% {
        transform: translatey(0)
    }
    100% {
        transform: translatey(-100%)
    }
}