﻿* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
body {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
}
td, th, caption {
  font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}
a {
  color: #555;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  border: none;
  vertical-align: middle;
}
ol, ul, li {
  list-style: none;
}
input, textarea, select, button {
  font: 14px "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
}
table {
  border-collapse: collapse;
}
html {
  overflow-y: scroll;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: inline-block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  *zoom: 1;
}

/*公共类*/
.fl {
  float: left
}
.fr {
  float: right
}
.al {
  text-align: left
}
.ac {
  text-align: center
}
.ar {
  text-align: right
}
.hide {
  display: none
}
.mc{
  margin: 0 auto;
}
.flex{
  display: -webkit-flex;
  display: flex;
}
.flex1{
  -webkit-flex: 1;
  flex: 1;
}
.flex-leftCenter{
  display:flex;
  align-items: center;
}
.flex-between{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-rightCenter{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.icon {
  width: 1em; height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
  font-size: 18px;
}
.al-center{
  align-items: center;
}
.over-hidden{
  overflow: hidden;
}
.text-overflow1{
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.text-overflow2{
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
}
.text-overflow3{
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient: vertical;
}
.left-item.active{
  color: var(--primary);
}
a:link{
  text-decoration:none;
}
a:visited{
  text-decoration:none;
}
a:hover{
  text-decoration:none;
}
a:active{
  text-decoration:none;
}
.c666 {
  color: #666;
}

.c333 {
  color: #333;
}

.c000 {
  color: #000;
}

.c999 {
  color: #999;
}
.c760{
  color: var(--primary);
}
.cfff {
  color: #ffffff;
}
.fz12{
  font-size: 12px;
}
.fz14{
  font-size: 14px;
}
.fz15{
 font-size: 15px;
}
.fz16{
  font-size: 16px;
}
.fz18{
  font-size: 18px;
}
.fz20{
  font-size: 20px;
}
.pad10{
  padding-left: 10px;
  padding-right: 10px;
}
.pad15{
  padding-left: 15px;
  padding-right: 15px;
}
.fbold{
  font-weight: bold;
}
.text-center{
  text-align: center;
}
/*提示样式*/
.alert {
  /*display: none;*/
  position: fixed;
  top: 10%;
  left: 50%;
  margin-left: -162.5px;
  min-width: 325px;
  z-index: 99999;
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}

.alert-success {
  color: #339933;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-danger {
  color: #CC3366;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/*公共样式*/
.header{
  position: fixed;
  top: 0;
  height: 80px;
  width: 100%;
  z-index: 999;
  min-width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 12px rgba(0,0,0,.3);
}
.header .logo{
  height: 55px;
  padding: 5px;
}
.header .logo82{
  width: 150px;margin-top: 2px;
}
 .header .flex-between{
   max-width: 100%;
   margin: 0 auto;
   height: 80px;
   padding: 0 24px;
 }
 .header .user-title{
   position: relative;
   cursor: pointer;
 }
 .header .user-accout{
   margin-right: 10px;
 }
.header .logout{
  display: none!important;
  width: 110px;
  position: absolute;
  left: 7px;
  top: 50px;
  display: block;
  z-index: 1001;
  padding: 7px 0;
  box-shadow: 0 3px 6px 0 rgba(0,0,0,.5);
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: display 2.5s ease-out;
  overflow: hidden;
  white-space: nowrap;
 }
.header .logout .logout-href{
  -webkit-transition: .3s;

  transition: display 2.5s ease-out;
  display: block;
  padding: 0 25px;
  line-height: 32px;
  color: #fff;
  min-width: 50px;
  text-align: left;
  margin: 0;
  font-size: 12px;
  /*color: rgba(110,116,130,.1);*/

}
.header .logout .logout-href:hover{
  background-color: rgba(225,225,225,.2);
}
.header .user-title{
  height: 60px;
  color: rgb(173, 177, 185);
  margin-left: 13px;
}
.header .user-title:hover .logout {
  display: block!important;
}
.content-panel{
  padding: 20px 0 0;
}
.user-title .iconfont.icon-gerenzhongxin{
  font-size: 20px;
}
.user-panel{
  padding: 23px 0;
  overflow: hidden;
  font-size: 16px;
}
.main{
  width: 100%;
  min-height: 685px;
  margin-top: 80px;
  padding-top: 30px;
  background: transparent;
  overflow: hidden;
}
.left_menu{
  width: 196px;
  padding-left: 40px;
  float: left;
}
.left_menu li{
  width: 196px;
  cursor: pointer;
}
.left_menu li a{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 30px;
  text-underline: none;
  -webkit-transition: .3s;
}
.left_menu li:hover >a,.left_menu li:hover .iconfont,.left_menu li.active,.left_menu li.active a{
  color: var(--primary);
}
.left_menu .iconfont{
  font-size: 25px;
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.user-content{
  width: 100%;
  margin: 0 auto;
}
.right_content{
  padding: 0 40px 20px;
  overflow: hidden;
}
.detail-title{
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 28px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.content-detail,.right_content .msg{
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px 0 rgba(0,0,0,.3);
  border-radius: 8px;
  padding: 40px;
  padding-bottom: 30px;
}
.right_content .msg{
  text-align: center;
  font-size: 16px;
}
.vertical-line{
  display: inline-block;
  width: 3px;
  height: 22px;
  background-color: #C5C5C5;
  margin-right: 20px;
}
.header .message-wrap{
  cursor: pointer;
  position: relative;
  height: 30px;
  width: 30px;
}
.header .num{
  background-color: #ff2f4f;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  height: 18px;
  line-height: 17.5px;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 7px;
  right: 10px;
  transform: translateY(-50%) translateX(100%);
  min-width: 19px;
  min-height: 18px;
  z-index: 2;
  display: none;
}
.slider-box{
  width: 380px;
  height: calc(100% - 80px);
  position: fixed;
  top: 80px;
  right: -500px;
  /* right: 0px; */
  transition: all .3s;
  box-shadow: 0px -3px 24px 0px rgba(0,0,0,.5);
  background: rgba(20, 20, 35, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 998;
  overflow: hidden;
}
.sliderBg{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
}
.slider-box .btn-wrap{
  border-bottom: 1px solid #f3f0f0;
  padding:  0 15px;
}
.slider-box .btn-wrap .tab-btn{
  border-bottom: 1px solid var(--primary);
  line-height: 40px;
  font-size: 16px;
  padding: 0 10px;
  color: var(--primary);
}
.slider-box .btn-wrap .btn,.slider-box .detail-wrap .back-btn{
  font-size: 12px;
  color: #c0c6d0;
  padding: 0 11px;
  line-height: 22px;
  cursor: pointer;
  border-radius: 3px;
}
.slider-box .mcontent{
  position: relative;
  height: 100%;
}
.slider-box .detail-wrap,.slider-box .mlist-wrap{
  width: 380px;
  position: absolute;
  top: 0;
  transition: all .3s;
}
.slider-box .mlist-wrap{
  right: 0;
  overflow-y: scroll;
  height: 100%;
  padding-bottom: 60px;
}
.slider-box .mlist-wrap::-webkit-scrollbar{
  width:6px
}
.slider-box .mlist-wrap::-webkit-scrollbar-thumb{
  background:#262835 !important;border-radius:99px;
}
.slider-box .detail-wrap{
  padding: 15px;
  right: -500px;
}
.slider-box .detail-wrap .back-btn{
  margin-bottom: 12px;
  padding: 0;
  text-align: left;
  margin-left: -2px;
}
.slider-box .detail-wrap .back-btn .iconfont{
  font-size: 12px;
  margin-right: 2px;
}
.mlist-wrap .mitem{
  padding: 15px;
  cursor: pointer;
}
.mlist-wrap .mitem.read1{
  opacity: .7;
}
.mlist-wrap .status{
  display: block;
  width: 8px;
  height: 8px;
  background: #ff2f4f;
  border-radius: 50%;
}
.mlist-wrap .read1 .status{
  background: #09bb06;
}
.mlist-wrap .category{
  margin: 0 15px;
}
.mlist-wrap .des-wrap{
  width: 213px;
  margin-right: 13px;
}
.mlist-wrap .title,.mlist-wrap .des{
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mlist-wrap .des,.detail-wrap .des{
  font-size: 12px;
  color: #afafb2;
  line-height: 19px;
}
.detail-wrap .des{
  color: #8f8f92;
  font-size: 14px;
  text-align: justify;
  margin: 10px 0 8px;
  text-indent: 29px;
}
.mlist-wrap .title,.detail-wrap .title{
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.mlist-wrap .time,.detail-wrap .created_time{
  color: #d2d2d2;
}
.created_time{
  display: none;
}
.detail-wrap .created_time{
  display: block;
  text-align: right;
}
.detail-wrap .title{
  font-size: 15px;
}
.empty-wrap{
  text-align: center;
  color: #cfd1d0;
  margin: 230px auto;
  width: 112px;
}
.empty-wrap .des-empty{
  margin-top: 8px;
}