body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
form {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.wrapper {
  width: 90%;
  max-width: 1600px;
  /* min-width: 1000px; */
  height: 100%;
  margin: 0 auto;
}

header {
  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #dfe1e6;
  box-sizing: border-box;
}

header .logo_box {
  height: 100%;
  display: flex;
  align-items: center;
}

header .logo {
  height: 50px;
}

header .logo_box .line {
  margin: 0 20px;
}

.content {
  height: calc(100vh - 140px);
  background-color: #f5f5f6;
}

.content .wrapper {
  display: flex;
  color: #191919;
}

.content .wrapper .menu_content {
  width: 20%;
  max-width: 300px;
  height: calc(100vh - 140px);
  background-color: #fff;
  border-right: 1px solid #dfe1e6;
  box-sizing: border-box;
  position: relative;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
}

.content .wrapper .menu_content .fff {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: -100%;
}

.content .wrapper .menu_content h4 {
  padding: 30px 0;
}

.content .wrapper .menu_content ul {
  height: calc(100% - 100px);
  box-sizing: border-box;
  padding-right: 20px;
  overflow-y: auto;
}

.content .one_nav {
  display: flex;
  align-items: center;
}

.content .menu_content li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.content .one_nav img,
.content .one_nav span {
  margin-right: 5px;
}

.content .menu_content li p {
  flex: 1;
  padding: 5px 10px;
  box-sizing: border-box;
}

.content .menu_content li div {
  padding-left: 5px;
  border-radius: 4px;
}

.content .menu_content li div:hover {
  background-color: #f5f5f6;
}

.content .menu_content .active_li .one_nav span,
.content .menu_content .active_li .one_nav img {
  transform: rotate(180deg);
}

.content .menu_content ul ol {
  padding-left: 30px;
  margin: 10px 0;
  display: none;
}

.content .menu_content .active_li ol {
  display: block;
}

.content .menu_content .active_li ol .active_ol_li p {
  font-weight: 600;
  background-color: #f5f5f6;
}

.content .con_content {
  width: 80%;
  display: flex;
  box-sizing: border-box;
}

.content .con_content .con_con_con {
  width: 80%;
  height: calc(100vh - 140px);
  padding: 30px;
  box-sizing: border-box;
}

.content .con_content .con_con_con .bread_box {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.content .con_content .con_con_con .bread_box span {
  margin: 0 10px;
}

.content .con_content .con_con_con .bread_box .active {
  font-weight: 600;
}

.content .con_content .con_con_con .con_box {
  height: 95%;
  overflow-y: auto;
  border-radius: 16px;
  background-color: #fff;
  font-size: 16px;
  padding: 30px;
  box-sizing: border-box;
  margin-top: 20px;
}

.content .con_content .con_con_con .con_box li{
  margin-bottom: 20px;
}

.content .con_content .con_con_con .con_box li {
  margin-bottom: 20px;
}

.content .con_content .con_con_con .con_box li h2 {
  padding: 10px 0;
}

.content .con_content .con_con_con .con_box li>div {
  margin-bottom: 10px;
}

.content .con_content .con_con_menu {
  width: 180px;
  padding-top: 80px;
  position: fixed;
  top: 80px;
  right: 4vw;
}

.content .con_content .con_con_menu h4 {
  margin-bottom: 20px;
}

.content .con_content .con_con_menu ul li {
  display: flex;
  align-items: flex-start;
  padding-bottom: 30px;
  margin-top: 10px;
  position: relative;
}

.content .con_content .con_con_menu ul li::before {
  content: '';
  width: 1px;
  height: calc(100% - 18px);
  background-color: #DBDBDB;
  position: absolute;
  top: 24px;
  left: 4px;
}

.content .con_content .con_con_menu ul li:last-child::before {
  content: "";
  width: 0;
  height: 0;
}

.content .con_content .con_con_menu ul .active_li i {
  background-color: #191919;
}


.content .con_content .con_con_menu ul i {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #191919;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 5px;
}

.content .con_content .con_con_menu ul a {
  display: inline-block;
  width: 80%;
  color: #595959;
  text-decoration: none;
  font-size: 14px;
}

.content .con_content .con_con_menu ul .active_li a,
.content .con_content .con_con_menu ul a:hover {
  font-weight: 600;
  color: #191919;
}

footer{
  height: 60px;
  background-color: #f5f5f6;
}
footer .wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer p {
  font-size: 14px;
  color: #595959;
  text-align: center;
}

footer p a {
  font-size: 12px;
  color: #595959;
  text-decoration: none;
}

/* 隐藏滚动条 */
::-webkit-scrollbar {
  display: none;
}

/* 隐藏滚动条 */
.scrollable {
  scrollbar-width: none;
  /* Firefox */
}

/* 隐藏滚动条 */
.scrollable {
  /* 保持对 IE 和 Edge 的支持 */
  -ms-scrollbar-face-color: transparent;
  /* IE and Edge */
  scrollbar-face-color: transparent;
  /* Standard property for better compatibility */
  scrollbar-3dlight-color: transparent;
  /* IE and Edge */
  -ms-scrollbar-3dlight-color: transparent;
  /* IE and Edge */
}

/* 兼容标准和其他浏览器 */
::-webkit-scrollbar-face {
  /* Chrome, Safari, and newer browsers */
  background-color: transparent;
}

/* 保持滚动效果 */
.scrollable {
  overflow-y: scroll;
}

/* mobile */
.mask,
.mobile_menu_mask {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
}

.mask {
  z-index: 13;
}

.mobile_header {
  clear: both;
  width: 100%;
  height: 50px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  display: none;
}

.mobile_header_top {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 14;
  width: 100%;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(50, 50, 50, .2);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.mobile_logo {
  height: 50px;
  margin-left: 0;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
}

.mobile_logo .line {
  margin: 0 5px;
}

.mobile_logo img {
  height: 24px;
  width: auto;
}

.mobile_menu_btn {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  width: 54px;
  height: 52px;
  cursor: pointer;
}

.mobile_menu_btn .line {
  display: block;
  height: 3px;
  width: 25px;
  background: #191919;
  border-radius: 4px;
  margin-bottom: 6px;
}

.mobile_menu_btn .line:last-child {
  margin-bottom: 0;
}

.mobile_menu_box {
  position: fixed;
  right: -110%;
  top: 0;
  z-index: 15;
  width: 75%;
  height: 100%;
  background: #fff;
  padding: 20px 15px;
  overflow-y: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.mobile_menu_box.show {
  right: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.mobile_menu_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mobile_menu_box h2 {
  font-size: 18px;
}

.mobile_menu_box ul {
  max-height: 85vh;
  overflow-y: scroll;
}

.mobile_menu_box ul li {
  margin-bottom: 10px;
}

.mobile_menu_box ul li>div {
  display: flex;
}

.mobile_menu_box ul li>div p {
  font-size: 14px;
}

.mobile_menu_box ul li>div img {
  margin-right: 5px;
  transition: all 0.5s;
}

.mobile_menu_box ul li ol {
  font-size: 14px;
  padding-left: 20px;
  box-sizing: border-box;
  margin-top: 10px;
  display: none;
}

.mobile_menu_box ul .active_li img {
  transform: rotate(-180deg);
}

.mobile_menu_box ul .active_li ol {
  display: block;
}

.mobile_menu_box ul .active_ol_li>p {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .pc_header {
    display: none;
  }

  .mobile_header {
    display: block;
  }

  .content {
    height: auto;
  }

  .menu_content {
    display: none;
  }

  .content .con_content .con_con_menu {
    display: none;
  }

  .content .con_content {
    width: 100%;
  }

  .content .con_content .con_con_con {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .content .con_content .con_con_con .bread_box {
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .content .con_content .con_con_con .con_box {
    margin-top: 10px;
    padding: 10px;
    overflow-y: unset;
    height: auto;
    margin: 10px 0 20px;
  }

  .content .con_content .con_con_con .con_box li {
    font-size: 14px;
  }

  .content .con_content .con_con_con .con_box li img {
    width: 70%;
  }

  .content .con_content .con_con_con .con_box li h2 {
    font-size: 18px;
  }

  footer {
    background-color: #fff;
  }

  footer p {
    font-size: 12px;
  }
}