@font-face {
  font-family: 'Poppins';
  src: url('/font/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/font/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MiSans';
  src: url('/font/MiSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MiSans';
  src: url('/font/MiSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  background-color: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 0.16rem;
  /* font-family: Source Han Sans CN, Source Han Sans CN; */
  font-family: "Microsoft YaHei" !important;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* For some Androids */
  /* 英文开启 */
  word-wrap: break-word !important;
  word-break: normal !important;
}

strong *,
strong,
b {
	font-weight: bold;
	font-size: inherit;
}
strong span{
    font-size: inherit;
}

:root {
  --c: #3D60ED;
  --s_tran: 0.3s ease-in-out;
  --l_tran: 0.8s ease-in-out;
}
.main {
  justify-content: space-between;
  max-width: 15rem;
  width: 95%;
  margin: 0 auto;
}
.page_wrap {
  padding-top: 1.2rem;
}
.lmx_h1 {
  width: 0px;
  height: 0px;
  margin: 0;
  text-indent: -9999em;
}
html {
  font-size: 100px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  display: block;
  width: 100%;
  height: 100%;
}
ul {
  list-style: none;
}
input,
textarea {
  outline: 0;
  border: none;
}
hr {
  border: none;
}
/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 左右flex布局 */
.flex_box {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.flex_start {
  align-items: flex-start;
}
.flex_box [class*=flex_box] {
  flex: 1 1 auto;
  position: relative;
}
/* 列表flex布局 */
.list_flex {
  display: flex;
  flex-wrap: wrap;
}
/*多行溢出*/
.line1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
}
.line5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 5;
}
/* 板块标题 */
/* 内页标题 */
/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}
.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}
@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }
  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}
.pointer {
  cursor: pointer;
}
/* 公共面包屑 */
.bread .icon {
  width: 0.15rem;
  height: 0.15rem;
  margin-right: 0.08rem;
}
.bread .item span {
  display: flex;
  align-items: center;
  color: #3d60ed;
  font-size: 0.14rem;
}
.bread .item > a {
  display: flex;
  align-items: center;
}
.bread .list .item:not(:first-child)::before {
  content: '/';
  display: block;
  font-size: 0.14rem;
  color: #3d60ed;
  margin: 0 0.05rem;
  align-self: center;
}
.bread .list,
.bread .item {
  display: flex;
}
.bread .main {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}
.bread .active span {
  color: #e9eeff;
}
.bread .list {
  justify-content: flex-end;
}
/* hover-图片放大1.1 */
.scale_box {
  display: block;
  width: auto;
  overflow: hidden;
}
.scale_box .scale_img {
  width: 100%;
  height: 100%;
  transition: var(--s_tran);
  cursor: pointer;
  object-fit: cover;
}
.hover_box:hover .scale_img {
  transform: scale(1.1);
}
/* hover-图片旋转向上位移 */
.rotate_box {
  display: block;
  width: auto;
}
.rotate_box .rotate_img {
  transition: var(--s_tran);
  object-fit: cover;
}
.hover_box:hover .rotate_img {
  transform: rotateY(180deg) translateY(-0.1rem);
}
/* 页码 */
.page {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.41rem;
  display: flex;
  align-items: center;
}
.page .list {
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.page .list .item {
  display: block;
  width: 0.32rem;
  height: 0.32rem;
  margin-left: 0.03rem;
  margin-right: 0.03rem;
  border: 0.01rem solid rgba(56, 102, 240, 0);
  text-align: center;
  line-height: 0.32rem;
  font-size: 0.14rem;
  color: #FFFFFF;
  cursor: pointer;
  overflow: hidden;
}
.page .list .item:hover {
  background: #3866f0;
  color: white;
  border: 0.01rem solid #3866f0;
}
.page .list .active {
  background: #3866f0;
  color: white;
  border: 0.01rem solid #3866f0;
}
.page .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.32rem;
  height: 0.32rem;
  margin-left: 0.03rem;
  margin-right: 0.03rem;
  border: 0.01rem solid #3866f0;
  cursor: pointer;
  overflow: hidden;
}
.page .btn img {
  height: 0.11rem;
  object-fit: contain;
}
.page .prev::after {
  content: '<';
}
.page .next::after {
  content: '>';
}
.page .prev::after,
.page .next::after {
  position: absolute;
  font-size: 0.16rem;
  font-family: '宋体';
  color: #fff;
  font-weight: bold;
}
.page .btn:hover {
  background: #3d60ed;
}
.page .disable {
  opacity: 0.5;
}
.page .btn:hover img {
  filter: brightness(0) invert(1);
}
.page .total {
  margin-right: 0.23rem;
  font-size: 0.14rem;
  color: #333333;
}
.page .to_page {
  font-size: 0.14rem;
  color: #FFFFFF;
  margin-left: 0.08rem;
}
.page .to_page input {
  width: 0.6rem;
  height: 0.31rem;
  margin: 0 0.05rem;
  padding: 0 0.1rem;
  border-radius: 0.01rem 0.01rem 0.01rem 0.01rem;
  border: 0.01rem solid #3d60ed;
  outline: none;
  font-size: 0.14rem;
  color: #FFFFFF;
  background: transparent;
}
.img-box {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
}
.img-box img,
.img-box iframe,
.img-box video {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.slick-dots button {
  display: none;
}
.str_wrap {
  overflow: hidden;
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  position: relative;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.str_wrap.str_active {
  background: #f1f1f1;
}
.str_move {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  cursor: move;
}
.str_move_clone {
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 100%;
  top: 0;
}
.str_vertical .str_move_clone {
  left: 0;
  top: 100%;
}
.str_down .str_move_clone {
  left: 0;
  bottom: 100%;
}
.str_vertical .str_move,
.str_down .str_move {
  white-space: normal;
  width: 100%;
}
.str_static .str_move,
.no_drag .str_move,
.noStop .str_move {
  cursor: inherit;
}
.str_wrap img {
  max-width: none !important;
}
.inside_banner {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.inside_banner .bg {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 4rem;
}
.inside_banner .bg .page_tit {
  font-family: Poppins, Poppins;
  font-weight: bold;
  font-size: 0.5rem;
  color: #FFFFFF;
  line-height: 0.5rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.inside_banner .bg .page_subtit {
  color: #fff;
  font-size: 0.25rem;
  margin-top: 0.3rem;
}
.inside_banner .subnav {
  padding: 0.27rem 0;
  /*background: #F5F5F5;*/
}
.inside_banner .subnav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inside_banner .subnav ul li {
  padding: 0 0.06rem;
}
.inside_banner .subnav ul li .item a {
  padding: 0.1rem 0.15rem;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  justify-content: center;
  border: 0.01rem solid #25254C;
  border-radius: 0.34rem 0.34rem 0.34rem 0.34rem;
  background-color: rgba(0, 0, 0, 0);
  color: #414141;
  font-size: 0.2rem;
  transition: all 0.5s;
}
.inside_banner .subnav ul li .item a:hover {
  background: #DD0A1E;
  border-color: #DD0A1E;
  color: #fff;
}
.inside_banner .subnav ul .active .item a {
  background: #DD0A1E;
  border-color: #DD0A1E;
  color: #fff;
}
.inside_banner .crumbNav {
  padding: 0.49rem 0;
}
.inside_banner .crumbNav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.inside_banner .crumbNav ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.inside_banner .crumbNav ul li span {
  padding: 0 0.05rem;
}
.inside_banner .crumbNav ul li a,
.inside_banner .crumbNav ul li span {
  color: #939393;
  font-size: 0.2rem;
  transition: all 0.5s;
}
.inside_banner .crumbNav ul li a:hover {
  color: #464646;
}
.inside_banner .crumbNav ul .active a {
  color: #464646;
}
.inside_pageTit {
  font-weight: bold;
  color: #1C1C1C;
  font-size: 0.4rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.Pager {
  padding: 0.32rem 0 0.73rem;
}
.Pager ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Pager ul li {
  padding: 0 0.04rem;
}
.Pager ul li > div a {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
  border: 0.01rem solid #EEEEEE;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #7D7D7D;
  line-height: 0.24rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.Pager ul li > div a i {
  font-size: 0.16rem;
  transition: all 0.5s;
  color: #7D7D7D;
}
.Pager ul li > div a:hover {
  border-color: #DD0A1E;
  background-color: #DD0A1E;
  color: #fff;
}
.Pager ul li > div a:hover i {
  color: #fff;
}
.Pager ul li .none a {
  border: unset;
  pointer-events: none;
}
.Pager ul li .last a {
  width: max-content;
  padding: 0 0.16rem;
}
.detailPager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.21rem 0;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
.detailPager > div a {
  display: flex;
  align-items: center;
  font-family: MiSans, MiSans;
  font-weight: 400;
  font-size: 0.18rem;
  color: #666666;
  line-height: 0.3rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  transition: all 0.5s;
}
.detailPager > div a span {
  font-family: MiSans, MiSans;
  font-weight: 400;
  font-size: 0.18rem;
  color: #666666;
  line-height: 0.3rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  transition: all 0.5s;
}
.detailPager > div a i {
  color: #666666;
  font-size: 0.16rem;
  transition: all 0.5s;
  margin-right: 0.1rem;
}
.detailPager > div a:hover {
  color: #000;
}
.detailPager > div a:hover span {
  color: #000;
}
.detailPager > div a:hover i {
  color: #000;
}
.inside_calendar {
  padding-bottom: 1rem;
}
.inside_calendar .block_tit {
  font-family: Poppins, Poppins;
  font-weight: bold;
  font-size: 0.3rem;
  color: #070707;
  line-height: 0.5rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 0.35rem;
}
.inside_calendar .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.3rem;
}
.inside_calendar .list ul li {
  margin-bottom: 0.3rem;
  padding: 0 0.3rem;
}
.inside_calendar .list ul li .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  transition: all 0.5s;
  border-radius: 0.34rem 0.34rem 0.34rem 0.34rem;
  border: 1px solid #DD0A1E;
  padding: 0.16rem 0.3rem;
}
.inside_calendar .list ul li .item a .icon i {
  color: #DD0A1E;
  font-size: 0.16rem;
  padding: 0 0.14rem;
  transition: all 0.5s;
}
.inside_calendar .list ul li .item a .icon .icon-a-lujing40704 {
  font-size: 0.22rem;
}
.inside_calendar .list ul li .item a span {
  font-family: MiSans, MiSans;
  font-weight: bold;
  font-size: 0.22rem;
  color: #DD0A1E;
  line-height: 1;
  text-align: left;
  font-style: normal;
  text-transform: none;
  transition: all 0.5s;
}
.inside_calendar .list ul li .item a:hover {
  background-color: #DD0A1E;
}
.inside_calendar .list ul li .item a:hover .icon i {
  color: #fff;
}
.inside_calendar .list ul li .item a:hover span {
  color: #fff;
}
.inside_Pronote {
  padding-bottom: 1rem;
}
.inside_Pronote .block_tit {
  font-family: Poppins, Poppins;
  font-weight: bold;
  font-size: 0.3rem;
  color: #070707;
  line-height: 0.5rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 0.35rem;
}
.inside_Pronote .inside_Pronote_box {
  display: flex;
  align-items: center;
}
.inside_Pronote .inside_Pronote_box > div {
  width: 50%;
}
.inside_Pronote .infobox {
  padding-right: 0.52rem;
}
.inside_Pronote .pic .img-box {
  padding-bottom: 51.89189189%;
}


@media only screen and (max-width: 1024px) {
  .page_wrap{
    padding-top: 50px;
    overflow: hidden;
  }
  .inside_banner .subnav ul{
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .inside_banner .subnav ul li{
    flex: 0 0 50%;
    margin-bottom: 0.1rem;
  }
  .inside_banner .crumbNav{
    display: none;
  }
  .inside_pageTit{
    padding-top: 0.4rem;
  }
  table img{
    width: 100%;
    height: auto;
  }
  table tr{
    display: grid;
    height: auto !important;
  }
  table td{
    width: 100% !important;
    height: auto !important;
  }
  .contentBox img,.contenBox img{
    width: 100%;
    height: auto;
  }
  .inside_calendar .list ul{
    justify-content: space-around;
  }
  .inside_banner .subnav ul li .item a span{
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .detailPager > div a{
    font-size: 12px;
  }
}
