.container-wrap{
    width: 100%;
    background: #fcfdfd;
}   
.container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
      
   
    }
 
    /* ===== LEFT PANEL ===== */
    .left-panel {
      flex: 1;
      min-width: 0;
    }
 
    .left-panel h2 {
      font-size: 26px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 8px;
    }
 
    .left-panel .subtitle {
      font-size: 14px;
      color: #888;
      margin-bottom: 24px;
    }
 
    /* Contact Cards */
    .contact-card {
      background: #fff;
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
            0 4px 6px -4px rgba(0,0,0,0.1);
    }
 
    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .card-icon svg {
      width: 24px;
      height: 24px;
      fill: #fff;
    }
 
    .icon-blue   { background-color: #4A90E2; }
    .icon-orange { background-color: #F5A623; }
    .icon-green  { background-color: #4CAF50; }
 
    .card-content .card-title {
      font-weight: bold;
      font-size: 14px;
      color: #666;
      margin-bottom: 4px;
    }
 
    .card-content .card-value {
      font-size: 20px;
      font-weight: 700;
      color: #4A90E2;
    }
 
    .card-content .card-note {
      font-size: 13px;
      color: #aaa;
      margin-top: 2px;
    }
 
    .card-content .card-value.black {
      color: #1a1a1a;
      font-size: 15px;
    }
 
    /* Follow Us */
    .follow-section {
      margin-top: 24px;
    }
 
    .follow-section h3 {
      font-size: 16px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 16px;
    }
 
    .qr-group {
      display: flex;
      gap: 24px;
    }
 
    .qr-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
 
    .qr-item img {
      width: 100px;
      height: 100px;
      border-radius: 8px;
      border: 1px solid #e8e8e8;
      object-fit: cover;
    }
 
    .qr-placeholder {
      width: 100px;
      height: 100px;
      border-radius: 8px;
      border: 1px solid #e8e8e8;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .qr-placeholder svg {
      width: 60px;
      height: 60px;
      opacity: 0.3;
    }
 
    .qr-label {
      font-size: 13px;
      color: #666;
    }
 
    /* ===== RIGHT PANEL ===== */
    .right-panel {
      flex: 1;
      min-width: 0;
      background: #fff;
      border-radius: 16px;
      padding: 32px 32px;
       box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
            0 4px 6px -4px rgba(0,0,0,0.1);
    }
 
    .right-panel h2 {
      font-size: 26px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 6px;
    }
 
    .right-panel .subtitle {
      font-size: 14px;
      color: #888;
      margin-bottom: 28px;
    }
 
    .form-group {
      margin-bottom: 20px;
    }
 
    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: #333;
      margin-bottom: 8px;
    }
 
    .form-label .required {
      color: #e53e3e;
      margin-left: 2px;
    }
 
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #e4e4e4;
      border-radius: 8px;
      font-size: 14px;
      color: #333;
      background: #fff;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      font-family: inherit;
    }
 
    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #bbb;
    }
 
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: #4A90E2;
      box-shadow: 0 0 0 3px rgba(74,144,226,0.12);
    }
 
    .form-select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      cursor: pointer;
    }
 
    .form-textarea {
      height: 120px;
      resize: vertical;
    }
 
    .btn-submit {
      width: 100%;
      padding: 15px;
      background-color: #3a7bd5;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s, transform 0.1s;
      font-family: inherit;
      margin-top: 4px;
    }
 
    .btn-submit:hover {
      background-color: #2f6cbf;
    }
 
    .btn-submit:active {
      transform: scale(0.99);
    }
 
    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        padding-left: 16px;
        padding-right: 16px;
      }
    }






    .banner {
      margin-top: 60px;
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(120deg, #f2f4fa 0%, #eaecf6 60%, #eff1f8 100%);
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
  }
 
  /* 柔和光晕 */
  .glow-pink {
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,130,170,0.3) 0%, transparent 70%);
    top: -20px; right: 210px;
    pointer-events: none;
  }
  .glow-blue {
    position: absolute;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80,180,240,0.22) 0%, transparent 70%);
    bottom: -10px; right: 40px;
    pointer-events: none;
  }
 
  /* 右侧圆环 */
  .rings {
    position: absolute;
    right: 110px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
  }
  .ring {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .ring-1 {
    width: 300px; height: 300px;
    border: 1px dashed rgba(150,150,200,0.28);
  }
  .ring-2 {
    width: 210px; height: 210px;
    border: 1px solid rgba(150,150,200,0.18);
  }
  .ring-3 {
    width: 130px; height: 130px;
    border: 1px dashed rgba(150,150,200,0.22);
  }
 