    .floating-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 50px;
      background-color: #e74c3c;
      color: white;
      text-align: center;
      line-height: 50px;
      font-size: 18px;
      font-weight: bold;
      z-index: 1001;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .floating-header .complaint-link {
      position: absolute;
      right: 20px;
      color: white;
      text-decoration: none;
      font-size: 14px;
      font-weight: normal;
      transition: opacity 0.3s;
     }
    .floating-header .home-icon{
      position: absolute;
      left: 20px;
      color: white;
      text-decoration: none;
      font-size: 14px;
	  padding-top:10px;
      font-weight: normal;
      transition: opacity 0.3s;
     }
	 
    /* 为容器添加顶部边距，避免内容被悬浮头部遮挡 */
    .container {
      margin-top: 80px;
    }
   
    body {
      font-family: "微软雅黑", "Arial", sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f5f5f5;
    }
    .container {
      max-width:450px;
      padding: 0 15px;
      margin:0 auto;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      position: relative;
    }
    .header {
      margin-top: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
      padding-top: 20px;
    }
   
    .header .intro {
      width:55%;
      flex: 1;
      margin-left: 20px;
    }
    .header .intro h1 {
      font-size: 0.3rem;
      margin: 0;
      color: #333;
    }
    .header .intro p {
      font-size: 14px;
      margin: 5px 0;
      color: #666;
      line-height: 1.5;
    }
    .header .intro img{
      margin-top:5px;
      width:100%;
    }
    .header .avatar{width:40%}
    .header .avatar img{
      width:100%;
      border-radius: 5px;
    }
   
    .contact {
      width:50%;
      margin-bottom: 20px;
    }
    .content  {
      width:100%;
      display: flex;
      justify-content: center;
    }
    .contact .item1{
      margin-bottom:15px;
    }
    .contact .item{
      margin-bottom:15px;
    }
    .contact .item1 img {
      width: 37%;
      margin-right: 0px;
    }
    .contact .item1 a{
      text-decoration-line: none;
      color:#000;
	  font-size:0.28rem;
    }
    .contact .item img {
      width: 102%;
      margin-right: 10px;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .contact .item a {
      text-decoration: none;
      color: #000;
    }
    .contact .item a:hover {
      color: #007bff;
    }
    .official{width:50%; text-align:center;}
    .certificates {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      align-items: center;
    }
    .certificates img {
      width:54%;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .shipin img{width:100%;}
    .badges {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0px;
      flex-wrap: wrap;
    }
    .badges img {
      width: 30%;
      height: auto;
      margin-bottom: 10px;
    }
   
    /* 产品展示区域样式 */
    .product {
      margin-top: 0px;
      padding-bottom: 20px;
    }
    
    /* fws类样式 - 服务商商品标题 */
    .fws {
      text-align: center;
      font-size: 22px;
      margin-bottom: 15px;
      color: #e74c3c;
      border-bottom: 2px solid #e74c3c;
      padding-bottom: 10px;
      position: relative;
      font-weight: bold;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }
    
    /* 添加装饰性效果 */
    .fws::before,
    .fws::after {
      content: "✦";
      color: #e74c3c;
      margin: 0 10px;
      font-size: 18px;
    }
    
    .product-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .product-item {
      width: 48%;
      margin-bottom: 15px;
      background: #f9f9f9;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .product-item:hover {
      transform: translateY(-5px);
    }
    .product-item img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }
    .product-info {
      padding: 8px;
    }
    .product-item p {
      margin: 0;
      font-size: 14px;
      text-align: center;
      color: #333;
      font-weight: bold;
    }
    .product-price {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 5px;
    }
    .current-price {
      color: #e74c3c;
      font-weight: bold;
      font-size: 16px;
      margin-right: 25px;
    }
    .original-price {
      color: #999;
      text-decoration: line-through;
      font-size: 12px;
      margin-left: 5px;
    }
   
    /* 模态框样式 */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
    }
    .modal-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 100%;
      max-height: 100%;
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      width: 350px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .modal-header {
      background: #e74c3c;
      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;
    }
    .modal-footer {
      padding: 15px;
      text-align: center;
      border-top: 1px solid #eee;
    }
    .modal-footer p {
      margin: 0;
      font-size: 14px;
      color: #666;
    }
   
    .tuiguang_2{ 
      position: fixed;
      right: 0px;
      bottom: 50%;
      width: 50px;
      height: 50px;
      -moz-border-radius: 50px;
      -webkit-border-radius: 50px;
      border-radius: 50px;
      z-index: 9999;
      background-attachment: fixed;
      background: url('images/sqgw.png') no-repeat;
      background-size: 100%;
      background-position: center center;
      -webkit-animation: icon-bounce 4s infinite;
      -moz-animation: icon-bounce 0.5s infinite;
      -o-animation: icon-bounce 0.5s infinite;
      animation: icon-bounce 0.5s infinite;
      text-decoration: none;
      display: block;
    }
    .tuiguang_2 em {
      color: #ff6a48;
      display: block;
      padding-top: 45px;
      font-size: 12px;
    }
    
    @keyframes icon-bounce {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
      40% {transform: translateY(-10px);}
      60% {transform: translateY(-5px);}
    }
    
    .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: 20px;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
    }
    .reward-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      width: 320px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .reward-header {
      background: linear-gradient(to right, #ff9966, #ff5e62);
      padding: 15px;
      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: 15px;
    }
    .reward-amount {
      margin-bottom: 15px;
    }
    .reward-amount h3 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #333;
    }
    .amount-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .amount-option {
      flex: 1;
      min-width: 80px;
      text-align: center;
      padding: 8px 5px;
      border: 1px solid #ddd;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .amount-option:hover {
      border-color: #ff5e62;
    }
    .amount-option.active {
      background-color: #ff5e62;
      color: white;
      border-color: #ff5e62;
    }
    .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: 15px;
    }
    .reward-payment h3 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #333;
    }
    .payment-options {
      display: flex;
      justify-content: space-around;
    }
    .payment-option {
      text-align: center;
      cursor: pointer;
    }
    .payment-option img {
      width: 50px;
      height: 50px;
      border-radius: 5px;
      border: 2px solid transparent;
      transition: all 0.3s;
    }
    .payment-option.active img {
      border-color: #ff5e62;
    }
    .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, #ff9966, #ff5e62);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      width: 100%;
      transition: all 0.3s;
    }
    .reward-btn:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
   
    /* 右侧悬浮按钮 */
    .floating-btn {
      position: fixed;
      right: 0px;
      top: 45%;
      transform: translateY(-50%);
      z-index: 999;
      cursor: pointer;
      transition: transform 0.3s;
    }
    .floating-btn:hover {
      transform: translateY(-50%) scale(1.1);
    }
    .floating-btn img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }