@font-face {
  font-family: 'HarmonyOS Sans SC';
  src: url('../fonts/HarmonyOS_Sans_SC_Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS Sans SC Medium';
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS Sans SC Light';
  src: url('../fonts/HarmonyOS_Sans_SC_Light.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DingTalk JinBuTi';
  src: url('../fonts/DingTalk\ JinBuTi.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Racing Sans One';
  src: url('../fonts/RacingSansOne-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
[class*='hover-'] {
  transition: all 0.3s;
}
.hover-fade:hover {
  opacity: 0.7;
}
.hover-mc:hover {
  color: var(--mainColor) !important;
}
:root {
  --innerWidth: 14.4rem;
  --mainColor: #00418d;
  --headerHeight: 1.2rem;
}
.content > img {
  display: block;
  width: 19.2rem;
  margin: 0 auto;
}
/* 通用 */
body {
  font-family: 'HarmonyOS Sans SC';
  font-size: 0.16rem;
  font-weight: normal;
  color: #333;
  line-height: 1;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
a {
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  text-decoration: none;
}
a,
span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
i {
  display: inline-block;
}
a,
button,
select,
option {
  cursor: pointer;
}
button,
input {
  outline: none;
  border: none;
}
img {
  vertical-align: middle;
}
button img {
  vertical-align: middle;
  margin-top: -0.03rem;
  margin-right: 0.05rem;
}
.inner {
  box-sizing: border-box;
  position: relative;
  width: var(--innerWidth);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .inner {
    width: 100%;
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }
}
.w-row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .w-row {
    flex-wrap: wrap;
  }
  .w-row > .w-col {
    width: 100% !important;
  }
  .w-row > .w-col + .w-col {
    margin-top: 0.3rem;
  }
}
/* 头部header 开始 */
.header {
  transition: all 0.3s;
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  border-bottom: 0.01rem solid transparent;
}
.header > .inner {
  position: static;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_logo {
  width: 2.03rem;
  height: 0.57rem;
  background: url(../images/logo.png) center no-repeat;
  background-size: 100% auto;
}
.header .header_logo a {
  display: block;
  height: 100%;
}
@media (max-width: 992px) {
  .header .header_logo {
    width: 3.045rem;
    height: 0.855rem;
    margin: 0.3rem 0;
  }
}
.header .nav_fir {
  /* margin-right: 0.2rem; */
  margin-left: auto;
  display: flex;
  align-items: center;
}
.header .nav_fir > li {
  padding: 0 0.25rem;
  position: relative;
}
.header .nav_fir > li > a {
  transition: all 0.3s;
  width: 100%;
  text-align: center;
  font-size: 0.22rem;
  font-weight: normal;
  color: #fff;
  line-height: var(--headerHeight);
  word-break: keep-all;
}
.header .nav_fir > li:hover > a,
.header .nav_fir > .cur > a {
  color: #00418d !important;
}
@media (max-width: 992px) {
  .header .nav_fir {
    display: none;
  }
}
.header .nav_sec {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #ffffff;
  box-shadow: 0rem 0.04rem 0.04rem 0rem rgba(0, 0, 0, 0.13);
  border-top: 0.04rem solid #00418d;
  padding: 0.1rem 0;
  pointer-events: none;
}
.header .shortcuts li a {
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.15rem 0.1rem;
  line-height: 1.5;
  text-align: center;
  font-size: 0.16rem;
  font-weight: normal;
  color: #333333;
}
.header .shortcuts li a:hover {
  color: var(--mainColor);
}
.header .shortcuts li + li {
  position: relative;
}
.header .shortcuts li + li::after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  width: 1.02rem;
  height: 0.01rem;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(184, 184, 184, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
.header .nav_fir > li:hover .nav_sec {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header .search_box {
  position: relative;
  transition: all 0.3s;
  width: 0.38rem;
  display: flex;
  justify-content: end;
  align-items: center;
  background: transparent;
  border: 0.01rem solid transparent;
  border-radius: 0.5rem;
}
@media (max-width: 992px) {
  .header .search_box {
    margin-right: 1.1rem;
  }
}
.header .search_box .search_input {
  outline: none;
  border: none;
  padding: 0 1em;
  width: calc(100% - 0.38rem);
  height: 0.38rem;
  background-color: transparent;
  border-radius: 0.5rem;
  font-size: 0.16rem;
  font-weight: normal;
  color: #fff;
  display: none;
  position: absolute;
  left: 0;
}
.header .search_box .search_btn {
  outline: none;
  border: none;
  width: 0.38rem;
  height: 0.38rem;
  background: url(../images/icon_search.png) no-repeat center;
  background-size: 0.18rem;
  background-color: transparent;
}
.header .search_box:hover {
  width: 1.9rem;
  background: rgba(255, 255, 255, 0.19);
  border: 0.01rem solid #ffffff;
}
.header .search_box:hover .search_input {
  display: block;
}
@media (max-width: 992px) {
  .header .search_box {
    width: 2.5rem;
  }
  .header .search_box:hover {
    width: 2.5rem;
  }
  .header .search_box .search_input,
  .header .search_box .search_btn {
    height: 0.7rem;
  }
  .header .search_box .search_input {
    width: calc(100% - 0.7rem);
  }
  .header .search_box .search_btn {
    width: 0.7rem;
    background-size: 0.4rem;
  }
}
.w_wrap .header,
.header:hover,
.scrollWrap .header {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0.92rem);
}
.w_wrap .header .header_logo,
.header:hover .header_logo,
.scrollWrap .header .header_logo {
  background-image: url(../images/logo_w.png);
}
.w_wrap .header .nav_fir > li > a,
.header:hover .nav_fir > li > a,
.scrollWrap .header .nav_fir > li > a {
  color: #333;
}
.w_wrap .header .search_box,
.header:hover .search_box,
.scrollWrap .header .search_box {
  border: 0.01rem solid transparent;
}
.w_wrap .header .search_box:hover,
.header:hover .search_box:hover,
.scrollWrap .header .search_box:hover {
  border: 0.01rem solid #767676;
}
.w_wrap .header .search_box .search_input,
.header:hover .search_box .search_input,
.scrollWrap .header .search_box .search_input {
  color: var(--mainColor);
}
.w_wrap .header .search_box .search_btn,
.header:hover .search_box .search_btn,
.scrollWrap .header .search_box .search_btn {
  background-image: url(../images/icon_search_w.png);
}
.w_wrap .menu-btn > span,
.scrollWrap .menu-btn > span {
  background: var(--mainColor) !important;
}
.w_wrap {
  padding-top: var(--headerHeight);
}
/* 头部header 结束 */
/* 移动菜单 开始 */
.menu-btn {
  cursor: pointer;
  display: none;
  position: fixed;
  top: 0.37rem;
  right: 0.3rem;
  z-index: 599;
  width: 0.5rem;
  height: 0.5rem;
}
.menu-btn > span {
  position: absolute;
  left: 0;
  right: 0;
  width: 0.4rem;
  height: 0.03rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.02rem;
  transition: 0.25s;
}
.menu-btn > span:nth-child(1) {
  top: 0.18rem;
}
.menu-btn > span:nth-child(2) {
  top: 0.33rem;
}
.menu-btn > span:nth-child(3) {
  top: 0.48rem;
}
.menu {
  position: fixed;
  z-index: 598;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  background-color: #739eb9;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s;
}
.menu i {
  display: none;
}
.menu > ul {
  margin-top: 1.1rem;
}
.menu > ul > li a {
  position: relative;
  display: block;
  margin: 0 0.15rem;
  padding: 0 0.15rem;
  line-height: 3;
  font-size: 0.26rem;
  color: #fff;
}
.menu > ul > li a::after {
  content: ' ';
  display: inline-block;
  height: 0.06rem;
  width: 0.06rem;
  border-width: 0.02rem 0.02rem 0 0;
  border-color: #ccc;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
  top: 50%;
  margin-top: -0.04rem;
  right: 0.1rem;
}
.menu > ul > li > a {
  font-weight: bold;
}
.menu > ul > li:nth-child(1) {
  animation-delay: 0.1s;
}
.menu > ul > li:nth-child(2) {
  animation-delay: 0.2s;
}
.menu > ul > li:nth-child(3) {
  animation-delay: 0.3s;
}
.menu > ul > li:nth-child(4) {
  animation-delay: 0.4s;
}
.menu > ul > li:nth-child(5) {
  animation-delay: 0.5s;
}
.menu > ul > li:nth-child(6) {
  animation-delay: 0.6s;
}
.menu > ul > li:nth-child(7) {
  animation-delay: 0.7s;
}
.menu > ul > li:nth-child(8) {
  animation-delay: 0.8s;
}
.menu .menu_list_more ul {
  display: none;
}
.menu .menu_list_more ul a {
  padding-left: 0.5rem;
}
.mask {
  display: none;
  position: fixed;
  z-index: 597;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.2s;
}
.menu-btn.on {
  position: fixed;
  top: 0.37rem;
}
.menu-btn.on > span {
  background: #fff;
}
.menu-btn.on > span:nth-child(1) {
  top: 0.21rem;
  transform: rotate(45deg);
}
.menu-btn.on > span:nth-child(2) {
  opacity: 0;
  transform: rotate(90deg);
}
.menu-btn.on > span:nth-child(3) {
  top: 0.21rem;
  transform: rotate(135deg);
}
.menu.on {
  transform: translate3d(0, 0, 0);
}
.mask.on {
  display: block;
  opacity: 1;
}
@media (max-width: 992px) {
  .menu-btn {
    display: block;
  }
}
/* 移动菜单 结束 */
/* 底部footer 开始 */
.footer {
  background: url(../images/footer_bg.jpg) no-repeat bottom center #f8fcfe;
  background-size: 100% auto;
  position: relative;
  background-color: #f2f6ff;
}
.footer .footer_top {
  padding: 0.4rem 0;
}
@media (max-width: 992px) {
  .footer .footer_top img {
    width: 60% !important;
  }
}
.footer .footer_logo {
  cursor: pointer;
  width: 3.58rem;
}
.footer .footer_shortcuts_box {
  display: flex;
  justify-content: space-between;
}
.footer .footer_shortcuts_box dl {
  margin-left: 0.8rem;
  font-size: 0.18rem;
  font-weight: normal;
  letter-spacing: normal;
  color: #333333;
  line-height: 2;
}
.footer .footer_shortcuts_box dl dt {
  font-size: 0.2rem;
  font-weight: normal;
  color: #333333;
}
.footer .footer_shortcuts_box dl a:hover {
  color: var(--mainColor);
}
@media (max-width: 992px) {
  .footer .footer_shortcuts_box {
    display: none;
  }
}
.footer .footer_main {
  padding-bottom: 0.2rem;
}
.footer .footer_main .footer_ewm img {
  width: 1.5rem;
  margin-right: 0.05rem;
}
.footer .footer_main .footer_lxfs_box {
  margin-left: 0.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.15rem;
}
.footer .footer_main .footer_lxfs {
  padding-left: 0.3rem;
  line-height: 0.21rem;
  background-repeat: no-repeat;
  background-position: left 0.03rem;
  background-size: 0.21rem;
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 150%;
  letter-spacing: normal;
  color: #000000;
}
.footer .footer_main .footer_lxfs span {
  font-weight: bold;
  color: #000000;
}
.footer .footer_main .footer_lxfs.s1 {
  background-image: url(../images/footer_icon1.png);
}
.footer .footer_main .footer_lxfs.s2 {
  background-image: url(../images/footer_icon2.png);
}
.footer .links_box .links_title {
  font-size: 0.16rem;
  font-weight: bold;
  line-height: 150%;
  letter-spacing: normal;
  color: #000000;
}
.footer .links_box .links_list > li {
  position: relative;
  width: 2.36rem;
  margin-top: 0.2rem;
  border: 0.01rem solid #dfe2e4;
}
@media (max-width: 992px) {
  .footer .links_box .links_list > li {
    width: 100%;
  }
}
.footer .links_box .links_list > li a {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  line-height: 0.35rem;
  padding: 0 1em;
  font-size: 0.16rem;
  font-weight: normal;
  color: #000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .links_box .links_list > li a:hover {
  color: var(--mainColor);
}
.footer .links_box .links_list > li ul {
  z-index: -1;
  position: absolute;
  left: 0rem;
  right: 0rem;
  bottom: 0.35rem;
  max-height: 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  border: 0.01rem solid #dfe2e4;
  background-color: #fff;
  opacity: 0;
  transform: translate(0, 0.03rem);
  transition: opacity, transform 0.3s;
}
.footer .links_box .links_list > li ul li {
  border-top: 0.01rem solid #ddd;
}
.footer .links_box .links_list > li:hover ul {
  z-index: 9;
  opacity: 1;
  transform: translate(0, 0);
}
.footer .links_box .more_links > a::after {
  content: '';
  position: absolute;
  right: 0.18rem;
  bottom: 0.13rem;
  width: 0;
  border-style: solid;
  border-width: 0.08rem 0.08rem 0rem 0.08rem;
  border-color: var(--mainColor) transparent transparent transparent;
  transition: all 0.3s;
}
.footer .links_box .more_links > a:hover::after {
  transform: rotate(90deg);
}
.footer .copyright {
  padding: 0.3rem 0;
}
.footer .copyright p {
  text-align: center;
  line-height: 2;
}
.footer .copyright p span,
.footer .copyright p a {
  font-size: 0.16rem;
  font-weight: normal;
  color: #000;
  margin: 0 0.1rem;
  word-break: keep-all;
}
.footer .copyright p a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .copyright p a:hover {
  color: var(--mainColor);
}
.footer .copyright p i {
  vertical-align: middle;
  margin-top: -0.03rem;
  margin-right: 0.05rem;
  transition: all 0.3s;
  display: inline-block;
  width: 0.22rem;
  height: 0.22rem;
  background: url(../images/footer_icon3.png) no-repeat center;
  background-size: contain;
}
@media (max-width: 992px) {
  .footer .copyright {
    text-align: center;
  }
  .footer .copyright p span {
    display: block;
  }
}
/* 底部footer 结束 */
/* 滚动条 开始 */
::-webkit-scrollbar {
  width: 0.06rem;
}
::-webkit-scrollbar-thumb {
  background-color: #bbb;
}
::-webkit-scrollbar-track-piece {
  background-color: #ddd;
}
/* 滚动条 结束 */
.p {
  font-family: 'HarmonyOS Sans SC';
  font-weight: normal;
  line-height: 2;
  color: #333;
  text-align: justify;
  word-break: break-word;
}
.p a:hover {
  color: var(--mainColor);
}
.p img {
  vertical-align: middle;
  margin-top: -0.03rem;
  margin-right: 0.08rem;
}
.link_box {
  overflow: hidden;
}
.link_box a,
.link_box img {
  transition: all 0.3s;
  display: block;
  width: 100%;
}
.link_box:hover img {
  transform: scale(1.05);
}
.top_banner {
  min-height: 4.6rem;
  padding-top: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.top_banner > .inner {
  padding-top: 1.1rem;
}
.top_banner .banner_title {
  height: 1.08rem;
  position: relative;
}
.top_banner .banner_title .cn {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  font-size: 0.36rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
}
.top_banner .banner_title .en {
  position: absolute;
  z-index: 1;
  bottom: -0.1rem;
  left: 0rem;
  font-family: Racing Sans One;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .top_banner {
    min-height: 4rem;
    padding-top: 0.4rem;
    background-size: auto 100%;
  }
}
.part {
  min-height: 7.9rem;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
@media (max-width: 992px) {
  .part {
    min-height: auto;
  }
}
.main_title {
  position: relative;
  margin-bottom: 0.6rem;
  height: 1.08rem;
}
.main_title .cn {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  font-family: 'HarmonyOS Sans SC Medium';
  font-size: 0.36rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000000;
}
.main_title .cn.blue {
  color: var(--mainColor);
}
.main_title .cn.white {
  color: #ffffff;
}
.main_title .en {
  position: absolute;
  z-index: 1;
  bottom: -0.11rem;
  left: 0;
  font-family: Racing Sans One;
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: normal;
  color: rgba(242, 245, 249, 0.5);
}
.main_title .en.white {
  color: rgba(255, 255, 255, 0.5);
}
.main_title .en.white2 {
  color: rgba(201, 220, 255, 0.2);
}
.main_title.tac {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.main_title.tac .cn {
  position: static;
  text-align: center;
}
.main_title .more {
  z-index: 3;
  transition: all 0.3s;
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: HarmonyOS Sans SC;
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: normal;
  color: #00418d;
  padding-right: 0.3rem;
  background: url(../images/title_more.png) no-repeat right center;
  background-size: contain;
}
.main_title .more:hover {
  margin-right: -0.1rem;
}
.main_title .more_w {
  color: #fff;
  background-image: url(../images/icon_arrow4.png);
}
.part_info {
  width: 80%;
  margin: 0 auto 0.6rem;
}
.part_info .p {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
.where {
  margin-bottom: 0.6rem;
  font-size: 0.14rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: rgba(0, 0, 0, 0.6);
}
.where a {
  vertical-align: middle;
  transition: all 0.3s;
  margin-left: 0.3rem;
  color: inherit;
  position: relative;
}
.where a::after {
  content: '';
  position: absolute;
  top: 0.05rem;
  width: 0.05rem;
  height: 0.05rem;
  border: 0.02rem solid transparent;
  border-top: 0.02rem solid rgba(0, 0, 0, 0.6);
  border-left: 0.02rem solid rgba(0, 0, 0, 0.6);
  transform: rotateZ(45deg);
}
.where a::after {
  transform: rotateZ(135deg);
}
.where a::after {
  left: -0.2rem;
  top: 0.07rem;
  transform: rotateZ(135deg);
}
.where a:hover {
  color: var(--mainColor);
}
.where .where_home {
  margin-left: 0;
  width: 0.14rem;
  height: 0.2rem;
  background: url(../images/icon_home.png) no-repeat center;
  background-size: contain;
}
.where .where_home.where_home_w {
  background-image: url(../images/icon_home_w.png);
}
.where .where_home:hover {
  background-image: url(../images/icon_home_cur.png);
}
.where .where_home::after {
  display: none;
}
.pages {
  margin-top: 0.6rem;
  width: 100%;
  text-align: center;
  font-size: 0.16rem;
  font-weight: normal;
  color: #333;
}
.pages a,
.pages span,
.pages input {
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 0.32rem;
  line-height: 0.32rem;
  text-align: center;
  border: solid 0.01rem transparent;
  border-radius: 0.03rem;
  background-color: transparent;
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
  padding: 0 0.1rem;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.pages a:hover,
.pages a.current,
.pages span.current {
  border: solid 0.01rem var(--mainColor);
  color: var(--mainColor) !important;
}
.pages input {
  width: 0.46rem;
  vertical-align: bottom;
  border: solid 0.01rem #cccccc;
}
.dj_top_banner {
  height: 4rem;
  min-height: 4rem;
  padding-top: 0.4rem;
  background-image: url(../images/djpp_banner.jpg);
}
.dj_top_banner > .inner {
  height: 100%;
}
.dj_top_banner .banner_text {
  width: 50%;
}
@media (max-width: 992px) {
  .dj_top_banner .banner_text {
    width: 100%;
  }
}
.dj_top_banner .banner_text1 {
  font-size: 0.36rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0.11em;
  background: linear-gradient(176deg, #feecc9 28%, #f7b659 87%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 0.2rem;
}
.dj_top_banner .banner_text2 {
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 180%;
  letter-spacing: normal;
  color: #fde1b4;
}
.dj_top_banner .where {
  position: absolute;
  bottom: 0.3rem;
  right: 0;
  margin-bottom: 0;
  color: #fff;
  text-align: right;
}
.dj_top_banner .where a::after {
  border-top: 0.02rem solid #fff;
  border-left: 0.02rem solid #fff;
}
.gradient_text {
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.list_t {
  margin-top: -0.14rem;
  margin-bottom: -0.14rem;
}
.list_t li:not(.panel-more) * {
  transition: all 0.3s;
  line-height: 1.5;
}
.list_t li:not(.panel-more) a {
  box-sizing: border-box;
  width: 100%;
  padding: 0.14rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_t li:not(.panel-more) a:hover .list_text,
.list_t li:not(.panel-more) a:hover .date {
  color: var(--mainColor);
}
.list_t .list_text {
  flex: 1;
  font-size: 0.18rem;
  font-weight: normal;
  color: #333;
  padding-left: 0.2rem;
  position: relative;
}
@media (min-width: 993px) {
  .list_t .list_text {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
}
@media (max-width: 992px) {
  .list_t .list_text {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.list_t .list_text::before {
  content: '';
  position: absolute;
  top: 0.08rem;
  left: 0rem;
  width: 0.11rem;
  height: 0.12rem;
  background: url(../images/icon_li.png) no-repeat center;
  background-size: contain;
}
.list_t .date {
  flex-shrink: 0;
  font-size: 0.18rem;
  font-weight: normal;
  color: #999;
  margin-left: 0.3rem;
}
@media (max-width: 992px) {
  .list_t .date {
    display: none;
  }
}
.main_title2 {
  text-align: center;
  position: relative;
  padding-bottom: 0.2rem;
}
.main_title2::after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0rem;
  width: 0.79rem;
  height: 0.04rem;
  background-color: #eda000;
  border-radius: 0.02rem;
}
.main_title2 span {
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  font-size: 0.4rem;
  font-weight: bold;
  font-style: italic;
  font-stretch: normal;
  letter-spacing: 0rem;
  color: #0084f6;
  background: linear-gradient(to right, #0084f6, #00bbcc);
}
.side_menu {
  margin-top: -1.4rem;
  width: 100%;
}
.side_menu h2 {
  box-sizing: border-box;
  position: relative;
  height: 1.75rem;
  padding-top: 0.9rem;
  padding-left: 0.35rem;
  font-size: 0.32rem;
  font-weight: bold;
  color: #fff;
  background: url(../images/side_title.png) no-repeat center top;
  background-size: 100% 100%;
}
.side_menu ul {
  box-sizing: border-box;
  width: 100%;
}
.side_menu ul li {
  margin-top: 0.1rem;
  box-sizing: border-box;
  width: 100%;
}
.side_menu ul li a {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%;
  line-height: 0.76rem;
  padding-left: 0.35rem;
  padding-right: 0.65rem;
  font-size: 0.24rem;
  font-weight: normal;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.side_menu ul li a:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0rem;
  width: 0.05rem;
  height: 100%;
  background-color: #bdddff;
  transition: all 0.3s;
}
.side_menu ul li a::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.35rem;
  width: 0.28rem;
  height: 0.28rem;
  background: url(../images/icon_arrow5.png) no-repeat center;
  background-size: contain;
  opacity: 0;
}
.side_menu ul li a:hover {
  color: #eda000;
}
.side_menu ul .cur a {
  font-weight: bold;
  color: #eda000;
  background-image: linear-gradient(90deg, #fff7e6 0%, #ffffff 100%);
}
.side_menu ul .cur a:before {
  background-color: #eda000;
}
.side_menu ul .cur a::after {
  opacity: 1;
}
@media (max-width: 992px) {
  .side_menu {
    margin-top: 0;
  }
  .side_menu ul {
    max-height: 1.4rem;
    overflow-y: auto;
    padding-top: 0.1rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .side_menu ul::after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .side_menu ul > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding-left: 0rem;
    padding-right: 0rem;
    float: left;
  }
  .side_menu ul > li:nth-child(n) {
    margin-top: 0;
  }
  .side_menu ul > li:nth-child(n)::after {
    display: block;
  }
  .side_menu ul > li:nth-child(n + 2) {
    margin-top: 0.1rem;
  }
  .side_menu ul > li:nth-child(2) {
    margin-top: 0;
  }
  .side_menu ul > li:nth-child(2n)::after,
  .side_menu ul > li:last-child::after {
    display: none;
  }
  .side_menu ul a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .side_menu ul li a {
    line-height: 0.5rem !important;
    font-size: 0.18rem !important;
  }
}
.list_title {
  margin-bottom: 0.4rem;
  position: relative;
  border-bottom: 0.01rem solid #dcdcdc;
}
.list_title span {
  display: inline-block;
  position: relative;
  font-size: 0.24rem;
  font-weight: bold;
  color: #eda000;
  padding-bottom: 0.23rem;
  text-align: center;
}
.list_title span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.04rem;
  background-color: #eda000;
}
.list_title .where {
  border: none;
  margin-top: 0.05rem;
}
@media (max-width: 992px) {
  .list_title .where {
    float: left;
    margin: 0.3rem 0;
  }
}
.list_t2 {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}
.list_t2 li:not(.panel-more) * {
  transition: all 0.3s;
  line-height: 1.5;
}
.list_t2 li:not(.panel-more):not(:last-child) {
  border-bottom: 0.01rem dashed #e4e4e4;
}
.list_t2 li:not(.panel-more) a {
  box-sizing: border-box;
  width: 100%;
  padding: 0.25rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_t2 li:not(.panel-more) a:hover .list_text,
.list_t2 li:not(.panel-more) a:hover .date {
  color: var(--mainColor);
}
.list_t2 li:not(.panel-more) a:hover .list_text::before {
  background-color: var(--mainColor);
}
.list_t2 .list_text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 0.18rem;
  font-weight: normal;
  color: #444;
  position: relative;
}
.list_t2 .date {
  flex-shrink: 0;
  font-size: 0.18rem;
  font-weight: normal;
  color: #444;
  margin-left: 0.3rem;
}
