/* 个人中心相关页面样式 */
.back-btn, .clear-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    padding: 8px;
}

.page-title {
    font-size: 17px;
    font-weight: 500;
}

/* 订单列表 */
.order-list {
    padding: 10px 0 70px;
}

.order-item {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.order-no {
    font-size: 13px;
    color: #666;
}

.order-status {
    font-size: 13px;
    color: #52c41a;
}

.order-content {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.order-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.order-info {
    flex: 1;
}

.order-title {
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
}

.order-price {
    font-size: 16px;
    color: #fc5531;
    font-weight: bold;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

/* 收藏列表 */
.favorites-list {
    padding: 10px 0 70px;
}

.favorite-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.favorite-item:active {
    background: #f5f5f5;
}

.favorite-item:hover {
    border-left-color: #fc5531;
}

.favorite-info {
    width: 100%;
}

.favorite-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.favorite-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.favorite-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

.favorite-meta .vip-badge {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

/* 浏览历史 */
.history-list {
    padding: 10px 0 70px;
}

.history-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.history-item:active {
    background: #f5f5f5;
}

.history-item:hover {
    border-left-color: #fc5531;
}

.history-info {
    width: 100%;
}

.history-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.history-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.history-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

.history-meta .vip-badge {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state p {
    color: #999;
    font-size: 14px;
}
