 .xcy{text-align: center;
    margin: 20px 3%;
    background: #fdddae;
    padding: 20px 0;
    border-radius: 15px;
    color: #07c160;}
	.xcy p{padding:8px 0}
    /* 客服按钮样式 */
    #kefu-btn {
      position: fixed;
      bottom: 80px;
      right: 15px;
      width: 50px;
      height: 50px;
      background-color: #00a1d6;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      cursor: pointer;
      transition: transform 0.2s;
    }
    #kefu-btn:hover {
      transform: scale(1.1);
    }
    #kefu-btn::before {
      content: "客服";
      font-size: 17px;
      color: white;
      font-weight: 500;
    }

    /* 弹窗遮罩 */
    #kefu-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      justify-content: center;
      align-items: center;
    }

    /* 弹窗内容 */
    #kefu-content {
      background: white;
      border-radius: 12px;
      width: 95%;
      max-width: 400px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #kefu-content .kefu-header {
      background: linear-gradient(135deg, #07c160, #06ad56);
      padding: 28px 20px 20px;
      color: white;
    }
    #kefu-content .kefu-header .kefu-icon {
      width: 56px;
      height: 56px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }
    #kefu-content .kefu-header h3 {
      margin: 0 0 6px;
      font-size: 19px;
      font-weight: 600;
    }
    #kefu-content .kefu-header p {
      margin: 0;
      font-size: 13px;
      opacity: 0.85;
    }
    #kefu-content .kefu-body {
      padding: 20px 22px 24px;
    }
    #kefu-content .kefu-body .kefu-tips {
      font-size: 13px;
      color: #888;
      line-height: 1.6;
      margin-bottom: 16px;
      text-align: left;
    }
    #kefu-content .kefu-body .kefu-tips span {
      color: #07c160;
      font-weight: 500;
    }
    #kefu-content .kefu-body .kefu-wx-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #f7f8fa;
      border-radius: 8px;
      padding: 12px 15px;
      gap: 12px;
    }
    #kefu-content .kefu-body .kefu-wx-card .wx-id {
      font-size: 17px;
      font-weight: 600;
      color: #333;
      letter-spacing: 0.5px;
      font-family: "SF Mono", "Menlo", monospace;
      flex: 1;
      text-align: left;
    }
    #kefu-content .kefu-body .kefu-wx-card .copy-btn {
      flex-shrink: 0;
      padding: 7px 18px;
      background: #07c160;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s;
      font-weight: 500;
    }
    #kefu-content .kefu-body .kefu-wx-card .copy-btn:hover {
      background: #06ad56;
    }
    #kefu-content .kefu-body .kefu-wx-card .copy-btn.copied {
      background: #576b95;
    }
    #kefu-content .kefu-body .kefu-note {
      margin-top: 14px;
      font-size: 12px;
      color: #b0b0b0;
      line-height: 1.5;
    }
    #kefu-close {
      position: absolute;
      top: 14px;
      right: 16px;
      width: 28px;
      height: 28px;
      line-height: 28px;
      text-align: center;
      font-size: 18px;
      color: rgba(255,255,255,0.7);
      cursor: pointer;
      border-radius: 50%;
      background: rgba(0,0,0,0.1);
      z-index: 2;
      transition: all 0.2s;
    }
    #kefu-close:hover {
      background: rgba(0,0,0,0.25);
      color: #fff;
    }


.main {
  width: 100%;
  max-width: 600px;
  margin: auto;
  background-color: #fff;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #f2f2f2;
}
.content {
  padding: 10px;
}
.title {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 20px;
}

/* ✅ 使用 CSS Grid 实现稳定两列 */
.list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 两列等宽 */
  gap: 10px; /* 列与列、行与行之间的间距 */
}

.item {
  border: 1px solid #ccc;
  padding: 10px;
  background: #fff;
  border-radius: 8px; /* 可选：更美观 */
}

.item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px; /* 可选 */
}

.p0 {
  line-height: 20px;
  font-size: 15px;
  color: #000;
  padding: 10px 0 0;
}
.p1 {
  line-height: 20px;
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}
.p2 {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}
.p2 span:first-child {
  color: #ff0000;
  font-weight: bold;
  font-size: 18px;
}
.p2 span:nth-child(2) {
  color: #000;
  font-size: 12px;
}
.p3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.p3 span:first-child {
  color: #ff0000;
  font-weight: bold;
  font-size: 16px;
}
.p3 span:nth-child(2) {
  width: 80px;
  height: 30px;
  background-color: #ff0000;
  text-align: center;
  color: #ffffff;
  line-height: 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}
footer {
  background-color: #ffffff;
  line-height: 20px;
  text-align: center;
  padding: 20px 0;
}
.item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

