* {
  margin: 0;
  padding: 0
}

body,
html {
  width: 100%;
  height: 100%
}

.colorR {
  color: red;
  font-size: 16px;
  text-indent: 0;
}

.fl {
  float: left;
}

.fw {
  font-weight: 700;
}

.containerBox {
  width: 100%;
  height: 100%;
  min-width: 1000px;
}

.containerBox .left {
  width: 290px;
  height: 100%;
  float: left;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  background: #EFEFF7;
}

.containerBox .left .header {
  width: 100%;
  height: 80px;
  /* line-height:80px; */
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  letter-spacing: 3px;
  background: #409EFF;
}

.containerBox .left .header img {
  width: 100px;
  margin-top: 7px;
}

.containerBox .left .content {
  width: 100%;
  padding: 0 10px 20px 10px;
  box-sizing: border-box;
}

.containerBox .right {
  width: calc(100% - 290px);
  float: right;
  overflow: auto;
  padding: 20px 50px;
  box-sizing: border-box;
}

.containerBox .right li {
  width: 100%;
  list-style: none;
  font-size: 16px;
  text-indent: 30px;
}

.containerBox .right li p {
  margin-top: 10px;
}

.containerBox .right li .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-indent: 0;
  margin-top: 50px;
}

.containerBox .right li:first-child .title {
  margin-top: 0;
}

.containerBox .right li .titleS {
  font-size: 18px;
  margin-top: 20px;
}

.containerBox .right li img {
  max-width: 90%;
  margin: 10px 0 0 30px;
}

.containerBox .right .flImg {
  margin: -5px 5px;
}

.containerBox .right .zxj img {
  width: 20px;
  height: 20px;
  margin: -5px 5px;
}

.containerBox .right .indent0 {
  text-indent: 0;
}

.containerBox .right li .active {
  color: #409EFF;
  font-weight: 700;
}

.containerBox .right li .imgBox {
  width: 100%;
  height: 290px;
}

.containerBox .top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 50px;
  text-align: center;
  bottom: 150px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 3px 3px 15px #888888;
}

.containerBox .top img {
  width: 40px;
  margin-top: 8px;
  cursor: pointer;
  animation: heart 1.3s ease-in-out infinite alternate;
}

.containerBox .tx5 {
  text-indent: 5em;
}

@keyframes heart {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(0, 6px)
  }
}

.el-table,
.el-table thead {
  font-size: 16px !important;
  color: #000 !important;
}

.el-table--border,
.el-table--group {
  border-color: #000 !important;
}

.el-table--border:after,
.el-table--group:after,
.el-table:before {
  background-color: #000 !important;
}

.el-table td,
.el-table--border th,
.el-table th.is-leaf {
  border-bottom-color: #000 !important;
}

.el-table--border td,
.el-table--border th {
  border-right-color: #000 !important;
}

.el-tree-node__label {
  font-weight: 700;
  font-size: 14px !important;
}

.el-tree-node:focus>.el-tree-node__content {
  background-color: #fff;
  color: #409eff;
}

/*修改滚动条样式*/
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: rgb(239, 239, 239);
}

::-webkit-scrollbar-thumb {
  background: #bfbfbf;
}