.channelInfo {
  width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  background: #fafcff;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* 左侧菜单 */
.leftMenuBox {
  width: 160px;
}
.leftMenuBox .menuList{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height:48px;
  padding:10px 20px;
  margin:5px 0;
  background: #F5F9FF;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  line-height: 48px;
  cursor: pointer;
}
.leftMenuBox .menuList:first-child{
  margin-top:0px;
}
.leftMenuBox .menuList:last-child{
  margin-bottom:0px;
}
.leftMenuBox .menuList.active{
  background: #0B5FD5;
  color: #FFFFFF;
}

.leftMenuBox .menuList .rightImg{
  display: none;
}
.leftMenuBox .menuList.active .rightImg{
  display: block;
}

.leftMenuBox .menuList p {
  white-space: nowrap; 
  overflow: hidden;
  text-overflow:ellipsis;
}
/* 左侧菜单 over */

.content_rt {
  flex: 1;
  margin-left: 30px;
}

/* tabs菜单 */
.tabMenuListBox{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.tabMenuList{
  height:32px;
  box-sizing: content-box;
  padding:10px;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 32px;
  border-bottom: 3px solid #fff;
  cursor: pointer;
  margin:0 25px;
}
.tabMenuList.active{
  color: #0B5FD5;
  border-bottom: 3px solid #0B5FD5;
}
/* tabs菜单 over */

.contentManage{
  background-color: #FAFCFF;
}
/* tag菜单 */
.tagMenuListBox{
  /* display: flex;
  align-items: center; */
  width: 970px;
  margin-top:30px;
  position: relative;
  overflow: hidden;
}
.tagMenuListContentBox{
  /* display: flex; */
  position: relative;
  transition: .3s all linear;
}
.tagTable{
  /* display: flex;
  flex-wrap: wrap; */
  width:970px;
  padding:0 20px;
}
.tagMenuList{
  width:120px;
  height: 32px;
  padding:0px 20px;
  margin:5px 15px;
  line-height: 32px;
  font-size: 16px;
  /* font-weight: 600; */
  text-align: center;
  color: #666666;
  background: #EEEEEE;
  cursor: pointer;
}
.tagMenuListBox .tagMenuList p {
  white-space: nowrap; 
  overflow: hidden;
  text-overflow:ellipsis;
}
.tagMenuList.active{
  background: #0B5FD5;
  color: #FFFFFF;
}
/* tag菜单 over */

/* 列表 */
.contentBox {
  min-height: 429px;
  margin-top:20px;
}
.contentBox > li {
  font-size: 16px;
  /*font-weight: 400;*/
  text-align: left;
  color: #323232;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}

.contentBox > li:hover {
  color: #0B5FD5;
}
.contentBox > li:hover:before {
  background-color: #0B5FD5;
}

.contentBox > li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #323232;
  border-radius: 2px;
  position: absolute;
  left: 12px;
  top: 18px;
}
.contentBox > li > span:first-child {
  display: inline-block;
  width: 90%;
  /*font-weight: 600;*/
  cursor: pointer;
}
.contentBox > li > span:first-child > a {
  cursor: pointer;
  color: #323232;
}
.contentBox > li > span:first-child > a:hover {
  text-decoration: none;
  color: #0b5fd5;
}
.contentBox > li > span:last-child {
  display: inline-block;
  width: 10%;
  text-align: right;
  color: #cccccc;
}

/* 图解样式 */
.contentBox .tjBox{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contentBox .tjBox .tjList{
  cursor: pointer;
  margin:5px 20px;
  width: 280px;
}
.contentBox .tjBox .tjList .tjImg{
  width: 280px;
  height: 185px;
}
.contentBox .tjBox .tjList .tjImg img{
  width:100%;
  height:100%;
}
.contentBox .tjBox .tjList .tjTitleBox{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top:10px;
  width: 280px;
}
.tjTitleBox .tjTimer{
  width:65px;
  color: #666666;
  text-align: center;
}
.tjTitleBox .tjTimer p:first-child{
  font-size: 16px;
}
.tjTitleBox .tjTimer p:last-child{
  font-size: 10px;
}
.tjTitleBox .tjTitle{
  flex: 1;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow:ellipsis;
}
.contentBox .tjBox .tjList .source{
  margin-top:10px;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow:ellipsis;
}
/* 图解样式 over */
/* 列表 over */


#pagination {
  width: 100%;
  height: 84px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#pagination > a,
#pagination > span {
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  margin-right: 10px;
  color: #000;
}
#pagination .active {
  background: #0b5fd5;
  border-radius: 4px;
  color: #fff;
}
#pagination .total {
  margin-right: 15px;
  border: none;
}
.noData {
  color: #666;
  font-size: 14px;
  padding: 20px;
}

