﻿  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
            color: #333;
            min-height: 100vh;
      
        }
        
        .container {
            max-width: 400px;
            margin: 0 auto;
            background: white;
           
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .header {
            background: #16a34a;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .logo-section {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            margin: 0 10px;
        }
        
        .title {
            font-size: 20px;
            margin: 10px 0;
            font-weight: bold;
        }
        
        .subtitle {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .content {
            padding: 0 20px 20px 20px;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin: 15px 0 10px;
            color: #16a34a;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            font-weight: bold;
        }
        
        .required::after {
            content: "*";
            color: #e74c3c;
            margin-left: 3px;
        }
        
        input, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        input:focus, select:focus {
            border-color: #22c55e;
            outline: none;
        }
        
        .address-select-group {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .address-select-group select {
            flex: 1;
        }
        
        .material-group {
            margin: 20px 0;
        }
        
        .material-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .material-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }
        
        .material-item label {
            flex: 1;
            margin: 0;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            margin: 15px 0;
        }
          .upload-section {
            margin: 20px 0;
        }
        
        .upload-item {
            background: #f8f9fa;
            border: 1px dashed #22c55e;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            margin-bottom: 10px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            min-height: 80px;
        }
        .upload-item img {
            max-width: 100%;
            max-height: 120px;
            display: block;
            margin: 0 auto;
        }
        .upload-icon {
            font-size: 24px;
            color: #22c55e;
            margin-bottom: 5px;
        }
        .layui-upload-file {
            display: none !important;
        }
        .checkbox-group input {
            width: auto;
            margin-right: 10px;
        }
        
        .notice {
            background: #f0fdf4;
            border-left: 4px solid #22c55e;
            padding: 10px 15px;
            margin: 15px 0;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .submit-btn {
            background: #16a34a;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            width: 100%;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            background: #15803d;
        }
        
        .footer {
            text-align: center;
            padding: 15px;
            font-size: 12px;
            color: #7f8c8d;
            border-top: 1px solid #eee;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }
        
        .footer-link {
            margin: 0 10px;
            color: #22c55e;
            text-decoration: none;
        }
        
        .time-info {
            margin-top: 10px;
            font-size: 12px;
        }
        
        .green-wave {
            height: 10px;
            background: linear-gradient(90deg, #16a34a 0%, #15803d 50%, #16a34a 100%);
            background-size: 200% 100%;
            animation: wave 3s infinite linear;
        }
        
        @keyframes wave {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .audit-self-service {
            font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .audit-self-service__card {
            background: #fff;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }
        a{text-decoration:none;}
        .audit-self-service__card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.3;
        }
        
        .audit-self-service__content {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .audit-self-service__icon {
            width: 48px;
            height: 48px;
            background: #22c55e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            flex-shrink: 0;
        }
        
        .audit-self-service__icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }
        
        .audit-self-service__text {
            flex: 1;
            color:#000;
        }
        
        .audit-self-service__title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 4px;
            line-height: 1.2;
        }
        
        .audit-self-service__time {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.3;
        }
        
        .audit-self-service__arrow {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0, 0, 0, 0.7);
            flex-shrink: 0;
        }
        
        .audit-self-service__arrow svg {
            width: 16px;
            height: 16px;
        }
        
        /* 响应式调整 */
        @media (max-width: 480px) {
            .audit-self-service__card {
                padding: 12px;
            }
            
            .audit-self-service__icon {
                width: 40px;
                height: 40px;
                margin-right: 12px;
            }
            
            .audit-self-service__title {
                font-size: 16px;
            }
            
            .audit-self-service__time {
                font-size: 13px;
            }
        }