html{
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
	font-size: 20px;
	margin: 0;
}

@media (min-width: 400px) {
  html {
    font-size: 21.33333333px !important;
  }
}
@media (min-width: 414px) {
  html {
    font-size: 22.08px !important;
  }
}
@media only screen and (min-width: 480px) {
  html {
    font-size: 25.6px !important;
  }
}
*{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
	-webkit-user-select: none;
    outline: none;

    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
}
body{
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #333;
    background-color: #FFFFFF;
    -webkit-overflow-scrolling: touch;
	margin: 0;
}
a{
    color: #333;
	text-decoration: none;
}
a:active{
    color: #333;
}
.container{width: 100%; max-width: 750px;margin: auto;}
.banner img{width: 100%;}
.m-newslist{
	padding: 0px 15px;
}
.m-newslist .media{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10px;
	margin-top: 10px;
	position: relative;
}
.m-newslist .media:after{
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 0;
	left: 0px;
	height: 1px;
	content: '';
	-webkit-transform: scaleY(.5);
	transform: scaleY(.5);
	background-color: #e9eaec;
}
.m-newslist .media:last-child:after{
	height: 0px;
}
.m-newslist .media:hover,
.m-newslist .media:focus{color: #333;}
.m-newslist .media-img{
	width: 7rem;
	height: 4.75rem;
	margin-left: 0.5rem;
}
.m-newslist .media-body{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 4.75rem;
}
.m-newslist .media-heading{
	font-size: 0.8rem;
	line-height: 1.5;
	font-weight: normal;
	margin: 0;
	padding: 0;
}
.m-newslist .media-foot{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.m-newslist .media-foot span,
.m-newslist .media-foot time{
	font-size: 0.6rem;
	color: #999;
	line-height: 1;
	margin: 0;
	padding: 0;
}
/* 加载中 */
.loading{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 2.5rem;
	background: #FFFFFF;
}
.loading-text{
	font-size: 0.7rem;
}
@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: 2px solid #f90;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
  animation: spinner-border .75s linear infinite;
  margin-right: 10px;
  
}