html * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 14px;
  font-family: Microsoft YaHei;
  list-style: none;
}
html body {
  max-width: 970px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
html body::-webkit-scrollbar {
  display: none;
}
html body .header {
  padding: 16px;
  border-bottom: 1px solid #d1d1d1;
}
html body .header > img {
  height: 60px;
}
html body .header .account_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
html body .header .account_info .account_avatar {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: middle;
}
html body .header .account_info .account_nickname_inner {
  font-weight: 400;
  vertical-align: top;
  font-size: 15px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  max-width: 180px;
  text-decoration: none;
  padding-left: 8px;
}
html body .container {
  padding: 16px;
  position: relative;
  max-width: 100%;
  background-color: #fafafa;
  min-height: calc(100vh - 120px);
}
html body .container #accordion .panel {
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin: 0 0 12px 0;
  position: relative;
}
html body .container #accordion .panel:before {
  content: '';
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #688e26 0%, #ff816a 100%);
  position: absolute;
  top: 0;
  left: -2px;
}
html body .container #accordion .panel .panel-heading {
  padding: 0;
  background: #fff;
  position: relative;
  border-color: #ddd;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
html body .container #accordion .panel .panel-heading .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
html body .container #accordion .panel .panel-heading .panel-title a {
  display: block;
  padding: 15px 55px 15px 30px;
  font-size: 20px;
  font-weight: 600;
  color: #550527;
  border: none;
  margin: 0;
  position: relative;
  text-decoration: none;
}
html body .container #accordion .panel .panel-body {
  padding: 0 16px 16px;
  border: none;
  font-size: 14px;
  color: #305275;
  line-height: 28px;
}
html body .container #accordion .panel .panel-body ul li {
  border-bottom: 1px solid #dadada;
  padding: 6px 0;
}
html body .container #accordion .panel .panel-body ul li:nth-last-child(1) {
  border-bottom: none;
}
html body .container #accordion .panel .panel-body ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
html body .container #accordion .panel .panel-body ul li a img {
  width: 60px;
}
html body .container #accordion .panel .collapse {
  display: none;
}
html body .container #accordion .panel .collapse.in {
  display: block;
}
