.overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.overflow-ellipsis-overline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 旋转 */
.rotate {
  transform-origin: center center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transition: transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
}

.rotate-back {
  transform-origin: center center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transition: transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
}

body {
  background: #0C132A;
}

.information-warpper {
  width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.information-warpper .information {
  display: flex;
}

.information-warpper .information .container {
  width: 780px;
  display: flex;
  flex-direction: column;
  border: 1px solid #293048;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

/* 主体区域 - 头部banner */
.container-banner {
  width: 780px;
  max-height: 333px;
  display: flex;
  position: relative;
  padding: 40px 40px 40px 16px;
  border: 1px solid #293048;
  box-sizing: border-box;
}

.container-banner .title-bg {
  background: url("../images/hot-news-icon.png") no-repeat;
  width: 228px;
  height: 76px;
  position: absolute;
  left: 0;
  top: 40px;
}

.container-banner .label {
  display: flex;
  height: 60px;
  flex-wrap: wrap;
  color: #fff;
  font-size: 16px;
  margin-top: 16px;
  overflow: hidden;
  max-height: 240px;
  transition: 0.3s;
}

.container-banner .label span {
  width: 238px;
}

.container-banner .label li {
  width: 92px;
  height: 38px;
  border: 1px solid #9ea0aa;
  color: #9ea0aa;
  margin: 20px 0 0 24px;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
}

.container-banner .label li.active {
  color: #ff9900 !important;
  border-color: #FF9900 !important;
  background: #FF9900 !important;
}

.container-banner .label li a {
  color: #fff !important;
}

.container-banner .label li:hover {
  background: #ff9900;
  border: 1px solid #ff9900;
}

.container-banner .label li:hover {
  color: #fff !important;
}

.container-banner .label-open-icon {
  position: absolute;
  right: 15px;
  top: 83px;
  width: 24px;
  height: 24px;
  background: url("../images/label-open-icon.png") no-repeat;
  cursor: pointer;
}

/* 主题区域 - 资讯 */
.container-detail {
  /* max-height: 1842px; */
  width: 700px;
  padding: 0 40px 40px 40px;
  display: flex;
  flex-direction: column;
  /* overflow: hidden; */
}

.container-detail .content {
  width: 700px;
  margin: auto;
  display: flex;
  padding: 22px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #293048;
}

.container-detail .content .img a img {
  width: 220px;
  height: 126px;
  object-fit: cover;
}

.container-detail .content .detail {
  margin-left: 24px;
  height: 126px;
  width: 456px;
  position: relative;
}

.container-detail .content .detail .title a {
  font-size: 18px;
  max-width: 456px;
  color: #fff;
}

.container-detail .content .detail .title {
  max-width: 456px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.container-detail .content .detail .title:hover {
  color: #ff9900;
}

.container-detail .content .detail .text-detail {
  display: inline-block;
  width: 94%;
  height: 45px;
  max-height: 45px;
  line-height: 24px;
  font-size: 14px;
  margin-top: 20px;
  color: #9ea0aa;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.container-detail .content .detail .text-detail:hover {
  color: #9ea0aa !important;
}

.container-detail .content .detail a.go-detail {
  font-size: 14px;
  position: absolute;
  right: 0;
  bottom: 45px;
  color: #ff9900 !important;
}

.container-detail .content .detail .label {
  width: 320px;
  overflow: hidden;
  display: flex;
  margin-top: 22px;
}

.container-detail .content .detail .label li a {
  background: rgba(255, 153, 0, 0.2);
  font-size: 12px;
  padding: 4px 10px;
  color: #ff9900;
  margin-right: 10px;
  display: inline-block;
  max-width: 59px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.container-detail .content .detail .date {
  font-size: 12px;
  color: #9ea0aa;
  position: absolute;
  right: 0;
  bottom: 0;
}

/* 侧边栏区域 */
.aside {
  width: 380px;
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  padding: 3px;
  margin: 3px;
  text-align: center;
  margin-top: 20px;
}

.pagination li {
  border: 1px solid #9ea0aa;
  margin: 5px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 3px;
}

.pagination li:hover {
  border: 1px solid #ff9900;
  color: #ff9900;
}

.pagination li:active {
  border: 1px solid #ff9900;
  color: #ff9900 !important;
}

.pagination li a {
  display: inline-block;
  padding: 5px 15px;
  color: #9ea0aa;
}

.pagination li span {
  display: inline-block;
  padding: 5px 15px;
}

.pagination .disabled {
  color: #9ea0aa;
}

.pagination .actived {
  color: #fff !important;
  background: #ff9900 !important;
  border: 1px solid #ff9900;
}


/* 热门资讯标签 */
.hot-news .title,
.hot-video .title {
  font-size: 50px;
  font-weight: bold;
  color: #FFFFFF;
  margin-top: 40px;
}

.hot-news .title-bg,
.hot-video .title-bg {
  position: relative;
  top: -23px;
  z-index: -1;
}

.hot-news .hot-news-label,
.hot-video .hot-news-label {
  width: 350px;
  border: 1px solid #212840;
  padding: 24px 6px 24px 22px;
  overflow: hidden;
}

.hot-news .hot-news-label a {
  background: #3d2f23;
  color: #FF9900;
  padding: 5.5px 8px;
  margin-bottom: 16px;
  margin-right: 12px;
  display: inline-block;
  cursor: pointer;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.hot-video .hot-news-label a {
  background: #2b3055;
  color: #6e86dc;
  padding: 5.5px 8px;
  margin-bottom: 16px;
  margin-right: 12px;
  display: inline-block;
  cursor: pointer;
}

div::-webkit-scrollbar {
  width     : 0 !important;
  max-height: 0 !important;
  min-height: 0 !important;
}

div::-webkit-scrollbar {
  display: none;
}

div:hover::-webkit-scrollbar {
  display: none;
}

div {
  scrollbar-width: none;
}