@font-face {
  font-family: "";
  src: url("");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 0.16rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  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{
    font-weight: bold;
}

:root {
  --c: #3d60ed;
  --s_tran: 0.3s ease-in-out;
  --l_tran: 1.5s ease-in-out;
  --m_tran: 0.6s ease-in-out;
  --active_color: #2b66b0;
  --Microsoft_YaHei_bold: "";
}

.main {
  max-width: 15.83rem;
  width: 82.45%;
  margin: 0 auto;
}

.content_width {
  max-width: 13.78rem;
  width: 71.77%;
  margin: 0 auto;
}

.content_space {
  padding-top: 1.05rem;
  padding-bottom: 1.57rem;
}

.logo_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;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.auto_height_img img {
  height: 100%;
}

hr {
  border: none;
}

/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */

/* 左右flex布局 */
.flex-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.flex-center{
    display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.flex-start {
  justify-content: flex-start;
}

.banner {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: pink;
}

.banner span:first-of-type {
  font-weight: bold;
  font-size: 0.45rem;
  color: #ffffff;
  line-height: 1.47rem;
}

.banner span:nth-of-type(2) {
  font-weight: bold;
  font-size: 0.45rem;
  color: #ffffff;
  line-height: 1.47rem;
}

.level_2 {
  height: 0.8rem;
}

.menu_active,
.level_2_item:hover > a {
  color: var(--active_color) !important;
  font-weight: bold;
}

.level_2_items .level_2_item {
  font-size: 0.18rem;
  color: #000000;
  line-height: 0rem;
  margin-right: 0.49rem;
  transition: var(--m_tran) font-weight, color;
}

.level_2_items .level_2_item::before {
  content: "";
  display: block;
  margin-right: 0.1rem;
  background: url("/img/bread.png") no-repeat;
  background-size: cover;
  width: 0.08rem;
  height: 0.16rem;
  transition: var(--m_tran) background;
flex:none
}
.level_2_items .level_2_item.menu_active::before,
.level_2_item:hover::before {
  background: url("/img/bread_active.png") no-repeat;
     background-size: contain;}

.bread_item:first-of-type > a::before {
  content: "";
  display: block;
  width: 0.13rem;
  height: 0.13rem;
  background: url("/img/home_icon.png");
  background-size: cover;
  margin-right: 0.09rem;
}

.bread_item {
  font-size: 0.14rem;
  color: #898989;
  line-height: 0.3rem;
}

.bread_item:last-of-type {
  color: #0f0f0f;
}

.bread_item::after {
  content: ">";
  display: block;
  margin: 0 0.05rem;
  font-size: 0.14rem;
  color: #898989;
  line-height: 0.3rem;
}

.bread_item:last-of-type:after {
  content: "";
}

/* 列表flex布局 */
.list_flex {
  display: flex;
  flex-wrap: wrap;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*多行溢出*/
.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;
}

/* 板块标题 */
.index_title {
}

/* 内页标题 */
.inner_title {
}

/* 水波纹效果 */
.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);
  }
}

.more {
  height: 0.81rem;
  width: 1.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #504d4d;
  font-size: 0.18rem;
  border-right: 0.01rem solid #787676;
  transition: all 0.25s;
}

.pointer {
  cursor: pointer;
}

/* 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;
}

.scale_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: rgba(56, 102, 240, 1);
  color: white;
  border: 0.01rem solid rgba(56, 102, 240, 1);
}

.page .list .active {
  background: rgba(56, 102, 240, 1);
  color: white;
  border: 0.01rem solid rgba(56, 102, 240, 1);
}

.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 rgba(56, 102, 240, 1);
  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: rgba(61, 96, 237, 1);
}

.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 rgba(61, 96, 237, 1);
  outline: none;
  font-size: 0.14rem;
  color: #ffffff;
  background: transparent;
}

@media only screen and (max-width: 1024px) {
  .page_wrap{
    margin-top: 50px;
  }
  .absolute{
    width: 80%;
    /* padding: 0 0.2rem;
    left: 0 !important;  */
  }
  .scale_box .scale_img{
    /* object-fit: contain; */
  }
  .banner{
    height: 3rem;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
  }
  .level_2{
    display: none;
  }
  .content_width{
    width: 80%;
  }
  .content_space{
    padding-top: 0.6rem;
    padding-bottom: 0.57rem;
  }
  
}