.neiye {padding: 10px 0;line-height: 1.8;color: #333}
/* 颜色变量 */
:root {--primary: #ff0000;--secondary: #005fcc;--success: #28a745;--warning: #ffc107;--light: #f5f5f5;}
/* 标题样式 */
.section .title {font-size: 2.5rem;color:#f10909;text-align: center;margin: 20px 0;font-weight: 900;}
/* 红色强调 */
.section .highlight {color: var(--primary);font-weight: bold;}
/* 板块样式 */
.section ol {display: block;   list-style-type: decimal;    margin-block-start: 1em;    margin-block-end: 1em;    margin-inline-start: 0px;    margin-inline-end: 0px;    padding-inline-start: 40px;    unicode-bidi: isolate;padding-left: 1em; }
.section li { list-style: decimal;
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
}
.section ul {    display: block;    list-style-type: disc;    margin-block-start: 1em;    margin-block-end: 1em;    margin-inline-start: 0px;    margin-inline-end: 0px;    padding-inline-start: 40px;    unicode-bidi: isolate;padding-left: 1em;}
.section ul li{list-style: circle;}
.section ol ul {
    list-style-type: circle;
}
.section .card {margin: 30px 0;padding: 25px;border-radius: 15px;box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);animation: fadeIn 0.5s ease-out;}
.section .card-blue {background: linear-gradient(135deg, #e0f0ff, #c9e2ff);}
.section .card-purple {background: linear-gradient(135deg, #ffe6e6, #ffcccc);}
.section .card-green {background: linear-gradient(135deg, #e6fff5, #ccffeb);}
.section .card-yellow {background: linear-gradient(135deg, #fffbe6, #fff3cc);}
.section .card-yellow ul{ padding-left: 1em;}
.section .card-yellow ul li{ list-style: none}
/* 表格样式 */
.section .schedule {width: 100%;border-collapse: collapse;margin: 20px 0;}
.section .schedule th,.section .schedule td {padding: 15px;text-align: left;border-bottom: 2px solid #ddd;}
.section .schedule th {background-color: var(--light);font-weight: bold;color: var(--secondary);}
/* 按钮样式 */
.section .btn {display: inline-block;padding: 15px 40px;background-color: var(--primary);color: white;text-decoration: none;border-radius: 25px;font-weight: bold;font-size: 1.1rem;transition: transform 0.3s ease;margin: 15px;}
.section .btn:hover {transform: translateY(-2px);box-shadow: 0 6px 12px rgba(255, 0, 0, 0.2);}
/* 客户见证样式 */
.section .testimonial {background-color: white;padding: 20px;border-radius: 10px;margin: 15px 0;box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);}
/* 动画效果 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* 响应式设计 */
@media (max-width: 768px) {
.section .title {font-size: 1.5rem;}
.section h2 {font-size: 1.3rem;}
.section h3 {font-size: 1.2rem;}
.section h4 {font-size: 1.1rem;}
.section .card {padding: 15px; border-radius: 0;}
.section .schedule {font-size: 0.9rem;}

}