/* 购物车页样式 */
.cart-page {
    background: #fff;
    padding: 30px;
    margin-top: 20px;
}

.cart-page h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.cart-table th {
    background: #f5f5f5;
    font-weight: normal;
    color: #666;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.cart-item-price {
    color: #ff5000;
    font-size: 16px;
    font-weight: bold;
}

.cart-item-quantity {
    width: 150px;
    text-align: center;
}

.cart-item-subtotal {
    width: 120px;
    text-align: right;
    color: #ff5000;
    font-size: 16px;
    font-weight: bold;
}

.cart-item-delete {
    width: 80px;
    text-align: center;
}

.cart-item-delete a {
    color: #999;
}

.cart-item-delete a:hover {
    color: #ff5000;
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ff5000;
}

.cart-total {
    font-size: 18px;
}

.cart-total strong {
    color: #ff5000;
    font-size: 24px;
}

.btn-checkout {
    padding: 15px 50px;
    font-size: 18px;
}

.empty-cart {
    text-align: center;
    padding: 100px 0;
    color: #999;
}

.empty-cart a {
    color: #ff5000;
    margin-top: 20px;
    display: inline-block;
}

