.order-tabs {
    background: #fff;
    display: flex;
    padding: 10px 0;
    margin-bottom: 10px;
}

.tab {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 5px 0;
}

.tab.active {
    color: #FF8FB1;
    position: relative;
}

.tab.active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #FF8FB1;
}

.order-list {
    padding: 10px;
}

.order-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.order-no {
    font-size: 12px;
    color: #999;
}

.order-status {
    color: #87CEEB;
    font-size: 12px;
}

.order-content {
    display: flex;
    padding: 10px 0;
}

.order-content img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.order-info {
    flex: 1;
    padding-left: 10px;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.order-total {
    font-size: 14px;
    color: #666;
}

.order-btn {
    background: #FF8FB1;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
} 