
.image-preview__mask[data-v-b537775a] {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-preview__dialog[data-v-b537775a] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image-preview__img[data-v-b537775a] {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 8px;
    min-width: 50vw;
    min-height: 50vh;
}
.image-preview__close[data-v-b537775a] {
    position: absolute;
    top: 40px;
    left: 20px;
    font-size: 24px;
    background: #000;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}
.image-preview__prev[data-v-b537775a],
.image-preview__next[data-v-b537775a] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    background: none;
}
.image-preview__prev img[data-v-b537775a],
.image-preview__next img[data-v-b537775a] {
    width: 40px;
    height: 40px;
}
.image-preview__prev[data-v-b537775a] {
    left: 20px;
}
.image-preview__next[data-v-b537775a] {
    right: 20px;
}
.image-preview__indicator[data-v-b537775a] {
    position: absolute;
    top: 40px;
    right: 20px;
    color: #fff;
}


/* 使用深度选择器修改 Element UI 样式 */
.success-modal__dialog[data-v-edceed46] .el-dialog {
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0 !important;
}
.success-modal__dialog[data-v-edceed46] .el-dialog__header {
    border-bottom: 1px solid #F2F2F2;
    font-weight: bold;
    font-size: 24px;
    color: #0D0D0D;
    text-align: left;
}
.success-modal__dialog[data-v-edceed46] .el-dialog__title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}
.success-modal__dialog[data-v-edceed46] .el-dialog__body {
    padding: 20px 30px;
    text-align: center;
}
.success-modal__dialog[data-v-edceed46] .el-dialog__footer {
    padding: 0 30px 30px 30px;
    text-align: center;
}
.success-modal__dialog[data-v-edceed46] .el-dialog__headerbtn {
    top: 20px;
    right: 20px;
}
.success-modal__dialog[data-v-edceed46] .el-dialog__headerbtn .el-dialog__close {
    font-size: 24px;
    top: 10px;
    color: #333;
}
.success-modal__dialog[data-v-edceed46] .el-dialog__headerbtn:hover .el-dialog__close {
    color: #FF7F00;
}

/* 组件内部样式 */
.success-content[data-v-edceed46] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}
.success-icon[data-v-edceed46] {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    animation: bounceIn-edceed46 0.6s ease;
    width: 60px;
    height: 60px;
    position: relative;
}
.success-icon img[data-v-edceed46] {
    width: 100%;
    height: 100%;
}
.success-message[data-v-edceed46] {
    margin-bottom: 20px;
    line-height: 1.6;
}
.success-message p[data-v-edceed46] {
    font-weight: bold;
    font-size: 16px;
    color: #0D0D0D;
    margin: 0;
}
.success-message span[data-v-edceed46]{
    color: #FF7F00;
    cursor: pointer;
    text-decoration: underline;
}
.success-message[data-v-edceed46] .link-text:hover {
    color: #e6720a !important;
}
.success-close-btn[data-v-edceed46] {
    width: 100%;
    height: 60px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    background: #FF7F00;
    border-color: #FF7F00;
    transition: all 0.3s ease;
}
.success-close-btn[data-v-edceed46]:hover {
    background: #e6720a;
    border-color: #e6720a;
}

/* 动画效果 */
@keyframes bounceIn-edceed46 {
0% {
        opacity: 0;
        transform: scale(0.3);
}
50% {
        opacity: 1;
        transform: scale(1.05);
}
70% {
        transform: scale(0.9);
}
100% {
        opacity: 1;
        transform: scale(1);
}
}
html[dir="rtl"] .success-modal__dialog[data-v-edceed46] .el-dialog__headerbtn {
    right: auto!important;
    left: 20px!important;
}


/* 弹窗遮罩 */
.order-details[data-v-212e34cf] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-212e34cf 0.3s ease;
}

/* 弹窗内容 */
.order-details__content[data-v-212e34cf] {
    background: #FFFFFF;
    width: 600px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);
    border-radius: 15px;
    animation: slideUp-212e34cf 0.3s ease;
}

/* 标题区域 */
.order-details__header[data-v-212e34cf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #F0F0F0;
}
.order-details__title[data-v-212e34cf] {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}
.order-details__close[data-v-212e34cf] {
    background: none;
    border: none;
    font-size: 30px;
    color: #999999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.order-details__close[data-v-212e34cf]:hover {
    color: #FF7F00;
}

/* 主要内容区域 */
.order-info__section[data-v-212e34cf] {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

/* 订单元信息 */
.order-meta[data-v-212e34cf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #F8F9FA;
    border-radius: 8px;
}
.order-meta__box[data-v-212e34cf]{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.order-number[data-v-212e34cf] {
    font-weight: bold;
    font-size: 12px;
    color: #8C8175;
}
.order-number span[data-v-212e34cf]{
    color: #281F15;
}
.order-meta__status[data-v-212e34cf] {
    font-weight: 500;
    font-size: 12px;
    color: #281F15;
}

/* 产品卡片 */
.product-list[data-v-212e34cf] {
    margin-bottom: 20px;
}
.product-card[data-v-212e34cf] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    background: #FFFFFF;
    gap: 16px;
    cursor: pointer;
}
.product-image[data-v-212e34cf] {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
    flex-shrink: 0;
}
.product-info[data-v-212e34cf] {
    flex: 1;
}
.product-title[data-v-212e34cf] {
    font-weight: 400;
    font-size: 14px;
    color: #281F15;
    margin-bottom: 8px;
    line-height: 1.4;
}
.product-specs[data-v-212e34cf] {
    font-weight: 400;
    font-size: 14px;
    color: #8C8175;
    margin-bottom: 4px;
}
.product-price[data-v-212e34cf] {
    font-weight: bold;
    font-size: 14px;
    color: #281F15;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}
.product-price span[data-v-212e34cf]{
    font-weight: 500;
    font-size: 14px;
    color: #8C8175;
}
.product-remark[data-v-212e34cf] {
    font-size: 12px;
    color: #999999;
    background: #F5F5F5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* 费用明细区域 */
.fee-section[data-v-212e34cf] {
    border-top: 1px solid #F0F0F0;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    padding: 8px;
}
.fee-section__box[data-v-212e34cf]{
    background: #FAFAFA;
    border-radius: 10px;
    padding: 0 24px;
}
.fee-item[data-v-212e34cf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}
.fee-label[data-v-212e34cf] {
    font-weight: 500;
    font-size: 14px;
    color: #0D0D0D;
    flex: 1;
}
.fee-label__with-tip[data-v-212e34cf] {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #0D0D0D;
    flex: 1;
}
.tip-button[data-v-212e34cf] {
    border: 1px solid #281F15;
    color: #281F15;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    margin-left: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fee-value[data-v-212e34cf] {
    font-weight: 500;
    font-size: 14px;
    color: #FF7F00;
    text-align: right;
}

/* 图片画廊 */
.image-gallery[data-v-212e34cf] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.image-gallery img[data-v-212e34cf] {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    -o-object-fit: cover;
       object-fit: cover;
    cursor: pointer;
    border: 1px solid #E0E0E0;
    transition: transform 0.2s ease;
}
.image-gallery img[data-v-212e34cf]:hover {
    transform: scale(1.1);
}

/* 操作按钮区域 */
.action-buttons[data-v-212e34cf] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-bottom: 16px;
}
.action-item[data-v-212e34cf] {
    height: 40px;
    line-height: 40px;
    background: #FF7F00;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    padding: 0 24px;
}
.primary-btn[data-v-212e34cf] {
    background: #FF6B35;
    color: #FFFFFF;
}

/* .primary-btn:hover {
    background: #FF7F00;
} */

/* 底部确认按钮 */
.dialog-footer[data-v-212e34cf] {
    padding: 20px 24px;
}
.confirm-btn[data-v-212e34cf] {
    width: 100%;
    height: 60px;
    background: #FF7F00;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.confirm-btn[data-v-212e34cf]:hover {
    background: #e6611a;
}

/* 费用提示弹窗 */
.fee-tip__dialog-mask[data-v-212e34cf] {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fee-tip__dialog-content[data-v-212e34cf] {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    padding: 40px 24px 24px;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    animation: slideUp-212e34cf 0.3s ease;
}
.fee-tip__dialog-close[data-v-212e34cf] {
    position: absolute;
    right: 16px;
    top: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999999;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fee-tip__dialog-body[data-v-212e34cf] {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    max-height: 300px;
    overflow-y: auto;
}

/* 动画效果 */
@keyframes fadeIn-212e34cf {
from { opacity: 0;
}
to { opacity: 1;
}
}
@keyframes slideUp-212e34cf {
from {
        opacity: 0;
        transform: translateY(30px);
}
to {
        opacity: 1;
        transform: translateY(0);
}
}

/* 滚动条样式 */
[data-v-212e34cf]::-webkit-scrollbar {
    width: 6px;
}
[data-v-212e34cf]::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 3px;
}
[data-v-212e34cf]::-webkit-scrollbar-thumb {
    background: #D0D0D0;
    border-radius: 3px;
}
[data-v-212e34cf]::-webkit-scrollbar-thumb:hover {
    background: #B0B0B0;
}


/* 弹窗样式 */
.create-ticket__dialog[data-v-73f8e584] .el-dialog {
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0 !important;
}
.create-ticket__dialog[data-v-73f8e584] .el-dialog__header {
    border-bottom: 1px solid #F2F2F2;
    font-weight: bold;
    font-size: 24px;
    color: #0D0D0D;
}
.create-ticket__dialog[data-v-73f8e584] .el-dialog__body {
    padding: 24px;
}
.create-ticket__dialog[data-v-73f8e584] .el-dialog__headerbtn {
    font-size: 24px;
    top: 10px;
}
.create-ticket__dialog[data-v-73f8e584] .el-input__inner {
    height: 60px;
}

/* 上传区域 */
.upload-section[data-v-73f8e584] {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.upload-container[data-v-73f8e584] {
    width: 70px;
    height: 70px;
    background: #F8F8F8;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    cursor: pointer;
    transition: border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.upload-container[data-v-73f8e584]:hover {
    border-color: #FF7F00;
}
.upload-input[data-v-73f8e584] {
    display: none;
}
.upload-placeholder[data-v-73f8e584] {
    color: #DDDFE2;
    font-size: 24px;
}
.uploaded-files[data-v-73f8e584] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.upload-img[data-v-73f8e584],
.upload-file[data-v-73f8e584] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.upload-img[data-v-73f8e584] {
    width: 70px;
    height: 70px;
}
.upload-img img[data-v-73f8e584] {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}
.upload-file[data-v-73f8e584] {
    background: #f5f7fa;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 200px;
}
.file-name[data-v-73f8e584] {
    font-size: 12px;
    color: #606266;
    word-break: break-all;
}
.remove-btn[data-v-73f8e584] {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #f56c6c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    z-index: 10;
}
.ticket-submit__btn[data-v-73f8e584] {
    width: 100%;
    padding: 20px 0;
    border-radius: 12px;
    background: #FF7F00;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    border: none;
}
.ticket-submit__btn[data-v-73f8e584]:hover {
    background: #e6720a;
}
html[dir="rtl"] .create-ticket__dialog[data-v-73f8e584] .el-dialog__headerbtn {
    right: auto!important;
    left: 20px!important;
}


.dialog-content__wrapper[data-v-2c45bede] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 32px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 282px;
    max-width: 600px;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.15);
    border-radius: 30px;
    border: 1px solid #F2F2F2;
    z-index: 999999;
}
.dialog-icon[data-v-2c45bede] {
    width: 64px;
    height: 64px;
}
.dialog-message[data-v-2c45bede] {
    font-weight: bold;
    font-size: 20px;
    color: #0D0D0D;
    margin-top: 16px;
}

.cart-page[data-v-91c0ffbc]{display:flex;padding:32px 0;background:#fafbfc;min-height:60vh;width:1200px;margin:0 auto;gap:24px}.cart-main[data-v-91c0ffbc]{flex:1;background:#fff;border-radius:15px;padding:24px}.cart-page__header[data-v-91c0ffbc]{flex:none;width:100%}.cart-title[data-v-91c0ffbc]{font-weight:bold;font-size:20px;color:#0d0d0d}.cart-toolbar[data-v-91c0ffbc]{display:flex;align-items:center;gap:12px;margin:24px 0}.cart-select[data-v-91c0ffbc]{display:flex;align-items:center;font-weight:400;font-size:16px;color:#0d0d0d;cursor:pointer;gap:8px}.select-all[data-v-91c0ffbc]{width:20px;height:20px}.cart-delete[data-v-91c0ffbc]{background:none;border:none;font-weight:400;font-size:16px;color:#a6a6a6;cursor:pointer;padding-left:12px;border-left:1px solid #f2f2f2}.cart-list[data-v-91c0ffbc]{list-style:none;margin:0;padding:0}.menu-list__item[data-v-91c0ffbc]{position:relative;border-bottom:1px solid #f2f2f2}.cart-list>.menu-list__item[data-v-91c0ffbc]:last-of-type{border-bottom:none}.item-store[data-v-91c0ffbc]{display:flex;align-items:center;gap:12px;padding:12px 0}.item-store__choose[data-v-91c0ffbc]{width:20px;height:20px;cursor:pointer}.item-store__logo[data-v-91c0ffbc]{width:22px;height:22px;border-radius:2px;-o-object-fit:cover;object-fit:cover}.item-store__name[data-v-91c0ffbc]{font-weight:bold;font-size:20px;color:#281f15}.cart-item[data-v-91c0ffbc]{display:flex;padding:24px 0;gap:18px}.cart-item__checkbox img[data-v-91c0ffbc]{width:20px;height:20px;cursor:pointer}.cart-item__img[data-v-91c0ffbc]{width:128px;height:128px;border-radius:3px;-o-object-fit:cover;object-fit:cover}.cart-item__info[data-v-91c0ffbc]{flex:1;min-width:0;position:relative}.cart-item__title[data-v-91c0ffbc]{font-weight:400;font-size:14px;color:#281f15;white-space:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.cart-item__desc[data-v-91c0ffbc]{font-weight:bold;font-size:12px;color:#8c8175;margin-top:4px;white-space:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.cart-item__price[data-v-91c0ffbc]{font-weight:bold;font-size:20px;color:#281f15;position:absolute;bottom:0;left:0}.item-content__disabled .cart-item__img[data-v-91c0ffbc],.item-content__disabled .cart-item__info[data-v-91c0ffbc]{opacity:.5}.item-content__disabled .cart-item__checkbox[data-v-91c0ffbc]{pointer-events:none}.cart-item__operate[data-v-91c0ffbc]{display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:16px}.cart-item__qty[data-v-91c0ffbc]{display:flex;align-items:center;justify-content:space-between;width:104px;height:40px;border-radius:10px;border:1px solid #f2f2f2}.qty-btn[data-v-91c0ffbc]{width:28px;height:28px;font-size:20px;color:#0d0d0d;cursor:pointer;border:none;background:none}.qty-btn__disabled[data-v-91c0ffbc]{color:#f2f2f2}.qty-num[data-v-91c0ffbc]{min-width:24px;text-align:center;font-weight:500;font-size:16px;color:#0d0d0d}.cart-item__actions[data-v-91c0ffbc]{display:flex;gap:8px;align-items:center}.cart-item__fav[data-v-91c0ffbc],.cart-item__del[data-v-91c0ffbc]{background:none;border:none;cursor:pointer;color:#bbb;font-size:20px;width:40px;height:40px;border-radius:10px;border:1px solid #f2f2f2;display:flex;align-items:center;justify-content:center}.cart-item__qty[data-v-91c0ffbc]:hover,.cart-item__fav[data-v-91c0ffbc]:hover,.cart-item__del[data-v-91c0ffbc]:hover{border-color:#ff8429}.item-fav[data-v-91c0ffbc]{border-color:#ff8429}.item-qty__disabled[data-v-91c0ffbc]{display:none}.cart-item__fav img[data-v-91c0ffbc],.cart-item__del img[data-v-91c0ffbc]{width:20px;height:20px}.cart-empty[data-v-91c0ffbc]{color:#999;text-align:center;margin:60px 0;font-size:16px}.cart-summary[data-v-91c0ffbc]{width:370px;display:flex;flex-direction:column;gap:16px}.summary-card[data-v-91c0ffbc]{width:370px;border-radius:15px;padding:24px;background:#fff}.summary-title[data-v-91c0ffbc]{font-weight:bold;font-size:20px;color:#0d0d0d;margin-bottom:16px}.summary-row[data-v-91c0ffbc]{display:flex;justify-content:space-between;align-items:center;font-weight:500;font-size:14px;color:#0d0d0d;margin-bottom:24px}.summary-subtotal[data-v-91c0ffbc]{color:#ff8429}.summary-total[data-v-91c0ffbc]{font-weight:bold;font-size:16px;color:#0d0d0d;padding-top:24px;border-top:1px solid #f2f2f2}.summary-totalprice[data-v-91c0ffbc]{font-weight:bold;font-size:24px;color:#ff7f00}.summary-btn[data-v-91c0ffbc]{width:100%;height:44px;background:#ff7f00;border-radius:8px;font-size:18px;font-weight:700;color:#fff;margin-top:10px;transition:background .3s ease}.summary-btn[data-v-91c0ffbc]:hover{background:#e6611a}.summary-pay[data-v-91c0ffbc]{padding:16px}.summary-pay__title[data-v-91c0ffbc]{font-size:15px;font-weight:600;margin-bottom:10px}.summary-pay__icons[data-v-91c0ffbc]{display:flex;flex-wrap:wrap;gap:8px}.summary-pay__icons img[data-v-91c0ffbc]{height:50px;border:1px solid #f2f2f2;border-radius:5px}.summary-safe[data-v-91c0ffbc]{font-weight:bold;font-size:14px;color:#0d0d0d}.icon-safe[data-v-91c0ffbc],.icon-lock[data-v-91c0ffbc]{display:flex;align-items:center;margin-bottom:10px}.icon-safe img[data-v-91c0ffbc],.icon-lock img[data-v-91c0ffbc]{width:32px;height:32px;margin-right:6px}.cart-page__header[data-v-91c0ffbc]{max-height:649px;height:60vh;overflow:hidden;padding:0;border-radius:18px}.cart-page__header.cart-page__side[data-v-91c0ffbc]{max-height:none;height:auto}.cart-page__header .cart-main[data-v-91c0ffbc]{flex:none;width:100%;padding:0px;box-sizing:border-box}.cart-page__header .cart-title[data-v-91c0ffbc]{display:none}.cart-page__header .cart-list[data-v-91c0ffbc]{list-style:none;margin:0;max-height:calc(60vh - 160px);height:calc(60vh - 160px);overflow-y:auto;padding:0 6px}.cart-page__header .cart-list__side[data-v-91c0ffbc]{max-height:calc(100vh - 200px);height:calc(100vh - 200px)}.cart-page__header .item-store[data-v-91c0ffbc]{margin:0;border-bottom:1px solid #f2f2f2}.cart-page__header .cart-item[data-v-91c0ffbc]{padding:12px 0;gap:8px}.cart-page__header .cart-item__img[data-v-91c0ffbc]{width:80px;height:80px}.cart-page__header .cart-item__fav[data-v-91c0ffbc]{display:none}.cart-page__header .cart-item__title[data-v-91c0ffbc]{-webkit-line-clamp:2;line-height:16px}.cart-page__header .cart-item__desc[data-v-91c0ffbc]{-webkit-line-clamp:1}.cart-page__header .cart-item__operate[data-v-91c0ffbc]{align-items:flex-end}.cart-page__header .cart-item__qty[data-v-91c0ffbc]{width:80px}.cart-footer[data-v-91c0ffbc]{position:absolute;bottom:12px;right:0;width:100%;padding:12px;box-sizing:border-box;border-top:1px solid #f2f2f2;background:#fff}.cart-footer .cart-toolbar[data-v-91c0ffbc]{margin:0;display:flex;justify-content:space-between;align-items:center}.cart-footer .cart-footer__btn[data-v-91c0ffbc]{width:100%;height:60px;background:#ff7f00;border-radius:10px;font-weight:bold;font-size:16px;color:#fff;display:flex;align-items:center;justify-content:center;margin-top:10px}.cart-page__side .cart-footer[data-v-91c0ffbc]{width:88%}.no-message__btn[data-v-91c0ffbc]{margin-top:20px;transition:background .3s ease}.no-message__btn[data-v-91c0ffbc]:hover{background:#e6611a}@media(max-width: 1200px){.cart-page[data-v-91c0ffbc]{width:100%;padding:32px 20px}.cart-page__header[data-v-91c0ffbc]{padding:0}}

.favourite-content__container[data-v-6e2925ce] {
    background: #ffffff;
    position: relative;
    box-sizing: border-box;
    padding: 24px;
    border-radius: 15px;
    min-height: 750px;
}
.side-favourite__container[data-v-6e2925ce]{
    padding: 10px;
}

/* 标签切换 */
.favourite-tab__list[data-v-6e2925ce] {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #F2F2F2;
}
.favourite-tab[data-v-6e2925ce] {
    padding-bottom: 20px;
    margin-right: 40px;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    color: #281F15;
    position: relative;
    transition: color 0.3s ease;
}
.favourite-tab--active[data-v-6e2925ce] {
    font-weight: bold;
    color: #FF8429;
}
.favourite-tab--active[data-v-6e2925ce]::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 5%;
    right: 0;
    height: 4px;
    background: #FF8429;
    width: 90%;
}

/* 筛选区域 */
.favourite-section[data-v-6e2925ce] {
    margin-bottom: 20px;
}
.filter-row[data-v-6e2925ce] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 5px;
}
.select-all__wrapper[data-v-6e2925ce] {
    display: flex;
    align-items: center;
    gap: 15px;
}
.foot-select[data-v-6e2925ce] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 0;
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: #0D0D0D;
    transition: all 0.3s ease;
}
.choose-icon[data-v-6e2925ce] {
    width: 20px;
    height: 20px;
}
.selected-count[data-v-6e2925ce] {
    color: #666;
    font-size: 14px;
}
.filter-controls[data-v-6e2925ce] {
    display: flex;
    align-items: center;
    gap: 15px;
}
.favourite-select[data-v-6e2925ce] {
    width: 200px;
}
.favourite-input[data-v-6e2925ce] {
    width: 250px;
}
.foot-delete[data-v-6e2925ce] {
    padding: 10px 20px;
    background: none;
    font-size: 16px;
    color: #A6A6A6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}
.foot-delete[data-v-6e2925ce]:hover {
    color: #0D0D0D;
}


/* Products 列表布局 */
.product-list__layout[data-v-6e2925ce] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-list__item[data-v-6e2925ce] {
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
    padding: 20px 5px;
    border-radius: 10px;
}
.product-list__item[data-v-6e2925ce]:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.item-select[data-v-6e2925ce] {
    flex-shrink: 0;
}
.item-store__choose[data-v-6e2925ce] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.item-image[data-v-6e2925ce] {
    flex-shrink: 0;
}
.item-pic[data-v-6e2925ce] {
    width: 128px;
    height: 128px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 3px;
}
.item-details[data-v-6e2925ce] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 128px;
    position: relative;
}
.goods-add[data-v-6e2925ce]{
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px;
    background-color: #FF7F00;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.item-title[data-v-6e2925ce] {
    font-weight: 400;
    font-size: 14px;
    color: #281F15;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #31373D;
    width: 80%;
}
.item-price[data-v-6e2925ce] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    font-size: 20px;
    color: #281F15;
    position: absolute;
    left: 0;
    bottom: 0;
}
.item-actions[data-v-6e2925ce] {
    flex-shrink: 0;
}
.product-delete[data-v-6e2925ce] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-delete img[data-v-6e2925ce] {
    width: 20px;
    height: 20px;
}
.product-delete[data-v-6e2925ce]:hover {
    border: 1px solid #FF7F00;
}
.side-favourite[data-v-6e2925ce]{
    height: calc(100vh - 70px);
    overflow-y: auto;
}
.is-product[data-v-6e2925ce]{
    padding: 5px;
    gap: 0;
}
.is-product .item-pic[data-v-6e2925ce]{
    width: 100px;
    height: 100px;
    margin-right: 8px;
}
.is-product .item-details[data-v-6e2925ce]{
    width: 100%;
    height: 120px;
}
.is-product .item-price[data-v-6e2925ce]{
    justify-content: flex-end;
    gap: 4px;
}
/* Stores 和 Insights 网格布局 */
.store-grid__layout[data-v-6e2925ce] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}
.store-grid__item[data-v-6e2925ce] {
    width: 215px;
    height: 214px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #ECF2F5;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.store-grid__item[data-v-6e2925ce]:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.item-select__badge[data-v-6e2925ce] {
    position: absolute;
    top: 11px;
    right: 11px;
}
.store-image[data-v-6e2925ce] {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.store-info[data-v-6e2925ce] {
    padding: 20px;
}
.store-name[data-v-6e2925ce] {
    font-weight: 500;
    font-size: 16px;
    color: #1C2024;
    text-align: center;
    padding: 0 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.store-stats[data-v-6e2925ce] {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.stat-item[data-v-6e2925ce] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666;
}
.stat-item img[data-v-6e2925ce] {
    width: 14px;
    height: 14px;
}
.store-action[data-v-6e2925ce] {
    text-align: center;
    padding: 8px 0;
}
.action-text[data-v-6e2925ce] {
    display: inline-block;
    padding: 8px 20px;
    background: #ECF2F5;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    cursor: pointer;
    margin-top: 15px;
}
/* 无数据状态 */
.no-message[data-v-6e2925ce] {
    text-align: center;
    padding: 30px 0px;
    font-size: 16px;
    width: 100%;
}


.aside-content[data-v-dac112d4] {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    height: 100vh;
    display: flex;
    align-items: flex-start;
}
.aside-popup-mask[data-v-dac112d4]{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}
.aside-bar[data-v-dac112d4]{
    display: flex;
    flex-direction: column;
    background: #656570;
    margin-top: 50vh;
    z-index: 1001;
}
.aside-tooltip[data-v-dac112d4] {
    font-size: 14px;
    padding: 6px 16px;
}
.aside-btn[data-v-dac112d4]{
    padding: 8px;
    border-top: 1px solid #fff;
    position: relative;
}
.aside-btn[data-v-dac112d4]:hover {
    background: #FF7A1B;
}
.aside-btn span[data-v-dac112d4]{
    box-sizing: content-box;
    display: inline-block;
    min-width: 18px;
    padding: 4px 0;
    margin: auto;
    line-height: 1;
    color: #fff;
    font-size: 10px;
    background: #FF7A1B;
    border-radius: 12px;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
}
.aside-btn__active[data-v-dac112d4] {
    background: #FF7A1B;
}
.aside-popup[data-v-dac112d4]{
    height: 100vh;
    width: 306px;
    display: flex;
    flex-direction: column;
    background: #fff;
    z-index: 1001;
}
.aside-header[data-v-dac112d4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #E9ECEF;
}
.aside-title[data-v-dac112d4] {
    font-size: 18px;
    font-weight: bold;
    color: #212529;
}
.aside-close[data-v-dac112d4] {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #495057;
}
.create-ticket[data-v-dac112d4] {
    padding: 20px;
}
.create-ticket[data-v-dac112d4] .el-input__inner {
    height: 60px;
}
/* 上传区域 */
.upload-section[data-v-dac112d4] {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.upload-container[data-v-dac112d4] {
    width: 70px;
    height: 70px;
    background: #F8F8F8;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    cursor: pointer;
    transition: border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.upload-container[data-v-dac112d4]:hover {
    border-color: #FF7F00;
}
.upload-input[data-v-dac112d4] {
    display: none;
}
.upload-placeholder[data-v-dac112d4] {
    color: #DDDFE2;
    font-size: 24px;
}
.uploaded-files[data-v-dac112d4] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex: 1;
}
.upload-img[data-v-dac112d4],
.upload-file[data-v-dac112d4] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.upload-img[data-v-dac112d4] {
    width: 70px;
    height: 70px;
}
.upload-img img[data-v-dac112d4] {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}
.upload-file[data-v-dac112d4] {
    background: #f5f7fa;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 200px;
}
.file-name[data-v-dac112d4] {
    font-size: 12px;
    color: #606266;
    word-break: break-all;
}
.remove-btn[data-v-dac112d4] {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #f56c6c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    z-index: 10;
}
.ticket-submit__btn[data-v-dac112d4] {
    width: 100%;
    padding: 20px 0;
    border-radius: 12px;
    background: #FF7F00;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    border: none;
}
.ticket-submit__btn[data-v-dac112d4]:hover {
    background: #e6720a;
}


.share-modal__mask[data-v-d0335196] {
    position: fixed;
    z-index: 999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-modal[data-v-d0335196] {
    background: #fff;
    border-radius: 12px;
    width: 450px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 32px 24px 32px;
    position: relative;
}
.share-modal__header[data-v-d0335196] {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.share-modal__logo[data-v-d0335196] {
    width: 190px;
    height: 43px;
    margin-right: 10px;
}
.share-modal__title[data-v-d0335196] {
    font-size: 20px;
    font-weight: bold;
    flex: 1;
}
.share-modal__close[data-v-d0335196] {
    background: none;
    border: none;
    cursor: pointer;
}
.share-modal__close img[data-v-d0335196] {
    width: 24px;
    height: 24px;
}
.share-modal__content[data-v-d0335196] {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.share-modal__input-group[data-v-d0335196] {
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
    border-radius: 10px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
}
.share-modal__input[data-v-d0335196] {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #666666;
    outline: none;
    font-family: monospace;
}
.copy-icon-btn[data-v-d0335196] {
    background: none;
    border: none;
    color: #999999;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.copy-icon-btn[data-v-d0335196]:hover {
    color: #FF6B35;
    background: #FFF5F0;
}
.share-modal__copy-btn[data-v-d0335196] {
    background: #FF7F00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-modal__copy-btn img[data-v-d0335196] {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

.goods-item[data-v-b1d47400]{background:#fff;box-sizing:border-box;display:flex;flex-direction:column;position:relative;width:180px;border-radius:5px;cursor:pointer;overflow:hidden;transition:box-shadow .3s ease}.goods-item .goods-image[data-v-b1d47400]{width:100%;height:180px;display:block}.goods-item .goods-favorite[data-v-b1d47400]{border:none;width:34px;height:34px;background:#fff;border-radius:50%;border:1px solid #3e3e3e;display:none;align-items:center;justify-content:center;font-weight:400;font-size:14px;color:#999;cursor:pointer;position:absolute;right:10px;top:136px}.goods-item .is-active[data-v-b1d47400]{border:1px solid #ff8429}.goods-item .goods-favorite img[data-v-b1d47400]{width:20px;height:20px}.goods-item .goods-details[data-v-b1d47400]{padding:8px 4px}.goods-item .goods-name[data-v-b1d47400]{font-weight:400;font-size:12px;color:#3e3e3e;line-height:13px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;word-break:break-all}.goods-item .goods-name span[data-v-b1d47400]{display:inline-block;background:#ff8429;color:#fff;font-weight:500;font-size:10px;padding:1px 4px;border-radius:3px;margin-right:4px}.goods-item .goods-price[data-v-b1d47400]{font-weight:bold;font-size:16px;color:#ec2336}.goods-item .goods-info[data-v-b1d47400]{font-size:13px;color:#888;display:flex;align-items:center;justify-content:space-between;padding:10px 0 5px}.goods-item .goods-info .goods-info-left[data-v-b1d47400]{display:flex;align-items:center;gap:8px}.goods-item .goods-info .goods-info-left .star[data-v-b1d47400]{color:#ffcd28;font-weight:600}.goods-item .goods-info .goods-add[data-v-b1d47400]{background:none;border:none;cursor:pointer;width:46px;height:26px;border-radius:13px;border:1px solid #f2f2f2;display:flex;align-items:center;justify-content:center}.goods-item .goods-info .goods-add img[data-v-b1d47400]{width:24px;height:24px}.goods-item .goods-info .goods-add[data-v-b1d47400]:hover{border:1px solid #ff8429}.goods-item.category[data-v-b1d47400]{background:linear-gradient(180deg, #FFFFFF 17%, #FFEBD5 100%);justify-content:center}.goods-item.category .goods-category[data-v-b1d47400]{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center}.goods-item.category .goods-category .category-name[data-v-b1d47400]{font-weight:400;font-size:12px;color:#000}.goods-item.category .goods-category .goods-category-btn[data-v-b1d47400]{display:block;width:120px;height:30px;line-height:30px;text-align:center;background:#d0934f;font-weight:500;font-size:12px;color:#fff;border-radius:16px;text-decoration:none;margin-top:10px;transition:background .2s}.goods-item.category .goods-category .goods-category-btn[data-v-b1d47400]:hover{background:#ff9c4d}.goods-item.category .goods-category .goods-category-btn .arrow-icon[data-v-b1d47400]{width:12px;transform:rotate(-90deg);margin-left:4px}.goods-item[data-v-b1d47400]:hover{box-shadow:0px 6px 10px 0px rgba(0,0,0,.15)}.goods-item:hover .goods-favorite[data-v-b1d47400]{display:flex}.goods-item__search[data-v-b1d47400]{width:204px}.goods-item__search .goods-image[data-v-b1d47400]{height:204px}.goods-item__search:hover .goods-favorite[data-v-b1d47400]{top:160px}

.property-img-preview[data-v-4e9d6451] {
    position: fixed;
    z-index: 100;
    pointer-events: none;
    background: #fff;
    border: 6px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 4px;
    transform: translate(-50%, -100%);
}
.property-img-preview img[data-v-4e9d6451] {
    max-width: 180px;
    max-height: 180px;
    display: block;
}
.shop-btn[data-v-4e9d6451]{
    min-width: 80px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 35px 35px 35px 35px;
    border: 1px solid #F2F2F2;
    font-weight: 500;
    font-size: 12px;
    color: #FF8429;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quantity-num[data-v-4e9d6451] {
  -moz-appearance: textfield; /* Firefox */
}
.quantity-num[data-v-4e9d6451]::-webkit-outer-spin-button,
.quantity-num[data-v-4e9d6451]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-num[data-v-4e9d6451]:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}


.diy-row[data-v-4f2f4d9b] .el-input__inner{
    height: 60px;
    line-height: 60px;
}
.diy-num[data-v-4f2f4d9b] {
  -moz-appearance: textfield; /* Firefox */
}
.diy-num[data-v-4f2f4d9b]:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.diy-num[data-v-4f2f4d9b]::-webkit-outer-spin-button,
.diy-num[data-v-4f2f4d9b]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.form-group[data-v-ae279a1e] .el-input__inner{
    height: 60px;
    line-height: 60px;
}
.qty-control input[type=number][data-v-ae279a1e] {
  -moz-appearance: textfield; /* Firefox */
}
.qty-control input[data-v-ae279a1e]:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.qty-control input[type=number][data-v-ae279a1e]::-webkit-outer-spin-button,
.qty-control input[type=number][data-v-ae279a1e]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


html[dir="rtl"] .el-cascader-node__postfix {
    /* 将加载图标定位到左侧 */
    left: 10px;
    right: auto;
}

.insight-select[data-v-576cf810]{position:relative;flex:1}.insight-modal__mask[data-v-576cf810]{position:fixed;z-index:99;left:0;top:0;right:0;bottom:0;background:rgba(0,0,0,.18);display:flex;align-items:center;justify-content:center}.insight-modal[data-v-576cf810]{background:#fff;border-radius:5px;width:680px;max-width:96vw;padding:35px 46px;position:relative;animation:fadeIn-576cf810 .2s}@keyframes fadeIn-576cf810{from{opacity:0;transform:scale(0.98)}to{opacity:1;transform:scale(1)}}.insight-modal__header[data-v-576cf810]{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}.insight-modal__title[data-v-576cf810]{font-size:20px;color:#281f15}.insight-modal__close[data-v-576cf810]{font-size:28px;color:#333;cursor:pointer;font-weight:400;line-height:1;transition:color .2s}.insight-modal__close[data-v-576cf810]:hover{color:#ff8429}.insight-modal__form[data-v-576cf810]{display:flex;flex-direction:column;gap:18px}.insight-modal__row[data-v-576cf810]{display:flex;align-items:center;margin-bottom:0;min-height:38px}.insight-modal__label[data-v-576cf810]{width:150px;font-weight:500;font-size:14px;color:#281f15;text-align:right}.insight-modal__label[data-v-576cf810]:before{content:"*";color:#ff0e0e;margin-right:2px}.select-product__option[data-v-576cf810]{display:flex;align-items:center;gap:10px;padding:10px 0}.el-select-dropdown__item[data-v-576cf810]{line-height:auto;height:auto}.select-product__img[data-v-576cf810]{width:70px;height:70px;border-radius:3px;-o-object-fit:cover;object-fit:cover;margin-right:4px}.select-product__info[data-v-576cf810]{width:300px;display:flex;flex-direction:column;min-width:0}.select-product__title[data-v-576cf810]{width:300px;font-weight:400;font-size:12px;color:#281f15;word-break:break-all;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis}.select-product__desc[data-v-576cf810]{font-weight:bold;font-size:12px;color:#8c8175;margin-top:2px}.select-product__price[data-v-576cf810]{font-weight:bold;font-size:16px;color:#281f15;margin-top:2px}.insight-modal__title-input[data-v-576cf810]{flex:1}.upload-image__label[data-v-576cf810]{flex:1;display:flex;align-items:center;flex-wrap:wrap;gap:10px}.upload-image__placeholder[data-v-576cf810],.upload-image__item[data-v-576cf810]{width:100px;height:100px;background:#fafafa;border-radius:2px;border:1px solid #e5e6eb;cursor:pointer;position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;font-weight:400;font-size:14px;color:#4e5969;-o-object-fit:cover;object-fit:cover}.upload-image__icon[data-v-576cf810]{width:38px;height:34px;margin-bottom:4px}.remove-image[data-v-576cf810]{position:absolute;top:8px;right:8px;width:20px;height:20px;background:rgba(0,0,0,.6);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.upload-image__preview[data-v-576cf810]{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:8px}.insight-modal__content-input[data-v-576cf810]{flex:1}.radio-label[data-v-576cf810]{font-weight:500;font-size:14px;color:#4e5969;align-items:center;display:flex;margin-right:10px;gap:4px}.scheduled-time__input[data-v-576cf810]{width:150px}.insight-modal__btn-row[data-v-576cf810]{justify-content:center;margin-top:8px}.insight-modal__submit[data-v-576cf810]{width:188px;height:44px;background:#ff8429;border-radius:5px 5px 5px 5px;transition:background .2s;font-weight:500;font-size:14px;color:#fff;display:flex;align-items:center;justify-content:center}.insight-modal__submit[data-v-576cf810]:hover{background:#ff9c4a}

.load-more[data-v-127e4b48] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 0 26px;
    gap: 8px;
    font-size: 14px;
    color: #999;
}
.load-more img[data-v-127e4b48] {
    width: 90px;
    height: auto;
}


.freight-plan__overlay[data-v-36bebce9] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-36bebce9 0.3s ease;
}
.freight-plan__modal[data-v-36bebce9] {
    background: #FFFFFF;
    border-radius: 16px;
    width: 600px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: slideUp-36bebce9 0.3s ease;
    overflow: hidden;
}

/* 标题栏 */
.freight-plan__header[data-v-36bebce9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #F0F0F0;
}
.freight-plan__title[data-v-36bebce9] {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}
.freight-plan__close[data-v-36bebce9] {
    background: none;
    border: none;
    font-size: 30px;
    color: #999999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.freight-plan__close[data-v-36bebce9]:hover {
    color: #FF7F00;
}

/* 主体内容 */
.freight-plan__body[data-v-36bebce9] {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    box-sizing: border-box;
}

/* 包裹信息区域 */
.package-info__section[data-v-36bebce9] {
    margin-bottom: 24px;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    padding: 8px;
}
.section-title[data-v-36bebce9] {
    font-weight: 500;
    font-size: 16px;
    color: #0D0D0D;
    margin: 0 0 6px 0;
}
.package-info__grid[data-v-36bebce9] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding: 16px;
    background: #F8F9FA;
    border-radius: 12px;
}
.info-item[data-v-36bebce9] {
    text-align: center;
}
.info-label[data-v-36bebce9] {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #8C8175;
    margin-bottom: 8px;
}
.info-value[data-v-36bebce9] {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #281F15;
}


/* 配送选项区域 */
.shipping-options__section[data-v-36bebce9] {
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    padding: 8px;
}
.shipping-option__box[data-v-36bebce9] {
    background: #FAFAFA;
    border-radius: 10px;
    padding: 16px;
}
.shipping-option__card[data-v-36bebce9] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding-bottom: 20px;
    border-bottom: 1px solid #ECEEF2;
}
.shipping-option__card[data-v-36bebce9]:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0px;
}

/* 选择器 */
.option-selector[data-v-36bebce9] {
    flex-shrink: 0;
    margin-top: 2px;
}
.radio-circle[data-v-36bebce9] {
    width: 20px;
    height: 20px;
    border: 2px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.radio-circle.checked[data-v-36bebce9] {
    border-color: #FF7F00;
    background: #FF7F00;
}
.radio-dot[data-v-36bebce9] {
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
}

/* 选项详情 */
.option-details[data-v-36bebce9] {
    flex: 1;
}
.option-row[data-v-36bebce9] {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}
.option-row[data-v-36bebce9]:last-child {
    margin-bottom: 0;
}
.detail-label[data-v-36bebce9] {
    color: #666666;
    min-width: 120px;
}
.detail-value[data-v-36bebce9] {
    color: #333333;
    font-weight: 500;
    text-align: right;
}
.remark-text[data-v-36bebce9] {
    word-break: break-all;
    text-align: right;
    max-width: 200px;
}

/* 价格显示 */
.option-price[data-v-36bebce9] {
    flex-shrink: 0;
    text-align: right;
}
.price-amount[data-v-36bebce9] {
    font-size: 18px;
    font-weight: 700;
    color: #FF7F00;
}

/* 总计区域 */
.total-section[data-v-36bebce9] {
    margin-top: 4px;
}
.total-row[data-v-36bebce9] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.total-label[data-v-36bebce9] {
    font-weight: bold;
    font-size: 16px;
    color: #0D0D0D;
}
.total-amount[data-v-36bebce9] {
    font-weight: bold;
    font-size: 32px;
    color: #FF7F00;
}

/* 底部按钮 */
.freight-plan__footer[data-v-36bebce9] {
    padding: 20px 24px;
    border-top: 1px solid #F0F0F0;
    margin-top: 20px;
}
.checkout-btn[data-v-36bebce9] {
    width: 100%;
    height: 50px;
    background: #FF7F00;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}
.checkout-btn[data-v-36bebce9]:hover {
    background: #e6611a;
}
.checkout-btn[data-v-36bebce9]:active {
    transform: translateY(0);
}

/* 动画效果 */
@keyframes fadeIn-36bebce9 {
from { opacity: 0;
}
to { opacity: 1;
}
}
@keyframes slideUp-36bebce9 {
from {
        opacity: 0;
        transform: translateY(30px);
}
to {
        opacity: 1;
        transform: translateY(0);
}
}

/* 滚动条样式 */
.freight-plan__body[data-v-36bebce9]::-webkit-scrollbar {
    width: 6px;
}
.freight-plan__body[data-v-36bebce9]::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 3px;
}
.freight-plan__body[data-v-36bebce9]::-webkit-scrollbar-thumb {
    background: #D0D0D0;
    border-radius: 3px;
}
.freight-plan__body[data-v-36bebce9]::-webkit-scrollbar-thumb:hover {
    background: #B0B0B0;
}



.profile-info__item[data-v-6f4ff3dc] .el-input.is-disabled .el-input__inner{
    border-color: #F5F7FA;
}
.profile-info__item[data-v-6f4ff3dc] .el-form-item__content{
    display: flex;
    gap: 10px;
}

.password-mask[data-v-36745656]{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0,0,0,.3);z-index:99;display:block}.password-box[data-v-36745656]{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);background:#fff;border-radius:5px;width:528px;height:auto;box-sizing:border-box;padding:20px 40px}.password-box__title[data-v-36745656]{display:flex;align-items:center;justify-content:space-between;font-weight:bold;font-size:16px;color:#1c2024}.password-form[data-v-36745656]{padding-bottom:70px;max-height:70vh;overflow-y:auto}.password-form label[data-v-36745656]{font-weight:500;font-size:14px;color:#25292d;margin:10px 0}.password-group[data-v-36745656]{display:flex;flex-direction:column}.password-group input[data-v-36745656]{width:100%;height:36px;position:relative}.get-code-btn[data-v-36745656]{position:absolute;right:4px;top:6px;height:28px;background:#ff8429;border-radius:5px;cursor:pointer;font-weight:500;font-size:14px;color:#fff;padding:0 14px;border:none;transition:background .3s ease}.get-code-btn[data-v-36745656]:hover{background:#e6611a}.password-verification[data-v-36745656]{display:flex;align-items:center;justify-content:space-between;position:relative}.password-btns[data-v-36745656]{display:flex;align-items:center;justify-content:flex-end;width:100%;box-sizing:border-box;position:fixed;bottom:0px;left:0;padding:20px 40px;background:#fff;z-index:1;border-radius:0 0 4px 4px;gap:10px}.password-save[data-v-36745656],.password-cancel[data-v-36745656]{height:40px;background:#fff;border-radius:5px;border:1px solid #f2f2f2;font-weight:bold;font-size:14px;color:#000;padding:0 18px;background:none;line-height:40px;cursor:pointer}.password-save[data-v-36745656]{border:1px solid #ff8429;background:#ff8429;color:#fff}.password-cancel[data-v-36745656]:hover{border:1px solid #ff8429}.password-save[data-v-36745656]:hover{background:#e67300;border:1px solid #e67300}.password-tip[data-v-36745656]{font-size:13px;color:#ea4548;margin-top:6px;margin-bottom:8px;padding-left:2px}html[dir=rtl] .get-code-btn[data-v-36745656]{right:auto;left:4px}

.address-mask[data-v-67aea415]{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99;
    display: block;
}
.address-box[data-v-67aea415]{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 5px;
    max-width: 996px;
    width: 100%;
    height: auto;
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 20px 40px;
}
.address-box__title[data-v-67aea415]{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    font-size: 16px;
    color: #1C2024;
}
.address-close[data-v-67aea415]{
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.address-form[data-v-67aea415]{
    max-height: 70vh;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 2%;
}
.address-form label[data-v-67aea415]{
    font-weight: 500;
    font-size: 14px;
    color: #25292D;
    line-height: 40px;
}
.address-recipient__wrap[data-v-67aea415]{
    width: 49%;
}
.address-recipient[data-v-67aea415]{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.address-recipient input[data-v-67aea415], .address-detailed input[data-v-67aea415], .address-zip input[data-v-67aea415],.address-phone input[data-v-67aea415]{
    width: 100%;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 10px;
    margin: 10px 0;
    font-size: 16px;
}
.address-phone[data-v-67aea415]{
    display: flex;
    align-items: center;
    gap: 10px;
}
.address-phone input[data-v-67aea415]{
    width: auto;
}
.regionlist[data-v-67aea415]{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.address-region[data-v-67aea415]{
  border-radius: 4px;
  box-sizing: border-box;
  flex: 1;
}
.address-default[data-v-67aea415]{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding: 15px 0;
  width: 100%;
}
.address-default__choose[data-v-67aea415]{
  margin-right: 10px;
  border: 0;
  background: none;
  cursor: pointer;
}
.address-default__choose img[data-v-67aea415]{
  width: 16px;
  height: 16px;
}
.address-btns[data-v-67aea415]{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #fff;
    gap: 10px;
}
.address-save[data-v-67aea415],.address-cancel[data-v-67aea415]{
    height: 40px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #F2F2F2;
    font-weight: bold;
    font-size: 14px;
    color: #000000;
    padding: 0 18px;
    background: none;
    line-height: 40px;
    cursor: pointer;
}
.address-save[data-v-67aea415]{
    border: 1px solid #FF8429;
    background: #FF8429;
    color: #FFFFFF;
}
.address-cancel[data-v-67aea415]:hover{
    border: 1px solid #FF8429;
}
.address-save[data-v-67aea415]:hover{
    background: #e67300;
    border: 1px solid #e67300;
}


.pay-password__mask[data-v-49d2a6f2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.pay-password__content[data-v-49d2a6f2] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
}
.pay-password__content h3[data-v-49d2a6f2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.pay-password__content h3 img[data-v-49d2a6f2] {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.pay-password__btns[data-v-49d2a6f2] {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 10px;
}
.pay-password__btns .cancel[data-v-49d2a6f2],
.pay-password__btns .confirm[data-v-49d2a6f2] {
    min-width: 82px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    box-sizing: border-box;
    cursor: pointer;
}
.pay-password__btns .confirm[data-v-49d2a6f2]{
    background: #FF8429;
    border-radius: 5px;
    border: 1px solid #FF8429;
    color: #FFFFFF;
}


/* 弹窗样式 */
.choose-address[data-v-79f2d66d] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.address-box[data-v-79f2d66d] {
    width: 800px;
    max-height: 80vh;
    min-height: 200px;
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.address-header[data-v-79f2d66d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.address-header h3[data-v-79f2d66d] {
    font-weight: bold;
    font-size: 24px;
    color: #281F15;
    margin: 0;
}
.address-header img[data-v-79f2d66d] {
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.address-add[data-v-79f2d66d] {
    border: 1px dashed #dcdfe6;
    background-color: #f9f9f9;
    color: #606266;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 4px;
}
.address-content[data-v-79f2d66d] {
    overflow-y: auto;
    flex: 1;
}
.address-item[data-v-79f2d66d] {
    display: grid;
    grid-template-columns: 40px 1fr 1fr 2fr 1.5fr;
    gap: 15px;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
}
.address-item--selected[data-v-79f2d66d] {
    border-color: #FF8429;
}
.warehouse-icon[data-v-79f2d66d] {
    width: 20px;
    height: 20px;
}
.address-item__name[data-v-79f2d66d] {
    font-size: 14px;
    color: #333;
}
.table-title__address[data-v-79f2d66d] {
    color: #666;
}
.choose-btns[data-v-79f2d66d] {
    display: flex;
    gap: 15px;
}
.address-edit[data-v-79f2d66d], .address-delete[data-v-79f2d66d] {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #606266;
}
.address-footer[data-v-79f2d66d] {
    margin-top: 20px;
    text-align: center;
}
.address-confirm[data-v-79f2d66d] {
    width: 100%;
    height: 60px;
    background: #FF7F00;
    border-radius: 12px;
    border-color: #FF8429;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}


.wallet-topup__dialog[data-v-06ccc0ec] .el-dialog {
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0 !important;
}
.wallet-topup__dialog[data-v-06ccc0ec] .el-dialog__header {
    border-bottom: 1px solid #F2F2F2;
    font-weight: bold;
    font-size: 24px;
    color: #0D0D0D;
}
.wallet-topup__dialog[data-v-06ccc0ec] .el-dialog__body {
    padding: 24px;
}
.wallet-topup__dialog[data-v-06ccc0ec] .el-dialog__headerbtn {
    font-size: 24px;
    top: 10px;
}
.topup-content[data-v-06ccc0ec] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 金额输入区域 */
.amount-section[data-v-06ccc0ec] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-title[data-v-06ccc0ec] {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.amount-input__wrapper[data-v-06ccc0ec] {
    position: relative;
    display: flex;
    align-items: center;
    width: 336px;
}
.amount-input[data-v-06ccc0ec] {
    width: 100%;
    height: 60px;
    border: 1px solid #F2F2F2;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #A6A6A6;
    outline: none;
    transition: border-color 0.3s ease;
    padding-left: 10px;
}
.amount-input[data-v-06ccc0ec]:focus {
    border-color: #FF7F00;
}
.amount-input[data-v-06ccc0ec]::-webkit-outer-spin-button,
.amount-input[data-v-06ccc0ec]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.amount-input[type="number"][data-v-06ccc0ec] {
    -moz-appearance: textfield;
}
.currency-symbol[data-v-06ccc0ec] {
    position: absolute;
    right: 16px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* 支付方式区域 */
.payment-section[data-v-06ccc0ec] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.payment-item[data-v-06ccc0ec] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid #F2F2F2;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.payment-item[data-v-06ccc0ec]:hover {
    border-color: #FF7F00;
}
.payment-info[data-v-06ccc0ec] {
    display: flex;
    align-items: center;
    gap: 12px;
}
.payment-radio[data-v-06ccc0ec] {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}
.payment-radio img[data-v-06ccc0ec] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.payment-name[data-v-06ccc0ec] {
    font-weight: bold;
    font-size: 16px;
    color: #0D0D0D;
}
.payment-logo[data-v-06ccc0ec] {
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
}

/* 费用明细区域 */
.fee-section[data-v-06ccc0ec] {
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
}
.section-box[data-v-06ccc0ec]{
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #FAFAFA;
    border-radius: 10px;
    padding: 16px;
}
.fee-item[data-v-06ccc0ec] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #0D0D0D;
}
.fee-item .amount[data-v-06ccc0ec] {
    color: #FF7F00;
}

/* 总计区域 */
.total-section[data-v-06ccc0ec] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
}
.estimated-total[data-v-06ccc0ec] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    color: #0D0D0D;
    gap: 20px;
}
.total-amount[data-v-06ccc0ec] {
    font-size: 32px;
    color: #FF7F00;
}

/* 提交按钮 */
.checkout-btn[data-v-06ccc0ec] {
    width: 100%;
    height: 60px;
    background: #FF7F00;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}
.checkout-btn[data-v-06ccc0ec]:hover {
    background: #e6611a;
}
.checkout-btn[data-v-06ccc0ec]:disabled {
    background: #ddd;
    transform: none;
    box-shadow: none;
}
.checkout-btn img[data-v-06ccc0ec] {
    width: 16px;
    height: 16px;
}
.checkout-btn[data-v-06ccc0ec] span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
html[dir="rtl"] .wallet-topup__dialog[data-v-06ccc0ec] .el-dialog__headerbtn {
    right: auto!important;
    left: 20px!important;
}


.add-account__dialog[data-v-59cb40e1] .el-dialog {
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0 !important;
}
.add-account__dialog[data-v-59cb40e1] .el-dialog__header {
    border-bottom: 1px solid #F2F2F2;
    padding: 20px 24px 16px;
}
.add-account__dialog[data-v-59cb40e1] .el-dialog__title {
    font-weight: bold;
    font-size: 18px;
    color: #0D0D0D;
}
.add-account__dialog[data-v-59cb40e1] .el-dialog__headerbtn {
    font-size: 24px;
    top: 10px;
}
.add-account__dialog[data-v-59cb40e1] .el-dialog__body {
    padding: 24px;
}
.add-account__content[data-v-59cb40e1] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 返回按钮区域 */
.back-section[data-v-59cb40e1] {
    display: flex;
    justify-content: flex-start;
    margin-bottom: -12px;
}
.back-btn[data-v-59cb40e1] {
    background: #F8F8F8;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}
.back-btn[data-v-59cb40e1]:hover {
    background: #E8E8E8;
    color: #333;
}
.back-btn i[data-v-59cb40e1] {
    font-size: 18px;
}

/* 表单样式 */
.add-account__form[data-v-59cb40e1] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-section[data-v-59cb40e1] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-label[data-v-59cb40e1] {
    margin-bottom: 4px;
    font-weight: bold;
    color: #25292D;
}
.form-input[data-v-59cb40e1] {
    height: 54px;
    padding: 0 16px;
    border: 1px solid #F2F2F2;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-input[data-v-59cb40e1]:focus {
    border-color: #FF7F00;
    background: #FFFFFF;
}
.form-input[data-v-59cb40e1]::-moz-placeholder {
    color: #A6A6A6;
    font-weight: 400;
}
.form-input[data-v-59cb40e1]::placeholder {
    color: #A6A6A6;
    font-weight: 400;
}

/* 账户类型选择框 */
.account-type-select[data-v-59cb40e1] {
    width: 100%;
}
.account-type-select[data-v-59cb40e1] .el-input__inner {
    height: 54px;
    border: 1px solid #F2F2F2;
    border-radius: 8px;
    font-size: 16px;
}
.account-type-select[data-v-59cb40e1] .el-input__inner:focus {
    border-color: #FF7F00;
    background: #FFFFFF;
}
.account-type-select[data-v-59cb40e1] .el-input__placeholder {
    color: #A6A6A6;
}

/* 账户类型选项 */
.account-type-option[data-v-59cb40e1] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.type-icon[data-v-59cb40e1] {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
}

/* 复选框区域 */
.checkbox-section[data-v-59cb40e1] {
    display: flex;
    align-items: center;
    padding: 16px 0;
    gap: 8px;
}
.checkbox-section img[data-v-59cb40e1]{
    width: 16px;
    height: 16px;
}

/* 保存按钮 */
.save-btn[data-v-59cb40e1] {
    width: 100%;
    height: 60px;
    background: #FF7F00;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}
.save-btn[data-v-59cb40e1]:hover {
    background: #FF6B35;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
}
.save-btn[data-v-59cb40e1]:disabled {
    background: #CCCCCC;
    color: #999999;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}


.wallet-withdrawal__dialog[data-v-b871a7aa] .el-dialog {
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0 !important;
}
.wallet-withdrawal__dialog[data-v-b871a7aa] .el-dialog__header {
    border-bottom: 1px solid #F2F2F2;
    font-weight: bold;
    font-size: 24px;
    color: #0D0D0D;
}
.wallet-withdrawal__dialog[data-v-b871a7aa] .el-dialog__headerbtn {
    font-size: 24px;
    top: 10px;
}
.wallet-withdrawal__dialog[data-v-b871a7aa] .el-dialog__body {
    padding: 24px;
}
.withdrawal-content[data-v-b871a7aa] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 金额输入区域 */
.amount-section[data-v-b871a7aa] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    padding: 16px;
}
.amount-input__wrapper[data-v-b871a7aa] {
    position: relative;
}
.amount-input[data-v-b871a7aa] {
    width: 100%;
    border: none;
    font-weight: 500;
    font-size: 16px;
    color: #A6A6A6;
    outline: none;
    transition: border-color 0.3s ease;
}
.amount-input[data-v-b871a7aa]::-webkit-outer-spin-button,
.amount-input[data-v-b871a7aa]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.amount-input[type="number"][data-v-b871a7aa] {
    -moz-appearance: textfield;
}
.available-amount[data-v-b871a7aa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #8C8175;
}
.available-amount-value[data-v-b871a7aa] {
    color: #FF8429;
}
.all-btn[data-v-b871a7aa] {
    background: #FF7F00;
    border-radius: 12px;
    color: white;
    border: none;
    width: 141px;
    line-height: 46px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.all-btn[data-v-b871a7aa]:hover {
    background: #ff6b35;
}

/* 偏好设置区域 */
.preferences-section[data-v-b871a7aa] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.section-title[data-v-b871a7aa] {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.account-selector[data-v-b871a7aa] {
    width: 100%;
}
/* 下拉选择框样式 */
.account-select[data-v-b871a7aa] {
    width: 100%;
}
.account-select[data-v-b871a7aa] .el-input__inner {
    height: 54px;
    font-size: 16px;
}

/* 添加账户选项样式 */
.add-account__option[data-v-b871a7aa] {
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #eee;
}
.add-account__item[data-v-b871a7aa] {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #281F15;
    gap: 10px;
}
.add-icon[data-v-b871a7aa] {
    font-size: 16px;
}
.card-icon[data-v-b871a7aa] {
    font-size: 18px;
}
/* 账户选项样式 */
.account-option[data-v-b871a7aa]{
    height: 80px;
}
.account-option__content[data-v-b871a7aa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
}
.account-info[data-v-b871a7aa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.account-type[data-v-b871a7aa] {
    font-size: 40px;
    color: #333;
}
.account-details[data-v-b871a7aa] {
    display: flex;
    flex-direction: column;
}
.account-name[data-v-b871a7aa] {
    font-weight: 500;
    font-size: 16px;
    color: #281F15;
}
.account-number[data-v-b871a7aa] {
    font-weight: 500;
    font-size: 12px;
    color: #8C8175;
}
.payment-logo[data-v-b871a7aa] {
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
}

/* 没有账户时的添加按钮 */
.no-account__section[data-v-b871a7aa] {
    width: 100%;
    height: 54px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
}
.add-account__btn-empty[data-v-b871a7aa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    color: #A6A6A6;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    height: 54px;
    padding: 0 16px;
    transition: background 0.3s ease;
}
.el-icon-plus[data-v-b871a7aa] {
    color: #281F15;
}
.add-account__btn-empty[data-v-b871a7aa]:hover {
    background: #e6611a;
}

/* 费用明细区域 */
.fee-section[data-v-b871a7aa] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
}
.fee-item[data-v-b871a7aa] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #0D0D0D;
    background: #FAFAFA;
    border-radius: 10px;
    padding: 16px;
}
.fee-item .amount[data-v-b871a7aa] {
    color: #FF7F00;
}

/* 总计区域 */
.total-section[data-v-b871a7aa] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.estimated-total[data-v-b871a7aa] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    color: #0D0D0D;
    gap: 20px;
}
.total-amount[data-v-b871a7aa] {
    font-size: 32px;
    color: #FF7F00;
}
/* 提交按钮 */
.checkout-btn[data-v-b871a7aa] {
    width: 100%;
    height: 60px;
    background: #FF7F00;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}
.checkout-btn[data-v-b871a7aa]:hover {
    background: #e6611a;
}
.checkout-btn[data-v-b871a7aa]:disabled {
    background: #ddd;
    transform: none;
    box-shadow: none;
}
.checkout-btn img[data-v-b871a7aa] {
    width: 16px;
    height: 16px;
}
.checkout-btn[data-v-b871a7aa] span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
html[dir="rtl"] .wallet-withdrawal__dialog[data-v-b871a7aa] .el-dialog__headerbtn {
    right: auto!important;
    left: 20px!important;
}


[data-v-8dc281de] .el-tabs__nav-wrap::after {
    display: none;
}
[data-v-8dc281de] .el-tabs__item{
    font-weight: bold;
    font-size: 16px;
    color: #000000;
}
[data-v-8dc281de] .el-tabs__item.is-active {
    position: relative;
}
[data-v-8dc281de] .el-tabs__active-bar {
    /* 1. 将定位改回 absolute */
    position: absolute;
    /* 2. 明确指定其在底部 */
    bottom: 0;
    /* 3. 将其背景设为透明 */
    background-color: transparent;
    height: 4px;
    border-radius: 3px;
}
[data-v-8dc281de] .el-tabs__active-bar::before {
    content: '';
    position: absolute;
    height: 100%;
    border-radius: inherit;
    background-color: #FF8429;
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
}
[data-v-8dc281de] .el-tabs__content {
    display: none;
}
html[dir="rtl"][data-v-8dc281de] {
    /* 1. 将包含所有标签的导航容器在视觉上水平翻转 */
[data-v-8dc281de] .el-tabs__nav {
        transform: scaleX(-1);
}

    /* 2. 将导航容器内的每个标签项再次翻转回来，使其文字正常显示 */
    /*    这一步也使得标签的 padding 效果在视觉上恢复正常 */
[data-v-8dc281de] .el-tabs__item {
        transform: scaleX(-1);
}

    /* 3. 将激活条的伪元素（即我们看到的下划线）也翻转回来 */
[data-v-8dc281de] .el-tabs__active-bar::before {
        transform: translateX(-50%) scaleX(-1);
}
}


.points-record__container[data-v-fab8dae0] {
    background: #ffffff;
    padding: 12px 12px 30px;
    min-height: 250px;
    border-radius: 0 0 15px 15px;
}

/* 页面头部 */
.page-header[data-v-fab8dae0] {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    color: #281F15;
    gap: 18px;
    margin-bottom: 10px;
}
.rule-btn[data-v-fab8dae0] {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px 12px;
    height: 22px;
    background: #FFF1E6;
    border-radius: 34px;
    border: 1px solid #FF8429;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    color: #FF8429;
}
.rule-badge[data-v-fab8dae0] {
    width: 14px;
    height: 14px;
}

/* 记录表格 */
.record-table[data-v-fab8dae0] {
}
.table-header[data-v-fab8dae0] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-weight: 500;
    font-size: 12px;
    color: #1C2024;
    background: #FFFAF2;
    padding: 8px 0;
}
.table-body[data-v-fab8dae0] {
    min-height: 400px;
}
.table-row[data-v-fab8dae0] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
}
.table-row[data-v-fab8dae0]:hover {
    background: #f8f9fa;
}
.table-row[data-v-fab8dae0]:last-child {
    border-bottom: none;
}
.table-cell[data-v-fab8dae0] {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    color: #31373D;
}

/* 无数据状态 */
.no-data[data-v-fab8dae0] {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}
.no-data p[data-v-fab8dae0] {
    margin: 0;
    font-size: 16px;
}

/* 分页 */
.pagination-wrapper[data-v-fab8dae0] {
}

/* 规则弹窗样式 */
.rule-dialog .el-dialog[data-v-fab8dae0] {
    border-radius: 12px;
}
.rule-table[data-v-fab8dae0] {
    width: 100%;
}
.rule-header[data-v-fab8dae0] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #FFFAF2;
    padding: 16px 20px;
    font-weight: 500;
    font-size: 12px;
    color: #1C2024;
}
.rule-body[data-v-fab8dae0] {
    max-height: 50vh;
    overflow-y: auto;
}
.rule-row[data-v-fab8dae0] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 16px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
}
.rule-row[data-v-fab8dae0]:hover {
    background: #f8f9fa;
}
.rule-row[data-v-fab8dae0]:last-child {
    border-bottom: none;
}
.rule-cell[data-v-fab8dae0] {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    color: #31373D;
}
.rule-dialog[data-v-fab8dae0] .el-dialog {
    border-radius: 10px;
    max-width: 996px;
}
.rule-dialog[data-v-fab8dae0] .el-dialog__title {
    font-weight: bold;
    font-size: 16px;
    color: #281F15;
}
.rule-dialog[data-v-fab8dae0] .el-button {
    border-radius: 6px;
    padding: 10px 24px;
}
.rule-dialog[data-v-fab8dae0] .el-dialog__body {
    padding: 12px;
}
.rule-dialog[data-v-fab8dae0] .el-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0 !important;
}
html[dir="rtl"] .rule-dialog[data-v-fab8dae0] .el-dialog__headerbtn {
    right: auto!important;
    left: 20px!important;
}


.favourite-content__container[data-v-517853e8] {
    background: #ffffff;
    position: relative;
    box-sizing: border-box;
    padding: 24px;
    border-radius: 15px;
    min-height: 750px;
}
/* 筛选区域 */
.favourite-section[data-v-517853e8] {
    margin-bottom: 20px;
}
.filter-row[data-v-517853e8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 5px;
}
.select-all__wrapper[data-v-517853e8] {
    display: flex;
    align-items: center;
    gap: 15px;
}
.foot-select[data-v-517853e8] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 0;
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: #0D0D0D;
    transition: all 0.3s ease;
}
.choose-icon[data-v-517853e8] {
    width: 20px;
    height: 20px;
}
.selected-count[data-v-517853e8] {
    color: #666;
    font-size: 14px;
}
.filter-controls[data-v-517853e8] {
    display: flex;
    align-items: center;
    gap: 15px;
}
.favourite-select[data-v-517853e8] {
    width: 200px;
}
.favourite-input[data-v-517853e8] {
    width: 250px;
}
.foot-delete[data-v-517853e8] {
    padding: 10px 20px;
    background: none;
    font-size: 16px;
    color: #A6A6A6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}
.foot-delete[data-v-517853e8]:hover {
    color: #0D0D0D;
}
.item-store__choose[data-v-517853e8] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Stores 和 Insights 网格布局 */
.store-grid__layout[data-v-517853e8] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}
.store-grid__item[data-v-517853e8] {
    width: 215px;
    height: 214px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #ECF2F5;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.store-grid__item[data-v-517853e8]:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.item-select__badge[data-v-517853e8] {
    position: absolute;
    top: 11px;
    right: 11px;
}
.store-image[data-v-517853e8] {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.store-name[data-v-517853e8] {
    font-weight: 500;
    font-size: 16px;
    color: #1C2024;
    text-align: center;
    padding: 0 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.action-text[data-v-517853e8] {
    display: inline-block;
    padding: 8px 20px;
    background: #ECF2F5;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    cursor: pointer;
    margin-top: 15px;
}
/* 无数据状态 */
.no-message[data-v-517853e8] {
    text-align: center;
    padding: 30px 0px;
    font-size: 16px;
    width: 100%;
}



/* 弹窗样式 */
.create-ticket__dialog[data-v-585b4532] .el-dialog {
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);
    border-radius: 15px;
}
.create-ticket__dialog[data-v-585b4532] .el-dialog__header,
.ticket-detail-dialog[data-v-585b4532] .el-dialog__header {
    border-bottom: 1px solid #F2F2F2;
    font-weight: bold;
    font-size: 24px;
    color: #0D0D0D;
}
.create-ticket__dialog[data-v-585b4532] .el-dialog__body,
.ticket-detail-dialog[data-v-585b4532] .el-dialog__body {
    padding: 24px;
}
.create-ticket__dialog[data-v-585b4532] .el-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0 !important;
}
.create-ticket__dialog[data-v-585b4532] .el-dialog__headerbtn {
    font-size: 24px;
    top: 10px;
}
.create-ticket__dialog[data-v-585b4532] .el-input__inner{
    height: 60px;
}
.filter-row[data-v-585b4532] .el-range-editor--medium.el-input__inner{
   height: 40px;
}
/* 上传区域 */
.upload-section[data-v-585b4532] {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.upload-container[data-v-585b4532] {
    width: 70px;
    height: 70px;
    background: #F8F8F8;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    cursor: pointer;
    transition: border-color 0.3s;
}
.upload-container[data-v-585b4532]:hover {
    border-color: #FF7F00;
}
.upload-label[data-v-585b4532] {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.upload-input[data-v-585b4532] {
    display: none;
}
.upload-placeholder[data-v-585b4532] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #DDDFE2;
    margin-top: 27px;
}
.uploaded-files[data-v-585b4532] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.upload-img[data-v-585b4532],
.upload-file[data-v-585b4532] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.upload-img img[data-v-585b4532] {
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}
.remove-btn[data-v-585b4532] {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #f56c6c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.ticket-submit__btn[data-v-585b4532]{
    width: 100%;
    padding: 20px 0;
    border-radius: 12px;
    background: #FF7F00;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    transition: background 0.3s ease;
}
.ticket-submit__btn[data-v-585b4532]:hover {
    background: #e6611a;
}
/* 工单详情样式 */
.ticket-detail__content[data-v-585b4532] {
    max-height: 30vh;
    overflow-y: auto;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    padding: 16px;
    scroll-behavior: smooth;
}
.ticket-detail__content[data-v-585b4532]::-webkit-scrollbar {
    width: 6px;
}
.ticket-detail__content[data-v-585b4532]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.ticket-detail__content[data-v-585b4532]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}
.ticket-detail__content[data-v-585b4532]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.reply-item[data-v-585b4532]:last-child {
    animation: fadeInUp-585b4532 0.3s ease-out;
}
@keyframes fadeInUp-585b4532 {
from {
        opacity: 0;
        transform: translateY(20px);
}
to {
        opacity: 1;
        transform: translateY(0);
}
}
.file-item[data-v-585b4532] {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.3s;
}
.file-images[data-v-585b4532]{
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}
.file-name[data-v-585b4532] {
    color: #409EFF;
    font-size: 14px;
}
.ticket-time[data-v-585b4532] {
    color: #909399;
    font-size: 12px;
    text-align: right;
}

/* 回复区域 */
.replies-section[data-v-585b4532] {
}
.reply-item[data-v-585b4532] {
    margin-bottom: 15px;
}
.reply-item.admin-reply[data-v-585b4532] {
    display: flex;
    justify-content: flex-start;
}
.reply-item.user-reply[data-v-585b4532] {
    display: flex;
    justify-content: flex-end;
    background: #FFF1E6;
    border-radius: 10px
}
.reply-content[data-v-585b4532] {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.reply-head[data-v-585b4532]{
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    border: 1px solid #F2F2F2;
}
.reply-header[data-v-585b4532]{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.reply-message[data-v-585b4532] {
    color: #303133;
    line-height: 1.5;
    margin-bottom: 8px;
}
.reply-images[data-v-585b4532] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.reply-images img[data-v-585b4532] {
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}
.reply-time[data-v-585b4532] {
    color: #909399;
    font-size: 12px;
}

/* 回复输入区 */
.reply-section[data-v-585b4532] {
    display: flex;
    height: 86px;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    margin-top: 40px;
}
.reply-section[data-v-585b4532] .el-textarea__inner {
    border: none;
}
.reply-upload[data-v-585b4532] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}
.upload-btn[data-v-585b4532] {
    width: 70px;
    height: 70px;
    background: #F8F8F8;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #DDDFE2;
    margin-right: 7px;
    position: relative;
}
.upload-btn input[data-v-585b4532] {
    display: none;
}
.upload-btn img[data-v-585b4532] {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}
.upload-btn button[data-v-585b4532] {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 16px;
    height: 16px;
    background: #f56c6c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
}
.reply-actions[data-v-585b4532] {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}
html[dir="rtl"] .create-ticket__dialog[data-v-585b4532] .el-dialog__headerbtn {
    right: auto!important;
    left: 20px!important;
}


/* 组件样式将通过外部 SCSS 文件引入 */


.coupon-box[data-v-6a970f1e]{
    position: relative;
}
.coupon-banner[data-v-6a970f1e]{
    width: 100%;
    height: 232px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 20px;
}
.coupon-bg[data-v-6a970f1e]{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
}
.coupon-title[data-v-6a970f1e]{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    font-style: italic;
    padding-top: 30px;
    position: relative;
}
.coupon-list[data-v-6a970f1e]{
    position: relative;
    display: flex;
    height: 100%;
}
.coupon-left[data-v-6a970f1e]{
    padding: 50px;
    box-sizing: border-box;
}
.coupon-name[data-v-6a970f1e] {
    font-weight: bold;
    font-size: 36px;
    color: #281F15;
    letter-spacing: 1px;
    text-align: left;
    font-style: italic;
}
.coupon-sub[data-v-6a970f1e] {
    font-weight: 500;
    font-size: 16px;
    color: #281F15;
    text-align: left;
    font-style: italic;
}
.coupon-right[data-v-6a970f1e]{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex: 1;
    padding: 0 24px 0 0;
}
.coupon-card[data-v-6a970f1e] {
    position: relative;
    width: 219px;
    height: 184px;
    box-sizing: border-box;
    padding: 12px;
}
.coupon-icon[data-v-6a970f1e]{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.coupon-main[data-v-6a970f1e] {
    position: relative;
    text-align: center;
}
.coupon-amount__section[data-v-6a970f1e] {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.coupon-price[data-v-6a970f1e]{
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    margin-top: 5px;
}
.coupon-info[data-v-6a970f1e] {
    flex: 1;
    margin-top: 54px;
}
.discount-info[data-v-6a970f1e]{
    margin-top: 34px;
}
.coupon-description[data-v-6a970f1e] {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.coupon-validity[data-v-6a970f1e] {
    font-size: 10px;
    opacity: 0.8;
    text-align: center;
}
.guess-list[data-v-6a970f1e]{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 50px;
}
.list-loading[data-v-6a970f1e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 0 16px 0;
    width: 100%;
}
.loading-img[data-v-6a970f1e] {
    width: 90px;
    height: auto;
    margin-bottom: 8px;
}
.discount-list[data-v-6a970f1e] {
    position: relative;
    margin-bottom: 24px;
}
.discount-title[data-v-6a970f1e]{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    font-style: italic;
}
.discount-btns[data-v-6a970f1e] {
    display: flex;
    gap: 8px;
}
.discount-arrow[data-v-6a970f1e] {
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 20px 20px 20px 20px;
    border: 1px solid #281F15;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: opacity 0.2s;
}
.discount-arrow[data-v-6a970f1e]:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.discount-arrow img[data-v-6a970f1e] {
    width: 18px;
    height: 18px;
}
.discount-arrow--left img[data-v-6a970f1e] {
    transform: rotate(90deg);
}
.discount-arrow--right img[data-v-6a970f1e] {
    transform: rotate(-90deg);
}
.discount-cards[data-v-6a970f1e] {
    display: flex;
    gap: 24px;
}
.discount-card__btn[data-v-6a970f1e] {
    width: 142px;
    height: 38px;
    background: linear-gradient( 132deg, #FF846C 0%, #FB5235 100%);
    border-radius: 88px 88px 88px 88px;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 0;
}
.discount-received[data-v-6a970f1e]{
    position: absolute;
    bottom: 26px;
    right: 0px;
    width: 67px;
    height: 62px;
}

