* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}
body {
    background-color: #f5f5f5;
}
/* 顶部提示栏 */
.token-expired {
    background-color: #fff;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.token-expired img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}
.token-expired h1 {
    font-size: 16px;
    color: #333;
    display: inline-block;
    vertical-align: middle;
}
.token-expired p {
    font-size: 14px;
    color: #1677ff;
    margin-top: 4px;
}
/* 积点卡区域 */
.point-card {
    background-color: #fff9e6;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}
.point-card .icon {
    width: 40px;
    height: 40px;
    background-color: #ff4d4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    margin-right: 12px;
}
.point-card .info h3 {
    font-size: 15px;
    color: #333;
}
.point-card .info p {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}
/* 余额区域 */
.balance {
    background-color: #ffc107;
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.balance .left span {
    font-size: 14px;
}
.balance .left .money {
    font-size: 18px;
    font-weight: bold;
    margin-left: 5px;
}
.balance .left .pay-btn {
    background-color: #fff;
    color: #ffc107;
    border: none;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    margin-left: 10px;
}
.balance .right {
    font-size: 14px;
}
/* 功能菜单 */
.menu {
    background-color: #fff;
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.menu-row {
    display: flex;
    border-bottom: 1px solid #eee;
}
.menu-item {
    flex: 1;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
}
.menu-item img {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
}
.menu-item span {
    font-size: 14px;
}
.menu-item small {
    font-size: 12px;
    color: #999;
    margin-top: 3px;
}
/* 列表选项 */
.options {
    background-color: #fff;
    margin: 10px;
    border-radius: 8px;
}
.options-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 15px;
}
.options-item:last-child {
    border-bottom: none;
}
.options-item::after {
    content: ">";
    color: #ccc;
    font-size: 14px;
}