.video {
    width: 100%;
    background: #fff;
}
.video-box {
    padding-top: 85px;
}
.video-box-item {
    padding-bottom: 100px;
    display: none;
}
.video-box-item .tit {
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: #333;
    letter-spacing: 2px;
    padding-bottom: 36px;
}
.video-box .tit .line {
    display: inline-block;
    width: 28px;
    height: 3px;
    background: #333;
}
.video-box .tit .text {
    position: relative;
    margin-left: 15px;
    margin-right: 15px;
}
.video-box .tit .text::after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    #background: #3488ea;
}
.sm-tit {
    position: relative;
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}
.sm-tit:after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 50px;
    height: 2px;
    background: #3488ea;
}
.video-list {
    width: 1160px;
    flex-wrap: wrap;
    margin: 0 auto 20px;
}
.video-list-item {
    width: 360px;
    cursor: pointer;
    margin-right: 40px;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.video-list-item:hover {
    box-shadow: 5px 5px 10px rgba(0,0,0,.2);
}
.video-list-item:nth-child(3n) {
    margin-right: 0;
}
.video-list-item .video-img {
    position: relative;
    width: 360px;
    overflow: hidden;
}
.video-list-item .video-img .img {
    width: 360px;
    height: auto;
}
.video-list-item .video-img .pause {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    width: 26px;
    height: 26px;
}
.video-list-item .video-img .time {
    position: absolute;
    left: 0;
    bottom: 12px;
    justify-content: space-between;
    width: 380px;
}
.video-list-item .video-img .time span {
    font-size: 10px;
    color: #fff;
    padding-left: 15px;
}
.video-list-item .video-img .time .audio {
    width: 13px;
    height: 11px;
    padding-right: 15px;
}
.video-list-item .video-tit {
    color: #333;
    font-size: 14px;
    height: 28px;
    padding: 10px;
    display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow : hidden;
	text-overflow: ellipsis;
}
.video-list-item .video-info {
    padding-bottom: 22px;
}
.video-list-item .video-info p {
    color: #646464;
    font-size: 14px;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 5px;
}
.video-more {
    width: 100%;
    margin-top: 20px;
}
.video-more .more{
    display: block;
    width: 160px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    background: #3488ea;
    margin: 0 auto;
    cursor: pointer;
}
.video-more .no {
    display: none;
    color: #999;
    font-size: 12px;
    text-align: center;
}
.video-more .more:hover {
    -webkit-box-shadow: 0px 10px 15px -10px #777777;
    -moz-box-shadow: 0px 10px 15px -10px #777777;
    -ms-box-shadow: 0px 10px 15px -10px #777777;
    -o-box-shadow: 0px 10px 15px -10px #777777;
    box-shadow: 0px 10px 15px -10px #777777;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.video-mask {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 10;
    display: none;
}
.video-play {
    position: fixed;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    width: 900px;
    height: 506px;
    background: #000;
    z-index: 11;
    display: none;
}
.video-play video {
    width: 900px;
    height: 506px;
}
.close {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 20px;
    color: rgba(255,255,255,.5);
    cursor: pointer;
}
