.main-saying {
    padding: 50px 80px;
}

.saying-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    height: 492px;
    overflow: hidden;
    padding: 15px 0;
}


.saying-item {
    max-width: 320px;
    min-width: 280px;
    flex: 1;
    height: auto;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    padding: 30px;
    cursor: pointer;
}

.saying-item:hover {
    box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.11);
}

.saying-title {
    font-size: 24px;
    font-family: SFPro-Semibold, SFPro, Arial;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saying-score {
    margin: 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.saying-star {
    display: inline-block;
    white-space: nowrap;
}

.saying-store {
    float: right;
    color: #0066FF;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.saying-main {
    font-size: 16px;
    font-family: ArialMT, Arial;
    color: rgba(0, 0, 0, .5);
    line-height: 22px;
    height: 220px;
    overflow: hidden;
    position: relative;
    /* display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 8;
text-overflow: ellipsis; */

}

.saying-main-full {
    mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 20px, rgb(0, 0, 0) 20px), linear-gradient(270deg, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 50px, rgb(0, 0, 0) 68px);
    -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 20px, rgb(0, 0, 0) 20px), linear-gradient(270deg, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 50px, rgb(0, 0, 0) 68px);
}

.el-tabs--top {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

.el-tabs__header {
    width: 400px;
    max-width: 80%;
}

.el-tabs__nav-scroll {
    display: flex;
    justify-content: center;
}

.el-tabs__active-bar {
    top: 0
}

.el-tabs__nav-wrap::after {
    top: 1px;
    background-color: #BFBFBF;
    height: 1px;
}

.el-tabs__header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: #BFBFBF;
    z-index: 1;
}

.el-tabs__header::before {
    content: "";
    position: absolute;
    right: 0;
    top: 1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translate(50%, -50%);
    background-color: #BFBFBF;
    z-index: 1;
}

.el-tabs__item {
    color: #7f7f7f
}

.el-tabs__item.is-active {
    color: #0066FF;
}

.el-tabs__active-bar {
    background-color: #0066FF;
    height: 2px;
}

.transparentAva.el-avatar {
    background: none;
}

.saying-user {
    display: flex;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

.saying-using-main {
    margin-left: 14px;
    max-width: calc(100% - 45px);
}

.saying-using-main div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 16px;
    font-family: ArialMT, Arial;
    color: #000000;
    line-height: 22px;

}

.saying-main-more {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    color: #0066FF
}

.el-carousel__item {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.main-saying .el-carousel__container {
    height: 492px;
}

/* .v-enter {
    opacity: 0;
}

.v-enter-to {
    opacity: 1;
}

.v-enter-active {
    transition: all .5s;
}

.v-leave {
    opacity: 1;
}

.v-leave-to {
    opacity: 0;
}

.v-leave-active {
    transition: all .5s;
} */

.v-enter,
.v-leave-to{
    opacity: 0;
    transform: translateY(80px);
}

.v-enter-active,
.v-leave-active{
    transition: all 0.6s ease;
}


/*两个搭配使用，能够实现后续列表渐渐飘上来的效果*/
.v-move{
    transition: all 0.6s ease;
}
.v-leave-active{
    position: absolute;
}

.saying-drawer .el-drawer{
    background-color: rgba(0,0,0,.5);
}
.saying-drawer .el-drawer__header{
    margin-bottom: 0;
    padding: 20px;
}
.saying-drawer .el-drawer__body{
    background-color: #FFF;
    display: flex;
    height: 100%;
    flex-direction: column;
}

.saying-drawer .el-drawer__close-btn{
    color: #FFF;
}
.saying-drawer .el-dialog__close{
position: absolute;
    right: 10px;
    top: 12px;
}
.saying-body{
    padding: 0 80px 24px;
    flex: 1;
    overflow: auto;
    
}
.saying-drawer-item{
    width: 100%;
    border-bottom:1px solid #E5E5E5;
    padding: 30px 0;
}

.saying-drawer-main{
    color:rgba(0,0,0,.8)
}

.saying-drawer-store{
    display: inline-block;
    background: #3385FF;
    border-radius: 15px;
    height: 32px;
    color: #FFF;
    line-height: 32px;
    font-size: 16px;
    padding: 0 10px;
    cursor: pointer;
}

.saying-drawer-store img{
    vertical-align: text-top;
}
.saying-using-store{
    position: absolute;
    right: 10px;
}
@media screen and (min-width:1024px) {
    .saying-body{
        width: 60%;
        margin: 0 auto;
    }
}

@media screen and (max-width:1200px) {
    .main-saying {
        padding: 50px;
    }
    .saying-body{
        padding: 0 50px 24px;
    }
}

@media screen and (max-width:767px) {
    .el-tabs__item {
        padding: 0 10px;
    }

    .main-saying {
        padding: 20px 0;
    }
    .saying-body{
        padding: 0 24px 24px;
    }

    .home-model-large {
        display: none;
    }
}

@keyframes backflash {
    0% {
        background: #FFF;
    }

    25% {
        background: rgba(0,0,0,.1);
    }

    50% {
        background: #FFF;
    }

    75% {
        background: rgba(0,0,0,.1);
    }

    100% {
        background: #FFF;
    }
}

.saying-active {
    animation: backflash 0.5s ease-in-out 0s 2;
}

.el-message{
    max-width: 96%;
    width: auto;
    min-width: 0;
}


    button {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
    }
