/* 全局去掉链接焦点黑框 */
a:focus,
a:active,
button:focus,
button:active,
div:focus,
li:focus,
img:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* 核心功能导航按钮样式 */
.nav-two {
    padding: 10px;
    background: #379CAE;
    color: white;
    border-radius: 8px;
    text-align: center;
    margin: 7px;
}

/* 全局ul默认样式重置：清除列表符号和内外边距 */
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 新闻列表项样式：单行省略、底部边框 */
.tab-news-li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 50px;
    border-bottom: 1px solid #ccc;
    position: relative;
}

/* 列表项前置小点样式 */
.min-dot {
    color: #379CAE;
    font-size: 16px;
}

/* 频道主标题样式：居中对齐 */
.index-channel-title {
    text-align: center;
}

/* 频道标题下划线样式：伪元素左右横线 */
.index-channel-title>a {
    position: relative;
}

.index-channel-title>a:after,
.index-channel-title>a:before {
    content: "";
    border-bottom: 1px solid #999999;
    position: absolute;
    width: 120px;
    top: 16px;
    right: -135px;
}

.index-channel-title>a:before {
    left: -135px;
}

/* PC端科室导航父/子项基础样式 */
.ksjs-ul li,
.ksjs-list li {
    display: inline-block;
    list-style: none;
    padding: 5px 16px;
    border: 1px solid #379CAE;
    border-radius: 3px;
    text-align: center;
    margin: 12px;
    font-size: 16px;
    min-width: 177px;
    cursor: pointer;
}

/* 科室子项展示样式：修改边框和宽边距 */
.ksjs-list li {
    border: 1px solid #555;
    min-width: 147px;
    margin: 12px 7px;
}

/* 科室子项容器样式：阴影、圆角、自适应宽度 */
.ksjs-list {
    width: 98%;
    min-height: 130px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    margin-left: 1%;
    box-shadow: 7px 5px 5px 1px #ddd;
}

/* 下拉菜单展开样式（预留注释） */
.open>.dropdown-menu {
    /*  margin-left: 10%;*/
}

/* 三栏资讯标题样式：左侧竖线、底部边框 */
.three-title {
    border-bottom: 1px solid #eee;
    color: #379CAE;
    padding-bottom: 6px;
    position: relative;
    margin-left: 10px;
    text-indent: 0.5rem;
}

/* 移动端下拉菜单样式：自定义宽高、阴影、层级 */
.dropdown-menu {
    min-width: 220px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 24px rgb(0 0 0 / 6%);
    box-shadow: 0px 6px 24px rgb(0 0 0 / 6%);
    border: 1px solid #f1f1f1;
    z-index: 101;
}

/* 三栏资讯标题左侧竖线：伪元素实现 */
.three-title:after {
    content: "";
    position: absolute;
    border-left: 3px solid #379CAE;
    left: -5px;
    height: 30px;
}        