body {
    background-image: url("../images/bg_video.png");
    background-size: 100% 100%;
}
#container_content {
    width: 100%;
    padding: 0px 240px 0px 240px;
    margin-top: 40px;
    box-sizing: border-box;
}
.menu_desc {
    display: flex;
    align-items: center;
}
.menu_desc .col_title {
    font-size: 30px;
    font-family: Source Han Serif CN-SemiBold, Source Han Serif CN;
    font-weight: 600;
    color: #94232E;
    list-style: none;
}
.menu_desc img {
    width: 94px;
    height: 30px;
}
.col_videos_con {
    width: 100%;
    margin-top: 50px;
}
.col_videos_con .videos_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.col_videos_con .videos_list .videos {
    width: 24%;
    height: 300px;
    border: 1px solid rgba(222,28,49,0.1500);
    margin: 0px 0.5% 5px 0.5%;
    box-sizing: border-box;
    cursor: pointer;
}
.col_videos_con .videos_list .videos .video_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.col_videos_con .videos_list .videos .video_content .video_bg {
    width: 100%;
    height: 150px;
    position: relative;
}
.col_videos_con .videos_list .videos .video_content .video_bg .playImage {
    position: absolute;
    background: rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}
.col_videos_con .videos_list .videos .video_content .video_bg .playImage img {
    width: 20%
}
.col_videos_con .videos_list .videos .video_content .video_desc {
    display: flex;
    width: 100%;
    flex: 1;
    flex-direction: column;
    padding: 18px 0px 16px 16px;
    box-sizing: border-box;
    position: relative;
}
.col_videos_con .videos_list .videos .video_content .video_desc .video_title {
    font-size: 18px;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #333333;
}
.col_videos_con .videos_list .videos .video_content .video_desc .video_date {
    font-size: 12px;
    font-family: HarmonyOS Sans SC-Regular, HarmonyOS Sans SC;
    font-weight: 400;
    color: #999999;
    margin-top: 17px;
    display: flex;
    position: absolute;
    bottom: 10px;
    align-items: center;
    width: 100%;
    padding: 0px 10px 0px 10px;
    box-sizing: border-box;
}
.col_videos_con .videos_list .videos .video_content .video_desc .video_date .more {
    flex: 1;
    display: none;
    justify-content: flex-end;
    padding-right: 16px;
    cursor: pointer;
}
a {
    text-decoration: none;
    color: #94232E;
}
.wp_paging {
    font-size: 16px;
    display: flex;
    justify-content: end;
    margin-top: 15px;
}
.videoShow {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.1);
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    margin: 0 auto;
}
.videoShow video {
    width: 60vw;
    height: 50vh;
}
