

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.8;
            color: #333;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            background: #f9f9f9;
        }
        header {
            background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            border-radius: 8px;
            margin-bottom: 40px;
        }
        header h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
        }
        header .subtitle {
            font-size: 1.2em;
            opacity: 0.95;
        }
        .author-info {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .author-info p {
            color: #666;
            font-size: 0.95em;
        }
        article {
            background: white;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }
        h2 {
            color: #c41e3a;
            font-size: 1.8em;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #c41e3a;
        }
        h3 {
            color: #333;
            font-size: 1.4em;
            margin: 35px 0 18px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .intro {
            font-size: 1.15em;
            color: #555;
            border-left: 4px solid #c41e3a;
            padding-left: 20px;
            margin-bottom: 35px;
        }
        ul, ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        li {
            margin-bottom: 12px;
        }
        .highlight-box {
            background: #fff5f5;
            border: 1px solid #c41e3a;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }
        .highlight-box h4 {
            color: #c41e3a;
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
        }
        .stat-card .number {
            font-size: 2em;
            font-weight: 700;
            color: #c41e3a;
        }
        .stat-card .label {
            color: #666;
            margin-top: 8px;
        }
        .process-flow {
            background: #f9f9f9;
            border-radius: 8px;
            padding: 30px;
            margin: 30px 0;
        }
        .process-step {
            display: flex;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        .step-number {
            background: #c41e3a;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .step-content h4 {
            color: #333;
            margin-bottom: 5px;
        }
        .step-content p {
            margin: 0;
            color: #666;
            font-size: 0.95em;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            font-size: 0.95em;
        }
        .comparison-table th {
            background: #c41e3a;
            color: white;
            padding: 15px;
            text-align: left;
        }
        .comparison-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        .comparison-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        .capacity-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .capacity-table th, .capacity-table td {
            padding: 12px 15px;
            border: 1px solid #ddd;
            text-align: center;
        }
        .capacity-table th {
            background: #333;
            color: white;
        }
        .capacity-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        .cta-section {
            background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
            color: white;
            padding: 40px;
            border-radius: 8px;
            text-align: center;
            margin-top: 50px;
        }
        .cta-section h2 {
            color: white;
            border: none;
            margin-bottom: 15px;
        }
        .cta-section p {
            text-align: center;
            opacity: 0.95;
            margin-bottom: 25px;
        }
        .cta-button {
            display: inline-block;
            background: white;
            color: #c41e3a;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        .error-list {
            background: #fff5f5;
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
        }
        .error-list li {
            color: #c41e3a;
            font-weight: 500;
        }
        .faq-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e0e0e0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item h4 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        footer {
            text-align: center;
            padding: 40px 20px;
            color: #666;
            font-size: 0.9em;
        }
        footer a {
            color: #c41e3a;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8em;
            }
            article {
                padding: 25px;
            }
            h2 {
                font-size: 1.5em;
            }
        }
    
.sitewidget-form-20241205205308-HiAZVnmebSRj #formsubmit{ pointer-events: none; }
.sitewidget-form-20241205205308-HiAZVnmebSRj #formsubmit.releaseClick{ pointer-events: unset; }

.sitewidget-form-20241205205308-HiAZVnmebSRj .form-horizontal input,.sitewidget-form-20241205205308-HiAZVnmebSRj .form-horizontal span:not(.select2-selection--single),.sitewidget-form-20241205205308-HiAZVnmebSRj .form-horizontal label,.sitewidget-form-20241205205308-HiAZVnmebSRj .form-horizontal .form-builder button{height:28px !important;line-height:28px !important;}
.sitewidget-form-20241205205308-HiAZVnmebSRj .uploadBtn{padding:4px 15px !important;height:28px !important;line-height:28px !important;}

.sitewidget-form-20241205205308-HiAZVnmebSRj select, .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="text"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="password"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="datetime"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="datetime-local"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="date"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="month"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="time"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="week"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="number"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="email"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="url"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="search"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="tel"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="color"], .sitewidget-form-20241205205308-HiAZVnmebSRj .uneditable-input{height:28px !important;}
.sitewidget-form-20241205205308-HiAZVnmebSRj.sitewidget-inquire .control-group .controls .select2-container .select2-selection--single .select2-selection__rendered{height:28px !important;line-height:28px !important;}
.sitewidget-form-20241205205308-HiAZVnmebSRj textarea.cus-message-input{min-height:28px !important;}
.sitewidget-form-20241205205308-HiAZVnmebSRj .add-on, .sitewidget-form-20241205205308-HiAZVnmebSRj .add-on{height:28px !important;line-height:28px !important;}

	.sitewidget-form-20241205205308-HiAZVnmebSRj textarea, .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="text"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="password"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="datetime"],
	.sitewidget-form-20241205205308-HiAZVnmebSRj input[type="datetime-local"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="date"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="month"],
	.sitewidget-form-20241205205308-HiAZVnmebSRj input[type="time"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="week"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="number"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="email"],
	.sitewidget-form-20241205205308-HiAZVnmebSRj input[type="url"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="search"], .sitewidget-form-20241205205308-HiAZVnmebSRj input[type="tel"],
	.sitewidget-form-20241205205308-HiAZVnmebSRj input[type="color"], .sitewidget-form-20241205205308-HiAZVnmebSRj .uneditable-input {
		box-shadow: none ;
	}



	/**
	* 输入框校验触发后背景颜色
	*/
	.sitewidget-form-20241205205308-HiAZVnmebSRj .input-valid-bg {
	background: #ffece8 !important;
	outline: none;
	}

	.sitewidget-form-20241205205308-HiAZVnmebSRj .input-valid-bg:focus {
		background: #fff !important;
		border: 1px solid #f53f3f !important;
	}
.sitewidget-form-20241205205308-HiAZVnmebSRj #formsubmit{
		border:0px solid #2e6da4;
		border-radius:50px;
		background:rgb(236, 96, 34);
		color:#fff;
		font-size:16px;
		width:122px;
		height:40px;
		}
	.sitewidget-form-20241205205308-HiAZVnmebSRj #formsubmit:hover{
		border:0px solid #204d74;
		border-radius:50px;
		background:rgb(255, 255, 255);
		color:rgb(236, 96, 34);
		font-size:16px;
	}

	.sitewidget-form-20241205205308-HiAZVnmebSRj #formreset{
		width:122px;
		font-size:16px;
		height:40px;
	}
	.sitewidget-form-20241205205308-HiAZVnmebSRj #formreset:hover{
		font-size:16px;
	}
.sitewidget-form-20241205205308-HiAZVnmebSRj .submitGroup .controls{
	text-align:left;
	}
/* 下拉复选框开始 */
.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent label {

}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent input[type='checkbox']+label:before {
content: "";
display: inline-block;
width: 12px;
height: 12px;
border: 1px solid #888;
border-radius: 3px;
margin-right: 6px;
margin-left: 6px;
transition-duration: .2s;
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent input[type='checkbox']:checked+label:before {
width: 50%;
border-color: #888;
border-left-color: transparent;
border-top-color: transparent;
-webkit-transform: rotate(45deg) translate(1px, -4px);
transform: rotate(45deg) translate(1px, -4px);
margin-right: 12px;
width: 6px;
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent input[type="checkbox"] {
display: none;
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent {
display: none;
width: 100%;
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent ul {
list-style: none;
width: 100%;
text-align: left;
border-radius: 4px;
padding: 10px 5px;
box-sizing: border-box;
height: auto;
overflow-x: hidden;
overflow-y: scroll;
box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 30%);
background-color: #fff;
margin: 2px 0 0 0;
border: 1px solid #cccccc;
box-shadow: 1px 1px 2px rgb(0 0 0 / 10%) inset;
}

/*滚动条样式*/
.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent ul::-webkit-scrollbar {
width: 2px;
height: 4px;
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent ul::-webkit-scrollbar-thumb {
border-radius: 5px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: rgb(78, 158, 151);
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent ul::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 0;
background: rgba(202, 202, 202, 0.23);
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-select {
width: 100%;
height: auto;
min-height: 40px;
line-height: 40px;
border-radius: 4px;
padding-right: 10px;
padding-left: 10px;
box-sizing: border-box;
overflow: hidden;
background-size: auto 80%;
border: 1px solid #cccccc;
box-shadow: 1px 1px 2px rgb(0 0 0 / 10%) inset;
background-color: #fff;
position: relative;
}
.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-select:after{
    content: '';
    position: absolute;
    top: 50%;
    right: 6px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #888;
    transform: translateY(calc(-50% + 4px));
    cursor: pointer;
}
.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-select span {
line-height: 28px;
color: #666;
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent label {
color: #333;
display: inline-flex;
align-items: center;
height: 30px;
line-height: 22px;
padding: 0;
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .multiple-parent ul li:not([class^="group"]) {

}

.sitewidget-form-20241205205308-HiAZVnmebSRj .select-content {
display: inline-block;
border-radius: 4px;
line-height: 23px;
margin: 2px 2px 0 2px;
padding: 0 3px;
border: 1px solid #888;
height: auto;
}

.sitewidget-form-20241205205308-HiAZVnmebSRj .select-delete {
cursor: pointer;
}

.sitewidget-form-20241205205308-HiAZVnmebSRj select[multiple]{
display:none;
}