
/*location*/

.location .location-inner {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding-top: 20px;
    border-bottom: 1px solid #F1F1F1;
    color: #2B4D2C;
    font-size: 14px;
    line-height: 40px;
    font-weight: bold;
    font-family: Adobe Heiti Std;
}

/*detail*/

.detail {
    padding: 0 0 24px;
    border-bottom: 1px solid #ECEAEB;
}

.detail .detail-inner {
    width: 1200px;
    margin: 0 auto;
}

.detail-inner .detail-con {
}

.detail-con .article .video-box {
    width: 800px;
    height: 450px;
    margin: 0 auto;
}

.detail-con .article .video-box .video-js.vjs-fluid {
    height: 100%;
    padding-top: 0;
}

.article .video-box video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: none;
}

.article .video-info {
    width: 100%;
    height: auto;
    padding: 18px 0 0;
}

.video-info .video-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
}

.video-info .info-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-info .info-list {
    font-size: 14px;
    color: #AAAAAA;
}

.video-info .info-list span {
    padding: 0 14px;
    float: left;
    line-height: 1;
    position: relative;
}

.video-info .info-list span:first-child {
    padding-left: 0;
}

.video-info .info-list span::after {
    content: '';
    width: 1px;
    height: 14px;
    background: #AAAAAA;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.video-info .info-list span:last-child::after {
    width: 0;
}

.video-info .video-share {
    font-size: 14px;
    color: #777777;
}

.video-info .video-share .social-share .social-share-icon {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 14px;
}

.video-info .video-share .social-share a {
    margin: 4px 6px;
}



.detail-con .recommend {
    padding: 50px 0;
}

.recommend .recom-title {
    position: relative;
}

.recommend .recom-title::after {
    content: '';
    width: calc(100% - 130px);
    height: 1px;
    background: #B5B5B5;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.recommend .recom-title .split {
    position: absolute;
    width: 8px;
    height: 21px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.recommend .recom-title .split span {
    display: block;
    width: 100%;
    height: 50%;
}

.recommend .recom-title .split span:first-child {
    background: #0C90C1;
}

.recommend .recom-title .split span:last-child {
    background: #CD2337;
}

.recommend .recom-title h3 {
    font-size: 22px;
    font-weight: bold;
    padding-left: 16px;
}

.recommend .recom-title h3 span:first-child {
    color: #0C90C1;
}

.recommend .recom-title h3 span:last-child {
    color: #CD2337;
}

.recommend .recom-con {
    padding: 30px 0 0;
}

.recommend .recom-con .recom-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
}


.recommend .recom-con .recom-list li {
    width: 182px;
    height: auto;
}

.recom-list li a {
    display: block;
}

.recom-list li .recom-cover {
    width: 100%;
    height: 102px;
    overflow: hidden;
    position: relative;
}

.recom-list li .recom-cover:hover img {
    transform: scale(1.1);
}

.recom-list li .recom-cover img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.recom-list li .recom-cover i {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("../img/icon_player.svg");
    background-size: 100% 100%;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.recom-list li .recom-info {
    font-size: 14px;
    color: #111111;
    text-align: center;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}