    /* 未登录遮罩层 */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-blur {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

/* 提示弹窗 */
.login-tip-modal {
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    width: 380px;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
    animation: slideFromBottom 1.5s ease forwards;
}
@keyframes slideFromBottom {
    0% {
        bottom: -50%;
        opacity: 0;
    }
    100% {
        bottom: 50%;
        transform: translate(-50%, 50%);
        opacity: 1;
    }
}
.login-tip-modal .tip-icon {
    font-size: 60px;
    color: #B97556;
    margin-bottom: 20px;
}
.login-tip-modal h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}
.login-tip-modal p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}
.login-tip-modal .countdown {
    font-size: 16px;
    color: #B97556;
    font-weight: bold;
}
.login-tip-modal .btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.login-tip-modal .btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.login-tip-modal .btn-primary {
    background: #B97556;
    color: #fff;
}
.login-tip-modal .btn-default {
    background: #e0e0e0;
    color: #666;
}
    /* 未登录遮罩层 */
    
    /* ----- 全局重置与居中核心 ----- */
.da { width: 100%; background: #f6efe3; }
.wrap {
    width: 1200px;
    margin: 0 auto;
    max-width: 95%;
}

/*顶部欢迎卡片*/
.top-user-card{
    width:100%;
    background:#fff;
    border-radius:16px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
    position:relative;
    overflow:hidden;
    transition:all 0.3s cubic-bezier(0.25,0.1,0.25,1);
}

.user-left{display:flex;align-items:center;gap:22px;}
.user-avatar{
    width:110px;height:110px;border-radius:50%;
    overflow:hidden;
    transition:all 0.3s ease;
}
.user-avatar img{width:100%;height:100%;object-fit:cover;}

.user-info h1{font-size:28px;color:#222;font-weight:600;display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.vip-tag{
    background:#FEEACC;color:#b97556;font-size:14px;padding:4px 10px;border-radius:20px;
    display:inline-flex;align-items:center;
}
.user-desc{color:#777;font-size:16px;margin:8px 0 12px;}
.user-phone{color:#555;font-size:17px;display:flex;align-items:center;gap:6px;}
.top-right-img{
    width:720px;height:190px;
    background:url(/images/gerenxifu2.jpg) no-repeat right center;
    background-size:contain;
    transition:all 0.35s ease;
}
.slogan{position:absolute;right:30px;top:42px;font-size:22px;color:#333;letter-spacing:1px;}
.slogan span{display:block;text-align:right;border-bottom:2px solid #b97556;width:78px;margin-left:auto;margin-top:4px;}

/*订单概览栏 - 实线分隔均匀居中*/
.order-bar {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.order-bar:hover {
    box-shadow: 0 6px 18px rgba(186,118,86,0.09);
    transform: translateY(-2px);
}
.bar-tit {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    padding-right: 20px;
 
    margin-right: 12px;
}
.bar-link a {
    color: #b97556;
    text-decoration: none;
    font-size: 15px;
    margin-left: 6px;
}
.order-bar > div:not(.bar-tit) {
    flex: 1;
    text-align: center;
    border-left: 2px solid #e2dbd0;
    padding: 0 8px;
    transition: all 0.28s ease;
    cursor: pointer;
}
.order-bar > div:first-of-type:not(.bar-tit) {
    border-left: none;
}
.order-bar > div:not(.bar-tit):hover {
    transform: scale(1.04);
    color: #b97556;
}
.order-num {
    font-size: 26px;
    color: #994422;
    font-weight: bold;
    margin-bottom: 5px;
}
.order-text {
    font-size: 15px;
    color: #555;
}

/*功能区块 - 3列均匀布局*/
.func-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 20px;
}
.func-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.32s cubic-bezier(0.25,0.1,0.25,1);
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.func-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(185,117,86,0.11);
}
.box-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    border-bottom: 2px solid #ece3d9;
    padding-bottom: 12px;
}
.box-icon {
    width: 38px;
    height: 38px;
    background: #1a2b59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}
.func-box:hover .box-icon {
   
    transform: rotate(8deg);
}
.box-tit {
    font-size: 19px;
    color: #222;
    font-weight: 500;
}
.box-arrow {
    color: #999;
    transition: all 0.3s ease;
    font-size: 18px;
}
.func-box:hover .box-arrow {
    color: #b97556;
    transform: translateX(4px);
}

/* 子项均匀对称居中 - 使用flex space-evenly */
.box-item-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: start;
    gap: 20px 12px;
    width: 100%;
    margin-top: 6px;
}
.box-item {
    flex: 0 0 auto;
    min-width: 70px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    text-decoration: none;
}
.box-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item-icon {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
    transition: all 0.28s ease;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    border-radius: 50%;
}
.item-icon img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
}
.item-text {
    font-size: 13px;
    color: #555;
    transition: all 0.28s ease;
    font-weight: 500;
    line-height: 1.3;
}
.box-item:hover .item-icon {
   
    transform: scale(1.08);
}
.box-item:hover .item-icon img {
   
}
.box-item:hover .item-text {
    color: #b97556;
}

/* 绑定弹窗样式 */
#bindModal{
    position:fixed; top:0; left:0; width:100%; height:100%;
    background:rgba(0,0,0,0.5); z-index:9999;
    display:flex; align-items:center; justify-content:center;
    opacity:0; visibility:hidden; transition:all 0.3s ease;
}
#bindModal.show{
    opacity:1; visibility:visible;
}
.modal-box{
    width:420px; background:#fff; border-radius:14px; padding:30px; position:relative;
    transform:scale(0.92); transition:all 0.35s ease;
    max-width:90%;
}
#bindModal.show .modal-box{
    transform:scale(1);
}
.modal-close{
    position:absolute; right:15px; top:15px; width:30px; height:30px;
    background:#f0f0f0; border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:20px; cursor:pointer; transition:all 0.3s ease;
}
.modal-close:hover{
    background:#b97556; color:#fff; transform:rotate(90deg);
}
.modal-title{
    font-size:22px; font-weight:bold; text-align:center; margin-bottom:25px; color:#222;
}
.modal-input{
    width:100%; height:46px; border:1px solid #ddd; border-radius:8px; padding:0 14px;
    margin-bottom:15px; font-size:15px; box-sizing:border-box;
}
.code-row{
    display:flex; gap:10px;
}
.code-row input{
    flex:1;
}
.code-btn{
    width:120px; height:46px; background:#1a2b59; color:#fff; border:none; border-radius:8px;
    cursor:pointer; transition:all 0.3s ease;
}
.code-btn:disabled{
    background:#ccc; cursor:not-allowed;
}
.bind-btn{
    width:100%; height:48px; background:#b97556; color:#fff; border:none; border-radius:8px;
    font-size:16px; cursor:pointer; margin-top:10px; transition:all 0.3s ease;
}
.bind-btn:hover{
    background:#a56446;
}

/* 响应式 */
@media (max-width: 1100px) {
    .wrap { width: 96%; }
    .func-wrap { grid-template-columns: repeat(2, 1fr); }
    .order-bar { flex-wrap: wrap; padding: 20px; }
    .bar-tit { border-right: none; width: 100%; margin-bottom: 14px; border-bottom: 2px solid #ddd; padding-bottom: 8px; }
    .order-bar > div:not(.bar-tit) { border-left: 2px solid #e2dbd0; margin-top: 8px; }
    .order-bar > div:first-of-type:not(.bar-tit) { border-left: none; }
}
@media (max-width: 760px) {
    .func-wrap { grid-template-columns: 1fr; }
    .top-user-card { flex-direction: column; align-items: flex-start; }
    .top-right-img { display: none; }
    .user-info h1 { font-size: 22px; }
}