@charset "utf-8";
/* CSS Document */

  * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
  html, body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background: #e8e8e8;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  .phone-wrap {
    max-width: 420px;
    margin: 0 auto;
    background: #f2f2f2;
    min-height: 100vh;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
    position: relative;
  }

  /* ===== 顶部导航 ===== */
  .topbar {
    background: linear-gradient(135deg, #1a9e4f 0%, #16b04e 50%, #12c050 100%);
    color: #fff;
    padding: 14px 16px 16px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .topbar .back {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 6px;
  }
  .topbar .back svg { width: 20px; height: 20px; }
  .topbar .title {
    flex: 1;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
   
  }

  /* ===== 主体（绿色背景区域） ===== */
  .hero {
    background: linear-gradient(180deg, #1a9e4f 0%, #16b04e 45%, #14a84c 100%);
    padding: 6px 16px 26px;
    text-align: center;
    color: #fff;
  }
  .verify-circle {
    width: 118px; height: 118px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    border: 3px solid rgba(255,255,255,0.55);
    margin: 10px auto 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
    animation: pulse 2.4s ease-in-out infinite;
  }
  .verify-circle .zheng {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 6px rgba(255,255,255,0.08), 0 0 0 0 rgba(255,255,255,0.0); }
    50%     { box-shadow: 0 0 0 6px rgba(255,255,255,0.08), 0 0 0 14px rgba(255,255,255,0.10); }
  }
  .hero .tip {
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
  }
  .hero .subtip {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 4px;
  }

  /* ===== 白色卡片内容区 ===== */
  .card {
    background: #fff;
    border-radius: 14px 14px 0 0;
    margin-top: -14px;
    padding: 18px 16px 22px;
    position: relative;
    z-index: 2;
  }
  .sec-title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    display: flex; align-items: center;
  }
  .sec-title::before {
    content: "";
    display: inline-block;
    width: 4px; height: 15px;
    background: #16b04e;
    border-radius: 2px;
    margin-right: 8px;
  }

  .prod-text {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    background: #f6fbf7;
    border: 1px solid #e3f3e8;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .prod-text b { color: #16b04e; font-weight: 600; }

  .voice-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 7px 16px;
    background: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: all .2s;
  }
  .voice-btn:hover { border-color: #16b04e; color: #16b04e; }
  .voice-btn svg { width: 15px; height: 15px; }

  /* 存证信息 */
  .chain-box {
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 14px 14px 14px;
    margin-top: 6px;
    background: #fff;
  }
  .chain-row {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    color: #444;
    margin-bottom: 9px;
    line-height: 1.5;
  }
  .chain-row:last-child { margin-bottom: 0; }
  .chain-row .lbl {
    color: #999;
    width: 96px;
    flex-shrink: 0;
  }
  .chain-row .val {
    flex: 1;
    word-break: break-all;
    color: #333;
    font-family: "SFMono-Regular", Menlo, Consolas, monospace;
    font-size: 12px;
  }
  .chain-row .val.time {
    font-family: inherit;
    font-size: 13px;
    color: #16b04e;
    font-weight: 600;
  }

  /* 认证印章 */
  .stamp {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%) rotate(-12deg);
    width: 84px; height: 84px;
    border: 3px solid #d91f2a;
    border-radius: 50%;
    color: #d91f2a;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    background: rgba(217,31,42,0.04);
    box-shadow: inset 0 0 0 2px rgba(217,31,42,0.25);
  }
  .stamp .star { font-size: 16px; margin-bottom: 1px; }

  /* 底部备案 */
  .beian {
    margin-top: 16px;
    font-size: 11.5px;
    color: #aaa;
    text-align: center;
    line-height: 1.7;
  }
  .beian .dot { color: #16b04e; }

  .footer-tip {
    margin-top: 10px;
    font-size: 11px;
    color: #bbb;
    text-align: center;
  }
  
    /* ===== 区块链存证（图片一致布局） ===== */
  .chain-section {
    margin-top: 20px;
    background: #f6fbf7;          /* 浅绿背景色 */
    border: 1px solid #e3f3e8;
    border-radius: 10px;
    padding: 18px 16px 22px;
    position: relative;
    text-align: center;            /* 居中纵向排版 */
  }
  .chain-title {
    color: #2e9e4f;                /* 绿色标题 */
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }
  .chain-item {
    padding: 10px 0;
    border-bottom: 1px dashed #d8e8de;  /* 下划线隔断（虚线） */
  }
  .chain-item:last-of-type {
    border-bottom: none;            /* 最后一项去掉下划线 */
  }
  .chain-label {
    font-size: 13.5px;
    color: #888;
    margin-bottom: 4px;
  }
  .chain-value {
    font-size: 14px;
    color: #333;
    word-break: break-all;
    font-family: "SFMono-Regular", Menlo, Consolas, monospace;
    line-height: 1.6;
  }


