body{
    background: rgb(250, 250, 250);
    color: #262626;
}
.top-box{
    display: flex;
    justify-content: space-between;
    margin: 30px auto!important;
    flex-wrap: wrap;
}
.left-box{
    width: 34%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}
.right-box{
    width: 64%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    padding: 24px;
    background: white;
}
.left-img{
    height: 262px;
    width: 100%;
}
.left-main{
    padding: 24px;
}
.left-title{
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 14px;
}
.left-title span{
    border-radius: 50px;
    padding: 2px 12px;
    font-size: 13px;
    color: #0a5cfe;
    background: #0a5cff1a;
    margin-left: 8px;
}
.left-auth{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}
.left-auth img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.level-box{
    display: flex;
    align-items: center;
    margin-top: 4px;
}
.iconfont{
    margin-right: 6px;
}
.icon-checksurface{
    color: #0a5cfe;
    font-size: 24px;
}
.icon-shield-full{
    color: #22c55e;
    font-size: 16px;
    margin-left: 4px;
}
.level-des{
    padding: 14px 12px 8px 12px;
    background: #f5f6f7;
}
.level-des-title{
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 12px;
}
.level-des-item{
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 6px;
    color: #6b7280;
}
.right-title{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 22px;
    text-align: center;
}
.price-box{
    border: 1px solid #e5e5e5;
    padding: 24px;
    margin-bottom: 40px;
}
.price-text{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.price-text span{
    color: #6b7280;
    font-size: 14px;
    margin-left: 4px;
    font-weight: normal;
}
.price-tips{
    display: flex;
    align-items: center;
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 6px;
}
.price-tips .iconfont{
    margin-right: 8px;
    color: #22c55e;
    font-size: 14px;
}
.more-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.more-item{
    width: 24%;
    padding: 20px;
    background: #f9fafb;
}
.more-item div:nth-child(1){
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 5px;
}
.more-item div:nth-child(2){
    font-size: 16px;
}
.buy-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: #0a5cfe;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s;
    width: 100%;
}
.buy-btn .iconfont{
    margin-right: 8px;
}
.buy-btn:hover{
    opacity: .8;
}
.bottom-box{
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 60px!important;
}
.tab-box{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}
.tab-item{
    color: #6b7280;
    font-size: 16px;
    padding: 16px 0;
    margin: 0 30px;
    border-bottom: 3px solid #fff;
    cursor: pointer;
}
.tab-item-active{
    color: #0a5cfe;
    border-color: #0a5cfe;
}
.tab-content{
    padding: 24px;
    display: none;
}
.tab-content-active{
    display: block;
}
.ques-title{
    font-size: 15px;
    margin-bottom: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
}
.ques-title:first-child{
    border-top: none;
}
.ques-title:hover{
    color: #0a5cfe;
}
.ques-content{
    font-size: 13px;
    margin-bottom: 18px;
    color: #777;
    line-height: 20px;
    display: none;
    padding: 8px 12px;
    background: #f3f7ff;
}
.ques-content-active{
    display: block;
}
.icon-arrowon{
    display: none;
}
.ques-title-active .icon-arrow-down{
    display: none;
}
.ques-title-active .icon-arrowon{
    display: inline-block;
}

@media (max-width: 1024px) {
	.left-box{
        width: 100%;
        margin-bottom: 24px;
    }
    .right-box{
        width: 100%;
    }
}

@media (max-width: 500px) {
	.more-item{
        width: 49%;
        margin-bottom: 10px;
    }
}