@font-face {
    font-family: 'viewall';
    src: url('viewall.woff2') format('woff2'), url('viewall.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.viewall_plugin {
    overflow: hidden;
    position: relative
}

.readnum, .readall, .readon {
    width: 100%;
    height: 130px;
    margin: 0;
    color: #0188fb;
    text-align: center;
    font-size: 14px;
    text-indent: 0;
    cursor: pointer;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 50%);
    position: absolute;
    left: 0;
    bottom: 0;
    display: block
}

.readall i, .readon i {
    margin: 80px auto 0;
    line-height: 40px;
    font-style: normal;
    text-align: center;
    border: 1px solid #0188fb;
    border-radius: 3px;
    display: block
}

.readon i {
    width: 200px;
    border-radius: 20px;
    background: #0188fb;
    display: inline-block;
}

.readon i::before {
    content: "点击展开全文";
    color: #fff;
}

.readall i::before {
    content: "阅读更多";
}

.readall i::after, .readon i::after {
    content: "\e69b";
    font-size: 22px;
    font-family: viewall;
    display: inline-block;
    vertical-align: top;
    -webkit-animation: readallico .4s infinite alternate
}

.readon i::after {
    color: #fff;
}

.readnum i {
    margin: 50px 0 20px;
    font-size: 16px;
    font-style: normal;
    text-indent: 0;
    line-height: 28px;
    display: inline-block
}

.readnum i::before {
    content: "阅读剩余�? ";
}

.readnum i::after {
    content: "\e69b";
    width: 33px;
    margin-left: -20px;
    font-size: 30px;
    font-family: viewall;
    position: absolute;
    bottom: 24px;
    left: 50%;
    -webkit-animation: readnumico .4s infinite alternate;
    -ms-animation: readnumico .4s infinite alternate
}

@-webkit-keyframes readnumico {
    0% {
        -webkit-transform: translate(0, -2px)
    }

    100% {
        -webkit-transform: translate(0, 3px)
    }
}

@-webkit-keyframes readallico {
    0% {
        -webkit-transform: translate(0, -2px)
    }

    100% {
        -webkit-transform: translate(0, 3px)
    }
}

@-webkit-keyframes arrow {
    from {
        -webkit-transform: translate3d(-webkit-calc(-44%), 5px, 0);
        transform: translate3d(calc(-44%), 5px, 0)
    }

    to {
        -webkit-transform: translate3d(-webkit-calc(-44%), 0, 0);
        transform: translate3d(calc(-44%), 0, 0)
    }
}

@keyframes arrow {
    from {
        -webkit-transform: translate3d(-webkit-calc(-44%), 5px, 0);
        transform: translate3d(calc(-44%), 5px, 0)
    }

    to {
        -webkit-transform: translate3d(-webkit-calc(-44%), 0, 0);
        transform: translate3d(calc(-44%), 0, 0)
    }
}