@charset "UTF-8";
.menu-panel {
  min-height: calc(100vh - 485px);
  width: 250px;
  border-right: 1px solid #f5f6f6;
  padding: 50px 0px 20px;
  background-color: #FFF;
  border-right: 1px solid #CCC;
  flex: none;
}
.menu-panel a {
  color: #252222;
}
.menu-panel h3 {
  padding: 5px 25px;
  font-size: 17px;
  position: relative;
  cursor: pointer;
  margin: 5px 0;
}
.menu-panel h3 a {
  display: block;
}
.menu-panel h3.selected a {
  color: #5a2ddf;
}
.menu-panel h3.selected::after {
  transform: rotate(90deg);
  color: #5a2ddf;
  font-weight: bold;
}
.menu-panel h3.active a {
  color: #5a2ddf;
}
.menu-panel h3.active::after {
  color: #5a2ddf;
  font-weight: bold;
}
.menu-panel h3::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 25px;
  width: 20px;
  text-align: center;
  font-family: "iconfont2" !important;
  font-size: 11px;
  color: #252222;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.menu-panel ul {
  display: none;
}
.menu-panel ul.show {
  display: block;
}
.menu-panel ul li a {
  display: block;
  padding-left: 40px;
  font-size: 14px;
  line-height: 30px;
  margin: 5px 0;
}
.menu-panel ul li.selected a {
  color: #5a2ddf;
  background-color: #f5f1ff;
}

.main {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background-color: #FFF;
  min-height: calc(100vh - 520px);
}
.main.search {
  max-width: 1000px;
}
.main.detail {
  display: flex;
}

.banner {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/v2/images/help-banner.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}
.banner h2 {
  font-size: 36px;
  color: #FFF;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 2px;
}
.banner .search-box {
  position: relative;
}
.banner .search-box input {
  width: 700px;
  line-height: 45px;
  border-radius: 10px;
  border: 0;
  background-color: #FFF;
  padding: 0 20px;
  color: #252222;
  font-size: 16px;
}
.banner .search-box i {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  line-height: 45px;
  text-align: center;
  font-size: 26px;
  cursor: pointer;
  color: #666;
}

.right-panel {
  padding: 50px;
  padding-right: 20px;
  position: relative;
  flex: 1;
}
.right-panel h2.title {
  font-size: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
  margin-bottom: 20px;
}
.right-panel section {
  font-size: 14px;
}
.right-panel section img {
  max-width: 100%;
  height: auto !important;
}
.right-panel .html-content ul {
  list-style: disc;
  padding-left: 15px;
  margin: 10px 0;
}
.right-panel .html-content h1 {
  font-size: 22px;
  line-height: 36px;
}
.right-panel .html-content h2 {
  font-size: 20px;
  line-height: 30px;
}
.right-panel .html-content h3 {
  font-size: 16px;
  line-height: 26px;
}
.right-panel .html-content h4 {
  line-height: 22px;
}
.right-panel .link-panel {
  position: fixed;
  top: 500px;
  left: 50%;
  margin-left: 630px;
  border-left: 1px solid #878787;
}
.right-panel .link-panel div {
  padding-left: 22px;
  font-size: 14px;
  line-height: 26px;
  min-width: 80px;
}
.right-panel .link-panel div.active a {
  color: #5a2ddf;
}
.right-panel .link-panel i {
  position: absolute;
  left: -4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border: 2px solid #5a2ddf;
  display: inline-block;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: all 0.3s;
}

.result-panel {
  padding: 30px 50px;
}
.result-panel h2.title {
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
}
.result-panel h2.title .title {
  font-size: 30px;
  margin-right: 30px;
}
.result-panel h2.title span {
  vertical-align: middle;
  font-size: 14px;
}
.result-panel h2.title b {
  margin: 0 3px;
  color: green;
}
.result-panel .result-list .a {
  color: green;
  font-size: 14px;
}
.result-panel .result-list .result-box {
  padding: 10px 0;
  border-bottom: 1px dashed #999;
}
.result-panel .result-list .result-box h4 {
  padding-top: 10px;
}
.result-panel .result-list .result-box p {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
}
.result-panel .bottom {
  text-align: center;
  font-size: 14px;
  margin: 10px 0;
  color: green;
}

.hide {
  opacity: 0;
}