        :root {
            --primary-color: #07c160;
            --primary-gradient: linear-gradient(135deg, #07c160 0%, #05a049 100%);
            --secondary-gradient: linear-gradient(135deg, #07c160 0%, #05a049 100%);
            --danger-gradient: linear-gradient(135deg, #fa5151 0%, #e84040 100%);
            --warning-gradient: linear-gradient(135deg, #ffc300 0%, #ffa000 100%);
            --text-primary: #181818;
            --text-secondary: #666666;
            --text-light: #999999;
            --bg-color: #f5f5f5;
            --white: #ffffff;
            --border-color: #eeeeee;
            --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.12);
            --radius-small: 8px;
            --radius-medium: 12px;
            --radius-large: 16px;
            --radius-circle: 50%;
            --status-bar-height: 0px;
            --nav-height: 200px;
            --tab-bar-height: 56px;
            --safe-area-bottom: env(safe-area-inset-bottom, 0px);
            --wechat-green: rgba(65, 105, 225, 1);
            --wechat-greens: #07c160;
            --wechat-blue: #10aeff;
            --wechat-gray: #f0f0f0;
            --uzman-Seashell: #FFF5EE;
            --wechat-bg: #f8f8f8;
            --card-bg: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--wechat-bg);
            color: var(--text-primary);
            font-size: 15px;
            line-height: 1.4;
            overflow-x: hidden;
            padding-bottom: calc(var(--tab-bar-height) + var(--safe-area-bottom));
        }
        
        .rtl {direction: rtl;}
        .ltr {direction: ltr;}

        /* 加载动画 */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--white);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.3s ease;
        }
        
        .loading-overlay::before { 
            content: ''; 
            position: absolute; 
            top: 0; 
            left: 0; 
            right: 0; 
            bottom: 0; 
            background: url('/static/images/qiwar1.jpg') center/100% 100% no-repeat; 
            opacity: 1; 
        }
        
        .loading-content {
            display: flex;
            position: relative;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 2px solid rgba(7, 193, 96, 0.1);
            border-top-color: var(--wechat-green);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 15px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 400;
        }

        /* 微信风格导航栏 */
        .custom-navbar {
            position: relative;
            background: linear-gradient(135deg, rgba(65, 105, 225, 0.9) 0%, rgba(100, 149, 237, 0.9) 100%);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: none;
            overflow: hidden;
        }

        .custom-navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background: url('/static/index/images/uinfo.jpg') center/cover no-repeat;*/
            filter: blur(8px) brightness(0.9);
            opacity: 0.3;
            z-index: 0;
        }

        .status-bar {
            width: 100%;
            height: var(--status-bar-height);
            background: transparent;
        }

        .nav-header {
            direction: rtl;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 16px;
            gap: 12px;
            z-index: 1;
        }

        /* 用户头像区域 */
        .header-user {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.5);
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .header-user:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }

        .header-user img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 语言切换开关 */
        .lang-switch {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2px;
            cursor: pointer;
            user-select: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 28px;
            min-width: 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .lang-switch.active {
            background: rgba(255, 255, 255, 0.3);
        }

        .lang-option {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2px 4px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            z-index: 1;
            border-radius: 16px;
            min-width: 20px;
            gap:5px;
        }

        .lang-option.active {
            color: var(--white);
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .lang-slider {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 22px;
            height: 22px;
            background: var(--wechat-green);
            border-radius: 13px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .lang-switch.active .lang-slider {
            transform: translateX(18px);
            background: linear-gradient(135deg, #07c160 0%, #05a049 100%);
        }

        /* 微信风格标题区域 */
        .header-title {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
            padding: 8px 0;
            text-align: center;
            z-index: 1;
        }

        .header-title-content {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }

        .header-title-img {
            width: 28px;
            height: 28px;
            /*background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;*/
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .header-title-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .header-title h1 {
            color: var(--white);
            font-size: 28px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            margin: 0;
        }

        /* 跑马灯公告区域 */
        .header-marquee {
            background: rgba(0, 0, 0, 0.15);
            border-radius: 15px;
            padding: 6px 12px;
            margin: 0 10px 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        #header-elan {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.95);
            font-size: 12px;
            font-weight: 400;
            white-space: nowrap;
            overflow: hidden;
        }

        .elan-icon {
            font-size: 14px;
            color: #ffd700;
            flex-shrink: 0;
        }

        #header-elan p {
            margin: 0;
            color: rgba(255, 255, 255, 0.95);
            animation: marquee 25s linear infinite;
            padding-left: 100%;
            display: inline-block;
            font-weight: 300;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* 微信风格分类选择 */
        .categorys-section {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            margin: 0;
            padding: 6px 10px;
            z-index: 99;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            backdrop-filter: blur(10px);
        }

        .categorys-section::-webkit-scrollbar {
            display: none;
        }

        .categorys-container {
            display: flex;
            width: max-content;
            gap: 8px;
        }

        .categorys-item {
            display: flex;
            align-items: center;
            padding: 5px 12px;
            width: 100%;
            background: rgba(248, 248, 248, 0.9);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(232, 232, 232, 0.8);
            border-radius: 12px;
            cursor: pointer;
            user-select: none;
            position: relative;
            backdrop-filter: blur(5px);
            white-space: nowrap;      /* 禁止文字换行 */
            overflow: hidden;         /* 隐藏溢出内容 */
            text-overflow: ellipsis;  /* 超出部分显示省略号 */
            flex-wrap: nowrap;        /* 禁止flex项目换行 */
            /* 删除了重复的 display: flex; 和注释掉的 flex-direction: column; */
        }

        .categorys-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .categorys-item.active {
            background: linear-gradient(135deg, rgba(7, 193, 96, 0.15) 0%, rgba(7, 193, 96, 0.1) 100%);
            border-color: rgba(7, 193, 96, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(7, 193, 96, 0.2);
        }

        .categorys-icon {
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 6px;
            border-radius: var(--radius-circle);
            background: var(--wechat-gray);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .categorys-item.active .categorys-icon {
            background: linear-gradient(135deg, var(--wechat-green) 0%, #05a049 100%);
            transform: scale(1.1);
        }

        .categorys-img {
            width: 18px;
            height: 18px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .categorys-item.active .categorys-img {
            filter: brightness(0) invert(1);
        }

        .categorys-name {
            font-size: 12px;
            font-weight: 400;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .categorys-item.active .categorys-name {
            color: var(--wechat-green);
            font-weight: 500;
        }

        .uz-container {
            padding: 0;
            background: var(--wechat-bg);
        }

        /* 循环显示服务选择器 - 优化版 */
        .services-section {
            padding: 10px 0 20px;
            background: var(--white);
            margin: 0;
            /*border-radius: 12px;*/
            margin: 0;
            box-shadow: var(--shadow-light);
        }

        .swiper-container {
            position: relative;
            height: 160px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .services-swiper {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .swiper-track {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* 服务卡片 - 循环显示效果 */
        .service-item {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            user-select: none;
            z-index: 1;
            opacity: 0.5;
            transform: scale(0.7);
            width: 110px;
            height: 100%;
            pointer-events: auto;
            cursor: pointer;
        }

        .service-item.prev {
            left: calc(50% - 120px);
            transform: translateX(-50%) scale(0.7);
            opacity: 1;
            z-index: 9;
            filter: blur(0.1px);
        }

        .service-item.current {
            left: 50%;
            transform: translateX(-50%) scale(1);
            opacity: 1;
            z-index: 9;
        }

        .service-item.next {
            left: calc(50% + 120px);
            transform: translateX(-50%) scale(0.7);
            opacity: 1;
            z-index: 9;
            filter: blur(0.1px);
        }

        .service-item.hidden {
            opacity: 0;
            transform: translateX(-50%) scale(0.6);
            pointer-events: none;
            z-index: 0;
        }

        .service-card {
            width: 110px;
            height: 110px;
            background: var(--white);
            border-radius: var(--radius-circle);
            position: relative;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 3px solid transparent;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .service-item.current .service-card {
            box-shadow: 0 12px 40px rgba(7, 193, 96, 0.15);
            border-color: var(--wechat-green);
        }

        .service-card-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            height: 100%;
            justify-content: center;
        }

        .service-images {
            width: 100%;
            height: 100%;
            border-radius: var(--radius-circle);
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-item.current .service-images {
            transform: scale(1.05);
        }

        .service-name {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-top: 15px;
            text-align: center;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 15px;
            background: rgba(248, 248, 248, 0.9);
            white-space: nowrap;
            max-width: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
            backdrop-filter: blur(5px);
        }

        .service-item.current .service-name {
            color: var(--wechat-green);
            font-weight: 600;
            background: linear-gradient(135deg, rgba(7, 193, 96, 0.1) 0%, rgba(7, 193, 96, 0.05) 100%);
            border: 1px solid rgba(7, 193, 96, 0.2);
        }

        /* 点击提示 */
        .tap-hint {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 12px;
            color: var(--text-light);
            animation: float 2s infinite ease-in-out;
            white-space: nowrap;
            background: rgba(255, 255, 255, 0.9);
            padding: 4px 12px;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        @keyframes float {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-5px); }
        }

        /* 微信风格预约表单 */
        .uz-cards {
            padding: 10px 0;
            background: var(--white);
            margin: 1px 0;
            box-shadow: var(--shadow-light);
        }

        .form-item {
            display: flex;
            align-items: center;
            padding: 12px 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            justify-content: space-between;
            cursor: pointer;
            position: relative;
        }

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

        .form-item:active {
            background-color: #fafafa;
        }

        .uz-page-icon {
            font-size: 18px;
            margin-right: 10px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--wechat-green);
            background: rgba(7, 193, 96, 0.1);
            border-radius: 8px;
        }

        .form-item-content {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .form-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 4px;
            font-weight: 400;
        }

        .form-value {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            display: flex;
            align-items: center;
        }

        .form-value.placeholder {
            color: #c7c7c7;
            font-weight: 400;
        }

        .detail-input {
            font-size: 14px;
            padding: 4px 0;
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            font-weight: 500;
        }

        .detail-input::placeholder {
            color: #c7c7c7;
            font-weight: 400;
        }

        .form-item-arrow {
            font-size: 18px;
            color: #d9d9d9;
            margin-left: 8px;
        }

        /* 微信风格操作按钮 */
        .buttons-container {
            direction: ltr;
            display: flex;
            margin: 5px 20px;
            gap: 0;
            border-radius: var(--radius-large);
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }

        .next-button {
            flex: 1;
            background: var(--wechat-green);
            padding: 8px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            user-select: none;
            border: none;
            outline: none;
        }

        .next-button:hover {
            opacity: 0.95;
        }

        .next-button:active {
            transform: translateY(2px);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .next-button.disabled {
            background: #f0f0f0;
            cursor: not-allowed;
        }

        .next-button.disabled:active {
            transform: none;
        }

        .button-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--white);
        }

        .next-button.disabled .button-text {
            color: #d9d9d9;
        }

        .button-icon {
            font-size: 16px;
            color: var(--white);
            opacity: 0.9;
        }

        .customer-button {
            padding: 8px 20px;
            background: #FFD700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            user-select: none;
            min-width: 100px;
        }

        .customer-button:hover {
            background-color: #fafafa;
        }

        .customer-button:active {
            background-color: #FFD700;
            transform: translateY(2px);
        }

        .customer-icon {
            font-size: 15px;
            margin-right: 8px;
            color: var(--wechat-green);
        }

        .customer-text {
            font-size: 15px;
            color: var(--text-primary);
            font-weight: 500;
        }

        /* 用户评价 - 微信风格优化 */
        .uz-card-header {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            background: linear-gradient(to right, rgba(7, 193, 96, 0.05), transparent);
        }

        .uz-card-title {
            flex: 1;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .reting-items {
            padding: 0;
            max-height: 280px;
            overflow-y: auto;
        }

        .reting-items::-webkit-scrollbar {
            width: 4px;
        }

        .reting-items::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .reting-items::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 2px;
        }

        .reting-item {
            display: flex;
            padding: 10px 10px 2px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background: var(--white);
        }

        .reting-item:hover {
            background: rgba(248, 248, 248, 0.8);
        }

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

        .reting-user {
            width: 70px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-right: 16px;
            flex-shrink: 0;
        }

        .reting-user img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid rgba(7, 193, 96, 0.1);
            margin-bottom: 2px;
        }

        .ruser-name {
            font-size: 12px;
            color: var(--wechat-green);
            font-weight: 500;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width: 100%;
        }

        .reting-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .content-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .content-service {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .content-star {
            color: #ffc300;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .review-text {
            font-size: 14px;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .worker-reply {
            background: linear-gradient(to right, rgba(7, 193, 96, 0.05), rgba(7, 193, 96, 0.02));
            border-left: 3px solid var(--wechat-green);
            padding: 12px;
            margin: 12px 0;
            border-radius: 8px;
            position: relative;
        }

        .reply-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--wechat-green);
            margin-bottom: 2px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .reply-label i {
            font-size: 12px;
        }

        .reply-content {
            color: var(--text-secondary);
            line-height: 1.5;
            font-size: 12px;
        }

        .review-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2px;
            padding-top: 4px;
            border-top: 1px solid rgba(0, 0, 0, 0.03);
        }

        .review-time {
            font-size: 12px;
            color: var(--text-light);
        }

        .review-images {
            font-size: 12px;
            color: var(--wechat-blue);
            cursor: pointer;
        }

        .uz-more {
            color: var(--wechat-green);
            font-size: 12px;
            font-weight: 500;
            padding: 2px 8px;
            border-radius: 15px;
            background: rgba(7, 193, 96, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(7, 193, 96, 0.2);
        }

        .uz-more:hover {
            background: rgba(7, 193, 96, 0.15);
            transform: translateY(-1px);
        }
        
        .uz-more i {
            font-size: 12px;
        }

        /* 最新订单 - 优化版 */
        .order-header {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            background: linear-gradient(to right, rgba(24, 144, 255, 0.05), transparent);
        }

        .order-title {
            flex: 1;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* 滚动容器 */
        .scroll-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .order-list-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .order-items {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            animation: slideUp 20s linear infinite;
            animation-play-state: running;
        }

        /* 鼠标悬停时暂停动画 */
        .scroll-container:hover .order-items {
            animation-play-state: paused;
        }

        .orderData-item {
            display: flex;
            align-items: center;
            padding: 16px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            background: var(--white);
            cursor: pointer;
        }

        .orderData-item:hover {
            background: rgba(248, 248, 248, 0.8);
            transform: translateX(4px);
        }

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

        .order-content {
            flex: 1;
            min-width: 0;
        }

        .order-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }

        .order-time {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .order-phone {
            font-size: 13px;
            color: var(--wechat-blue);
            font-weight: 500;
        }

        .order-services {
            display: flex;
            justify-content: space-between;
        }

        .order-service {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 4px;
        }

        .order-status {
            display: flex;
            align-items: center;
        }

        .status-text {
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 500;
        }

        .status-success {
            background: rgba(7, 193, 96, 0.1);
            color: var(--wechat-green);
            border: 1px solid rgba(7, 193, 96, 0.2);
        }

        .status-processing {
            background: rgba(24, 144, 255, 0.1);
            color: var(--wechat-blue);
            border: 1px solid rgba(24, 144, 255, 0.2);
        }

        .status-completed {
            background: rgba(82, 196, 26, 0.1);
            color: #52c41a;
            border: 1px solid rgba(82, 196, 26, 0.2);
        }

        .status-pending {
            background: rgba(250, 173, 20, 0.1);
            color: #faad14;
            border: 1px solid rgba(250, 173, 20, 0.2);
        }

        .status-cancelled {
            background: rgba(255, 77, 79, 0.1);
            color: #ff4d4f;
            border: 1px solid rgba(255, 77, 79, 0.2);
        }

        .status-icon {
            font-size: 12px;
            margin-left: 4px;
        }

        /* 滚动动画 */
        @keyframes slideUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        /* 区域状态提示 */
        .region-tip {
            background: linear-gradient(135deg, #fffbe6 0%, #fff1b8 100%);
            margin: 12px 16px;
            padding: 12px 16px;
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #ffe58f;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .region-tip-content {
            flex: 1;
            color: #d48806;
            font-size: 14px;
            font-weight: 400;
        }

        .region-tip-close {
            color: #d48806;
            font-size: 18px;
            margin-left: 12px;
            cursor: pointer;
            padding: 0 4px;
            background: rgba(255, 229, 143, 0.3);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 地址选择状态 */
        .address-selecting {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .address-selecting-content {
            background: white;
            border-radius: 16px;
            padding: 30px 25px;
            text-align: center;
            max-width: 80%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: slideUpSmall 0.3s ease;
        }

        .address-selecting-icon {
            font-size: 48px;
            color: var(--wechat-green);
            margin-bottom: 15px;
        }

        .address-selecting-text {
            font-size: 16px;
            color: var(--text-primary);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .address-selecting-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* 对话框样式 */
        .dialog-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1001;
            animation: fadeIn 0.2s ease;
            backdrop-filter: blur(2px);
        }

        .dialog-content {
            background: white;
            border-radius: 16px;
            width: 300px;
            overflow: hidden;
            animation: slideUpSmall 0.3s ease;
            max-width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .dialog-header {
            padding: 24px 20px 16px;
            text-align: center;
            background: linear-gradient(to right, rgba(7, 193, 96, 0.05), transparent);
        }

        .dialog-title {
            font-size: 18px;
            font-weight: 600;
            color: #181818;
            margin-bottom: 4px;
        }

        .dialog-body {
            padding: 20px 24px;
            text-align: center;
            color: #666;
            line-height: 1.5;
            white-space: pre-line;
            font-size: 15px;
        }

        .dialog-footer {
            border-top: 1px solid #f0f0f0;
            display: flex;
        }

        .dialog-button {
            flex: 1;
            text-align: center;
            padding: 18px;
            font-size: 17px;
            color: var(--wechat-green);
            font-weight: 500;
            cursor: pointer;
            user-select: none;
            border: none;
            background: none;
            outline: none;
            transition: background-color 0.2s ease;
        }

        .dialog-button:hover {
            background-color: rgba(0, 0, 0, 0.02);
        }

        .dialog-button:active {
            background-color: rgba(0, 0, 0, 0.05);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUpSmall {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* 方向响应式调整 */
        [dir="rtl"] .rdir{
            margin-right: 0;
            margin-left: 10px;
        }
        
        [dir="rtl"] .reting-user {
            padding-right: 0;
            padding-left: 16px;
        }

        /* 响应式调整 */
        @media (max-width: 360px) {
            .service-card {
                width: 95px;
                height: 95px;
            }
            
            .service-item.prev {
                left: calc(50% - 120px);
            }
            
            .service-item.next {
                left: calc(50% + 120px);
            }
        }

        @media (min-width: 768px) {
            .container {
                max-width: 768px;
                margin: 0 auto;
            }
        }