* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 14px;
  font-family: BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  background-color: rgba(248, 248, 250, 1);
}

ul li {
  list-style: none;
}

em {
  font-style: normal;
}

img {
  display: block;
  border-style: none;
  pointer-events: none;
}

.page-container {
  display: none;
  width: 100%;
  height: auto;
}
.page-container .header-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 15;
}
.page-container .header-container .header-wrapper {
  display: flex;
  width: 1180px;
  height: auto;
  line-height: 1;
  padding: 0 100px;
  margin: 25px 0 15px 0;
}
.page-container .header-container .header-wrapper .header-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 40px;
}
.page-container .header-container .header-wrapper .header-left .engine-box {
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-container .header-container .header-wrapper .header-left .engine-box .image-box {
  display: inline-flex;
  justify-content: center;
  width: 124px;
  cursor: pointer;
}
.page-container .header-container .header-wrapper .header-left .engine-box .image-box .item-image {
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .header-container .header-wrapper .header-left .engine-box .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-family: iconfont;
  font-size: 18px;
  color: rgb(205, 212, 220);
  margin-left: 10px;
}
.page-container .header-container .header-wrapper .header-left .engine-box .item-icon::before {
  content: "\e62f";
  transition: all 0.15s;
}
.page-container .header-container .header-wrapper .header-left .engine-box .item-icon.active::before {
  transform: rotateX(180deg);
}
.page-container .header-container .header-wrapper .header-left .engine-menu {
  display: none;
  position: absolute;
  top: 46px;
  z-index: 10;
}
.page-container .header-container .header-wrapper .header-left .engine-menu .menu-box {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 6px;
  border: 1px solid rgb(236, 236, 238);
  box-shadow: 0 2px 6px rgb(216, 216, 218);
  background-color: rgb(255, 255, 255);
}
.page-container .header-container .header-wrapper .header-left .engine-menu .menu-box .menu-item {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  cursor: pointer;
}
.page-container .header-container .header-wrapper .header-left .engine-menu .menu-box .menu-item:hover {
  background-color: rgb(235, 245, 255);
}
.page-container .header-container .header-wrapper .header-left .engine-menu .menu-box .menu-item .item-image {
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .header-container .header-wrapper .header-left .engine-menu .menu-arrow {
  position: absolute;
  top: -6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  z-index: 1;
}
.page-container .header-container .header-wrapper .header-left .engine-menu .menu-arrow::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgb(226, 226, 228);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-top-left-radius: 5px;
  background-color: rgb(255, 255, 255);
  transform: rotate(45deg);
}
.page-container .header-container .header-wrapper .header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}
.page-container .header-container .header-wrapper .header-right .form-main {
  display: flex;
  align-items: center;
}
.page-container .header-container .header-wrapper .header-right .form-main .form-input {
  flex: 1;
  height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 2px solid rgb(125, 155, 255);
  border-right: none;
}
.page-container .header-container .header-wrapper .header-right .form-main .form-input .item-input {
  width: 100%;
  height: 100%;
  line-height: normal;
  font-size: 16px;
  color: rgb(42, 42, 48);
  padding: 0 0 1px 0;
  border: none;
  outline: none;
}
.page-container .header-container .header-wrapper .header-right .form-main .form-input .item-input::-moz-placeholder {
  color: rgb(182, 182, 188);
}
.page-container .header-container .header-wrapper .header-right .form-main .form-input .item-input::placeholder {
  color: rgb(182, 182, 188);
}
.page-container .header-container .header-wrapper .header-right .form-main .form-button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 40px;
  font-size: 18px;
  color: rgb(255, 255, 255);
  letter-spacing: 3px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: rgb(0, 115, 255);
  transition: all 0.1s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.page-container .header-container .header-wrapper .header-right .form-main .form-button:hover {
  background-color: rgb(52, 135, 205);
}
.page-container .header-container .header-wrapper .header-right .navi-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 10px;
  padding: 0 6px;
}
.page-container .header-container .header-wrapper .header-right .navi-main .navi-ul {
  flex: 1;
  display: flex;
}
.page-container .header-container .header-wrapper .header-right .navi-main .navi-ul .navi-li {
  display: flex;
  align-items: center;
  height: 18px;
  cursor: pointer;
}
.page-container .header-container .header-wrapper .header-right .navi-main .navi-ul .navi-li:not(:first-of-type) {
  margin-left: 15px;
}
.page-container .header-container .header-wrapper .header-right .navi-main .navi-ul .navi-li:hover .item-text {
  color: rgb(255, 0, 0);
}
.page-container .header-container .header-wrapper .header-right .navi-main .navi-ul .navi-li:hover .item-text::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .header-container .header-wrapper .header-right .navi-main .navi-ul .navi-li .item-image {
  max-height: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .header-container .header-wrapper .header-right .navi-main .navi-ul .navi-li .item-text {
  position: relative;
  font-size: 12px;
  color: rgb(92, 102, 108);
}
.page-container .header-container .header-wrapper .header-right .navi-main .navi-ul .navi-li .item-text:not(:first-child) {
  margin-left: 4px;
}
.page-container .header-container .header-wrapper .header-right .navi-main .navi-ul .navi-li .item-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .header-container .header-wrapper .header-right .navi-main .item-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgb(142, 142, 148);
  font-family: iconfont;
  margin-left: 30px;
}
.page-container .header-container .header-wrapper .header-right .navi-main .item-icon::before {
  content: "\e64a";
  transform: rotate(180deg);
  transition: all 0.15s;
}
.page-container .header-container .header-wrapper .header-right .navi-main .item-icon.active::before {
  transform: rotateX(0deg);
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main {
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 10;
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box {
  position: relative;
  width: 100%;
  height: auto;
  padding: 5px 15px;
  border-radius: 6px;
  border: 1px solid rgb(246, 246, 248);
  box-shadow: 0 2px 5px rgb(216, 216, 218);
  background-color: rgb(255, 255, 255);
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul {
  width: 100%;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  z-index: 2;
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul .keyword-li {
  display: flex;
  align-items: center;
  width: 20%;
  height: 28px;
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul .keyword-li:not(:nth-child(5n+1)) {
  padding-left: 15px;
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul .keyword-li .li-item {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul .keyword-li .li-item:hover .item-text {
  color: rgb(255, 0, 0);
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul .keyword-li .li-item:hover .item-text::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul .keyword-li .li-item .item-image {
  max-height: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul .keyword-li .li-item .item-text {
  position: relative;
  font-size: 12px;
  color: rgb(92, 102, 108);
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul .keyword-li .li-item .item-text:not(:first-child) {
  margin-left: 4px;
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .keyword-ul .keyword-li .li-item .item-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .column-box {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 10px;
  left: 15px;
  right: 15px;
  bottom: 10px;
  z-index: 1;
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .column-box .column {
  width: 20%;
  border-right: 1px solid rgb(236, 238, 240);
}
.page-container .header-container .header-wrapper .header-right .navi-main .keyword-main .keyword-box .column-box .column:last-of-type {
  border-right: none;
}
.page-container .header-container .navi-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 46px;
  line-height: 1;
  border-top: 1px solid rgb(235, 238, 242);
  border-bottom: 1px solid rgb(207, 212, 219);
}
.page-container .header-container .navi-wrapper .navi-main {
  display: flex;
  align-items: center;
  width: 1180px;
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  border-left: 1px solid transparent;
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li:nth-child(4n+1) {
  margin-left: 20px;
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li:nth-child(4n+1)::before {
  left: -25px;
  border-left: 1px solid rgb(216, 218, 220);
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li:first-child {
  margin-left: 0;
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li:first-child::before {
  border-left: 1px solid transparent;
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li:hover .item-text {
  color: rgb(255, 0, 0);
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li:hover .item-text::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li .item-image {
  max-height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li .item-text {
  position: relative;
  font-size: 14px;
  color: rgb(42, 42, 48);
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li .item-text:not(:first-child) {
  margin-left: 5px;
}
.page-container .header-container .navi-wrapper .navi-main .navi-ul .navi-li .item-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .body-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 155px;
}
.page-container .body-container .recom-site {
  display: flex;
  align-items: center;
  width: 1180px;
  height: 50px;
}
.page-container .body-container .recom-site .site-ul {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.page-container .body-container .recom-site .site-ul .site-li {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.page-container .body-container .recom-site .site-ul .site-li:not(:first-of-type) {
  margin-left: 30px;
}
.page-container .body-container .recom-site .site-ul .site-li:hover .item-text {
  color: rgb(255, 0, 0);
}
.page-container .body-container .recom-site .site-ul .site-li:hover .item-text::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .body-container .recom-site .site-ul .site-li .item-image {
  max-height: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .body-container .recom-site .site-ul .site-li .item-text {
  position: relative;
  font-size: 12px;
  color: rgb(98, 105, 115);
}
.page-container .body-container .recom-site .site-ul .site-li .item-text:not(:first-child) {
  margin-left: 5px;
}
.page-container .body-container .recom-site .site-ul .site-li .item-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .body-container .body-wrapper {
  display: flex;
  width: 1180px;
}
.page-container .body-container .body-wrapper .sidebar {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 280px;
  height: auto;
}
.page-container .body-container .body-wrapper .sidebar .slide-main {
  display: flex;
  flex-direction: column;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box {
  position: relative;
  width: 100%;
  height: 160px;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box:hover .prev {
  display: inline-flex;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box:hover .next {
  display: inline-flex;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box .photo-ul {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box .photo-ul .photo-li {
  width: 100%;
  height: 160px;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box .photo-ul .photo-li .item-image {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box .prev {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 18px);
  left: 15px;
  width: 32px;
  height: 32px;
  text-decoration: none;
  border-radius: 32px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.15s;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box .prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box .prev::before {
  content: "\e62d";
  font-family: iconfont;
  font-size: 22px;
  color: rgb(255, 255, 255);
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box .next {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 18px);
  right: 15px;
  width: 32px;
  height: 32px;
  text-decoration: none;
  border-radius: 32px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.15s;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box .next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-box .next::before {
  content: "\e62d";
  font-family: iconfont;
  font-size: 22px;
  color: rgb(255, 255, 255);
  transform: rotate(180deg);
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info {
  width: 100%;
  height: auto;
  padding: 5px 15px;
  border: 1px solid rgb(205, 212, 218);
  border-top: none;
  background-color: rgb(255, 255, 255);
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info .info-ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info .info-ul .info-li {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 26px;
  line-height: 1;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info .info-ul .info-li::before {
  content: "";
  position: absolute;
  left: -80%;
  width: 1px;
  height: 46%;
  border-left: 1px solid transparent;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info .info-ul .info-li:not(:first-of-type)::before {
  border-left: 1px solid rgb(216, 218, 220);
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info .info-ul .info-li .li-item {
  display: inline-flex;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info .info-ul .info-li .li-item:hover .item-text {
  color: rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info .info-ul .info-li .li-item:hover .item-text::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info .info-ul .info-li .li-item .item-text {
  position: relative;
  font-size: 14px;
  color: rgb(82, 82, 88);
}
.page-container .body-container .body-wrapper .sidebar .slide-main .slide-info .info-ul .info-li .li-item .item-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .body-container .body-wrapper .sidebar .slide-news {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(205, 212, 218);
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-title {
  display: flex;
  justify-content: space-between;
  padding: 10px 5px;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-title .title-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-title .title-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 60%;
  border-left: 1px solid transparent;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-title .title-item:not(:first-of-type)::before {
  border-left: 1px solid rgb(216, 218, 220);
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-title .title-item .item-text {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 3px;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-title .title-item .item-text:hover {
  color: rgb(0, 115, 255);
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-title .title-item .item-text.active {
  color: rgb(255, 255, 255);
  background-image: linear-gradient(135deg, rgb(0, 195, 255), rgb(0, 115, 255));
  pointer-events: none;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content {
  display: flex;
  flex-direction: column;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box:hover .prev {
  display: inline-flex;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box:hover .next {
  display: inline-flex;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box .photo-ul {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box .photo-ul .photo-li {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box .photo-ul .photo-li .item-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box .prev {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 18px);
  left: 15px;
  width: 32px;
  height: 32px;
  text-decoration: none;
  border-radius: 32px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.15s;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box .prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box .prev::before {
  content: "\e62d";
  font-family: iconfont;
  font-size: 22px;
  color: rgb(255, 255, 255);
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box .next {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 18px);
  right: 15px;
  width: 32px;
  height: 32px;
  text-decoration: none;
  border-radius: 32px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.15s;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box .next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .slide-box .next::before {
  content: "\e62d";
  font-family: iconfont;
  font-size: 22px;
  color: rgb(255, 255, 255);
  transform: rotate(180deg);
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .news-list {
  display: flex;
  width: 100%;
  padding: 5px 10px;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .news-list .list-ul {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .news-list .list-ul .list-li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 32px;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .news-list .list-ul .list-li .item-text {
  position: relative;
  font-size: 14px;
  color: rgb(42, 42, 48);
  padding-left: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .news-list .list-ul .list-li .item-text::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: rgb(95, 105, 115);
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .news-list .list-ul .list-li .item-text::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .news-list .list-ul .list-li .item-text:hover {
  color: rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .sidebar .slide-news .news-content .news-list .list-ul .list-li .item-text:hover::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .sidebar .tools-navi {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  border: 1px solid rgb(205, 212, 218);
  background-color: rgb(255, 255, 255);
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-title {
  display: flex;
  padding: 8px 5px 7px;
  border-bottom: 1px solid rgb(225, 232, 238);
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-title .title-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-title .title-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 60%;
  border-left: 1px solid transparent;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-title .title-item:not(:first-of-type)::before {
  border-left: 1px solid rgb(216, 218, 220);
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-title .title-item .item-text {
  display: inline-flex;
  padding: 5px 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-title .title-item .item-text:hover {
  color: rgb(0, 115, 255);
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-title .title-item .item-text.active {
  color: rgb(0, 115, 255);
  pointer-events: none;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-list {
  display: flex;
  width: 100%;
  padding: 5px 10px;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-list .list-ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-list .list-ul .list-li {
  display: flex;
  align-items: center;
  width: 50%;
  height: 32px;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-list .list-ul .list-li .item-image {
  max-height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-list .list-ul .list-li .item-text {
  position: relative;
  font-size: 14px;
  color: rgb(42, 42, 48);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-list .list-ul .list-li .item-text:not(:first-child) {
  margin-left: 8px;
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-list .list-ul .list-li .item-text:hover {
  color: rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-list .list-ul .list-li .item-text:hover::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .sidebar .tools-navi .navi-list .list-ul .list-li .item-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .body-container .body-wrapper .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}
.page-container .body-container .body-wrapper .container .site-main {
  width: 100%;
  padding: 4px 20px 4px 5px;
  border: 1px solid rgb(205, 212, 218);
  background-color: rgb(255, 255, 255);
}
.page-container .body-container .body-wrapper .container .site-main .site-ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.page-container .body-container .body-wrapper .container .site-main .site-ul .site-li {
  display: flex;
  align-items: center;
  width: calc(20% - 15px);
  height: 45px;
  margin-left: 15px;
}
.page-container .body-container .body-wrapper .container .site-main .site-ul .site-li .item-image {
  flex: 0 0 auto;
  max-height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .body-container .body-wrapper .container .site-main .site-ul .site-li .item-text {
  position: relative;
  font-size: 15px;
  color: rgb(42, 42, 48);
  margin-left: 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .container .site-main .site-ul .site-li .item-text:hover {
  color: rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .container .site-main .site-ul .site-li .item-text:hover::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .container .site-main .site-ul .site-li .item-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .body-container .body-wrapper .container .site-main .site-ul .site-li .item-adv {
  flex: 0 0 auto;
  position: relative;
  width: 28px;
  line-height: 15px;
  color: rgb(255, 0, 0);
  text-align: center;
  text-decoration: none;
  padding: 1px 0 0;
  margin-left: 5px;
  transform: scale(0.8);
  cursor: pointer;
}
.page-container .body-container .body-wrapper .container .site-main .site-ul .site-li .item-adv:hover {
  text-decoration: underline;
}
.page-container .body-container .body-wrapper .container .hot-news {
  width: 100%;
  margin-top: 15px;
  border: 1px solid rgb(205, 212, 218);
  background-color: rgb(255, 255, 255);
}
.page-container .body-container .body-wrapper .container .hot-news .hot-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 42px;
  padding: 0 15px 0;
  border-bottom: 1px solid rgb(225, 232, 238);
}
.page-container .body-container .body-wrapper .container .hot-news .hot-title .item-text {
  font-size: 20px;
  font-weight: 600;
  color: rgb(55, 138, 238);
  padding: 0 0 2px;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-title .item-more {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: rgb(182, 182, 188);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-title .item-more::after {
  content: "\e61e";
  font-family: iconfont;
  font-size: 13px;
  margin-left: 2px;
  transform: rotate(180deg);
}
.page-container .body-container .body-wrapper .container .hot-news .hot-title .item-more:hover {
  color: rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content {
  width: 100%;
  height: auto;
  padding: 2px;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content:hover .content-main::-webkit-scrollbar-thumb {
  display: block;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main {
  display: flex;
  width: 100%;
  height: 580px;
  padding: 2px 10px;
  overflow-x: hidden;
  overflow-y: auto;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main::-webkit-scrollbar-track-piece {
  background: transparent;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main::-webkit-scrollbar {
  width: 6px;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main::-webkit-scrollbar-thumb {
  display: none;
  border-radius: 6px;
  background: rgb(212, 212, 218);
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main::-webkit-scrollbar-thumb:hover {
  background: rgb(182, 182, 188);
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  flex-wrap: wrap;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li {
  display: flex;
  width: 49%;
  height: 95px;
  margin: 10px 0;
  padding-right: 15px;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li:hover {
  background-color: rgb(242, 242, 248);
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li .image-box {
  flex: 0 0 auto;
  display: inline-flex;
  width: 160px;
  height: 95px;
  margin-right: 10px;
  background-color: rgb(242, 242, 248);
  overflow: hidden;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li .image-box .item-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li .text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1;
  padding: 6px 0 10px;
  overflow: hidden;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li .text-box .item-text {
  display: -webkit-box;
  line-height: 24px;
  font-size: 16px;
  color: rgb(42, 42, 48);
  text-decoration: none;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li .text-box .item-text:hover {
  color: rgb(255, 0, 0);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgb(255, 0, 0);
  text-decoration-thickness: 1px;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li .text-box .label-box {
  display: flex;
  width: 100%;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li .text-box .label-box .source {
  font-size: 14px;
  color: rgb(185, 190, 195);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li .text-box .label-box .date {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: rgb(185, 190, 195);
  margin-left: 15px;
}
.page-container .body-container .body-wrapper .container .hot-news .hot-content .content-main .content-ul .content-li .text-box .label-box .date::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -7px;
  width: 1px;
  height: 85%;
  border-left: 1px solid rgb(215, 210, 215);
}
.page-container .body-container .body-wrapper .container .site-wrapper {
  width: 100%;
  margin-top: 15px;
  border: 1px solid rgb(205, 212, 218);
  background-color: rgb(255, 255, 255);
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 42px;
  padding: 0 15px;
  border-bottom: 1px solid rgb(225, 232, 238);
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-title .item-text {
  position: relative;
  font-size: 14px;
  color: rgb(90, 150, 235);
  cursor: pointer;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-title .item-text:not(:first-of-type) {
  margin-left: 35px;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-title .item-text:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -18px;
  width: 3px;
  height: 3px;
  background-color: rgb(90, 150, 235);
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-title .item-text:hover {
  color: rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-title .item-text:hover::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-title .item-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content {
  display: flex;
  padding: 16px 20px;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li:not(:last-of-type) {
  margin-bottom: 17px;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .item-type {
  flex: 0 0 auto;
  position: relative;
  font-size: 14px;
  color: rgb(90, 150, 235);
  cursor: pointer;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .item-type:hover {
  color: rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .item-type:hover::after {
  border-bottom: 1px solid rgb(255, 0, 0);
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .item-type::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid transparent;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .text-box {
  flex: 1;
  display: flex;
  justify-content: space-between;
  margin: 0 10px 0 30px;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .text-box .item-text {
  position: relative;
  width: 14.2857142857%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .text-box .item-text:not(:first-of-type) {
  margin-left: 10px;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .text-box .item-text .link {
  font-size: 14px;
  color: rgb(42, 42, 48);
  text-decoration: none;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .text-box .item-text .link:hover {
  color: rgb(255, 0, 0);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgb(255, 0, 0);
  text-decoration-thickness: 1px;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .item-more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: rgb(182, 182, 188);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .item-more::after {
  content: "\e61e";
  font-family: iconfont;
  font-size: 13px;
  margin-left: 2px;
  transform: rotate(180deg);
}
.page-container .body-container .body-wrapper .container .site-wrapper .site-content .site-ul .site-li .item-more:hover {
  color: rgb(255, 0, 0);
}
.page-container .footer-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 25px;
  background-color: rgb(82, 82, 88);
}
.page-container .footer-container .footer-wrapper {
  display: flex;
  flex-direction: column;
  width: 1180px;
  padding: 15px 0;
}
.page-container .footer-container .footer-wrapper .copyright {
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: rgb(222, 222, 228);
}
.page-container .footer-container .footer-wrapper .footer-navi {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.page-container .footer-container .footer-wrapper .footer-navi .text-box {
  display: flex;
  justify-content: center;
  position: relative;
}
.page-container .footer-container .footer-wrapper .footer-navi .text-box:not(:first-of-type) {
  margin-left: 10px;
}
.page-container .footer-container .footer-wrapper .footer-navi .text-box .item-text {
  font-size: 12px;
  color: rgb(222, 222, 228);
  cursor: pointer;
}
.page-container .footer-container .footer-wrapper .footer-navi .text-box .item-text:hover {
  color: rgb(255, 255, 255);
}
.page-container .footer-container .footer-wrapper .footer-navi .text-box .text-content {
  display: none;
  position: absolute;
  bottom: 25px;
}
.page-container .footer-container .footer-wrapper .footer-navi .text-box .text-content .item-content {
  display: flex;
  width: 225px;
  line-height: 18px;
  font-size: 12px;
  color: rgb(245, 245, 245);
  padding: 8px 10px;
  border-radius: 5px;
  background-color: rgb(48, 48, 52);
}
.page-container .footer-container .footer-wrapper .footer-navi .text-box .text-content .item-arrow {
  position: absolute;
  bottom: -6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  z-index: 1;
}
.page-container .footer-container .footer-wrapper .footer-navi .text-box .text-content .item-arrow::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-bottom-right-radius: 3px;
  background-color: rgb(48, 48, 52);
  transform: rotate(45deg);
}
.page-container .footer-container .footer-wrapper .footer-navi .item-link {
  font-size: 12px;
  color: rgb(222, 222, 228);
  text-decoration: none;
  margin-left: 10px;
  cursor: pointer;
}
.page-container .footer-container .footer-wrapper .footer-navi .item-link:hover {
  color: rgb(255, 255, 255);
}/*# sourceMappingURL=index.css.map */