html,
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
fieldset,
input {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color:#3D3D3D;
}
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
address,
caption,
cite,
code,
table,
th,
td {
    font-style: normal;
    font-weight: normal;
}

ul,
ol {
    list-style: none outside none;
}
fieldset,
img {
    border: medium none;
    vertical-align: text-bottom;
}
a:-webkit-any-link,
a{
    text-decoration: none;
    color: inherit; /* 继承父级颜色，去掉默认蓝色 */
}
/* 如果想完全重置所有状态（包括点击前后），可以加上： */
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
}
button{
    outline: none;
    border: none;
}
.clear{
    clear:both;
}
.fw700{
    font-weight: 700;
}
.ft14{
    font-size: 14px;
}
.ft12{
    font-size: 12px;
}
.ft16{
    font-size: 16px;
}
.ft10{
    font-size: 10px;
}
.ellipsis_two {
  display: -webkit-box;
  -webkit-line-clamp: 2;          /* 限制显示的行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;        /* 超出显示省略号 */
  width: 100%;
  word-wrap: break-word;
}
.ellipsis_three {
  display: -webkit-box;
  -webkit-line-clamp: 3;          /* 限制显示的行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;        /* 超出显示省略号 */
  width: 100%;
}
.icon{
    width: 28px;
    height: 28px;
}
.ellipsis{
  width: 100%;              /* 必须设置宽度 */
  white-space: nowrap;       /* 强制文本不换行 */
  overflow: hidden;          /* 隐藏溢出内容 */
  text-overflow: ellipsis;   /* 超出显示省略号 */
}

.fl{
    float: left;
} 
.fr{
    float:right;
}
.line_title:hover{
    cursor: pointer;
    text-decoration: underline;
}
.s_icon{
    width: 20px;
    height: 20px;
}

.text-c{
    width: max-content;
    margin:0 auto;
}
.total{
    color:#4B5563;
    margin-right:10px;
}
.num{
    width:40px;
    height:40px;
    border:1px solid #D1D5DB;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    color:#000;
    border-radius: 5px;
    cursor: pointer;
}
.num:hover,.num.active{
    background-color: #70B603;
    color:#fff;
}
.page_num{
    width:32px;
    height:40px;
    border:1px solid #D1D5DB;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    color:#000;
    border-radius: 5px;
    cursor: pointer;
}
.fw500{
    font-weight: 500;
}
.fw600{
    font-weight: 600;
}
.ellipsis_four {
  display: -webkit-box;
  -webkit-line-clamp: 4;          /* 限制显示的行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;        /* 超出显示省略号 */
  width: 100%;
}