    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; background: #f4f4f4; color: #333; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; }

    .header { background: #2e8b57; color: white; padding: 20px; display: flex; justify-content: space-between; align-items: center; }
    .header .logo { display: flex; align-items: center; }
    .header .logo img { width: 40px; height: 40px; margin-right: 10px; }
    .header span {font-size: 30px;letter-spacing: 2px;font-weight: 600;}
    .header .phone { font-size: 16px; }
    .toubu {margin: auto;background: #2e8b57; color: white; display: flex; justify-content: space-between; align-items: center; }
    .intro { background: #9BCD9B; padding: 60px 20px; text-align: center; }
    .intro h1 { font-size: 28px; color: #2e8b57; margin-bottom: 20px; }
    .intro p { font-size: 18px; color: #444; }

    /* 查询板块 */
    .query-section-v2 { display: flex; justify-content: space-between;  padding: 30px 0; gap: 30px; }
    .query-result, .query-form { width: 50%; border-radius: 0px; background: #fff; padding: 50px; box-shadow: 0 0 10px rgba(0,0,0,0.05); }
    .query-result p {    padding: 12px 15px;
    border-radius: 8px;
    border: 1px dashed rgb(243, 209, 158);
    background-color: #fdf6ec;
    margin-top: 20px;
    text-align: justify;
    font-size: 15px;
    line-height: 25px;
    color: #666;}
    .query-result h2 { color: #CD4F39; margin-bottom: 20px; font-size: 20px; text-align: center;}
    .query-result .card {     background:#CD4F39;    color: white;    border: none;    padding: 20px;    font-size: 30px;    width: 100%;    border-radius: 5px;    cursor: pointer;    margin-top: 0px;
    font-weight: 600;    letter-spacing: 2px;     text-align: center;}
    .query-result .card a {    color: #fff;    text-decoration: auto;}  
    .query-result .card p { margin-bottom: 10px; font-size: 15px; }
    .query-result .card .status { float: right; color: white; background: #2e8b57; border-radius: 50%; padding: 6px 12px; font-weight: bold; }

    .query-form h3 { font-size: 20px; margin-bottom: 20px; text-align: center;color: #2e8b57;}
    .form-group { margin-bottom: 15px; position: relative; text-align: center;}
    .query-form p {       padding: 12px 15px;    border-radius: 8px;    border: 1px dashed rgb(243, 209, 158);    background-color: #fdf6ec;    margin-top: 20px;    text-align: justify;    font-size: 15px;    line-height: 25px;    color: #666;}
    .form-group input {
      width: 70%; padding: 12px 40px 12px 12px;
      border: 1px solid #ccc; border-radius: 5px; font-size: 15px;
    }
    .form-group::before {
      content: ''; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
      width: 20px; height: 20px; background: url('/fanzui/logo.png') no-repeat center / contain;
    }
    .form-group.id::before {
      background-image: url('/img/icon-id.png');
    }
    .submit-btn {
      background: #2e8b57; color: white; border: none;
      padding: 20px; font-size: 30px; width: 100%; border-radius: 5px;
      cursor: pointer;margin-top: 0px;font-weight: 600;letter-spacing: 2px;
    }
    .submit-btn:hover { background: #276c47; }

    .form-agreement { margin-top: 10px; font-size: 13px; color: #666; }

    /* 查询流程 */
    .steps { display: flex; justify-content: space-between;    margin-bottom: 30px; }
    .step-card {
        width: 32%; border: 1px solid #2e8b57; border-radius: 0px;
        padding: 20px; text-align: center; background: white;
    }
    .step-card img { width: 300px; height: 150px; margin-bottom: 15px; }
    .step-card h3 { color: #2e8b57; font-size: 18px; margin-bottom: 10px; }
    .step-card p { font-size: 16px;
    color: #666;
    text-align: justify;
    line-height: 28px; }

    .footer { background: #2e8b57; color: white; text-align: center; padding: 20px; font-size: 14px; }

    @media (max-width: 768px) {
      .query-section-v2, .steps { flex-direction: column; }
      .query-result, .query-form, .step-card { width: 100%; margin-bottom: 20px; }
    }