.app-share-wrapper {
    padding-top: 0.5rem;
}
.app-share {
    padding: 0 0 2rem;
}

.app-save {
    position: relative;
    width: 16.8rem;
    height: 2.293333rem;
    margin: 0 auto 2.133333rem;
}

.app-save::before {
    content: "";
    display: block;
    position: absolute;
    bottom: .3rem;
    left: 50%;
    height: .3rem;
    width: 14.24rem;
    box-shadow: 0 0 2rem 1rem #cbcdd4;
    border-radius: 50%;
    background-color: #cbcdd4;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}

.app-save-btn {
    font-size: .8rem;
    color: #fff;
    background: -webkit-linear-gradient(45deg, #fd5d2c, #ff2b67);
    background: -o-linear-gradient(45deg, #fd5d2c, #ff2b67);
    background: -moz-linear-gradient(45deg, #fd5d2c, #ff2b67);
    background: linear-gradient(45deg, #fd5d2c, #ff2b67);
    width: 16.8rem;
    height: 2.293333rem;
    line-height: 2.293333rem;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 2.293333rem;
    border: 0;
    outline: 0;
    display: block;
    position: relative;
    padding-left: 1.866667rem;
    cursor: pointer;
}

.app-save-btn::before {
    position: absolute;
    top: 0;
    left: 2.56rem;
    content: '';
    width: .853333rem;
    height: 100%;
    background: url('https://wapcdn.thecover.cn/wap/5.3.0/img/daily_down_icon.png') no-repeat left center;
    background-size: 100% auto;
}

.app-loding-btn::before {
    display: none;
}

.app-share-title {
    font-size: .64rem;
    color: #000;
    text-align: center;
    position: relative;
    margin: 0 1.6rem 1.76rem;
    line-height: 1.3;
}

.app-share-title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    background-color: #cccccc;
}

.app-share-title span {
    display: inline-block;
    padding: 0 .586667rem;
    background-color: #fff;
    position: relative;
}

.app-daily-share-btn-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1.6rem;
    position: relative;
    margin: -1rem 0 1rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.app-share-wrapper .app-daily-share-btn-wrapper img{
    width: 7.093333rem;
}

.app-share-item {
    text-align: center;
    font-size: 0;
    letter-spacing: -4px;
}

.app-share-wrapper .app-share-item img {
    display: inline-block;
    margin: 0 .8rem;
    letter-spacing: 0;
    width: 2.986667rem;
}

.app-share-item.app-share-item-upper img {
    width: 2.4rem;
    margin: 0 .666667rem;
}
.share-mask-daily{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    font-size: 0;
    letter-spacing: -4px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0.3rem #aaa;
    display: none;
}
.share-mask-daily-show{
    -webkit-animation: maskShow .3s linear forwards;
    animation: maskShow .3s linear forwards;
}
.share-mask-daily-hide{
    -webkit-animation: maskHide .3s linear forwards;
    animation: maskHide .3s linear forwards;
}
.share-mask-daily-item{
    width: 50%;
    display: inline-block;
    letter-spacing: 0;
    box-sizing: border-box;
    position: relative;
    padding: 1.466667rem 0 1.066667rem;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}
.share-mask-daily-item::after{
    content: '';
    width: 1px;
    height: 2.133333rem;
    background-color: rgba(0,0,0,0.05);
    position: absolute;
    right: 0;
    top: 1.44rem;
}
.app-share-wrapper .share-mask-daily-item img {
    width: 1.333333rem;
    margin-bottom: .533333rem;
}
.share-mask-daily-item span {
    font-size: .8rem;
    color: #191919;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    line-height: 1.5;
    display: block;
    letter-spacing: 0.1rem;
}
.share-mask-daily-close{
    font-size: .8rem;
    display: block;
    line-height: 2.933333rem;
    text-align: center;
    letter-spacing: 0.1rem;
}
@-webkit-keyframes maskShow {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}
@keyframes maskShow {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@-webkit-keyframes maskHide {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}

@keyframes maskHide {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}