
.vod-info {
    background-color: white;
    width: 70%;
    min-width: 960px;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
}
.vod-img {
    display: flex;
    width: 320px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 15px;
}
.vod-img img{
    border: 1px solid #c2c2c2;
    border-radius: 8px;
    max-width: 95%;
}

.vod-detail {
    flex: 1;
    margin-right: 12px;
}

.vod-detail ul{
    padding-left: 0;
    margin: 15px 0px;
    list-style-type: none;
}

.vod-detail li {
    margin-bottom: 10px;
    border-bottom: 1px solid #b2b2b291;
    line-height: 25px;
    display: block;
}

.vod-title {
    display: flex;
    align-items: baseline;
}

.vod-title label{
    flex: 1;
    text-align: right;
    color: red;
    font-size: 22px;
    font-weight: 600;
}


.vod-introduce {
    background-color: white;
    width: 70%;
    min-width: 960px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 15px;
}

.vod-list {
    background-color: white;
    width: 70%;
    min-width: 960px;
    margin: 35px auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 15px;
}


.list-item {
    display: flex;
    background: white;
    flex-direction: row;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    border-bottom: 1px solid #b2b2b291;
}

.list-item:hover {
    background-color: #dedede;
    color: #4843e9;
}

.list-time {
    width: 30%;
    min-width: 280px;
    text-align: right;
    margin-right: 8px;
}
.list-title {
    flex: 1;
    margin-left: 20px;
}

