html {
  scroll-behavior: smooth;
}
.theme_header {
  height: 847px;
  background: url(../images/theme_bg_header.png) no-repeat;
  background-size: 100% 100%;
}
.theme_header .theme_top {
  display: flex;
  justify-content: space-between;
  padding-top: 37px;
}
.theme_header .theme_top .back {
  width: 157px;
  height: 42px;
  background-color: #e6f5ff;
  border-radius: 21px;
  border: solid 1px #8bc5e6;
  transition: all 0.3s;
}
.theme_header .theme_top .back a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 18px;
  color: #015293;
}
.theme_header .theme_top .back a img {
  margin-right: 10px;
}
.theme_header .theme_top .back:hover {
  transform: translateX(-5px);
}
.theme_header .theme_title {
  display: flex;
  justify-content: center;
  margin-top: 63px;
}
.main {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 44px 50px 47px 50px;
  margin-top: -480px;
  z-index: 99;
}
.main .breadcrumbs {
  display: flex;
  align-items: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 18px;
}
.main .breadcrumbs img {
  margin-right: 10px;
}
.main .breadcrumbs a {
  color: #333;
}
.main .breadcrumbs a:hover {
  color: #016bb5;
}
.main .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 150px;
  background: url(../images/theme_bg_top.png) no-repeat;
  background-size: 100% 100%;
  padding: 0 52px;
  z-index: 99999;
}
.main .top h3 {
  font-size: 34px;
  color: #0d57a3;
}
.main .top .select_box {
  position: relative;
}
.main .top .select_box .select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 297px;
  height: 52px;
  background-color: #f2f9ff;
  border-radius: 26px;
  border: solid 1px #0068b7;
  padding: 0 16px;
  font-size: 18px;
  color: #015293;
  cursor: pointer;
}
.main .top .select_box .select .icon {
  margin-top: 10px;
}
.main .top .select_box .select i {
  font-style: normal;
}
.main .top .select_box .panel {
  position: absolute;
  top: 52px;
  display: none;
  width: 100%;
  background-color: #fff;
  padding: 15px 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.main .top .select_box .panel li {
  line-height: 38px;
}
.main .top .select_box .panel li a {
  font-size: 18px;
  color: #333;
}
.main .top .select_box .panel li a:hover {
  color: #0068b7;
}
.main .top .select_box:hover .panel {
  display: block;
}
.main .inner {
  display: flex;
  margin-top: 43px;
}
.main .inner .inner_side {
  width: 316px;
  border-right: 2px solid #d2d2d2;
  margin-right: 30px;
}
.main .inner .inner_side .side_list li {
  position: relative;
  width: 288px;
  height: 43px;
  border: solid 1px #b4d3eb;
  margin-bottom: 20px;
  border-radius: 22px;
}
.main .inner .inner_side .side_list li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -36px;
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  border: solid 1px #bfbfbf;
  border-radius: 50%;
  transform: translateY(-50%);
}
.main .inner .inner_side .side_list li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  font-size: 20px;
  color: #0d57a3;
}
.main .inner .inner_side .side_list li:hover,
.main .inner .inner_side .side_list li.active {
  background-color: #015293;
}
.main .inner .inner_side .side_list li:hover a,
.main .inner .inner_side .side_list li.active a {
  color: #fff;
}
.main .inner .inner_side .side_list li:hover::before,
.main .inner .inner_side .side_list li.active::before {
  background-color: #015293;
}
.main .inner .inner_main {
  flex: 1;
}
.main .inner .inner_main .module {
  margin-bottom: 40px;
}
.main .inner .inner_main .module .module_title {
  font-size: 30px;
  color: #015293;
  font-weight: 700;
  background: url(../images/theme_bg_show_title.png) no-repeat;
  background-size: 100% 12px;
  background-position: bottom;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
