html,body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background-repeat: no-repeat;
    background: url(../../img/bg2mb.png) no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    display: flex;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

#header{
    font-size: 16px;
    z-index: 9999;
    position: fixed;
    height: 45px;
    background: url(../../img/bg4.png);
    line-height: 45px;
    display: flex;
    width: 100%; 
    color: #ffffff;
    box-shadow: 0px 8px 12px -14px;
    align-items: center;
    align-content: center;
}
#header>h3{
    padding-left: 10px;
    user-select: none;
}


.article{
    width: 100%;
    /* background: #3579a1; */
    padding: .50rem .62rem;
    flex-direction: column;
    display: flex;
    /* border-bottom: 1px solid rgb(204 204 204); */
}

.article_title{
    width: 100%;
    height: auto;
    /* background: black; */
    font-weight: 600;
    display: flex;
    min-height: 1rem;
    padding-left: 20px;
}

.article_body{
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    min-width: 100%;
    min-height:4rem;
}

.article_body_img{
    height: 100%;
    width: 8rem;
    box-sizing: border-box;
    margin-right: 0.5rem;
}
.article_body_div{
    flex:1;
    box-sizing: border-box;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
}
.article_body_div_bar1{
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    /* 不换行 */
    /* white-space: nowrap; */
    color: #3e3e3e;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    user-select: unset;
}
.article_body_div_bar2{
display: flex;
text-align: center;
}
/* 禁止用户选中字体 */
.select_none{
    -webkit-touch-callout: none;
    -webkit-user-select:none; /*webkit浏览器*/
    -khtml-user-select:none; /*早期浏览器*/
    -moz-user-select:none; /*火狐*/
    -ms-user-select:none; /*IE10*/
    user-select: none;
}



* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-ms-touch-action: none;
}

body,ul,li {
	padding: 0;
	margin: 0;
	border: 0;
}

body {
	font-size: 12px;
	font-family: ubuntu, helvetica, arial;
	overflow: hidden; /* this is important to prevent the whole page to bounce */
}

#footer {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 48px;
	background: #444;
	padding: 0;
	border-top: 1px solid #444;
}

#wrapper {
	position: absolute;
	z-index: 1;
	top: 47px;
	bottom: 48px;
	left: 0;
	width: 100%;
	background: #ebecf1;
	overflow: hidden;
}

#scroller {
	position: absolute;
	z-index: 1;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	width: 100%;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-o-text-size-adjust: none;
	text-size-adjust: none;
    display: flex;
}

.articles_  {
	list-style: none;
	padding: 0;
    list-style: none;
    margin: auto;
    width: 100%;
    text-align: left;
    max-width: 960px;
    background: white;
}

.articles_ li {

	height: fit-content;
	/* border-bottom: 1px solid #ccc; */
	/* border-top: 1px solid #fff; */
	background-color: #fafafa;
	font-size: 14px;
}

.buttom_link{
    flex-direction: column  !important;
    align-items: center !important;

    width:auto; display: flex; justify-content: center;
}