:root {
  --color: #23519a;
  --lgColor: linear-gradient(to right, #23519a, #3bbee7);
}

@font-face {
  font-family: HarmonyOS_Sans_SC_Regular;
  src: url("../font/HarmonyOS_Sans_SC_Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: HarmonyOS_Sans_SC_Medium;
  src: url("../font/HarmonyOS_Sans_SC_Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: HarmonyOS_Sans_SC_Bold;
  src: url("../font/HarmonyOS_Sans_SC_Bold.ttf");
  font-display: swap;
}

.font_m {
  font-family: HarmonyOS_Sans_SC_Medium;
}

.font_b {
  font-family: HarmonyOS_Sans_SC_Bold;
}

body {
  font-family: HarmonyOS_Sans_SC_Regular;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #d7d7d7;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color);
}

.a_btn {
  text-decoration: none;
  border: 1px solid #888;
  background: transparent;
  color: #888;
  display: inline-flex;
  padding: 11px 2.96vw;
  position: relative;
  overflow: hidden;
}

.a_btn .button_text {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out 0.2s;
}

.a_btn .button_bg {
  position: absolute;
  bottom: -100%;
  left: 0px;
  right: 0px;
  height: 100%;
  background: linear-gradient(to right, #23519a, #3bbee7);
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.a_btn:hover .button_bg {
  bottom: 0%;
  color: #888;
}

.a_btn:hover {
  color: #fff;
  border: 1px solid;
  border-image: linear-gradient(to right, #23519a, #3bbee7) 1;
}

@media screen and (max-width: 1280px) and (min-width: 1101px) {
  .a_btn {
    padding: 6px 2.8vw;
  }
}

@media only screen and (max-width: 768px) {
  .a_btn {
    padding: 5px 30px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0px;
  background: transparent;
  -webkit-transition: top .4s ease-in-out;
  transition: top .4s ease-in-out
}

.header.active {
  background: #fff;
  transition: all .4s ease-in-out;
}

.header.hideHeader {
  transform: translateY(-100%);
  background: #fff;
  -webkit-transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out
}

.header.showHeader {
  transform: translateY(0);
  -webkit-transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out
}

.header:hover {
  background: #fff;
}

.header .header_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  width: 16%;
  max-width: 245px;
}

.header_logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  transition: none;
}

.logo_color {
  display: none;
}

.header:hover .logo_bai {
  display: none;
}

.header.active .logo_bai {
  display: none;
}

.header:hover .logo_color {
  display: block;
}

.header.active .logo_color {
  display: block;
}

.nav_con {
  width: calc(84% - 140px);
}

.nav_con>.nav_close {
  display: none;
}

.nav_con>ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav_con>ul li {
  padding: 0 1.2vw;
  position: relative;
}

.nav_con>ul li .nav_yj_name {
  display: inline-block;
  color: #222;
  position: relative;
  line-height: 100px;
  transition: all 0.5s;
}

.ny_head .nav_con>ul li .nav_yj_name {
  color: #fff;
}

.nav_con>ul li .nav_yj_name:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 4px;
  transition: all .36s;
  background: var(--color);
}

.nav_con>ul li .nav_arrow {
  display: none;
}

.nav_con>ul li:hover .nav_yj_name {
  color: var(--color) !important;
}

.nav_con>ul li:hover .nav_yj_name:before {
  width: 100%;
}

.header:hover .nav_con>ul li .nav_yj_name {
  color: #333;
}

.header.active .nav_con>ul li .nav_yj_name {
  color: #333;
}

.nav_ej {
  position: fixed;
  background: rgba(255, 255, 255, .8);
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  display: none;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, .05);
}

.pro_ej {
  background: rgba(255, 255, 255, .8);
}

.nav_ej .ej_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.pro_ej_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1vw 0;
}

.nav_ej .ej_name {
  padding: 0 1.6vw;
  margin: 1vw 0;
}

.nav_ej .ej_name a {
  display: block;
  line-height: 20px;
  padding: 15px 0;
  text-align: center;
  color: #333;
  position: relative;
}

.nav_ej .ej_name a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--color);
  transition: all .3s;
  transform: translateX(-50%);
}

.nav_ej .ej_name a:hover:before {
  width: 100%;
}

.nav_ej .ej_name a:hover {
  color: var(--color);
}

.pro_ej_left {
  width: 20%;
  border-right: 1px solid #ddd;
}

.nav_ej_name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  line-height: 1;
}

.nav_ej_name>a {
  color: #333;
}

.arrow_right {
  position: absolute;
  right: 1.2vw;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: none;
}

.arrow_right .icon {
  width: 100%;
  height: 100%;
}

.nav_ej_name.active>a {
  color: var(--color);
}

.nav_ej_name.active .icon {
  fill: var(--color);
}

.pro_sj_center {
  width: 26%;
  padding: 0 3vw;
  border-right: 1px solid #ddd;
}

.nav_sj_box {
  width: 100%;
  display: none;
}

.nav_sj_box.active {
  display: block;
}

.nav_sj_box .nav_sj_name {
  display: block;
  width: 100%;
  position: relative;
  line-height: 1;
  padding: 20px 1vw;
  border-bottom: 1px solid #ddd;
}

.nav_sj_box .nav_sj_name:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color);
  transition: all .6s;
}

.nav_sj_name .sj_cn {
  color: #333;
  padding-right: 10px;
}

.nav_sj_name .sj_en {
  color: #999;
}

.nav_sj_name.active .sj_cn {
  color: var(--color);
}

.nav_sj_name.active .sj_en {
  color: var(--color);
}

.nav_sj_name.active .icon {
  fill: var(--color);
}

.nav_sj_name.active:before {
  width: 100%;
}

.nav_pro_list {
  width: 54%;
  padding-top: 1vw;
  padding-left: 3vw;
}

.nav_sj_pro {
  width: 100%;
  display: none;
}

.nav_sj_pro.active {
  display: block;
}

.nav_pro_group {
  width: 100%;
  display: none;
  flex-wrap: wrap;
}

.nav_pro_group.active {
  display: flex;
}

.nav_sj_pro a {
  display: block;
  width: calc((100% - 60px) / 3);
  height: 7vw;
  min-height: 80px;
  max-height: 130px;
  margin-right: 30px;
  margin-bottom: 30px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.nav_sj_pro a:nth-child(3n) {
  margin-right: 0;
}

.nav_sj_pro a:last-child {
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav_sj_pro a img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .6s;
}

.nav_sj_pro a:hover img {
  transform: translate(-50%, -50%) scale(1.05);
}

.nav_right {
  width: 140px;
  padding-left: 1.2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}

.nav_right .icon {
  fill: var(--color);
}

.ny_head .nav_right .icon {
  fill: #fff;
}

.nav_search {
  width: 20px;
  height: 20px;
  position: relative;
}

.nav_search .icon {
  width: 100%;
  height: 100%;
}

.nav_lang {
  position: relative;
}

.nav_lang_tt {
  color: var(--color);
  position: relative;
  display: flex;
  align-items: center;
}

.ny_head .nav_lang_tt {
  color: #fff;
}

.nav_lang_tt .icon {
  width: 26px;
  height: auto;
}

.header:hover .nav_right .icon {
  fill: var(--color);
}

.header.active .nav_right .icon {
  fill: var(--color);
}

.header:hover .nav_right .nav_lang_tt {
  color: var(--color);
}

.header.active .nav_right .nav_lang_tt {
  color: var(--color);
}

.nav_lang_box {
  position: absolute;
  top: auto;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  width: auto;
  min-width: 100px;
  padding-top: 6px;
  opacity: 0;
  transition: all .5s;
  display: none;
}

.nav_lang:hover .nav_lang_box {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav_lang_box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #fff transparent;
}

.nav_lang_item {
  width: 100%;
  padding: 0 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, .15);
}

.nav_lang_box a {
  display: block;
  line-height: 40px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.nav_lang_box a:hover {
  color: var(--color);
}

.nav-button {
  display: none;
}

@media only screen and (max-width:1280px) {
  .header_logo {
    max-width: 170px;
  }

  .nav_right {
    width: 110px;
  }

  .nav_con {
    width: calc(84% - 110px);
  }

}

@media only screen and (max-width:1024px) {
  .nav_con>ul li {
    padding: 0 1.1vw;
  }

  .nav_right {
    width: 100px;
  }

  .nav_con {
    width: calc(84% - 100px);
  }
  .nav_con>ul li .nav_yj_name{
    font-size: 14px!important;
  }
}

@media only screen and (max-width: 768px) {
  .header_logo {
    width: 40%;
    margin: 11px 0;
  }

  .logo_bai {
    display: none;
  }

  .logo_color {
    display: block;
  }

  .header_logo img {
    max-height: 45px;
  }

  .nav_con {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    transition: all 0.5s;
    padding: 0;
  }

  .nav_con.active {
    right: 0;
  }

  .nav_con>.nav_close {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
  }

  .nav_close .icon {
    width: 30px;
    height: auto;
  }

  .nav_con>ul {
    display: block;
    background: #fff;
    width: 80%;
    padding: 60px 20px 0;
    margin: 0;
  }

  .nav_con>ul li {
    border-bottom: 1px solid #ddd;
  }

  .nav_con>ul li .nav_yj_name {
    line-height: 50px;
  }

  .nav_con>ul li .nav_arrow {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 5px;
    top: 15px;
    transition: all 0.5s;
  }

  .nav_con>ul li.active .nav_arrow {
    transform: rotate(90deg);
  }

  .nav_con>ul li.active .nav_arrow .icon {
    fill: var(--color);
  }

  .nav_con>ul li .nav_yj_name:before {
    display: none;
  }

  .nav_ej .ej_name a:before {
    display: none;
  }

  .nav_ej {
    position: unset;
    box-shadow: none;
    transform: translateX(0%);
    width: 100%;
    border-radius: 0;
    background: #f7f8fa;
  }

  .nav_ej .ej_name {
    width: 100%;
    padding: 0;
  }

  .nav_ej .ej_name a {
    text-align: left;
    padding: 10px 0;
  }

  .nav_right {
    width: 90px;
    margin-left: 15%;
  }

  .nav_lang_tt .icon:nth-child(3) {
    display: none;
  }

  .nav-button {
    display: block;
    width: 40px;
    height: 40px;
  }

  .nav-button .icon {
    width: 100%;
    height: 100%;
  }

  .pro_ej_left {
    width: 100%;
    border-right: none;
  }

  .nav_ej_name {
    line-height: 20px;
    padding: 10px 0;
  }

  .nav_ej_name>a {
    font-size: 14px !important;
  }

  .nav_ej_name .arrow_right {
    display: none;
  }

  .pro_sj_center {
    display: none;
  }

  .nav_pro_list {
    display: none;
  }
}

.head_search {
  position: fixed;
  top: 100px;
  width: 100%;
  background: rgba(255, 255, 255, 1);
  padding: 2vw;
  z-index: 99;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  display: none;
}

.head_search .input-container {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.head_search .input-container input {
  width: calc(100% - 40px);
  border: none;
  background: none;
}

.head_search .input-container .btnSearch1 {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  cursor: pointer;
}

.head_search .input-container .btnSearch1 .icon {
  width: 24px;
  height: auto;
}

.nav_search svg:nth-child(2) {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.nav_search.on svg:nth-child(1) {
  opacity: 0;
}

.nav_search.on svg:nth-child(2) {
  opacity: 1;
}

.footer {
  background: #fff;
  position: relative;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color);
}

.footer:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5vw;
  height: 3px;
  background: #3bbee7;
}

.footer_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer_top .footer_top_left {
  width: 35%;
}

.footer_top .footer_top_left>img {
  width: auto;
  height: auto;
  max-width: 245px;
}

.lx_name {
  color: #222;
  margin-bottom: 12px;
}

.footer_info .info_li {
  color: #222;
  width: 100%;
  line-height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer_info .info_li a:hover {
  color: var(--color);
}

.footer_info .info_li img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin-top: 10px;
  opacity: 0.2;
  margin-right: 1vw;
}

.footer_info .info_li span {
  display: block;
  width: 50px;
  text-align-last: justify;
}
.footer_info .info_li p{
    display: block;
    width: calc(100% - 102px);
}
.footer_info .info_li a {
  display: block;
}

.footer_media {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer_media .media_li {
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  transition: all .5s;
}

.footer_media .media_li:hover {
  transform: translateY(-5px);
}

.footer_media .media_icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .15);
}

.footer_media .media_icon img {
  width: auto;
  height: auto;
  max-width: 50%;
}

.footer_media .media_code {
  width: calc((100% - 20px) / 3);
  max-width: 120px;
  margin-right: 10px;
  opacity: 1;
  transition: all .5s;
  z-index: 5;
}

.footer_media .media_code:nth-child(3n) {
  margin-right: 0;
}

.footer_media .media_code:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #fff transparent;
  display: none;
}

.footer_media .media_code img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.media_li:hover .media_code {
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
}

.footer_top_right {
  width: 64%;
}

.footer_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer_nav .nav_li_one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  margin-bottom: 1vw;
  position: relative;
  padding-bottom: 15px;
}

.footer_nav .nav_li_one:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3bbee7;
}

.footer_nav .nav_li_one::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color);
}

.footer_nav .nav_li_one a:hover {
  color: var(--color);
}

.sub_arrow {
  font-size: 18px;
  width: 50px;
  height: 100%;
  text-align: center;
  padding: 0 5px;
  color: #333;
  display: none;
  position: relative;
}

.sub_arrow:before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s;
}

.footer_nav_li.active .sub_arrow:before {
  content: "-";
}

.footer_nav .nav_li_two {
  display: block;
  color: #999;
  line-height: 2.25;
  position: relative;
}

.footer_nav .nav_li_two span {
  position: relative;
}

.footer_nav .nav_li_two:hover {
  color: var(--color);
}

.footer_line {
  width: 100%;
  height: 1px;
  background: #eee;
}

.footer_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

.footer_bottom .footer_bottom_left {
  width: 57%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer_bottom_left a {
  position: relative;
  color: #999;
  line-height: 1.8;
  margin: 0 1vw;
}

.footer_bottom_left a:hover {
  color: var(--color);
}

.bottom_copyright {
  color: #999;
  line-height: 1.8;
}

.footer_bottom_right {
  width: 43%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #999;
  line-height: 1.8;
}

.link_box a {
  color: #999;
}

.link_box a:hover {
  color: var(--color)
}

.footer_link {
  width: 100%;
  max-width: 370px;
  height: 54px;
  border: none;
  padding: 0 20px;
  color: #777;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f4f5f6 url(https://omo-oss-image.thefastimg.com/portal-saas/pg2024062614321617949/cms/image/5c1729ed-f91e-4f17-8fe5-26c00596fd83.png) no-repeat 93%;
  display: block;
}

@media screen and (max-width: 1280px) and (min-width: 1101px) {
  .footer_top .footer_top_left>img {
    max-width: 190px;
  }
}

@media only screen and (max-width:1024px) {
  .footer_top .footer_top_left>img {
    max-width: 200px;
  }

  .footer_nav .nav_li_two {
    font-size: 14px;
  }

  .footer_info .info_li {
    font-size: 14px;
    list-style: 36px;
  }

  .bottom_copyright {
    font-size: 14px;
  }

  .footer_bottom_left a {
    font-size: 14px;
  }

  .footer_bottom_right * {
    font-size: 14px;
  }

  .footer_bottom .footer_bottom_left {
    width: 59%;
  }

  .footer_bottom_right {
    width: 41%;
  }
}

@media only screen and (max-width: 768px) {
  .footer_top {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .footer_top .footer_top_left {
    width: 100%;
  }

  .footer_top .footer_top_left>img {
    display: block;
    max-width: 180px;
    margin: 0 auto;
  }

  .footer_info .info_li {
    line-height: 30px;
    justify-content: center;
  }

  .footer_info .info_li img {
    margin-top: 5px;
    margin-right: 10px;
  }

  .footer_info .info_li span {
    width: 35px;
  }

  .footer_top_right {
    width: 100%;
    margin-top: 20px;
  }

  .footer_nav_li {
    width: 100%;
  }

  .footer_nav .nav_li_one {
    line-height: 3;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    font-size: 16px;
  }

  .footer_nav .nav_li_one:before {
    display: none;
  }

  .footer_nav .nav_li_one::after {
    display: none;
  }

  .sub_arrow {
    display: block;
    height: 50px;
  }

  .nav_sub {
    display: none;
  }

  .footer_bottom .footer_bottom_left {
    width: 100%;
  }

  .bottom_copyright {
    width: 100%;
    text-align: center;
  }

  .footer_bottom_left a {
    width: 100%;
    text-align: center;
  }

  .footer_bottom_right {
    width: 100%;
    justify-content: center;
  }

  .lx_name {
    text-align: center;
  }
}

.ny_banner {
  width: 100%;
  position: relative;
}

.ny_banner .banner_box {
  width: 100%;
  height: 43vw;
  max-height: 820px;
  position: relative;
  overflow: hidden;
}

.ny_banner .banner_box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  z-index: 1;
}

.ny_banner .banner_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scale-bg 6s linear forwards;
}

.ny_banner .banner_box .banner_info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ny_banner .banner_tt {
  color: #fff;
  line-height: 1.5;
}

.ny_banner .banner_sub {
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .ny_banner {
    margin-top: 50px;
  }

  .ny_banner .banner_box {
    height: 300px;
  }
}

@keyframes scale-bg {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.bread {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 25px 0;
  z-index: 2;
}

.breadItem {
  color: #fff;
  line-height: 18px;
  position: relative;
  padding-left: 30px;
}

.breadItem a {
  color: #fff;
}

.bread .home .icon {
  width: 16px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  fill: #fff;
}

.breadItem:not(:first-child):before {
  content: ">";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
  .bread {
    display: none;
  }
}

.p_page {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.p_page div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p_page .laypage_prev,
.p_page .laypage_next {
  width: 40px !important;
}

.p_page .laypage_prev svg {
  vertical-align: middle;
  height: auto;
  width: 40px;
  fill: currentColor;
}

.p_page .laypage_next svg {
  vertical-align: middle;
  height: auto;
  width: 40px;
  fill: currentColor;
}

.p_page .laypage_prev:hover svg path {
  fill: #fff;
}

.p_page .laypage_next:hover svg path {
  fill: #fff;
}

.p_page .laypage_curr {
  background: var(--color) !important;
  color: #fff !important;
  border: 0px solid #00b4f1 !important;
}

.p_page a,
.p_page span {
  display: flex;
  border: 1px solid transparent !important;
  background: #f5f5f5;
  box-sizing: border-box;
  width: 40px !important;
  height: 40px !important;
  text-align: center;
  line-height: 40px !important;
  color: #999 !important;
  font-size: 16px;
  margin: 0 5px !important;
  border-radius: 0;
  align-items: center;
  justify-content: center;
}

.p_page .laypage_total {
  width: auto !important;
  border: 0px !important;
}

.p_page .laypage_total input {
  border: 1px solid #ebebeb;
}

.p_page .laypage_main button {
  background: #357ff6;
  border: 0;
  color: #fff;
  border-radius: 5px;
  height: 50px;
  font-size: 14px;
}

.p_page a:hover {
  background: var(--color) !important;
  border: 0px solid #ccc !important;
  color: #fff !important;
}

.p_page .page_prev {
  color: #818286;
}

.p_page .page_next {
  color: #818286;
}

.laypageskin_default .laypage_curr {
  color: #fff;
}

.laypage_main * {
  font-size: 16px;
}

.laypage_main input {
  height: 50px;
  width: 50px;
  border-radius: 5px;
}

.laypage_last {
  padding: 0 !important;
  font-size: 14px !important;
}

.laypage_first {
  padding: 0 !important;
  font-size: 14px !important;
}

@media screen and (max-width: 768px) {
  .p_page {
    margin-bottom: 8vw;
  }

  .p_page div {
    flex-wrap: wrap;
  }

  .p_page a,
  .p_page span {
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
    margin: 0 3px !important;
    line-height: 32px !important;
  }

  .p_page .laypage_prev,
  .p_page .laypage_next {
    width: 32px !important;
  }

  .laypage_main a,
  .laypage_main span {
    padding: 0 3px !important;
  }

  .p_page .laypage_total {
    display: block;
    width: 160px !important;
    margin-top: 5vw !important;
  }

  .laypage_main button {
    height: 22px !important;
    line-height: 22px !important;
    margin-top: 2px;
    margin-left: 15px;
  }

  .laypage_main input {
    width: 30px;
    height: 30px;
  }
}
