body {
    font-family: Arial, sans-serif;
    background-color: #FCFDFE;
    margin: 0;
    padding: 0 0 80px;
}

.user_container {
    padding: 10px;
}

.user_header img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    cursor: pointer;
}

.user_header h1 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.user_card {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px 20px;
}

.user_card .user_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    height: 2.6rem;
}

.user_card .user_item:last-child {
    border-bottom: none;
}

.user_card .user_item label {
    font-size: 1rem;
    color: #354356;
}
.user_subscription{
    font-size: 1rem;
    color: #354356;
}

.user_card .user_item input {
    border: none;
    font-size: 16px;
    color: #333;
    width: 60%;
    text-align: right;
    background-color: transparent;
}

.user_card .user_subscription {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    height: 2.6rem;
}


.green_span{
    font-size: 16px;
    color: #4caf50;
    font-weight: bold;
    border: 1px solid #4caf50;
    padding: 2px 5px;
    border-radius: 50px;
    cursor: pointer;
}

.user_danger-zone .user_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    width: 98%;
    padding: 10px;
}

.user_danger-zone .user_item label {
    font-size: 1rem;
    color: #354356;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user_danger-zone .user_item label img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.user_danger-zone .user_item span {
    font-size: 16px;
    color: #333;
}

.user_danger-zone .user_set {
    font-size: 14px;
    color: #5f707d;
    margin-top: 10px;
}

.des_header {
    padding: 10px;
    position: relative;
    text-align: center;
    line-height: 30px;
    height: 30px;
}

.des_header .title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 96%; /* Adjust as needed */
}

.des_header .back-button {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
}

.des_header .back-button::before {
    content: '';
    display: block;
    background-image: url('../icon/back.png');
    background-size: cover;
    width: 100%;
    height: 100%;
}

.des_header .title {
    margin: 0;
    font-size: 1rem;
    padding: 0 10px;
    white-space: nowrap;
    font-weight: bold;
}

.tier h3 {
    margin: 0;
}

.tier p {
    margin: 5px 0;
}

.subscribe-button {
    background-color: #4caf50;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.save_container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.save_button {
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    margin-right: 20px;
    text-decoration: none;
}


#vip_container {
    width: calc(100% - 40px);
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

#vip_qrcode {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#qr_code{
    width: 180px;
    height: 180px;
    border-radius: 8px;
    margin-top: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

#vip_input_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#pay_address {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #FCFDFE;
}

#vip_button {
    padding: 8px 12px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #354356;
    color: white;
    transition: background-color 0.3s;
}

.cls_container {
    display: flex;
    width: 100%;
    overflow-x: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 2px;
}

.cls_card {
    border-radius: 5px;
    flex: 0 0 auto; /* 防止卡片在容器中缩放 */
    width: calc(100% / 4 - 20px); /* 根据卡片数量调整宽度 */
    /* 如果需要更多的卡片，比如5个，可以修改宽度：calc(100% / 5 - 20px) */
    text-align: center;
    padding: 2%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px; /* 卡片之间的间距 */
}

.cls_card:last-child {
    margin-right: 0; /* 去掉最后一个卡片的右边距 */
}

.cls_title {
    height: 2rem;
    text-align: center;
    line-height: 2rem;
    font-weight: bold;
    color: #354356;
}

.cls_highlight {
    border: 1px solid #858cc145;
}

.cls_value {
    font-size: 1.3rem;
    color: #4CAF50;
    font-weight: bold;
    margin: 10px 0;
}

.cls_subtext {
    font-size: 16px;
    color: #5f707d;
}
.invite_rewards, .invite_requests {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.invite_rewards img, .invite_requests img {
    width: 50px;
    margin-bottom: 20px;
}

.invite_section_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
}
@media (max-width: 768px) {
    .invite_title {
        font-size: 20px;
    }

    .invite_button {
        font-size: 16px;
    }

    .invite_stats_row div span {
        font-size: 18px;
    }

}

.u_top_balance_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
}
.u_top_balance {
    text-align: left;
}
.u_top_balance p {
    margin: 0;
    font-size: 1rem;
    color: #9e9e9e;
}
.u_top_balance h1 {
    margin: 0.5rem 0;
    font-size: 2rem;
    color: #333;
}