﻿@import url(index.css);
.page-flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.page-just-center {
  -webkit-justify-content: center;
  justify-content: center;
  -moz-box-pack: center;
  -webkit--moz-box-pack: center;
  box-pack: center;
}
.page-just-between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-box-pack: space-between;
  -webkit--moz-box-pack: space-between;
  box-pack: space-between;
}
.right-float {
  display: none;
}
.header {
  height: 40px;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #dcdcdc;
}
.header ul {
  display: block;
  margin: 0 40px;
  width: 100%;
}
.header ul li {
  display: inline-block;
  width: 32%;
  text-align: center;
}
.header li.active a {
  opacity: 1;
  color: #2a7fff;
  text-align: center;
  display: block;
}
.header li.active a {
  border-bottom: 2px solid #2a7fff;
  display: inline-block;
  padding: 0 15px;
  font-weight: bold;
}
.header img {
  /*margin-top: 13px;*/
  width: 16px;
  height: 14px;
}
.header a {
  font-size: 14px;
  line-height: 40px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.news-list {
  color: #4b4948;
  font-size: 16px;
  margin-top: 10px;
}
.news-list .news-item {
  padding: 11px 7px 20px 7px;
  border-bottom: 1px solid #dcdcdc;
  display: block;
}
.news-list .news-item img {
  width: 100%;
  margin-top: 9px;
  margin-bottom: 8px;
}
.news-list .news-item-time {
  color: #ababab;
  font-size: 14px;
  margin-left: 13px;
}
.news-list .news-item-line {
  position: relative;
  height: 45px;
  width: 100%;
  line-height: 45px;
  border-bottom: 1px solid #dcdcdc;
}
.news-list .news-item-line .news-item-line-title {
  text-overflow: ellipsis;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  padding-left: 15px;
}
.news-list .news-item-line img {
  width: 12px;
  position: relative;
  top: 14px;
  right: 8px;
}
.show-more {
  color: #2a7fff;
  margin: 10px 0 10px 20px;
}
