* {
  margin: 0;
  padding: 0;
}
body {
  max-width: 1920px;
  margin: 0 auto;
  font-size: 0.18rem;
  color: #fff;
}
.page {
  overflow: hidden;
  position: relative;
}
ul.li {
  list-style: none;
}
a {
  text-decoration: none; /* 去除默认的下划线 */
  outline: none; /* 去除旧版浏览器的点击后的外虚线框 */
  color: #fff; /* 去除默认的颜色和点击后变化的颜色 */
}
/*正常的未被访问过的链接*/
a:link {
  text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
  text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
  text-decoration: none;
}
/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
  text-decoration: none;
}
/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
  text-decoration: none;
}

/* 自定義全局樣式 */
.flex-ai-center {
  display: flex;
  align-items: center;
}
.flex-jc-sb {
  justify-content: space-between;
}
.list-content-text {
  overflow: hidden;
  white-space: nowrap; /*当子元素超过父元素宽度的时候，不会折行*/
  text-overflow: ellipsis;
}
.pointer {
  cursor: pointer;
}
/* 默认去除所有元素的点击背景颜色 */
* {
  -webkit-tap-highlight-color: transparent; /* Safari 和 Chrome 移动端浏览器 */
  -moz-tap-highlight-color: transparent; /* Firefox 移动端浏览器 */
  -ms-tap-highlight-color: transparent; /* IE 移动端浏览器 */
  -o-tap-highlight-color: transparent; /* Opera 移动端浏览器 */
  tap-highlight-color: transparent; /* 标准语法 */
}
.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}



/* 主體 */
.main{
  width: 19.20rem;
  height: 19.20rem;
  background-image: url('../image/bg_news.jpg');
  background-size: 100%;
}

.tab-box{
  position: absolute;
  top: 5.5rem;
  width: 13.80rem;
  height: 10.30rem;
  background-image: url('../image/bg_news_tab.png');
  background-size: 100%;
  left: 50%;
  margin-left: -6.9rem;
  color: #EEDCAB;
  display: flex;
  align-items: flex-start;
}
.tab-box ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 0.1rem;
  box-sizing: border-box;
 
}

.tab-box li {
  width: 3.68rem;
  height: 1.4rem;
  line-height: 1.4rem;
  text-align: center;
  font-size: 0.36rem;
  font-weight: bold;
}

.tab-box li.active {
  background-size: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.main .list {
  padding-left: 0.5rem;
  margin-top: 0.45rem;
  box-sizing: border-box;
}
.main .list .time{
  font-size: 0.16rem;
  color: #fff;
}
.main .list .title {
  width:  6.78rem;
  height: 0.58rem;
  line-height: 0.58rem;
  background-image: url('../image/bg_list.png');
  background-size: 100%;
  padding-left: 0.4rem;
  margin: 0.1rem 0;
  margin-left: -0.4rem;
  
}
.main .list .subtitle{
  font-size: 0.16rem;
  color: #fff;
}

.main .list a {
  color: #EEDCAB;
}
.main .btn_more {
  width: 0.77rem;
  margin-top: 0.2rem;
  margin-left: 4.5rem;
}
.main .tab-content{
  width: 100%;
}
.main .tab-content .tab-content-item::-webkit-scrollbar{
  display: none;
}
.main .tab-content .tab-content-item {
  max-height: 9.7rem;
  overflow: auto;
  display: none;
  font-size: 0.3rem;
  box-sizing: border-box;
  margin: 0.2rem 0.5rem;
}
.main .tab-box div.active-txt {
  display: block;
}
.main .pagination{
  width: 3rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  color: #fff;
}
.main .pagination img{
  width: 0.17rem;
}
.main .empty{
  text-align: center;
  line-height: 9rem;
}


/* 文章詳情 */
.news-body{
  width: 13.8rem;
  height: 10.30rem;
  position: absolute;
  top: 5rem;
  background-image: url('../image/bg_dt.png');
  background-size: 100%;
  left: 50%;
  margin-left: -6.9rem;
  color: #EEDCAB;
  box-sizing: border-box;
  padding: 0.4rem;
  display: none;
}
.news-body .btn_back{
  width: 0.77rem;
}
.news-body .title{
  font-size: 0.4rem;
  text-align: center;
}
.news-body .subtitle{
  font-size: 0.2rem;
  text-align: center;
  color: #fff;
  margin-top: 0.1rem;
}
.news-body .dt_fgx{
  display: inline-block;
  width: 6.69rem;
  text-align: center;
  margin: 0.2rem auto;
  display: flex;
  justify-content: center;
}
.news-body .content{
  overflow-y: auto;
 margin-top: 0.8rem;
  color: #fff;
  max-height: 7.5rem;
  font-size: 0.2rem;
}
.news-body .content img{
  /* width: 100%; */
  max-width: 100%;
}
.news-body .content::-webkit-scrollbar{
  display: none;
}

