/* 基础样式 */
body {
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.new_con {
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin: 20px 0;
}

/* 段落样式 */
.new_con p {
    margin-bottom: 1.5em;
    text-align: justify;
    font-size: 16px;
}

/* 标题样式 */
.new_con h2 {
    color: #1a5276;
    border-left: 5px solid #3498db;
    padding-left: 15px;
    margin: 1.8em 0 1em;
    font-size: 1.5em;
}

/* 列表样式 */
.new_con ol {
    padding-left: 1.5em;
    margin-bottom: 1.8em;
}

.new_con li {
    margin-bottom: 1.2em;
    position: relative;
    padding-left: 10px;
}

.new_con ol > li {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1.5em;
}

.new_con ol > li::before {
    content: "";
    position: absolute;
    left: -1.8em;
    top: 0.3em;
    width: 1.4em;
    height: 1.4em;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.new_con ol > li:nth-child(1)::before { content: "1"; }
.new_con ol > li:nth-child(2)::before { content: "2"; }
.new_con ol > li:nth-child(3)::before { content: "3"; }
.new_con ol > li:nth-child(4)::before { content: "4"; }

/* 场景适配部分样式 */
.new_con .scenario {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 15px 20px;
    margin: 1.5em 0;
    border-radius: 0 5px 5px 0;
}

.new_con .scenario strong {
    color: #1a5276;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

/* 联系信息样式 */
.new_con .contact-info {
    background-color: #e8f4fc;
    padding: 20px;
    border-radius: 8px;
    margin: 2em 0;
    text-align: center;
    border: 1px dashed #3498db;
}

.new_con .contact-info p {
    margin: 0.5em 0;
    font-size: 1.1em;
}

.new_con .highlight {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2em;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .new_con {
        padding: 15px;
        margin: 10px 0;
    }
    
    .new_con p {
        font-size: 15px;
    }
    
    .new_con h2 {
        font-size: 1.3em;
    }
    
    .new_con .contact-info {
        padding: 15px;
    }
}