﻿* {
    margin: 0;
    padding: 0;
}
[v-cloak]{
    display:none;
}
a {
    text-decoration: none;
}

li {
    list-style: none;
}

.header {
    width: 100%;
    height: 100px;
    background-color: #F8F8F8;
}

.bigger {
    width: 1160px;
    /* background: #84B12E; */
    margin: 0px auto 30px;
    display: flex;
    justify-content: space-between;
}

.container {
    width: 670px;
    position: relative;
    margin-left: 145px;
    columns: 2;
    column-gap: 30px;
}

.container .vedio {
    position: relative;
    margin-bottom: 36px;
    width: 325px;
    break-inside: avoid;
    min-height: 213px;
}

    .container .vedio .pic {
        cursor: pointer;
        overflow: hidden;
    }
    .container .vedio .pic img {
        border-radius: 4px;
        transition: all 1s;
    }
        .container .vedio .pic img:hover {
            transform: scale(1.12);
        }

    .container .vedio .play {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -37px;
        margin-top: -37px;
        cursor: pointer;
    }

.container .vedio .desc {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 68px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    border-radius: 0px 0px 4px 4px;
}

.container .vedio .desc span {
    display: block;
    font-size: 18px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    margin-top: 25px;
    margin-left: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}



/* 悬浮左侧 */
.aside {
    width: 120px;
    position: absolute;
    top: 236px;
}
.fixed {
    position: fixed;
    top: 0;
}
.asi {
    width: 120px;
    position: absolute;
    top: 236px;
}
.aside .block {
    width: 120px;
    height: 40px;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 5px;
    cursor: pointer;
}
.aside .block:hover{
    background: #F5F8F7;
}
.aside .block img {
    width:20px;
    vertical-align: middle;
    margin-right: 4px;
}

.aside .block span {
    line-height: 40px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #202123;
    vertical-align: middle;
}

/* 右侧悬浮栏 */
.aside_r {
    width: 320px;
    /* background: skyblue; */
    /* position: absolute;
    right: -51%;
    top: 0%; */
}

.aside_r .title {
    display: flex;
    justify-content: start;
    margin-top: 14px;
}

.aside_r .title span {
    font-size: 18px;
    font-family: MicrosoftYaHei;
    color: #202123;
    margin-right: 5px;
}

.aside_r .line {
    width: 320px;
    height: 2px;
    background: #EEEEEE;
    position: relative;
    margin-bottom:15px;
}

.aside_r .line .mask {
    width: 72px;
    height: 2px;
    background: #84B12E;
    position: absolute;
    left: 0;
    top: 0;
}
.aside_r .line .list{
    width: 56px;
}

.aside_r .tag {
    /*width: 320px;*/
    margin-top: 22px;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.aside_r .tag .every:hover {
    background: #363636;
    color: #FFFFFF!important;
    cursor: pointer;
}

.aside_r .tag .every {
    width: fit-content;
    /* 自适应宽度(特定布局下不加此属性会独占一行) */
    background: #F5F5F5;
    border-radius: 2px;
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #202123;
    word-break: keep-all;
    padding: 6px 12px;
    margin-right: 12px;
    margin-bottom: 14px;
}

.aside_r .block {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.aside_r .block .left {
    width: 117px;
    height: 150px;
    border-radius: 2px;
    position: relative;
}

.aside_r .block .left img {
    width: 117px;
    height: 150px;
    border-radius: 2px;
    object-fit: cover;
}

.aside_r .block .left .level {
    position: absolute;
    left: 0;
    top: 0;
}

.aside_r .block .left .level img {
    width: 20px;
    height: 28px;
}

.aside_r .block .right {
    width: 191px;
    position: relative;
}

    .aside_r .block .right .big {
        width: 191px;
        font-size: 16px;
        font-family: MicrosoftYaHei;
        color: #303133;
        line-height: 24px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        /*white-space: nowrap;*/
    }

.aside_r .block:hover .right .big {
    color: #6FA402;
}

.aside_r .block .right .tag .every {
    padding: 2px 7px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #606266;
    cursor: pointer;
}

.aside_r .block .right .tag {
    margin-top: 12px;
    margin-bottom: 0px;
    max-height: 60px;
    overflow: hidden;
}

.aside_r .block .right .message {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    left: 0px;
    bottom: 10px;
}

.aside_r .block .right .message .play {
    margin-right: 20px;
}

.aside_r .block .right .message .play span {
    font-size: 12px;
    font-family: MicrosoftYaHei;
    color: #909399;
    vertical-align: middle;
}

.aside_r .block .right .message .play img {
    vertical-align: middle;
}

    .aside_r .tiao {
        width: 320px;
        height: 50px;
        background: #F6F7F8;
        border-radius: 4px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        border: 1px solid #ffffff;
    }
    .aside_r .tiao:nth-child(2n) {
        background: #ffffff;
    }
        .aside_r .tiao:hover {
            width: 320px;
            height: 50px;
            border: 1px solid #8EC31F;
            cursor: pointer;
        }
.aside_r .tiao:hover .desc{
    color: #6FA402;
}
.aside_r .tiao .num {
    font-size: 16px;
    font-family: EuclidSKYBold;
    color: #C9CCD0;
    line-height: 20px;
    letter-spacing: 1px;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.5);
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 14px;
}

.aside_r .tiao .desc {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #202122;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    line-height: 50px;
}
.sele{
    background: rgba(142, 195, 31, 0.14);
}
.sele span{
    color: #7FB606!important;
}