/**
*=================================
* 默认主题
*=================================
*/
/**
*=================================
* 文本字体颜色class
*=================================
*/
/**
*=================================
* 选中颜色class
*=================================
*/
a.active {
  color: #008CE9;
}

a {
  color: #1B2F4A;
}

/**
*=================================
* 各类hover
*=================================
*/
.hover {
  color: #008CE9 !important;
}

/**
*=================================
* 各类背景图替换
*=================================
*/
/**
*=================================
* 公共区
*=================================
*/
/* 添加边框 */
/* 添加字体描边 */
/**
*=================================
* 超过文本
*=================================
*/
.overflow-ellipsis {
  white-space  : nowrap;
  overflow     : hidden;
  text-overflow: ellipsis;
}

/* 旋转 */
.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;
}

/* 滚动条样式 */
.container-detail::-webkit-scrollbar {
  width : 10px;
  height: 24px;
}

/*设置滚动条上的滚动滑块样式*/
.container-detail::-webkit-scrollbar-thumb {
  background: #008CE9;
}

/*鼠标位于内容上时，滚动条样式*/
.container-detail:hover::-webkit-scrollbar {
  width        : 10px;
  height       : 24px;
  background   : #DDDDDD;
  border-radius: 6px;
}

/*鼠标位于内容上时，滚动滑块样式*/
.container-detail:hover::-webkit-scrollbar-thumb {
  background   : #008CE9;
  border-radius: 10px;
}

.information-warpper {
  width          : 1200px;
  margin         : 40px auto;
  display        : flex;
  justify-content: space-between;
}

.information-warpper .container {
  width         : 792px;
  display       : flex;
  flex-direction: column;
}

/* 主体区域 - 头部banner */
.container-banner {
  width      : 792px;
  height     : 44px;
  display    : flex;
  padding    : 10px 0;
  box-sizing : border-box;
  color      : #FFFFFF;
  align-items: center;
}

.container-banner .title {
  font-size  : 44px;
  color      : #1B2F4A;
  font-weight: bold;
}

.container-banner .label {
  display    : flex;
  margin-left: 24px;
  max-width  : 490px;
  overflow   : hidden;
  flex-wrap  : wrap;
  height     : 47px;
}

.container-banner .label a {
  padding      : 8px 20px;
  border-radius: 100px;
  border       : 1px solid #008CE9;
  box-sizing   : border-box;
  color        : #008CE9;
  font-size    : 16px;
  margin-bottom: 8px;
  margin-left  : 16px;
  margin-top   : 10px;
  max-width    : 150px;
  overflow     : hidden;
  text-overflow: ellipsis;
  white-space  : nowrap;
}

/* 主题区域 - 资讯 */
.container-detail {
  width         : 752px;
  padding       : 0 18px;
  height        : 1724px;
  display       : flex;
  flex-direction: column;
  background    : #FFFFFF;
  border-radius : 8px;
  box-shadow    : 0px 0px 20px rgba(55, 55, 55, 0.16);
  margin-top    : 24px;
}

.container-detail .content {
  width        : 752px;
  max-height   : 1580px;
  overflow     : hidden;
  box-sizing   : border-box;
  border-bottom: 1px solid #999999;
}

.container-detail .content .detail {
  display    : flex;
  padding    : 18px 0;
  align-items: center;
}

.container-detail .content .detail .title {
  color        : #1B2F4A;
  font-size    : 16px;
  max-width    : 436px;
  white-space  : nowrap;
  overflow     : hidden;
  text-overflow: ellipsis;
  flex         : 0.579;
}

.container-detail .content .detail .title:hover {
  color: #008CE9;
}

.container-detail .content .detail .label-list {
  display    : flex;
  margin-left: 30px;
  flex       : 0.4;
  align-items: center;
}

.container-detail .content .detail .label-list p {
  font-size: 14px;
  color    : #999999;
}

.container-detail .content .detail .label-list .label {
  display  : flex;
  flex-wrap: wrap;
  max-width: 253px;
  overflow : hidden;
}

.container-detail .content .detail .label-list .label a {
  max-width    : 68px;
  font-size    : 12px;
  color        : #008CE9;
  margin-left  : 10px;
  white-space  : nowrap;
  overflow     : hidden;
  text-overflow: ellipsis;
  padding      : 4px 10px;
  border-radius: 100px;
  background   : #cce8fb;
  box-sizing   : border-box;
}

.container-detail .content .detail .video-btn {
  width     : 32px;
  height    : 32px;
  background: url("../../../images/four/video-play-icon-32.png") no-repeat;
  flex      : 0.05;
}

/* 侧边栏区域 */
.aside {
  width         : 384px;
  display       : flex;
  flex-direction: column;
  margin-left   : 40px;
}

.related-match {
  margin-bottom: 0px;
}

.hot-news {
  position  : relative;
  margin-top: 50px;
}

.hot-news-info-wrap {
  width         : 344px;
  box-shadow    : 0px 0px 20px rgba(0, 0, 0, 0.16);
  background    : #FFFFFF;
  border-radius : 8px;
  margin-top    : 45px;
  padding       : 0 20px;
  /* display    : flex;
  flex-direction: column; */
  max-height    : 580px;
  overflow      : auto;
}

.hot-news-info-wrap .hot-news-info {
  display       : flex;
  flex-direction: column;
  width         : 344px;
  max-height    : 520px;
  overflow      : hidden;
}

.hot-news-info-wrap .hot-news-info .hot-news-info-details {
  display      : flex;
  box-sizing   : border-box;
  padding      : 24px 0;
  border-bottom: 1px solid #999999;
  align-items  : center;
}

.hot-news-info-wrap .hot-news-info .hot-news-info-details .hot-news-leauge {
  margin-right : 10px;
  color        : #008CE9;
  font-size    : 12px;
  padding      : 0 0;
  border-radius: 4px;
  background   : #cce8fb;
  box-sizing   : border-box;
  width        : 60px;
  overflow     : hidden;
  white-space  : nowrap;
  text-overflow: ellipsis;
  height       : 22px;
  line-height  : 22px;
  text-align   : center;
}

.hot-news-info-wrap .hot-news-info .hot-news-info-details a {
  width        : 290px;
  font-size    : 16px;
  color        : #1B2F4A;
  white-space  : nowrap;
  overflow     : hidden;
  text-overflow: ellipsis;
  cursor       : pointer;
}

.hot-news-info-wrap .hot-news-info .hot-news-info-details a:hover {
  color: #008CE9;
}

.more-btn {
  color        : #008CE9;
  padding      : 11px 0;
  border-radius: 4px;
  border       : 1px solid #008CE9;
  box-sizing   : border-box;
  text-align   : center;
  cursor       : pointer;
  margin       : 24px 0;
  display      : block;
}


div::-webkit-scrollbar {
  display: none;
}

div:hover::-webkit-scrollbar {
  display: none;
}

div {
  scrollbar-width: none;
}