/**************************************************************************************************** 
模板说明：
*****************************************************************************************************
前台显示时，文章正文会放在id为“vsb_content_1001”的div中，为了保证您定义的样式正常显示并不影响其他页面标签的显示效果，请您在定义时使用ID选择符 
您可以为任何标签定义样式，但是必须在样式名称前添加“#vsb_content_1001”标记，否则您定义的样式可能无效。

例如：
#vsb_content_1001 H2 
{
    font-size: 14px
;}
定义了H2的样式，其中#后面的“vsb_content_1001”为ID选择符，您定义的样式名称必须以“vsb_content_1001”为选择符,"_1001"不能删掉！

******************************************************************************************************/

/* 全局基础样式重置与统一 */
#vsb_content_1001 {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

/* 标题层级样式 */
#vsb_content_1001 h1 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

#vsb_content_1001 h2 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin: 25px 0 12px 0;
    position: relative;
    padding-left: 10px;
}

#vsb_content_1001 h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 20px;
    background-color: #1e50a2;
    transform: translateY(-50%);
}

#vsb_content_1001 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0;
}

/* 图标样式优化 */
#vsb_content_1001 .icon {
    border: 0 none;
    margin: 3px 0 0;
    vertical-align: middle;
}

/* 图片样式优化 - 更精致的边框与响应式 */
#vsb_content_1001 img {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 5px;
    background-color: #fff;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

#vsb_content_1001 img:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #d0d0d0;
}

/* 段落样式优化 - 更舒适的行高与字号 */
#vsb_content_1001 p {
    line-height: 1.8;
    text-indent: 2em;
    font-size: 16px;
    margin: 12px 0;
    color: #444;
}

/* 行内元素样式统一 */
#vsb_content_1001 span {
    line-height: 1.8;
    font-size: 16px;
    color: #444;
}

/* 链接样式优化 - 更优雅的交互 */
#vsb_content_1001 a {
    color: #1e50a2;
    text-decoration: none;
    border-bottom: 1px dotted #1e50a2;
    transition: all 0.2s ease;
}

#vsb_content_1001 a:visited {
    color: #6a4c93;
    border-bottom-color: #6a4c93;
}

#vsb_content_1001 a:hover {
    color: #ba2636;
    border-bottom-color: #ba2636;
    background-color: #fef5f6;
}

#vsb_content_1001 a:active {
    color: #9a1e2d;
}

/* 表格样式优化 - 更清晰的视觉层次 */
#vsb_content_1001 table {
    border-collapse: collapse;
    border: 1px solid #ddd;
    width: 100%;
    margin: 20px 0;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

#vsb_content_1001 table th {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    padding: 12px 8px;
    font-weight: 600;
    text-align: left;
    font-size: 15px;
    color: #333;
}

#vsb_content_1001 table td {
    border: 1px solid #ddd;
    padding: 10px 8px;
    vertical-align: middle;
}

#vsb_content_1001 table td p {
    text-indent: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

#vsb_content_1001 table th p {
    text-indent: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

#vsb_content_1001 table td img {
    border: none;
    margin: 5px;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

/* 正文首段样式 - 通知类场景优化 */
#vsb_content_1001 .vsbcontent_start {
    line-height: 1.8;
    text-indent: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

/* 正文末段样式 - 通知类场景优化 */
#vsb_content_1001 .vsbcontent_end {
    line-height: 1.8;
    text-indent: 0;
    font-size: 16px;
    text-align: right;
    margin-top: 20px;
    color: #555;
}

/* 字号切换样式 - 更合理的层级 */
#vsb_content_1001.newscontent_l p {
    font-size: 18px;
    line-height: 1.8;
}

#vsb_content_1001.newscontent_m p {
    font-size: 16px;
    line-height: 1.8;
}

#vsb_content_1001.newscontent_s p {
    font-size: 14px;
    line-height: 1.8;
}

/* 补充：列表样式优化 */
#vsb_content_1001 ul, 
#vsb_content_1001 ol {
    margin: 12px 0 12px 2em;
    padding: 0;
}

#vsb_content_1001 li {
    line-height: 1.8;
    font-size: 16px;
    color: #444;
    margin: 6px 0;
}

/* 补充：引用样式 */
#vsb_content_1001 blockquote {
    border-left: 4px solid #1e50a2;
    padding: 10px 15px;
    margin: 15px 0;
    background-color: #f9fafc;
    font-size: 15px;
    color: #555;
}