body {
      background: var(--color-bg-page);
      margin: 0;
      padding-top: 50px;
    }

    /* 主内容区域 */
    .main-content {
      max-width: 600px;
      margin: 0 auto;
      padding: 10px;
    }
    
    /* 用户信息卡片 - 使用绿色渐变 */
    .user-card {
      background:linear-gradient(135deg, #00d9a3 0%, #2ded5c 100%);
      border-radius: 10px;
      padding:10px;
      color: var(--white);
      margin-bottom:10px;
      position: relative;
    }

    .user-info {
      display: flex;
      align-items: center;
      margin-right: 10px;
      margin-bottom: 0px;
    }

    .user-avatar {
      width: 80px;
      height: 80px;
      border-radius: var(--radius-full);
      border: 3px solid rgba(255, 255, 255, 0.3);
      object-fit: cover;
      margin-right: 10px;
    }

    .user-details {
      flex: 1;
    }

    .user-nickname {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin-bottom: var(--spacing-xs);
    }

    .user-badges {
      display: flex;
      margin-bottom: var(--spacing-sm);
    }

    .badge {
      background: rgba(255, 255, 255, 0.25);
      padding: 2px var(--spacing-sm);
      border-radius: var(--radius-sm);
      font-size: 12px;
      font-weight: 500;
      color: #fff;
      backdrop-filter: blur(10px);
      margin-right: var(--spacing-sm);
    }

    .badge:last-child {
      margin-right: 0;
    }

    .message-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255, 255, 255, 0.9);
      color: #d37a15;
      border: none;
      padding: 6px var(--spacing-sm);
      border-radius: var(--radius-lg);
      font-size: 12px;
      font-weight: var(--font-medium);
      cursor: pointer;
      display: flex;
      align-items: center;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-base);
    }

 

    .message-btn svg {
      width: 16px;
      height: 16px;
      margin-right: 2px;
    }

    /* 基本信息网格 */
    .info-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      color: #fff;
    }

    .info-item {
      text-align: center;
      width: 18%;
    }

    .info-label {
      font-size: 12px;
      opacity: 0.9;
      margin-bottom: var(--spacing-xs);
    }

    .info-value {
      font-size: var(--font-xl);
      font-weight: var(--font-bold);
    }

    /* 详细信息卡片 */
    .detail-card {
      background: #fff;
      border-radius: 10px;
      padding: 10px;
      box-shadow: var(--shadow-md);
      margin-bottom: 10px;
    }

    .detail-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .detail-title svg {
      width: 20px;
      height: 20px;
      color: #26f0b3;
      margin-right: var(--spacing-sm);
    }

    .detail-list {
      display: flex;
      flex-wrap: wrap;
    }

    .detail-item {
      display: flex;
      align-items: center;
      padding-bottom: 0;
      border-bottom: none;
      width: 50%;
      box-sizing: border-box;
      padding-right: 10px;
      margin-bottom: 10px;
    }

    .detail-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .detail-item-icon {
      width: 40px;
      height: 40px;
      background: rgba(0 217 75 / 8%);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      flex-shrink: 0;
    }

    .detail-item-icon svg {
      width: 20px;
      height: 20px;
      color: #2ded5c;
    }

    .detail-item-content {
      flex: 1;
    }

    .detail-item-label {
      font-size: var(--font-sm);
      color: var(--text-secondary);
      margin-bottom: 2px;
    }

    .detail-item-value {
      font-size: var(--font-base);
      color: var(--text-primary);
      font-weight: var(--font-medium);
    }

    .price-value {
      font-size: 16px;
      color: #d99500;
      font-weight: var(--font-bold);
    }

    /* 个人相册 */
    .album-section {
      background: #fff;
      border-radius: 10px;
      padding: 10px;
      box-shadow: var(--shadow-md);
      margin-bottom: 10px;
    }

    /* 相册重构：单列布局，一张一排，100% 宽度，高度自适应。
       用 !important + block 强制覆盖外部 comm.css 可能存在的 grid/flex 布局，
       不依赖 grid/flex/aspect-ratio，全面兼容低版本安卓浏览器。 */
    .album-section .album-grid {
      display: block !important;
      width: 100% !important;
    }

    .album-section .album-grid .album-item {
      display: block !important;
      float: none !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 0 10px 0 !important;
      padding: 0 !important;
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      box-sizing: border-box !important;
      /* 重置可能继承自 comm.css 的 grid 定位 */
      grid-column: auto !important;
      grid-row: auto !important;
      background: #f2f2f2;
      /* 懒加载占位最小高度，图片加载后自动撑开 */
      min-height: 120px;
    }

    .album-section .album-grid .album-item img,
    .album-section .album-grid .album-item video {
      display: block !important;
      width: 100% !important;
      height: auto !important;
      border: 0;
    }

    /* 懒加载淡入效果 */
    .album-section .album-grid .album-item img.lazy-loaded {
      animation: albumFadeIn 0.3s ease;
    }

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

    .video-indicator {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40px;
      height: 40px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(5px);
    }

    .video-indicator svg {
      width: 20px;
      height: 20px;
      color:#fff;
      margin-left: 2px;
    }

    /* 响应式 */
    @media (max-width: 480px) {
      .info-item {
        width: 30%;
      }

      .info-value {
        font-size: 16px;
      }

      .user-avatar {
        width: 60px;
        height: 60px;
      }

    }

    /* 详情介绍样式 */
    .description-section {
      background: #fff;
      border-radius: 10px;
      padding: 10px;
      box-shadow: var(--shadow-md);
      margin: 10px 0;
    }

    .description-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 10px;
      text-align: left;
    }

    .description-content {
      color: var(--text-secondary);
      font-size: var(--font-base);
      line-height: 1.6;
    }

    .description-content p {
      margin-bottom: 10px;
    }

    .description-content p:last-child {
      margin-bottom: 0;
    }

    /* 联系方式按钮区域样式 */
    .contact-section {
      background: #fff;
      border-radius: 10px;
      padding: 10px;
      box-shadow: var(--shadow-md);
      margin-top: 10px;
    }

    .contact-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 10px;
      text-align: left;
    }

    .contact-notice {
      background: linear-gradient(90deg, rgb(217 127 0 / 10%), rgba(0, 217, 163, 0.05));
      border-left: 0px solid #00d9a3;
      border-radius: var(--radius-md);
      padding: 10px;
      margin-bottom: 10px;
    }

    .contact-notice-content {
      display: flex;
      margin-right: 10px;
    }

    .contact-notice-icon {
      flex-shrink: 0;
      color: #f4b346;
      margin-right: 5px;
    }

    .contact-notice-icon svg {
      width: 20px;
      height: 20px;
    }

    .contact-notice-text {
      flex: 1;
      color: var(--text-secondary);
      font-size: var(--font-sm);
      line-height: 1.6;
    }

    .contact-notice-text p {
      margin-bottom: var(--spacing-sm);
    }

    .contact-notice-text p:last-child {
      margin-bottom: 0;
    }

    .contact-notice-list {
      margin-top: var(--spacing-sm);
      padding-left: 10px;
    }

    .contact-notice-list li {
      margin-bottom: var(--spacing-xs);
      color: var(--text-primary);
    }

    .contact-buttons {
      display: flex;
      flex-direction: column;
      color: #fff;
    }

    .contact-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      background: linear-gradient(135deg, #00d9a3 0%, #2ded5c 100%);
      color: var(--white);
      border: none;
      border-radius: 25px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--transition-base);
      margin-bottom: 10px;
    }

    .contact-btn:last-child {
      margin-bottom: 0;
    }

    .contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .contact-btn svg {
      width: 20px;
      height: 20px;
      margin-right: 5px;
    }

    .contact-btn.secondary {
      background: #fff;
      color: #00d9a3;
      border: 2px solid #00d9a3;
    }

    .contact-btn.secondary:hover {
      background: rgba(0, 217, 163, 0.05);
      transform: translateY(-2px);
    }
