.gift-pop{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 110%;
    width: 100%;
    background-color: #fff;
    z-index: 25;
    transition:transform 0.3s ease 0s;
    transform: translateX(0);
}
.gift-pop.open{
    transform: translateX(-110%);
}

.gift-pop .on-tab{
    text-decoration: none;
}
.gift-pop .on-tab:active{
    background-color: #f3f3f3;
}

.gift-pop .pic{
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 5px 0 0;
}

.gift-pop .on-list{
    margin: 0 1rem;
}

.gift-pop .on-list>a{
    padding: 0.5rem 0 ;
    text-align: center;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: #333;
}

.gift-pop .on-list>a>img{
    display: block;
    height: 3.5rem;
    margin: 0 auto 0.5rem auto;
}

.gift-pop .checkbox{
    line-height: 1rem;
    font-weight: normal;
    position: relative;
}
.gift-pop .checkbox>input{
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    opacity: 0;
}
.gift-pop .checkbox>div{
    padding-left: 1.2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../images/icons/check_n.png);
}
.gift-pop .checkbox>input:checked + div{
    background-image: url(../images/icons/check_y.png);
}

.gift-pop .ico1{
    width: 1.2rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    background-image: url(../images/icons/g_gift.png);
}