﻿  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  }
  
  body {
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.5; /* 减少行距 */
    padding: 12px;
    font-size: 18px; /* 放大基础字号 */
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 150, 0.1);
    overflow: hidden;
  }
  
  .header {
    background: linear-gradient(135deg, #1e5799, #207cca);
    color: white;
    padding: 20px 16px;
    text-align: center;
  }
  
  .header h1 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  .header h2 {
    font-size: 18px;
    font-weight: normal;
    opacity: 0.9;
line-height: 1.2;
  }
  
  .content {
    padding: 25px 20px;
  }
  
  .progress-container {
    margin: 10px 0;
    position: relative;
  }
  
  .progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  
  .progress-bar {
    position: absolute;
    height: 6px;
    background: #cce0ff;
    top: 13px;
    left: 10%;
    right: 10%;
    z-index: 1;
  }
  
  .progress-completed {
    position: absolute;
    height: 4px;
    background: #1e90ff;
    top: 8px;
    left: 6%;
font-size: 22px;
    width: <% 
    Select Case currentStep
      Case 1
      Response.Write "0%"
      Case 2
      Response.Write "33%"
      Case 3
      Response.Write "66%"
      Case Else
      Response.Write "100%"
    End Select
    %>;
    z-index: 2;
    transition: width 0.5s ease;
  }
  
  .step {
    text-align: center;
    z-index: 3;
    position: relative;
    width: 25%;
  }
  
  .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #cce0ff;
    color: #1e5799;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-weight: bold;
    font-size: 20px; /* 放大步骤数字 */
  }
  
  .step.active .step-circle {
    background: #1e90ff;
    color: white;
    border-color: #1e90ff;
  }
  
  .step.completed .step-circle {
    background: #1e5799;
    color: white;
    border-color: #1e5799;
  }
  
  .step-label {
    font-size: 22px; /* 放大步骤文字 */
    color: #666;
    font-weight: 500; /* 加粗 */
  }
  
  .step.active .step-label {
    color: #1e5799;
    font-weight: bold;
  }
  
  .promise {
    background: #e6f2ff;
    padding: 10px;
    border-radius: 8px;
    margin: 16px 0;
    font-size: 16px; /* 放大字号 */
    border-left: 4px solid #1e5799;
  }
  
  .section {
    margin-bottom: 16px;
  }
  
  .section-title {
    color: #1e5799;
    font-size: 22px; /* 放大标题 */
    margin-bottom: 10px;
    font-weight: bold;
align:center;
  }
  
  .text-content {
    font-size: 16px; /* 放大内容文字 */
    line-height: 1.5; /* 适当减少行高 */
  }
  
  .text-content p {
    margin-bottom: 10px;
    text-indent: 2em;
  }
  
  .tip-box {
    background: #f0f7ff;
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    border: 1px dashed #4a90e2;
    font-size: 18px;
    color: #1e5799;
  }
  
  .form-group {
    margin-bottom: 10px;
  }
  
  .form-label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    color: #1e5799;
    font-size: 18px; /* 放大标签 */
  }
  
  .form-input, .form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cce0ff;
    border-radius: 8px;
    font-size: 17px; /* 放大输入文字 */
    background: #f8fbff;
  }
  
  .form-input:focus, .form-select:focus {
    border-color: #1e90ff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.2);
  }
  
  .hint {
    font-size: 15px; /* 放大提示文字 */
    color: #666;
    margin-top: 6px;
    /* 移除斜体 */
  }
  
  .district-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }
  
  .district-option {
    display: flex;
    align-items: center;
    flex: 1 0 22%;
    font-size: 20px;
  }
  
  .district-option input {
    margin-right: 6px;
    transform: scale(1.2);
  }
  
  .company-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* 减少间隙 */
    margin-top: 10px;
  }
  
  .company-option {
    flex: 1 0 calc(50% - 5px); /* 每行两个，紧凑布局 */
    padding: 1px; /* 减少内边距 */
    background: #f8fbff;
    border: 1px solid #cce0ff;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-sizing: border-box;
  }
  
  .company-option:hover {
    background: #e6f2ff;
    border-color: #1e90ff;
  }
  
  .btn-container {
    display: flex;
    gap: 12px; /* 减少按钮间距 */
    margin-top: 12px;
  }
  
  .btn {
    display: inline-block;
    background: #1e5799;
    color: white;
    padding: 10px 4px; /* 减少内边距 */
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 20px; /* 放大按钮文字 */
    transition: all 0.3s ease;
    flex: 1;
  }
  
  .btn:hover {
    background: #153e6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 87, 153, 0.3);
  }
  
  .btn-outline {
    background: transparent;
    color: #1e5799;
    border: 2px solid #1e5799;
  }
  
  .btn-outline:hover {
    background: #e6f2ff;
  }
  
  .admin-btn {
    background: transparent;
    color: #CCD;
    font-size: 15px;
    padding: 6px 6px;
    border: none;
    text-decoration: underline;
  }
  
  .cargo-item {
display: flex;
flex-wrap: wrap;
    background: #f0f7ff;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 4px solid #1e5799;
  }
  
  .cargo-title {
flex: 0 0 100%;
    font-weight: bold;
    color: #1e5799;
    margin-bottom: 5px;
    font-size: 20px;
  }
  
  .cargo-detail {
flex: 0 0 calc(50% - 10px);
    margin-bottom: 2px;
    font-size: 16px;
word-wrap: break-word;
  }

  .summary-item {
    padding: 8px 0;
    border-bottom: 1px solid #e0e8f0;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
  }
  
  .summary-label {
    font-weight: bold;
    color: #1e5799;
  }
  
  .success-message {
    text-align: center;
    padding: 20px 10px;
    font-size: 20px;
  }
  
  .success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 16px;
  }
  
  .success-title {
    font-size: 24px;
    color: #1e5799;
    margin-bottom: 16px;
    font-weight: bold;
  }
  
  .footer {
    text-align: center;
    padding: 18px;
    color: #666;
    font-size: 18px;
    background: #f8f9ff;
    border-top: 1px solid #e0e8f0;
  }
  
  .radio-group {
    display: flex;
    gap: 10px; /* 减少间隙 */
    margin-top: 6px;
    flex-wrap: wrap;
  }
  
  .radio-option {
    display: flex;
    align-items: center;
    background: #f8fbff;
    padding: 8px 10px; /* 减少内边距 */
    border-radius: 8px;
    border: 1px solid #cce0ff;
    cursor: pointer;
    flex: 1;
    min-width: 180px;
    transition: all 0.3s ease;
    font-size: 18px;
  }
  
  .radio-option:hover {
    border-color: #1e90ff;
    background: #e6f2ff;
  }
  
  .radio-option input {
    margin-right: 6px;
  }
  
  .required-star {
    color: red;
    margin-right: 4px;
  }

  /* 新增：企业选择提示 */
  .company-hint {
    background: #fff8e6;
    padding: 8px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid #ffb300;
    font-size: 18px;
    font-weight: bold;
  }
  
  @media (max-width: 480px) {
    body {
    font-size: 18px; /* 手机端基础字号放大 */
    padding: 8px;
    }
    
    .header {
    padding: 16px 12px;
    }
    
    .header h1 {
    font-size: 22px;
    }
    
    .header h2 {
    font-size: 18px;
    }
    
    .content {
    padding: 16px 12px;
    }
    
    .step-circle {
    width: 26px;
    height: 26px;
    font-size: 18px;
    }
    
    .step-label {
    font-size: 15px;
    }
    
    .section-title {
    font-size: 20px;
text-align: center;
    }
    
    .text-content, .form-label, .cargo-detail {
    font-size: 18px;
    }
    
    .form-input, .form-select {
    padding: 8px;
    font-size: 18px;
    }
    
    .btn {
    padding: 8px 15px;
    font-size: 18px;
    }
    
    .district-option {
    flex: 1 0 40%;
    font-size: 18px;
    }
    
    .radio-option {
    min-width: 100%;
    padding: 6px 8px; /* 减少内边距 */
    }

    .company-hint {
    font-size: 18px;
    padding: 6px;
    }
  }
/* 新增样式 */
.checkbox-option {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-top: 15px;
}

.checkbox-option input {
  margin-right: 8px;
  transform: scale(1.3);
}

