    /* 全局样式重置（仅作用于当前模块） */
    .my-page-container * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .my-page-container {
      font-size: 14px;
      color: #333;
    }
    .my-page-container a {
      text-decoration: none;
      color: inherit;
    }
    .my-page-container ul {
      list-style: none;
      margin: 0px 12px 28px 12px;
    }

    /* 顶部登录区 */
    .my-page-user-header {
      background: rgba(235,235,235,0.85);
    backdrop-filter: blur(10px);
      padding: 25px 25px;
      display: flex;
      align-items: center;
    }
    .my-page-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }
    .my-page-avatar-icon {
      width: 50px;
      height: 50px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
      background-size: contain;
    }
    .my-page-login-btn {
      font-size: 18px;
      font-weight:500;
      color: #333;
      display: flex;
      align-items: center;
      margin-right:30px;
    }

    /* 订单模块 */
    .my-page-order-section {
      margin: 12px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: inset 0px 0px 4px 2px rgba(0, 0, 0, 0.11);
    }
    .my-page-order-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      border-bottom: 1px solid #eee;
    }
    .my-page-order-title {
      font-size: 18px;
      font-weight: 600;
    }
    .my-page-view-all {
      font-size: 14px;
      color: #999;
      display: flex;
      align-items: center;
    }
    .my-page-order-tabs {
      display: flex;
      justify-content: space-around;
      padding: 12px 0 16px 0;
    }
    .my-page-tab-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0px;
      color: #333;
    }
    .my-page-tab-icon {
      width: 36px;
      height: 36px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
    /* 订单图标 */
    .my-page-tab-icon-pay { background-image: url("../images/fukuan.png"); }
    .my-page-tab-icon-deliver { background-image: url("../images/fahuo.png"); }
    .my-page-tab-icon-receive { background-image: url("../images/shouhuo.png"); }
    .my-page-tab-icon-comment { background-image: url("../images/pingjia.png"); }
    .my-page-tab-icon-aftersale { background-image: url("../images/jilu.png"); }
    .my-page-tab-text {
      font-size: 12px;
      margin-top: 4px;
    }

    /* 导航列表 - 核心调整布局 */
    .my-page-nav-list {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 10px;
    }
    .my-page-nav-item {
      display: flex;
      align-items: center;
      padding: 15px;
      border-bottom: 1px dashed #ccc;
      /* 关键：确保子元素布局正确 */
      justify-content: flex-start;
    }
    .my-page-nav-item:last-child {
      border-bottom: none;
    }
    /* 图标+标题容器（居左） */
    .my-page-nav-left {
      display: flex;
      align-items: center;
      /* 关键：占据除箭头外的所有空间，确保箭头居右 */
      flex: 1;
    }
    .my-page-nav-icon {
      width: 22px;
      height: 22px;
      background-size: contain;
      background-repeat: no-repeat;
      margin-right: 15px;
      /* 固定图标位置，不被挤压 */
      flex-shrink: 0;
    }
    /* 导航图标 */
    .my-page-nav-icon-collect { background-image: url("../images/shoucang.png"); }
    .my-page-nav-icon-coupon { background-image: url("../images/kajuan.png"); }
    .my-page-nav-icon-eval { background-image: url("../images/wpingjia.png"); }
    .my-page-nav-icon-auth { background-image: url("../images/renzheng.png"); }
    .my-page-nav-icon-service { background-image: url("../images/kefu.png"); }
    .my-page-nav-icon-address { background-image: url("../images/dizhi.png"); }
    .my-page-nav-icon-exchange { background-image: url("../images/duihuan.png"); }
    .my-page-nav-icon-help { background-image: url("../images/bangzhu.png"); }
    .my-page-nav-text {
      font-size: 15px;
      /* 标题跟随图标居左，不拉伸 */
      flex-shrink: 0;
    }
    /* 箭头（固定居右） */
    .my-page-nav-arrow {
      width: 12px;
      height: 12px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
      background-size: contain;
      /* 关键：固定居右 */
      margin-left: auto;
      /* 防止箭头被挤压 */
      flex-shrink: 0;
    }






    /* 页面标题 */
    .help-title {
      font-size: 18px;
      font-weight: 600;
      padding-bottom: 10px;
      padding-top: 10px;
      text-align: center;
      border-bottom: 1px solid #eee;
      color: #333;
    }

    /* 手风琴容器 */
    .accordion-container {
      background-color: #fff;
      overflow: hidden;
      /*box-shadow: 0 2px 8px rgba(0,0,0,0.05);*/
      margin-bottom: 50px;
    }

    /* 手风琴项 */
    .accordion-item {
      border-bottom: 1px solid #eee;
    }
    .accordion-item:last-child {
      border-bottom: none;
    }

    /* 手风琴标题（可点击） */
    .accordion-header {
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }
    .accordion-header:hover {
      background-color: #fafafa;
    }
    .accordion-header.active {
      color: #333;
    }
    .accordion-header0 {
      padding: 15px 20px;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }
    .header-text {
      font-size: 15px;
      color: #333;
    }
    .header-icon {
      width: 16px;
      height: 16px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      transition: transform 0.3s ease;
    }
    .accordion-header.active .header-icon {
      transform: rotate(180deg);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    }

    /* 手风琴内容（默认隐藏） */
    .accordion-content {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: #666;
      line-height: 1.6;
    }
    .accordion-content.show {
      padding: 20px;
      max-height: 1000px; /* 足够大的高度容纳内容 */
    }
    .content-text {
      font-size: 13px;
    }








        /* 收藏列表容器 */
    .collection-list {
      padding: 10px 10px 50px 10px;
    }
    .collection-list li {
      padding: 10px;
      display: flex;
      font-size: 12px;
      color: #999;
      justify-content: center;
    }

    /* 收藏商品项 */
    .collection-item {
      display: flex;
      align-items: center;
      background-color: #fff;
      border-radius: 8px;
      padding: 10px;
      margin-bottom: 10px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      text-decoration: none;
    }

    /* 左侧商品图片 */
    .item-img {
      width: 100px;
      height: 100px;
      border-radius: 4px;
      overflow: hidden;
      flex-shrink: 0;
      margin-right: 10px;
      background: rgba(235, 235, 235, 0.85);
    }
    .item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 右侧商品信息 */
    .item-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .item-title {
      font-size: 15px;
      color: #333;
      margin-bottom: 8px;
      line-height: 1.5;
      /* 标题超出2行省略 */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .item-price {
      font-size: 20px;
      color: #990000;
      font-weight: 600;
    }
    .item-price span {
      font-size: 12px;
      color: #999;
      text-decoration: line-through;
      margin-left: 8px;
      font-weight: normal;
    }

    /* 空收藏状态 */
    .empty-collection {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 50px 0;
      color: #999;
      text-align: center;
    }
    .empty-icon {
      width: 50px;
      height: 50px;
      background-image: url("../images/shoucang.png");
      background-size: contain;
      margin-bottom: 15px;
    }
    .empty-icon0 {
      width: 50px;
      height: 50px;
      background-image: url("../images/dizhi.png");
      background-size: contain;
      margin-bottom: 15px;
    }
    .empty-text {
      font-size: 14px;
      margin-bottom: 20px;
    }
    .go-shop-btn {
      padding: 8px 20px;
      background-color: #333;
      color: #fff;
      border-radius: 20px;
      font-size: 14px;
      text-decoration: none;
    }


/* 标签切换栏 */
    .coupon-tabs {
      display: flex;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }
    .coupon-tab {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      font-size: 14px;
      cursor: pointer;
      position: relative;
    }
    /* 激活态样式 */
    .coupon-tab.active {
      color: #990000;
    }
    .coupon-tab.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
      height: 2px;
      background-color: #990000;
      border-radius: 1px;
    }




    /* 空状态样式 */
    .empty-coupon {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
      color: #999;
      text-align: center;
      background-color: #fff;
      border-radius: 8px;
      margin: 10px;
    }
    .empty-icon000 {
      width: 50px;
      height: 50px;
      background-image: url("../images/menu16.png");
      background-size: contain;
      margin-bottom: 15px;
    }
    .empty-text {
      font-size: 14px;
      margin-bottom: 20px;
    }
    .empty-btn {
      padding: 8px 24px;
      background-color: #333;
      color: #fff;
      border-radius: 20px;
      font-size: 14px;
      border: none;
      cursor: pointer;
    }



/* 输入框容器 */
    .input-container {
      background-color: #fff;
      padding: 20px;
    }
    .input-label {
      font-size: 14px;
      color: #333;
      margin-bottom: 10px;
      display: block;
    }
    .coupon-input {
      width: 100%;
      height: 44px;
      border: 1px solid #eee;
      border-radius: 50px;
      padding: 0 22px;
      font-size: 15px;
      color: #333;
      outline: none;
      margin-bottom: 20px;
    }
    .coupon-input:focus {
      border-color: #990000;
    }

    /* 兑换按钮 */
    .exchange-btn {
      width: 100%;
      padding: 12px 0;
      background-color: #990000;
      color: #fff;
      border: none;
      border-radius: 50px;
      font-size: 15px;
      cursor: pointer;
    }
    .exchange-btn:active {
      background-color: #333333;
    }
    /* 禁用状态（可选） */
    .exchange-btn:disabled {
      background-color: #ccc;
      cursor: not-allowed;
    }

    /* 兑换规则区域 */
    .rule-area {
      background-color: #fff;
      border-radius: 8px;
      padding: 20px;
    }
    .rule-title {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid #eee;
    }
    .rule-content {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }
    .rule-content p {
      margin-bottom: 8px;
    }
    .rule-content p:last-child {
      margin-bottom: 0;
    }




    /* 说明区域 */
    .explain-area {
      background-color: #fff;
      padding: 14px;
      margin-bottom: 50px;
      padding: 20px;
    }
    .explain-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }
    .explain-content {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }

    /* 表单容器 */
    .form-container {
      background-color: #fff;
      border-radius: 8px;
      padding: 20px 18px;
    }
    /* 无框下画线输入框 */
    .form-item {
      margin-bottom: 20px;
    }
    .form-input {
      width: 100%;
      height: 40px;
      line-height: 40px;
      border: none;
      border-bottom: 1px solid #eee;
      font-size: 14px;
      color: #333;
      outline: none;
      background-color: transparent;
      padding: 0 2px;
    }
    .form-input::placeholder {
      color: #999;
    }
    .form-input:focus {
      border-bottom-color: #333;
    }

    /* 同意条款单选框 */
    .agree-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }
    .agree-radio {
      width: 18px;
      height: 18px;
      margin-right: 8px;
      accent-color: #990000; /* 单选框选中色 */
    }
    .agree-text {
      font-size: 13px;
      color: #666;
    }
    .agree-text a {
      font-size: 13px;
      color: #990000;
      text-decoration: none;
    }

    /* 按钮组 */
    .btn-group {
      display: flex;
      gap: 10px;
    }
    .form-btn {
      flex: 1;
      padding: 12px 0;
      background-color: #990000;
      border-radius: 50px;
      font-size: 15px;
      border: none;
      cursor: pointer;
    }
    /* 保存提交按钮 */
    .submit-btn {
      background-color: #990000;
      color: #fff;
    }
    .submit-btn:active {
      background-color: #990000;
    }
    /* 删除按钮 */
    .delete-btn {
      background-color: #f1f1f1;
      color: #333;
      border: 1px solid #eee;
    }
    .delete-btn:active {
      background-color: #eee;
    }



    /* 评论列表容器 */
    .comment-list {
      width: 100%;
    }

    /* 单条评论卡片 */
    .comment-item {
      background-color: #fff;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 10px;
    }

    /* 第一行：商品名称（左）+ 商品码（右） */
    .comment-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }
    .product-name {
      font-size: 16px;
      font-weight: 500;
      color: #333;
    }
    .product-code {
      font-size: 13px;
      color: #999;
    }

    /* 第二行：评论内容 */
    .comment-content {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 8px;
    }

    /* 第三行：日期（左）+ 删除按钮（右） */
    .comment-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .comment-date {
      font-size: 12px;
      color: #999;
    }
    .comment-delete {
      font-size: 13px;
      color: #990000;
      cursor: pointer;
    }
    .comment-delete:active {
      opacity: 0.7;
    }

    /* 无评论空状态 */
    .empty-comment {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 80px 20px;
      background-color: #fff;
      border-radius: 8px;
      color: #999;
      text-align: center;
    }
    .empty-icon00000 {
      width: 50px;
      height: 50px;
      background-image: url("../images/wpingjia.png");
      background-size: contain;
      margin-bottom: 15px;
    }

    .empty-icon111 {
      width: 50px;
      height: 50px;
      background-image: url("../images/list.png");
      background-size: contain;
      margin-bottom: 15px;
    }






    /* 功能模块容器 */
    .auth-module {
      background-color: #fff;
      border-radius: 8px;
      padding: 20px 18px;
      margin-bottom: 15px;
    }
    .module-title {
      font-size: 15px;
      margin-bottom: 15px;
      color: #333;
      padding-bottom: 8px;
      border-bottom: 1px solid #eee;
    }

    /* 表单输入框样式 */
    .form-item {
      margin-bottom: 15px;
    }
    .form-input9 {
      width: 100%;
      height: 44px;
      border: 1px solid #eee;
      border-radius: 50px;
      padding: 0 20px;
      font-size: 15px;
      color: #333;
      outline: none;
      background-color: transparent;
    }
    .form-input9:focus {
      border-color: #990000;
    }
    .form-input9::placeholder {
      color: #999;
    }

    /* 按钮通用样式 */
    .auth-btn {
      width: 100%;
      padding: 12px 0;
      border-radius: 50px;
      font-size: 15px;
      border: none;
      cursor: pointer;
      background-color: #990000;
      color: #fff;
    }
    .auth-btn:active {
      background-color: #990000;
    }

    /* 新增：手机登录专属样式 */
    .phone-row {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }
    .country-select {
      flex: 0 0 80px;
      height: 44px;
      border: 1px solid #eee;
      border-radius: 50px;
      padding: 0 20px;
      font-size: 15px;
      color: #333;
      outline: none;
      background-color: transparent;
    }
    .phone-input {
      flex: 1;
      height: 44px;
      border: 1px solid #eee;
      border-radius: 50px;
      padding: 0 20px;
      font-size: 15px;
      color: #333;
      outline: none;
    }
    .phone-input:focus {
      border-color: #990000;
    }
    .code-row {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }
    .code-input {
      flex: 1;
      height: 44px;
      border: 1px solid #eee;
      border-radius: 50px;
      padding: 0 20px;
      font-size: 15px;
      color: #333;
      outline: none;
    }
    .code-input:focus {
      border-color: #990000;
    }
    .send-code-btn {
      flex: 0 0 120px;
      height: 44px;
      border-radius: 50px;
      font-size: 15px;
      border: 1px solid #990000;
      color: #990000;
      background-color: #fff;
      cursor: pointer;
    }
    .send-code-btn:active {
      background-color: #fff8f0;
    }
    .send-code-btn:disabled {
      border-color: #ccc;
      color: #999;
      cursor: not-allowed;
    }

    /* 快速登录模块 */
    .quick-login {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 0;
    }
    .quick-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
    }
    .quick-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: #f5f5f5;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 8px;
      background-size: 33px;
      background-repeat: no-repeat;
      background-position: center;
    }
    /* 各平台图标（SVG内联） */
    .icon-wechat {
      background-image: url("../images/wechat.svg");
    }
    .icon-line {
      background-image: url("../images/line.svg");
    }
    .icon-google {
      background-image: url("../images/google.svg");
    }
    .quick-text {
      font-size: 13px;
      color: #666;
    }






    /* 页面容器 - 新类名：user-profile-wrap */
    .user-profile-wrap {
      max-width: 750px;
      margin: 0 auto;
      background: white;
    }
    /* 头像区域 - 新类名前缀：user- */
    .user-avatar-section {
      padding: 30px 0;
      text-align: center;
      border-bottom: 1px solid #eee;
    }
    .user-avatar-wrapper {
      position: relative;
      display: inline-block;
    }
    .user-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 2px solid #eee;
      object-fit: cover;
      background: #f0f0f0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
      cursor: pointer;
    }
    .user-avatar-tip {
      font-size: 12px;
      color: #999;
      margin-top: 8px;
    }
    /* 信息列表 - 新类名前缀：user- */
    .user-info-list {
      padding: 0 15px;
    }
    .user-info-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 50px;
      border-bottom: 1px solid #eee;
    }
    .user-info-label {
      font-size: 15px;
      color: #333;
    }
    .user-info-content {
      display: flex;
      align-items: center;
      font-size: 14px;
      color: #666;
    }
    .user-info-arrow {
      width: 12px;
      height: 12px;
      border-top: 2px solid #999;
      border-right: 2px solid #999;
      transform: rotate(45deg);
      margin-left: 8px;
      cursor: pointer;
    }
    .user-password-mask {
      letter-spacing: 1px;
    }
    .user-phone-mask {
      color: #666;
    }
    /* 注销按钮 - 新类名：user-logout-btn */
    .user-logout-btn {
      margin: 30px 15px;
      width: calc(100% - 30px);
      padding: 12px 0;
      text-align: center;
      background: #990000;
      color: white;
      border-radius: 50px;
      font-size: 15px;
      cursor: pointer;
    }
    /* 弹窗遮罩 - 新类名前缀：popup- */
    .popup-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1000;
      display: none;
    }
    /* 弹窗容器 - 新类名前缀：popup- */
    .popup-container {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: white;
      border-radius: 16px 16px 0 0;
      padding: 20px 15px;
      z-index: 1001;
      display: none;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .popup-container.show {
      display: block;
      transform: translateY(0);
    }
    .popup-mask.show {
      display: block;
    }
    /* 弹窗标题 - 新类名：popup-title */
    .popup-title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 20px;
      text-align: center;
    }
    /* 上传选项 - 新类名前缀：user-upload- */
    .user-upload-option {
      display: flex;
      justify-content: space-evenly;
      margin-bottom: 20px;
    }
    .user-upload-btn {
      width: 80px;
      height: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .user-upload-icon {
      font-size: 24px;
    }
    .user-upload-icon img {
      height: 40px;
    }
    .user-upload-text {
      font-size: 12px;
      color: #666;
    }
    /* 表单样式 - 新类名前缀：user-form- */
    .user-form-item {
      margin-bottom: 15px;
    }
    .user-form-label {
      font-size: 14px;
      color: #333;
      margin-bottom: 5px;
      display: block;
    }
    .user-form-input {
      width: 100%;
      height: 40px;
      line-height: 45px;
      padding: 0 15px;
      border: 1px solid #eee;
      border-radius: 50px;
    }
    .user-form-input:focus {
      border-color: #990000;
      outline: none;
    }
    /* 性别选择 - 新类名前缀：user-gender- */
    .user-gender-option {
      display: flex;
      justify-content: space-evenly;
      margin-bottom: 20px;
    }
    .user-gender-item {
      width: 60px;
      padding: 12px 0;
      text-align: center;
      border: 1px solid #eee;
      border-radius: 8px;
      cursor: pointer;
      font-size: 13px;
    }
    .user-gender-item.active {
      background: #333;
      color: white;
      border-color: #333;
    }
    /* 手机号弹窗 - 新类名前缀：user-phone- */
    .user-phone-country {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    .user-country-select:focus {
      border-color: #990000;
      outline: none;
    }
    .user-country-select {
      width: 80px;
      height: 40px;
      border: 1px solid #eee;
      border-radius: 50px;
      padding: 0 15px;
      margin-right: 10px;
    font-size: 15px;
    color: #333;
    outline: none;
    background-color: transparent;
    }
    .user-phone-input {
      flex: 1;
      height: 40px;
      line-height: 45px;
      padding: 0 15px;
      border: 1px solid #eee;
      border-radius: 50px;
    }
    .user-phone-input:focus {
      border-color: #990000;
      outline: none;
    }
    .user-code-btn {
      width: 100px;
      height: 40px;
      padding: 12px 0;
      text-align: center;
      background: #666;
      color: white;
      border-radius: 50px;
      margin-left: 10px;
      cursor: pointer;
      font-size: 12px;
    }
    /* 弹窗按钮组 - 新类名前缀：popup- */
    .popup-btn-group {
      display: flex;
      margin-top: 20px;
      margin-bottom: 100px;
    }
    .popup-btn {
      flex: 1;
      height: 40px;
      padding: 12px 0;
      text-align: center;
      border-radius: 50px;
      font-size: 13px;
      cursor: pointer;
    }
    .popup-cancel-btn {
      background: #e8e8e8;
      color: #333;
      margin-right: 10px;
    }
    .popup-confirm-btn {
      background: #990000;
      color: white;
    }
    /* 注销确认弹窗 - 新类名：user-logout-popup */
    .user-logout-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      max-width: 300px;
      background: white;
      border-radius: 16px;
      padding: 20px;
      z-index: 1002;
      display: none;
    }
    .user-logout-popup.show {
      display: block;
    }
    .user-logout-tip {
      font-size: 13px;
      text-align: center;
      margin-bottom: 20px;
    }
    .user-logout-btn-group {
      display: flex;
    }





 /* 订单卡片容器 - 核心外层 */
        .h5-order-card {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            padding: 16px;
            margin-bottom: 12px;
            border: 1px solid #f0f0f0;
            margin: 12px;
        }

        /* 第一行：订单号+时间区域 */
        .h5-order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f5f5f5;
        }
        /* 订单号 */
        .h5-order-no {
            font-size: 15px;
            font-weight: 600;
            color: #333;
        }
        /* 订单时间 */
        .h5-order-time {
            font-size: 13px;
            color: #999;
        }

        /* 第二行：商品列表区域 */
        .h5-order-goods-list {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f5f5f5;
        }
        /* 单个商品项 */
        .h5-order-goods-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }
        /* 商品名称+数量 */
        .h5-order-goods-info {
            flex: 1;
            font-size: 14px;
            color: #333;
        }
        /* 商品数量标签 */
        .h5-order-goods-count {
            color: #999;
            margin-left: 8px;
            font-size: 12px;
        }
        /* 商品价格 */
        .h5-order-goods-price {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            min-width: 120px;
            text-align: right;
        }

        /* 第三行：物流信息区域 */
        .h5-order-logistics {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }
        /* 物流公司名称 */
        .h5-order-logistics-name {
            color: #333;
        }
        /* 物流单号 */
        .h5-order-logistics-no {
            color: #666;
            font-size: 13px;
        }

        /* 适配小屏手机 */
        @media (max-width: 375px) {
            .h5-order-no {
                font-size: 14px;
            }
            .h5-order-goods-info {
                font-size: 13px;
            }
            .h5-order-goods-price {
                font-size: 13px;
            }
        }





/* 商品交易详情卡片 */
        .h5-order-detail-card {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            padding: 16px;
            margin: 12px;
            border: 1px solid #f0f0f0;
        }

        /* 商品详情主体（左图右文） */
        .h5-order-detail-main {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

        /* 左侧商品图片 */
        .h5-order-detail-img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            background-color: #f5f5f5;
            flex-shrink: 0; /* 防止图片被挤压 */
        }

        /* 右侧信息容器 */
        .h5-order-detail-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* 商品名称 */
        .h5-order-detail-name {
            font-size: 15px;
            color: #333;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        /* 数量+价格行 */
        .h5-order-detail-price-row {
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .h5-order-detail-count {
            color: #999;
        }
        .h5-order-detail-total {
            color: #990000;
            font-weight: 600;
        }

        /* 消费时间+状态行 */
        .h5-order-detail-status-row {
            font-size: 13px;
            color: #666;
            margin-bottom: 12px;
        }
        .h5-order-detail-status {
            color: #147871;
            margin-left: 8px;
        }

        /* 操作按钮行 */
        .h5-order-detail-btn-group {
            display: flex;
            gap: 8px;
        }
        .h5-order-detail-btn {
            flex: 1;
            height: 32px;
            line-height: 32px;
            text-align: center;
            border-radius: 6px;
            font-size: 13px;
            border: 1px solid #ddd;
            background-color: #fff;
            color: #333;
            cursor: pointer;
        }
        .h5-order-detail-btn--primary {
            background-color: #003153;
            color: #E3C79F;
            border-color: #003153;
        }

        /* 评论弹窗遮罩层 */
        .h5-order-comment-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: none; /* 默认隐藏 */
            align-items: flex-end; /* 弹窗从下往上滑入 */
        }

        /* 评论弹窗容器 */
        .h5-order-comment-popup {
            width: 100%;
            background-color: #fff;
            border-radius: 12px 12px 0 0;
            padding: 20px 16px;
            transform: translateY(100%); /* 初始隐藏在屏幕下方 */
            transition: transform 0.3s ease;
        }

        /* 弹窗显示状态 */
        .h5-order-comment-mask.active {
            display: flex;
        }
        .h5-order-comment-mask.active .h5-order-comment-popup {
            transform: translateY(0);
        }

        /* 评论表单样式 */
        .h5-order-comment-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 16px;
        }
        .h5-order-comment-textarea {
            width: 100%;
            min-height: 100px;
            padding: 12px;
            border: 1px solid #eee;
            border-radius: 8px;
            font-size: 14px;
            resize: none;
            margin-bottom: 12px;
            outline: none;
        }
        .h5-order-comment-textarea:focus {
            border-color: #990000;
        }

        /* 匿名评论单选框 */
        .h5-order-comment-anonymous {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 14px;
        }
        .h5-order-comment-radio {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            accent-color: #990000;
        }

        /* 提交按钮 */
        .h5-order-comment-submit {
            width: 100%;
            height: 44px;
            line-height: 44px;
            text-align: center;
            background-color: #990000;
            color: #fff;
            border-radius: 8px;
            font-size: 15px;
            border: none;
            cursor: pointer;
            margin-bottom: 110px;
        }
        .h5-order-comment-submit:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        /* 适配小屏手机 */
        @media (max-width: 375px) {
            .h5-order-detail-name {
                font-size: 14px;
            }
            .h5-order-detail-btn {
                font-size: 12px;
                height: 30px;
                line-height: 30px;
            }
        }



