
body{
    background-color: #fff;
}
.vip-header{
    height: 350px;
    background: url(./bg.jpg) no-repeat;
    background-size: cover;
}
.vip-header .page-width{
    position: relative;
    height: 100%;
}
.vip-user-info{
    width: 360px;
    position: absolute;
    right: 0;
    top:50%;
    margin-top:  -90px;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding:0 20px 20px;
}


.vip-user-info__body{
    position: relative;
    height: 85px;
    padding:10px 20px 20px 100px;
}
.vip-user-info__body .loading{
    height: 44px;
    position: absolute;
    left:0;
    right: 0;
    margin: 0 auto;
    top:50%;
    margin-top:-22px;
}
.vip-user-info__left{
    width: 106px;
    position: absolute;
    left:0;
    top:25px;
    text-align: center;
}
.vip-user-info__avatar{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
.vip-user-info__avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vip-user-info__name{
    font-size: 14px;
    margin-top: 10px;
    color:#999;
}
.vip-user-info__btn{
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    color:#fff;
    border-radius: 24px;
    background-color: #ff701d;
    cursor: pointer;
    transition: .3s;
}
.vip-user-info__btn:hover{
    background-color:#fc7b31 ;
}
.vip-user-info__right{
    line-height: 34px;
    color:#999;
    font-size: 14px;
    padding-top: 15px;
}
.vip-user-info__right span{
    height: 22px;
    line-height: 22px;
    margin-left: 10px;
    background-color: #f6f6f6;
    border: 1px solid #e3e3e3;
    padding: 0 12px 0 32px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    position: relative;
}
.vip-user-info__right strong{
    color:#333;
    font-size: 16px;
}
.vip-user-info__right span::before{
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left:8px;
    top:50%;
    margin-top: -10px;
    background-image: url(./vipicon.png);
    background-repeat: no-repeat;
    background-size: auto 20px;
}
.vip-user-info__right span.vip{
    background-color: #ffe6db;
    border-color:#f9844d;
    color:#fd783a;
}
.vip-user-info__right span.vip::before{
    background-position: -83px 0;
}
.vip-user-info__right span.svip{
    background-color: #ffdfde;
    border-color:#fc6037;
    color:#e34747;
}
.vip-user-info__right span.svip::before{
    background-position: -40px 0;
}
.vip-tabs{
    text-align: center;
    margin-top:60px;
    
}
.vip-tabs ul{
    display: inline-block;
    background-color: #f4f5f6;
    border-radius: 30px;
    padding: 5px;
}
.vip-tabs .vip-tab-item{
    float: left;
    height: 48px;
    line-height: 48px;
    
    
}
.vip-tabs .vip-tab-item a{
    display: block;
    padding: 0 54px;
    font-size: 18px;
    color:#999;
}
.vip-tabs .active{
    background-color: #fff;
    border-radius: 30px;
}
.vip-tabs .active a{
    color:#000;
}
.vip-list{
    position: relative;
    padding:20px 40px;
}
.vip-list-warp{
    overflow: hidden;
    opacity: 0;
    padding: 40px 0;
}

.vip-list .vip-item{
    padding:30px 20px;
    background-color: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 0 20px;
    text-align: center;
    position: relative;
}
.vip-list .vip-item__tag{
    position: absolute;
    right:0;
    top:0;
    height: 24px;
    line-height: 24px;
    background: linear-gradient(90deg,#ff701d,#f53500);
    color:#fff;
    padding: 0 10px;
    border-radius: 0 10px 0 10px;
}
.vip-list .vip-item__title{
    font-size: 18px;
    font-weight: bold;
    height: 32px;
    line-height: 32px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.vip-list .vip-item__price{
    font-size: 14px;
    padding: 30px 0 60px 0;
}
.vip-list .vip-item__price strong{
    font-size: 36px;
    margin: 0 5px;
    color:#ff701d;
}

.vip-list .vip-item__btn{
    max-width: 160px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    color:#333;
    border:1px solid #ddd;
    font-size: 16px;
    transition: .3s;
    margin: 0 auto;
    cursor: pointer;
}
.vip-list .vip-item__btn:hover{
    background-color: #f9f9f9;


}
.vip-list-prev,
.vip-list-next{
    width: 40px;
    height: 40px;
    position: absolute;
    top:50%;
    margin-top: -20px;
    background-color: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    color:#999;
}
.vip-list-prev{
    left:0;
    transform: rotate(-180deg);
}

.vip-list-next{
    right: 0;
}
.vip-list-prev i,
.vip-list-next i{
    font-size: 26px;
    font-weight: bold;
}
.vip-list-prev:hover,
.vip-list-next:hover{
    color:#333;
}
.vip-item__tips{
    font-size: 14px;
    color:#999;
    margin-top: 30px;
}

.vip-page-title{
    text-align: center;
    padding: 30px 0;
    line-height: 2;
   
}

.vip-page-title h2{
    font-size: 24px;
}
.vip-page-title .desc{
    font-size: 14px;
    color:#999;
}

/*权益*/
.vip-interests-list{
    padding: 20px 160px;
}
.vip-interests-item{
    width: 16.6%;
    float: left;
    text-align: center;
    box-sizing: border-box;
    padding: 20px;
}

.vip-interests-item__icon{
    width: 44px;
    height: 44px;
    margin: 0 auto;
}
.vip-interests-item__icon img{
    width: 100%;
    height: 100%;
}
.vip-interests-item__name{
    font-size: 14px;
    line-height: 24px;
    margin-top:15px;
    color:#666;
}


.vip-purchase-notes{
    padding: 90px 45% 60px 160px;
    min-height: 300px;
    font-size: 16px;
    line-height: 30px;
    color:#666;
    background: url(notes.png) no-repeat 85% 0;
    background-size:auto 400px;
}
.vip-purchase-notes .blank{
    height: 20px;
    border-top:1px solid #eee;
    margin-top:20px;
}



.dialog-box{
    position: fixed;
    width: 460px;
    z-index: 201;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 40px 40px;
    box-sizing: border-box;
    color:#666;
    left:0;
    right: 0;
    margin: 0 auto;
    top:50%;
    margin-top:-240px;
    display: none;
}
.dialog-box .vip-money{
    font-size: 14px;
    line-height: 30px;
}

.dialog-box .money-pay{
    position: relative;
    min-height: 40px;
}
.dialog-box .pay-close {
    text-align: right;
    padding-bottom: 10px;
}
.dialog-box .pay-close span{
    width: 20px;
    height: 20px;
    padding: 4px;
    background: url(close.png) no-repeat 50% 50%;
    background-size: auto 20px;
    display: inline-block;
    cursor: pointer;
}

.dialog-box .pay-left{
    font-size: 14px;
    padding-right: 10px;
    position: absolute;
    left:0;
    top:0;
}
.dialog-box input{
    height: 32px;
    line-height: 32px;
    border: 0px;
    border-bottom: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 10px;
    padding: 0 10px;
    width: 50px;
    border-radius: 0px;
}
.dialog-box input:focus{
    border-bottom: 1px solid #aaa;
}
.dialog-box .pay-btn{
    height: 44px;
    line-height: 44px;
    background-color: #5C80FF;
    color:#fff;
    text-align: center;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
}
.dialog-box .pay-right{
    padding-left: 80px;
    font-size: 14px;
}
.dialog-box .pay-item{
    height: 20px;
    padding: 10px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius:4px;
}
.dialog-box .curr-pay{
    border-color:#5C80FF;
}
.dialog-box .pay-item img{
    height: 100%;
}
.dialog-box .pay-tips{
    font-size: 14px;
    text-align: right;
    color:#999;
}
.dialog-box .pay-tips font{
    font-size: 20px;
    color:#fc6037;
}
.dialog-box .pay-tips i{
    font-size: 12px;
}
.dialog-mask{
    width: 100%;
    height: 100%;
    position: fixed;
    left:0;
    top:0;
    z-index: 200;
    background-color: rgba(0,0,0,0.3);
    display: none;
}