* {
  padding: 0;
  margin: 0;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/ 
::-webkit-scrollbar {
  width: 5px;
  height: 5px
}
/*定义滚动条轨道*/ 
::-webkit-scrollbar-track {
  background-color: transparent;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em
}
/*定义滑块 内阴影+圆角*/ 
::-webkit-scrollbar-thumb {
  background-color: #49aef6;
  /* background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.4) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.4) 75%,transparent 75%,transparent); */
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em
}

body{
  overflow: hidden;
}

.page .nav-left {
  position: absolute;
  top: 0;
  height: 100%;
  width: 200px;
  background-color: #FFFFFF;
  box-shadow: 10px 0px 17px rgba(72, 72, 72, 0.1);
  border-right: 1px solid #dddbdb;
}

.page .nav-left .LogoName {
  text-align: center;
  line-height: 64px;
  font-size: 20px;
  font-weight: 600;
  color: #6b6b6e;
  /* letter-spacing: 0.05em; */
  border-bottom: 1px solid #ede9e9;
}

.page .nav-left .navDiv{
  max-height: calc(100% - 64px);
  overflow: auto;
}

.page .nav-left .navDiv .navName {
  padding: 12px 20px !important;
  letter-spacing: 0.05em;
  font-size: 11px;
  color: #5a5454;
  font-weight: 700;
}

.page .nav-left .navDiv .nav-list ul .a_active {
  background-color: #f7f1f8;
  border-left: 4px solid #2587f4;
}

.page .nav-left .navDiv .nav-list ul .a_active .active {
  color: #088dda  !important;
  font-weight: 600;
  /* border-left: 6px solid #096bc0; */
}

.page .nav-left .navDiv .nav-list ul .nav-tab {
  list-style: none;
}

.page .nav-left .navDiv .nav-list ul .nav-tab .li-a {
  padding: 12px 15px 12px 15px !important;
  text-decoration: none;
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 14px;
  color: #5a5454;
}

.page .nav-left .navDiv .nav-list ul .nav-tab .li-a .bx {
  font-size: 17px;
  vertical-align: text-top;
  margin-right: 6px;
}

.page .nav-left .navDiv .nav-list ul .nav-tab .nav-box {
  height: 0;
  overflow: hidden;
}

.page .nav-left .navDiv .nav-list ul .nav-show .nav-box {
  height: auto !important;
  /* padding-bottom: 2px; */
  /* transition: all 0.6s; */
}

.page .nav-left .navDiv .nav-list ul .nav-show .nav-box a {
  padding: 6px 30px !important;
  text-decoration: none;
  display: block;
  font-size: 13px;
  color: #666;
  /* transition: all 0.3s; */
}

.page .nav-left .navDiv .nav-list ul .nav-show .nav-box a:hover {
  background-color: #dfdcf7;
}

.page .nav-left .navDiv .nav-list ul .nav-show .nav-box .active-li-a {
  background-color: #5fa6e6!important;
  color: #fff;
  font-weight: 600;
}

.page .nav-left .navDiv .nav-list .li-a:hover {
  color: #6d61ea!important;
}

.page .nav-right {
  display: flex;
  flex-direction: column;
  padding-left: 202px;
}

.page .nav-top {
  flex: 1;
  height: 60px;
  width: 100%;
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 10px 0px 17px rgba(72, 72, 72, 0.2);
}

.page .nav-top a{
  color:#898b8b;
  text-decoration: none;
  margin-right: 10px;
}

.page .nav-top a:hover{
  color:#0d7fd1;
}

.page .content-page {
  flex: 1;
  position: absolute;
  top: 65px;
  left: 205px;
  right: 0;
  bottom: 0;
  overflow: auto;
}

#main .left-content {
	height: calc(100vh - 62px);
	background: #efefef;
}

.left-content>div {
	font-size: 14px;
}

#main .right-content {
	height: calc(100vh - 62px);
	background: #fff;
}

.content-header{
  height: 30px;
  line-height: 30px;
  font-size: 18px!important;
  color: #666;
  background-color: #fff;
  border-bottom: 1px solid #eae9e9;
  text-align: left;
  text-indent: 5px;
}

.right-content iframe {
	width: 100%;
	height: calc(100% - 5px);
	border: none;
	margin: 0;
	padding: 0;
}

.code-tools {
	position: absolute;
	top: 2px;
	right: 4px;
	z-index: 99;
	font-size: 12px;
}

.code-tools li {
	list-style-image: none;
  list-style-type: none;
  float: right;
  margin-left: 5px;
  background-color: #6d61ea;
  padding: 4px 10px;
  border-radius: 15px;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
}

.code-tools li.gray{
  background-color: #dbd0d0;
}

.code-tools li.green{
  background-color: #7bb806;
}

.code-tools li:hover {
	background-color: #669211;
}