/* 状态块 */
.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.stats-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 20px;
    text-align: left;
}

.stats-box .status-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: block;
}

.stats-box .label {
    font-size: 10px;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

/* 交互列表项 */
.link-item {
    display: flex;
    align-items: center;
    padding: 16px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: background 0.2s;
}

.link-item:active {
    background: rgba(0, 0, 0, 0.03);
}

.link-item:last-child {
    border-bottom: none;
}

.list-icon {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.list-text b {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 2px;
}

.list-text span {
    font-size: 12px;
    color: #999;
}

.arrow-right {
    margin-left: auto;
    color: #ccc;
    font-size: 16px;
}