@charset "utf-8";

.title-bar {
    margin: 50px;
    padding: 20px;
    background-color: #6cbcef;
    border-radius: 10px;
}

.breadcrumb {
	margin-top: 4px;
	display: inline-block;
}

.breadcrumb,
.breadcrumb a,
.breadcrumb strong,
.breadcrumb span {
    font-size: 14px;
}

.title {
    display: flex;
    justify-content: space-between;
}

.title h1 {
    width: 70%;
    padding-right: 20px;
    padding-top: 20px;
    font-size: 30px;
}

.title p {
    display: flex;
    justify-content: end;
    flex-direction: column;
    font-size: 14px;
}

.video-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 50px 50px;
    position: relative;
}

.video-wrap .video-show {
	width: 686px;
    height: 388px;
	overflow: hidden;
    position: relative;
    border-radius: 10px;
    background-color: #fff;
}

.fm {
    position: absolute;
    max-width: 100%;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.video-wrap .video-show .fm {
    z-index: 90;
}

.video-wrap .video-show .fmp {
    width: 100px;
    height: 100px;
    background: transparent url(../images/play.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    font-size: 0;
    z-index: 99;
}

.video-wrap .video-show video {
    max-width: 100%!important;
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    left: 0;
    top: 0;
}

.video-wrap .video-info {
    flex: 1;
}

.video-wrap .nav {
    width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-wrap .nav .g {
    width: 1.5px;
}

.video-wrap .nav a img {
    width: 20px;
}

.video-wrap .nav .top img {
    transform: rotate(-90deg);
}

.video-wrap .nav .bottom img {
    transform: rotate(90deg);
}

.video-info .img-t {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.video-info .img-x {
    width: 12px;
    height: 10px;
}

.video-info .info-1 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid #2197d4;
}

.video-info .info-1 .l {
    display: flex;
}

.video-info .info-1 .l span {
    padding-left: 10px;
}

.video-info .info-1 .r {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.video-info .info-1 .r span {
    padding-left: 4px;
}

.video-info .info-2 {
    padding: 20px 0;
    min-height: 314px;
}

.video-info .info-3 {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 2px solid #c4e4fb;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .title-bar {
        margin: 10px;
    }
    
    .title {
        flex-direction: column;
    }
    
    .title h1 {
        width: 100%;
        font-size: 20px;
        padding: 10px 0;
    }
    
    .video-wrap .nav {
        display: none;
    }
    
    .video-wrap {
        justify-content: inherit;
        flex-direction: column;
        padding: 10px;
    }
    
    .video-wrap .video-show {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .video-wrap .video-info {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .video-info .info-2 {
        min-height: inherit;
    }
    
    .video-wrap .video-show .fmp {
        width: 20%;
        height: 20%;
    }
}