.container {
    width: 480px; /* 固定宽度 */
    padding-bottom: 60px;
    background-color: #f5f5f5;
}

/* 轮播图 */
.swiper-container {
    width: 480px; /* 固定宽度 */
    height: 200px;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    min-width: 480px; /* 固定宽度 */
    height: 200px;
}

.swiper-slide img {
    width: 480px; /* 固定宽度 */
    height: 100%;
    object-fit: cover;
}

/* Tab切换 */
.tabs {
    display: flex;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.tab-item {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-item.active {
    color: #1296db;
    font-weight: bold;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #1296db;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 门店信息 */
.shop-info {
    background-color: white;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-row {
    margin-bottom: 8px;
    font-size: 14px;
}

/* 时间筛选 */
.time-filter {
    background-color: white;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.date-picker {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-picker input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 订单状态Tab */
.order-tabs {
    display: flex;
    background-color: white;
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    gap: 10px;
}

.order-tab {
    flex: 1;
    padding: 8px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-tab.active {
    background-color: #1296db;
    color: white;
}

/* 订单列表 */
.order-list {
    padding: 0 10px;
}

.order-item {
    background-color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.order-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.order-row .icon {
    margin-right: 5px;
}

.order-row .label {
    font-weight: 500;
}

.order-row .value {
    flex: 1;
}

.order-row .amount {
    color: #ee0a24;
    font-weight: bold;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.order-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.order-btn-primary {
    background-color: #1296db;
    color: white;
}

.order-btn-danger {
    background-color: #ee0a24;
    color: white;
}

/* 门店列表 */
.shop-list-container {
    padding: 0 10px;
}

.shop-list {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.shop-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.shop-item:hover {
    background-color: #f9f9f9;
}

.shop-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
}

.shop-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-stats {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.shop-address {
    font-size: 13px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
