
    /* 基础样式 */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
      min-height: 100vh;
    }
    
    .container {
      max-width: 450px;
      margin: 0 auto;
      padding: 0 15px;
      position: relative;
      overflow: hidden;
    }
    
    /* 头部样式 */
    .floating-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 50px;
      background: linear-gradient(to right, #8e2de2, #4a00e0);
      color: white;
      text-align: center;
      line-height: 50px;
      font-size: 18px;
      font-weight: bold;
      z-index: 1001;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    }
    
    /* 主内容区域 */
    .main-content {
      margin-top: 10px;
      padding-bottom: 0px;
    }
    
    /* 简介卡片 */
    .profile-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 20px;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .profile-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .avatar-container {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #f0f0f0;
      margin-right: 20px;
      flex-shrink: 0;
    }
    
    .avatar-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .profile-info h1 {
      font-size: 22px;
      margin-bottom: 5px;
      color: #2c3e50;
    }
    
    .profile-info .title {
      font-size: 14px;
      color: #7f8c8d;
      margin-bottom: 8px;
    }
    
    .profile-info .description {
      font-size: 13px;
      color: #5a6c7d;
      line-height: 1.5;
    }
    
    /* 联系信息卡片 */
    .contact-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 20px;
      margin-bottom: 25px;
    }
    
    .contact-card h2 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #2c3e50;
      position: relative;
      padding-bottom: 10px;
    }
    
    .contact-card h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(to right, #8e2de2, #4a00e0);
      border-radius: 3px;
    }
    
    .contact-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      width: 48%;
      margin-bottom: 15px;
      padding: 10px;
      border-radius: 10px;
      background: #f8f9fa;
      transition: all 0.3s ease;
    }
    
    .contact-item:hover {
      background: #eef2f7;
      transform: translateY(-2px);
    }
    
    .contact-item img {
      width: 30px;
      height: 30px;
      margin-right: 10px;
      border-radius: 5px;
    }
    
    .contact-item a {
      text-decoration: none;
      color: #2c3e50;
      font-weight: 500;
	  font-size: 0.27rem;
    }
    
    /* 证书和荣誉区域 */
    .certificates-section {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 20px;
      margin-bottom: 25px;
    }
    
    .certificates-section h2 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #2c3e50;
      position: relative;
      padding-bottom: 10px;
    }
    
    .certificates-section h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(to right, #8e2de2, #4a00e0);
      border-radius: 3px;
    }
    
    .certificates-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .certificate-item {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }
    
    .certificate-item:hover {
      transform: scale(1.03);
    }
    
    .certificate-item img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    /* 产品展示区域 */
    .products-section {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 20px;
      margin-bottom: 25px;
    }
    
    .products-section h2 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #2c3e50;
      position: relative;
      padding-bottom: 10px;
      text-align: center;
    }
    
    .products-section h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(to right, #8e2de2, #4a00e0);
      border-radius: 3px;
    }
    
    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .product-card {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      background: white;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    
    .product-image {
      width: 100%;
      height: 120px;
      overflow: hidden;
    }
    
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image img {
      transform: scale(1.05);
    }
    
    .product-info {
      padding: 12px;
    }
    
    .product-info h3 {
      font-size: 14px;
      margin-bottom: 8px;
      color: #2c3e50;
      text-align: center;
      height: 40px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    
    .product-price {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .current-price {
      color: #e74c3c;
      font-weight: bold;
      font-size: 16px;
      margin-right: 10px;
    }
    
    .original-price {
      color: #95a5a6;
      text-decoration: line-through;
      font-size: 12px;
    }
    
    /* 右侧悬浮按钮 */
    .floating-btn {
      position: fixed;
      right: 20px;
      bottom: 170px;
      z-index: 999;
      cursor: pointer;
    }
    
    .apply-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(to right, #8e2de2, #4a00e0);
      box-shadow: 0 4px 15px rgba(142, 45, 226, 0.4);
      color: white;
      text-decoration: none;
      font-size: 12px;
      text-align: center;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }
    
    .apply-button:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(142, 45, 226, 0.6);
    }
    
    @keyframes pulse {
      0% {
        box-shadow: 0 4px 15px rgba(142, 45, 226, 0.4);
      }
      50% {
        box-shadow: 0 4px 20px rgba(142, 45, 226, 0.7);
      }
      100% {
        box-shadow: 0 4px 15px rgba(142, 45, 226, 0.4);
      }
    }
    
    /* 模态框样式 */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
    }
    
    .modal-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #fff;
      border-radius: 15px;
      overflow: hidden;
      width: 320px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      animation: modalAppear 0.3s ease;
    }
    
    @keyframes modalAppear {
      from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
    }
    
    .modal-header {
      background: linear-gradient(to right, #8e2de2, #4a00e0);
      padding: 15px;
      text-align: center;
      color: white;
      position: relative;
    }
    
    .modal-title {
      font-size: 18px;
      margin: 0;
    }
    
    .modal-body {
      padding: 20px;
      text-align: center;
    }
    
    .modal-body img {
      width: 100%;
      max-width: 250px;
      height: auto;
      border-radius: 8px;
    }
    
    .modal-footer {
      padding: 15px;
      text-align: center;
      border-top: 1px solid #eee;
    }
    
    .modal-footer p {
      margin: 0;
      font-size: 14px;
      color: #666;
    }
    
    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      color: white;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      z-index: 1001;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s;
    }
    
    .close:hover {
      background-color: rgba(0, 0, 0, 0.4);
    }
    
    /* 打赏模态框样式 */
    .reward-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
    }
    
    .reward-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #fff;
      border-radius: 15px;
      overflow: hidden;
      width: 320px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      animation: modalAppear 0.3s ease;
    }
    
    .reward-header {
      background: linear-gradient(to right, #8e2de2, #4a00e0);
      padding: 20px;
      text-align: center;
      color: white;
      position: relative;
    }
    
    .reward-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 3px solid white;
      margin: 0 auto 10px;
      overflow: hidden;
    }
    
    .reward-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .reward-title {
      font-size: 18px;
      margin: 5px 0;
    }
    
    .reward-body {
      padding: 20px;
    }
    
    .reward-amount {
      margin-bottom: 20px;
    }
    
    .reward-amount h3 {
      font-size: 16px;
      margin-bottom: 15px;
      color: #333;
      text-align: center;
    }
    
    .amount-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    
    .amount-option {
      text-align: center;
      padding: 10px 5px;
      border: 1px solid #ddd;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .amount-option:hover {
      border-color: #8e2de2;
    }
    
    .amount-option.active {
      background-color: #8e2de2;
      color: white;
      border-color: #8e2de2;
    }
    
    .amount-option span {
      display: block;
      font-size: 14px;
    }
    
    .amount-option .flowers {
      font-weight: bold;
    }
    
    .amount-option .price {
      font-size: 12px;
      color: inherit;
    }
    
    .reward-payment {
      margin-bottom: 20px;
    }
    
    .reward-payment h3 {
      font-size: 16px;
      margin-bottom: 15px;
      color: #333;
      text-align: center;
    }
    
    .payment-options {
      display: flex;
      justify-content: space-around;
    }
    
    .payment-option {
      text-align: center;
      cursor: pointer;
    }
    
    .payment-option img {
      width: 50px;
      height: 50px;
      border-radius: 8px;
      border: 2px solid transparent;
      transition: all 0.3s;
    }
    
    .payment-option.active img {
      border-color: #8e2de2;
    }
    
    .payment-option span {
      display: block;
      margin-top: 5px;
      font-size: 14px;
    }
    
    .reward-footer {
      padding: 15px;
      text-align: center;
      border-top: 1px solid #eee;
    }
    
    .reward-btn {
      background: linear-gradient(to right, #8e2de2, #4a00e0);
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      width: 100%;
      transition: all 0.3s;
    }
    
    .reward-btn:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
