/**
*=================================
* 默认主题
*=================================
*/
/**
*=================================
* 文本字体颜色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;
}

.com-bread-crumbs {
  width : 740px;
  margin: 25px 0 14px 0;
  color : #FFFFFF;
}

.information-warpper {
  width          : 1200px;
  margin         : auto;
  display        : flex;
  justify-content: space-between;
}

.information-warpper .container {
  width         : 752px;
  display       : flex;
  flex-direction: column;
  padding-bottom: 40px;
}

/* 资讯详情 */
.news-detail-content {
  width        : 752px;
  background   : #FFFFFF;
  padding      : 40px 20px 20px 20px;
  border-radius: 8px;
  box-shadow   : 0px 0px 20px rgba(55, 55, 55, 0.16);
  margin-bottom: 20px;
}

.news-detail-content .title {
  font-size    : 28px;
  font-weight  : bold;
  line-height  : 48px;
  margin-bottom: 19px;
  color        : #000;
}

.news-detail-content .detail-info {
  color: #999999;
}

.news-detail-content .content {
  margin-top: 23px;
}

.news-detail-content .content center,
.news-detail-content .content p {
  font-size   : 14px;
  color       : #666666;
  line-height : 28px;
  table-layout: fixed;
  word-break  : break-all;
}

.news-detail-content .content center img,
.news-detail-content .content p img {
  border-radius: 8px;
  margin       : 20px 0;
  object-fit   : contain;
  max-width    : 100%;
}

.news-detail-content .label {
  display   : flex;
  margin-top: 40px;
  flex-wrap : wrap;
}

.news-detail-content .label li {
  font-size    : 12px;
  margin       : 0 10px 10px 0;
  max-width    : 740px;
  white-space  : nowrap;
  overflow     : hidden;
  text-overflow: ellipsis;
  padding      : 4px 10px;
  border-radius: 4px;
  background   : #cce8fb;
  box-sizing   : border-box;
}

.news-detail-content .label li a {
  color: #008CE9;
}

/*资讯分页*/
.news-detail-paging {
  font-size  : 16px;
  line-height: 30px;
  margin-top : 20px;
}

/* 侧边栏区域 */
.aside {
  width         : 380px;
  display       : flex;
  flex-direction: column;
  margin-left   : 20px;
}


div::-webkit-scrollbar {
  display: none;
}

div:hover::-webkit-scrollbar {
  display: none;
}

div {
  scrollbar-width: none;
}