/* 公用布局样式 */
html {
    font-size: 14px;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "PingFang SC", Roboto, "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "Myriad Pro", "Hiragino Sans", "Yu Gothic", "Lucida Grande", sans-serif;
}
body * {
    box-sizing: border-box;
    flex-shrink: 0;
}

body {
    font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
        Arial, PingFang SC-Light, Microsoft YaHei;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

button:active {
    opacity: 0.6;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}
/* normalize 样式 */
p {
    margin: 0px;
}
ul li {
    font-size: 15px;
    text-indent: 1px;
    line-height: 23px;
    padding: 4px 0;
}
ol li {
    font-size: 15px;
    text-indent: 1px;
    line-height: 23px;
    padding: 4px 0;
}
img {
    margin-top: 16px;
}

/* 制定界面统一的样式类 */
/* 整个页面规范 */

/* 页面主标题 */
.mainTitle {
    font-size: 20px;
    line-height: 23px;
    padding: 8px 0;
}
/* 页面主标题其他颜色 */
.titleStyle {
    overflow-wrap: break-word;
    white-space: nowrap;
    font-weight: 23px;
    color: #1f2125;
}
/* 分类标题：大的分组和分类 */
.cateSub {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
}
/* 二级标题：步骤、属于介绍等 */
.secTitle {
    font-size: 15px;
    line-height: 24px;
    padding: 4px;
}
/* 段落标题：自然段、有序列表、无序列表 */
.paramTitle {
    font-size: 15px;
    line-height: 24px;
    padding: 40px 0;
}
/* 统一表格样式 */
/* 主标题下面时间处理 */
.publishTime {
    font-size: 15px;
    padding: 10px 14px;
    color: #6d6f73;
}
/* 普通段落的样式 */
.paragraph {
    font-size: 15px;
    padding: 4px 14px;
    line-height: 20px;
    color: #6d6f73;
}
.paragraph .right-txt {
	position: relative;
	padding-left: 0.2rem;
}
/* 列表样式 */
.orderList {
    font-size: 15px;
    padding: 4px 14px;
    line-height: 20px;
}
/* 无序列表 */
.disorderList {
    font-size: 15px;
    padding: 4px 14px;
    line-height: 20px;
}
/* 二级标题 -- 相同段落间距与不同段落间距不同功能 */
.sameSegment {
    margin-bottom: 28px;
}
.sameSegment .secParagraph {
    font-size: 15px;
    line-height: 24px;
    padding: 0px 20px 0px 20px;
}
.sameSegment .secParagraph>p {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
    color: #1f2125;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}
.sameSegment .secParaphs>p{
    padding: 3px 0 16px 0;
}
.sameSegment .secParaphs>p span{
    font-size: 15px;
    line-height: 23px;
    padding: 4px 0;
    color: rgba(31, 33, 38, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}
.col1 {width: 200px;}
.col2 {width: 500px;}
.col3 {width: 500px;}
.col4 {width: 300px;}
.col5 {width: 100px;}
/* 表格的通用样式 */
.commonTable {
    width: 100%;
    font-size: 17px;
    line-height: 23px;
    overflow-y: scroll;
    padding: 13px 0 13px 14px;
}
table {
    min-width: 1200px;
}
table.gridtable {
    font-family: verdana,arial,sans-serif;
    font-size: 14px;
    color:#333333;
    border-width: 1px;
    border-color: #e0e0e0;
    border-collapse: collapse;
}
table.gridtable th {
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    border-color: #e0e0e0;
}
table.gridtable td {
    border-width: 1px;
    border-style: solid;
    color: #6d6f73;
    border-color: #e0e0e0;
    padding: 2px 4px 2px 0px;
}
table::-webkit-scrollbar{
    display:none
}
/* 统一a标签样式 */
a{
    color: #6179F2;
    text-decoration: none;
    background-color: transparent;
}
/* 清单中存在加粗和加重 */
.important {
    font-weight: bold;
    color: #1f2125;
}