@import url("master.css");
@import url("../font/iconfont.css");
@import url("roll.css");
@import url("animate.css");

:root {
  --color01: rgba(231, 33, 26, 1);
  /* --bcr1: cubic-bezier(0.4, 0.4, 0, 1);
  --bcr2: cubic-bezier(0.075, 0.82, 0.165, 1); */
}

.move_top {
  padding-top: 0.9rem;
}

.mobile_img {
  display: none;
}

/*main*/
#main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#main .scrollbar-track-y {
  background-color: #e5e5e5;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 8px;
}

#main .scrollbar-track-y .scrollbar-thumb-y {
  background-color: var(--color01);
  width: 100%;
}

#main .liTxt {
  padding-right: 15px;
  margin-right: -15px;
}

#main .liTxt .scrollbar-track-y {
  width: 3px;
  border-radius: 3px;
}

#main .liTxt .scrollbar-track-y .scrollbar-thumb-y {
  border-radius: 3px;
}

/*font_effect*/
.font_effect>span {
  display: inline-table;
  overflow: hidden;
}

.font_effect>span>font {
  display: block;
  -webkit-animation-duration: 0.6s !important;
  animation-duration: 0.6s !important;
}

/*相册、视频（打开动画）*/
#spotlight {
  background-color: rgba(0, 0, 0, 0.6);
  clip-path: circle(0px at center);
  -webkit-clip-path: circle(0px at center);
}

#spotlight.show {
  clip-path: circle(100% at center);
  -webkit-clip-path: circle(100% at center);
  transition: clip-path ease 1s;
  -webkit-transition: clip-path ease 1s;
}

/*字体间距*/
.zh {
  letter-spacing: 0.075em;
}

/*分页器*/
.pagination {
  text-align: center;
}

.pagination li {
  display: inline-block;
  padding: 0 0.1rem;
}

.pagination li a,
.pagination li span {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border: 1px solid var(--color01);
  border-radius: 50%;
  background-color: #fff;
  color: var(--color01);
  transition: all 0.35s ease;
}

.pagination li.active span {
  background-color: var(--color01);
  color: #fff;
  pointer-events: none;
}

.pagination li.disabled span {
  cursor: not-allowed;
}

/*href_hover*/
/*线型*/
.hoverable .hoverable_txt {
  position: relative;
  display: inline-block;
  font-size: .18rem;
}

.hoverable .hoverable_txt:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*Menu*/
.openMenu {
  display: none;
}

.openMenu>a {
  align-items: center;
  outline: none;
}

.openMenu .openMenu_btn {
  width: 24px;
  height: 24px;
}

.openMenu .openMenu_btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: all 0.4s ease;
  background-color: #999;
}

.openMenu .openMenu_btn span:nth-child(1) {
  top: 3px;
  left: 0;
}

.openMenu .openMenu_btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 16px;
  right: 0;
}

.openMenu .openMenu_btn span:nth-child(3) {
  bottom: 3px;
  left: 0;
}

.header.mobileNav .openMenu .openMenu_btn span:nth-child(1) {
  top: 11px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.header.mobileNav .openMenu .openMenu_btn span:nth-child(2) {
  opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
}

.header.mobileNav .openMenu .openMenu_btn span:nth-child(3) {
  bottom: 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/*页头*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header::before {
  content: "";
  width: 100vw;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.pc-nav {
  height: 1rem;
  padding: 0 1rem;
}

.pc-nav .navList {
  display: flex;
}

.pc-nav ._logo>a {
  align-items: center;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pc-nav ._logo>a>div {
  height: 0.6rem;
}

.pc-nav ._logo>a>div img {
  height: 100%;
}

.pc-nav .nav {
  margin-left: auto;
}

.pc-nav .nav .nav_a>a {
  color: rgba(51, 51, 51, 1);
  height: 1rem;
  line-height: 1rem;
  padding: 0 0.3rem;
  transition: all 0.3s ease;
  position: relative;
}

/* .pc-nav .nav .nav_a>a:after {
  content: "";
  position: absolute;
  width: .6rem;
  height: .7rem;
  background: url(../image/icon-logo.png) no-repeat center;
  background-size: contain;
  transform: scale(.5);
  right: -.05rem;
  bottom: -.08rem;
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 0;
} */

.pc-nav .nav .nav_a:last-of-type>a:after {
  display: none;
}

.pc-nav .nav .nav_a>a .hoverable_txt:after {
  background-color: var(--color01);
  height: 4px;
}

.pc-nav .nav .nav_a.active>a,
.pc-nav .nav .nav_a>a:hover {
  color: var(--color01);
  font-weight: 700;
}

.pc-nav .nav .nav_a.active>a .hoverable_txt::after,
.pc-nav .nav .nav_a>a:hover .hoverable_txt::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color01);
}

.pc-nav .nav .nav_a.active>a .hoverable_txt::after {
  transform: none;
}

/* .pc-nav .nav .nav_a>a:hover:after {
  opacity: 1;
  transform: none;
} */

.pc-nav .nav .nav_a>.nav_b {
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 5px 0;
  color: #666;
  min-width: 130px;
  background-color: #fff;
  transform: translateX(-50%) translateY(10px);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease-in-out;
}

.pc-nav .nav .nav_a>.nav_b:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 0;
  height: 0px;
  margin-left: -6px;
  border-style: solid;
  border-width: 6px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  box-shadow: 2px -2px 2px rgba(100, 100, 100, 0.1);
}

.pc-nav .nav .nav_a>.nav_b>.nav_b_list>li>a {
  white-space: nowrap;
  line-height: 38px;
  color: #666;
  transition: all 0.3s ease;
  padding: 0 15px;
}

/* header tel */
.header__text {
  align-items: center;
  font-size: .18rem;
  padding: 0 0 0 .2rem;
  line-height: 1;
}

.header__text i {
  cursor: pointer;
  color: #333333;
}

.header__text a {
  margin-right: .1rem;
  font-size: .18rem;
  line-height: 1;
  position: relative;
  color: #333333;
}

.header__text i:hover,
.header__text a:hover {
  color: var(--color01);
}

.header.onWhite::before {
  height: 1rem;
}

.header-right {
  align-items: center;
}

.search_box {

  position: fixed;

  left: 0;

  top: -100%;

  width: 100%;

  height: 100%;

  background: var(--color01);

  z-index: 98;

  transition: all 0.5s ease;

  height: 1.33rem;

}

.search_box.active {

  top: 0;

}

.search_box .close {

  display: block;

  width: .3rem;

  height: .3rem;

  background-size: .24rem auto !important;

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto 0;

  right: 2.6%;

  cursor: pointer;

  -webkit-transition: -webkit-transform 0.3s ease 0s;

  transition: transform 0.3s ease 0s;

}

.search_box .cent-form {

  position: absolute;

  width: 86%;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  margin: auto;

  height: .65rem;

  line-height: .65rem;

  border-bottom: 1px solid #fff;

}

.search_box form {

  display: block;

  margin-top: 0em;

  unicode-bidi: isolate;

}

.search_box .cent-form .tex {

  border: none;

  font-size: .2rem;

  height: .65rem;

  list-style: none;

  -height: .65rem;

  text-align: left;

  width: 100%;

  box-sizing: border-box;

  color: #fff;

  background: none;

  padding-left: .7rem;

  padding-right: 1.2rem;

  background-size: .37rem .37rem !important;

}

.search_box .cent-form .tex::placeholder {

  color: #fff;

}

.search_box .cent-form .sub-butn {

  border: none;

  width: 1.2rem;

  background: none;

  position: absolute;

  right: 0;

  top: 0;

  text-align: center;

  height: .65rem;

  font-size: 22px;

  line-height: .65rem;

  color: #fff;

  cursor: pointer;

}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>consult<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.search-container{
  margin-top: 1rem;
}
.search-top-box {
    background: var(--color01);
    padding: 32px;
    color: #fff;
}
.search-top-box .search{
    font-size: .3rem;
    font-weight: 600;
    margin-bottom: .2rem;
}
.search-top-box .search_time{
    font-size: .2rem;
}
.search_result .item{
    margin: .4rem 0;
    color: #333;
}
.search_result .item a{
    color: #333;
}
.search_result .item:hover a{
    color: var(--color01);
}
.item_line {
    border-top-style: solid;
    border-top-width: 0.01rem;
    border-top-color: rgba(241, 241, 241, 1);
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}

/* .header.onShow::before {
  height: 5.2rem;
} */

/*mobile nav*/
.m-nav {
  position: fixed;
  top: 0;
  /*box-shadow: 0 15px 27px 0 rgba(167, 165, 165, .38);*/
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  z-index: 0;
  opacity: 0;
  visibility: visible;
  margin-top: 0;
  overflow-y: auto;
  /*    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;*/
  top: 50px;
  transform: translateX(100%);
}

.m-nav a {
  outline: none;
}

.m-nav.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1000;
}

.m-nav .top {
  height: 60px;
  padding: 20px;
  box-sizing: border-box;
}

.m-nav .top .closed {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  float: right;
  cursor: pointer;
}

.m-nav .logo {
  width: 100%;
  margin: 0 auto;
}

.m-nav .logo img {
  width: 72%;
  display: block;
  margin: 0 auto 30px;
}

.m-nav .ul {
  margin-top: 30px;
}

.m-nav .ul li {
  padding: 0 20px;
  border-bottom: 1px solid #f5f5f5;
  transform: translateY(0);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  opacity: 0;
}

.m-nav.active .ul li {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.m-nav .ul li:nth-child(1) {
  -webkit-transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(2) {
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(3) {
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(4) {
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(5) {
  -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(6) {
  -webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(7) {
  -webkit-transition: all 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li:nth-child(8) {
  -webkit-transition: all 1.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m-nav .ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  width: 100%;
  position: relative;
}

.m-nav .ul li a.active {
  font-weight: 800;
  color: #1b2c43;
}

.m-nav .ul li.dropdown a.dropdown-title::before,
.m-nav .ul li.dropdown a.dropdown-title::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.5);
  right: 10px;
  top: 50%;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  -o-transition: transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.m-nav .ul li.dropdown a.dropdown-title::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.m-nav .ul li.dropdown a.dropdown-title.active::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.m-nav .ul li a i {
  font-size: 12px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.m-nav .ul li .dropdown_menu {
  display: none;
}

.m-nav .ul li.dropdown.active .dropdown_menu {
  display: block;
}

.m-nav .ul li .dropdown_menu a {
  display: block;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #f5f5f5;
}

.m-nav .ul li .dropdown_menu a:last-child {
  border: none;
}

.m-nav-tel {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #666;
}

.m-nav-tel a {
  font-weight: 800;
}

.m-nav-link {
  text-align: center;
  margin-top: 18px;
}

.m-nav-link a {
  display: inline-block;
  padding: 5px 25px;
  color: #fff;
  cursor: default;
  background: #00598e;
  font-size: 14px;
  line-height: 2;
}



/*首页*/
.Hbanner {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #000;
}

#Hbanner {
  width: 100%;
  height: 100%;
}

#Hbanner .swiper-slide {
  overflow: hidden;
}

/*#Hbanner .swiper-slide:nth-child(3) {*/
/*  transform: rotateY(180deg);*/
/*}*/

/*#Hbanner .swiper-slide:nth-child(3) .Hbanner_txt ._item {*/
/*  text-align: right;*/
/*  transform: rotateY(180deg);*/
/*}*/

#Hbanner .swiper-slide>a,
.Hbanner .swiper-slide a{
  width: 100%;
  height: 100%;
  display: block;
}

#Hbanner ._bg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
}

#Hbanner ._bg img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*#Hbanner ._bg:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: url(../image/cover-bg2.png) no-repeat 0 center;*/
/*  background-size: contain;*/
/*  top: 0;*/
/*  left: 0;*/
/*  z-index: 2;*/
/*}*/

/*#Hbanner ._bg::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: url(../image/cover-bg1.png) no-repeat 0 center;*/
/*  background-size: contain;*/
/*  top: 0;*/
/*  left: 0;*/
/*  z-index: 3;*/
/*}*/

#Hbanner ._bg>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#Hbanner .Hbanner_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  pointer-events: none;
}

#Hbanner .Hbanner_txt ._item ._title {
  font-size: 0.6rem;
  font-family: "HuXiaoBoNanShenTi";
  margin-bottom: 0.1rem;
}

#Hbanner .Hbanner_txt ._item ._tps {
  font-size: 0.3rem;
  font-weight: lighter;
}

#Hbanner .Hbanner_txt ._item ._btn {
  margin-top: 0.3rem;
  pointer-events: auto;
  display: inline-block;
}

#Hbanner .Hbanner_txt .animated {
  animation-duration: 1s;
}

#Hbanner .Hbanner_nav {
  position: absolute;
  bottom: 0.6rem;
  left: 6.25vw;
  z-index: 10;
  color: #fff;
  align-items: flex-end;
}

#Hbanner .Hbanner_nav ._page {
  line-height: 1;
  margin-right: 0.5rem;
}

#Hbanner .Hbanner_nav ._page span {
  font-size: 0.48rem;
  font-weight: 400;
  font-family: "DingTalkJinBuTi";
}

#Hbanner .Hbanner_nav ._pvn {
  width: auto;
}

#Hbanner .Hbanner_nav ._pvn span {
  margin-right: 0.2rem;
  margin-left: 0;
  opacity: 0.2;
  background-color: #fff;
  width: 8px;
  height: 8px;
  transition: opacity 0.3s ease;
  outline: none;
}

#Hbanner .Hbanner_nav ._pvn span:last-of-type {
  margin-right: 0;
}

#Hbanner .Hbanner_nav ._pvn span.swiper-pagination-bullet-active {
  opacity: 1;
}

/* --------------------------------------------------------- 首页 --------------------------------------------------------- */
.title1 {
  text-align: center;
  padding: .46rem 0 .54rem 0;
}

.title1 span {
  font-size: .42rem;
  line-height: 1.2;
  color: rgba(51, 51, 51, 1);
  position: relative;
  font-family: 'AlimamaShuHeiTiBold';
}

.title2 span {
  font-size: .36rem;
}

.title1 span::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -.2rem;
  width: .72rem;
  height: 4px;
  background-color: var(--color01);
}

.Hservice .title1 {
  border-bottom: 1px solid #E6E6E6;
}

.Hservice .row {
  padding: .97rem 1.65rem .9rem 1.65rem;
}

.Hservice .service-item {
  width: 50%;
  justify-content: space-between;
  align-items: center;
}

.Hservice .service-item:first-child {
  padding-right: .86rem;
  position: relative;
}

.Hservice .service-item:first-child::after {
  content: "";
  width: 1px;
  height: .9rem;
  background: #E6E6E6;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%)
}

.Hservice .service-item:nth-child(2) {
  padding-left: .86rem;
}

.Hservice .service-item .item-label {
  font-size: .16rem;
  color: rgba(102, 102, 102, 1);
}

.Hservice .service-item:last-child .item-label {
  font-family: "WendingZhonghangBookSlips";
  color: var(--color01)
}

.Hservice .service-item .item-title {
  font-size: .28rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  margin-top: 6px;
}

.Hservice .service-item .item-desc {
  font-size: .2rem;
  color: var(--color01);
  margin-top: 6px;
}

.Hservice .service-item .item-desc i {
  font-size: .16rem;
  color: var(--color01);
  margin-left: 7px;
}

.Hservice .service-item .item-img {
  height: 1.6rem;
}

.Hservice .service-item .item-img img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.Hservice .service-item .item-text {
  text-align: center;
  font-size: .16rem;
  color: rgba(102, 102, 102, 1);
  margin-top: 5px;
}

.Habout {
  background: #FAFAFA;
  padding-bottom: .6rem;
}

.Habout .about-container {
  margin-top: .2rem;
}

.Habout .about-info {
  width: 55.75%;
  padding-right: .67rem;
}

.Habout .about-info .info-text {
  font-size: .18rem;
  line-height: 2.5;
  color: rgba(102, 102, 102, 1);
  font-family: 'OPPOSansRegular';
  text-align: justify;
  overflow: hidden;
  -webkit-line-clamp: 8;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.Habout .about-info .about-more {
  display: inline-block;
  margin-top: .3rem;
  padding: .13rem .3rem;
  border-radius: 50px;
  background: var(--color01);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.Habout .about-info .about-more i {
  color: #fff;
  font-size: 14px;
  margin-left: 10px;
}

.Habout .about-img {
  width: 44.25%;
}

.Habout .about-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.Hquery {
  background-image: url('../images/query-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  padding: .84rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-position: center;
}

.search-query{
    margin-top: 1rem;
}

.Hquery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  z-index: 1;
}

.Hquery .titles {
  font-size: .36rem;
  color: #fff;
  font-family: "AlimamaShuHeiTiBold";
  position: relative;
  z-index: 2;
}

.Hquery .desc {
  font-size: .2rem;
  margin-top: .2rem;
  color: rgba(222, 222, 222, 1);
  position: relative;
  text-align: center;
  z-index: 2;
}

.Hquery .query-container {
  position: relative;
  z-index: 2;
  margin-top: .6rem;
}

.Hquery .query-container form {
  display: flex;
  align-items: center;
}

.Hquery .query-container input {
  width: 6rem;
  height: .8rem;
  border: none;
  border-radius: .1rem 0 0 .1rem;
  padding: 0 20px;
  font-size: .3rem;
}

.Hquery .query-container button {
  width: 2rem;
  height: .8rem;
  border: none;
  margin: 0;
  border-radius: 0 .1rem .1rem 0;
  background: var(--color01);
  color: #fff;
  font-size: .36rem;
  font-weight: 500;
}

.Hcollection {
  padding-bottom: .46rem;
}

.Hcollection .row {
  overflow: hidden;
}

.Hcollection .swiper {
  margin-top: .3rem;
}

.Hcollection .swiper-slide .collection-img {
  width: 100%;
  height: 3.8rem;
  display: block;
  overflow: hidden;
}

.Hcollection .swiper-slide .collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}

.Hcollection .swiper-slide:hover .collection-img img {
  transform: scale(1.1);
}

.Hcollection .swiper-slide .collection-name {
  padding: .23rem;
  font-size: .2rem;
  color: rgba(51, 51, 51, 1);
  background: rgba(245, 245, 245, 1);
  transition: .3s;
  text-align: center;
}

.Hcollection .swiper-slide:hover .collection-name {
  color: #fff;
  background: var(--color01);
}

.Hcollection .more-btn {
  margin-top: .5rem;
  display: flex;
  justify-content: center;
}

.Hcollection .more-btn a {
  padding: .13rem .3rem;
  line-height: 1.2;
  font-size: 14px;
  border-radius: 50px;
  border: 1px solid rgba(166, 166, 166, 1);
  color: rgba(102, 102, 102, 1);
  transition: .3s;
}

.Hcollection .more-btn a:hover {
  background: var(--color01);
  color: #fff;
  border-color: var(--color01);
}

.Hcollection .more-btn i {
  font-size: 14px;
  margin-left: 10px;
}

.Hnews {
  background: #FAFAFA;
  padding-bottom: .65rem;
}

.Hnews .news-box {
  margin-top: .4rem;
  display: flex;
  justify-content: space-between;
}

.Hnews .box-item {
  width: calc((100% - 1rem) / 3);
}

.Hnews .box-item .box-img {
  width: 100%;
  height: 2.58rem;
  position: relative;
}

.Hnews .box-item .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Hnews .box-item .box-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
}

.Hnews .box-item .box-title {
  font-size: .36rem;
  color: rgba(255, 255, 255, 1);
  font-family: "AlimamaShuHeiTiBold";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.Hnews .news-list {
  padding: .22rem;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.06);
}

.Hnews .news-list .news-item {
  width: 100%;
  padding: .2rem 0;
  border-bottom: 1px solid #E6E6E6;
  display: block;
}

.Hnews .news-list .news-item:nth-child(3) {
  border-bottom: none;
}

.Hnews .news-list .news-title {
  font-size: .2rem;
  color: rgba(102, 102, 102, 1);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: .3s;
}

.Hnews .news-list .news-item:hover .news-title {
  color: var(--color01);
}

.Hnews .news-list .news-time {
  font-size: .16rem;
  color: rgba(153, 153, 153, 1);
  margin-top: .1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.Hnews .more-btn {
  font-size: .16rem;
  color: var(--color01);
  margin-top: .1rem;
  display: block;
}

.Hnews .more-btn i {
  font-size: .14rem;
  margin-left: 7px;
  color: var(--color01);
}


/* --------------------------------------------------------- 关于我们 --------------------------------------------------------- */
.Aabout {
    padding-bottom: .5rem;
}
.Aabout .about-text {
  font-size: 20px;
  line-height: 2.1;
  color: rgba(51, 51, 51, 1);
  font-family: "OPPOSansRegular";
  margin-top: .88rem;
  text-align: justify;
}

.Aabout .about-img {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: .5rem 0;
  height: 4.65rem;
  overflow: hidden;
}

.Aabout .about-img img {
  width: calc((100% - .8rem) / 2);
}


/* --------------------------------------------------------- 评级标准 --------------------------------------------------------- */
.Standard {
  background: rgba(247, 247, 247, 1);
  padding-top: .54rem;
  padding-bottom: .4rem;
}

.Standard .row {
  display: flex;
  justify-content: space-between;
}

.Standard .standard-label {
  width: 3rem;
  margin-right: .4rem;
  background: #fff;
  height: fit-content;
  border-radius: .14rem .14rem 0 0;
}

.Standard .standard-content {
  width: calc(100% - 3.4rem);
  border-radius: .15rem .15rem 0 0;
}

.standard-label .label-title {
  font-size: .24rem;
  font-weight: 700;
  color: rgba(51, 51, 51, 1);
  text-align: center;
  position: relative;
  line-height: 2.9;
}

.standard-label .label-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: .08rem;
  height: .17rem;
  background: var(--color01);
}

.label-list li {
  background: #fff;
  cursor: pointer;
  font-size: .2rem;
  line-height: 3;
  text-align: center;
  color: #666666;
}

.label-list li a {
  color: #666666;
  display: block;
  width: 100%;
  line-height: 3;
}

.label-list li.active,
.label-list li:hover,
.label-list li:hover a {
  color: var(--color01);
  background: rgba(248, 247, 241, 1);
  font-weight: 500;
}

.standard-content {
  background: #fff;
}

.standard-content .content-title {
  text-align: center;
  padding: .44rem 0;
  border-bottom: 1px solid rgba(238, 238, 238, 1);
  font-size: .36rem;
  color: rgba(51, 51, 51, 1);
  font-family: "AlimamaShuHeiTiBold";
}

.standard-content .content-info {
  padding: .4rem;
}

.standard-content .content-info img,
.standard-content .content-info table {
  max-width: 100% !important;
  height: auto;
}

.standard-content .content-info table {
  margin: 0 auto;
}

.standard-content .content-info a {
  color: var(--color01);
  text-decoration: underline;
}


/* --------------------------------------------------------- 在线挂牌 --------------------------------------------------------- */
.Online-list .standard-content {
  width: 100%;
}

.content-info h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(51, 51, 51, 1);
  margin-bottom: .2rem;
}

.content-info .img-box1 {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: .2rem;
}

.content-info .img-box1 img {
  width: calc((100% - .55rem) / 2);
}

.content-info .img-box2 {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: .2rem;
}

.content-info .img-box2 img {
  width: calc((100% - 1.35rem) / 4);
}

.content-info .img-box3 {
  display: flex;
  margin-bottom: .2rem;
  text-align: center;
}

.content-info .img-box3 .code-img {
  margin-right: .8rem;
}

.content-info .img-box3 img {
  width: 1.8rem;
}

.Online-list .content-info .table {
  border-color: #D6D6D6;
  margin: 0;
  text-align: center;
}

.Online-list .content-info .table th {
  background: #FAF6DE;
  color: var(--color01);
  font-size: 24px;
  font-weight: 500;
  padding: .12rem;
}

.Online-list .content-info .table td {
  font-size: 16px;
  line-height: 2;
  color: rgba(102, 102, 102, 1);
  padding: .12rem;
}

.Online-list .content-info .table tr:nth-child(2) td {
  font-size: 20px;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
}


/* --------------------------------------------------------- 评级查询 --------------------------------------------------------- */
.query-table {
  width: 100%;
  margin: .38rem 0 !important;
  border-collapse: separate;
  border-spacing: 10px;
}

.query-table tr {
  margin-bottom: .1rem;
}

.query-table tr td:first-child {
  font-size: .3rem;
  font-weight: 700;
  line-height: 3;
  color: rgba(51, 51, 51, 1);
  background: rgba(231, 33, 26, 0.1);
  text-align: center;
}

.query-table tr td:last-child {
  background: rgba(145, 145, 145, 0.1);
  font-size: .3rem;
  line-height: 3;
  color: rgba(102, 102, 102, 1);
  padding: 0 10px;
}


/* --------------------------------------------------------- 藏品展示 --------------------------------------------------------- */
.Product {
  padding-bottom: .78rem;
}

.collection-list {
  margin-top: .3rem;
  display: flex;
  flex-wrap: wrap;
}

.collection-list .collection {
  width: calc((100% - 1.2rem) / 4);
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: block;
}

.collection-list .collection:nth-child(4n) {
  margin-right: 0;
}

.collection-list .collection .collection-img {
  width: 100%;
  height: 3.8rem;
  overflow: hidden;
}

.collection-list .collection .collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}

.collection-list .collection:hover .collection-img img {
  transform: scale(1.1);
}

.collection-list .collection .collection-name {
  padding: .23rem;
  font-size: .2rem;
  color: rgba(51, 51, 51, 1);
  background: rgba(245, 245, 245, 1);
  transition: .3s;
  text-align: center;
}

.collection-list .collection:hover .collection-name {
  background: var(--color01);
  color: #fff;
}

#pages {
  display: flex;
  justify-content: center;
  margin-top: .27rem;
}

#pages li {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid rgba(153, 153, 153, 1);
  margin-right: .1rem;
  overflow: hidden;
}

#pages li span {
  /*padding: .14rem;*/
  font-size: 13px;
  line-height: 46px;
  color: rgba(153, 153, 153, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

#pages li a {
  display: block;
  width: 100%;
  height: 100%;
  /*line-height: 46px;*/
  color: rgba(153, 153, 153, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

#pages li:hover,
#pages li.active {
  background: var(--color01);
  border: 1px solid var(--color01);
}

#pages li:hover span,
#pages li:hover a,
#pages li.active span {
  color: #fff;
}

.pro-detail {
  color: rgba(102, 102, 102, 1);
  line-height: 1.65;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(214, 214, 214, 1);
  font-size: .3rem;
}

.pro-detail img {
  max-width: 100% !important;
}

.pro-detail p {
  margin-bottom: 15px;
}

.pre-next {
  margin-top: .4rem;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
}

.pre-next p,
.pre-next a {
  font-size: .24rem;
  font-weight: 500;
  line-height: 2;
  color: rgba(102, 102, 102, 1);
}

.pre-next a:hover {
  color: var(--color01);
}


/* --------------------------------------------------------- 联系我们 --------------------------------------------------------- */
.Contact{
  padding-bottom: .75rem;
}
.Contact .contact-top {
  margin-top: .75rem;
  display: flex;
  justify-content: space-between;
}

.Contact .company-name {
  font-size: .4rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
}

.Contact .contact-way {
  margin-top: .16rem;
  font-size: .18rem;
  line-height: 2.7;
  color: rgba(102, 102, 102, 1);
}

.Contact .contact-code {
  display: flex;
}

.Contact .contact-code .code-item {
  width: 2rem;
  margin-right: .45rem;
}

.Contact .contact-code .code-item:last-child {
  margin-right: 0;
}

.Contact .code-item .code-img {
  width: 100%;
  height: 2rem;
}

.Contact .code-item .code-img img {
  width: 100%;
  height: 100%;
}

.Contact .code-item .code-title {
  font-size: .18rem;
  color: rgba(51, 51, 51, 1);
  text-align: center;
}

.Contact .contact-map {
  margin-top: .4rem;
  width: 100%;
  height: 5.58rem;
}

.Contact .contact-map #map {
  height: 100%;
  width: 100%;
}


/* --------------------------------------------------------- 新闻资讯 --------------------------------------------------------- */
.News {
  background: rgba(247, 247, 247, 1);
  padding-bottom: .66rem;
}

.News .news_mune {
  display: flex;
  justify-content: center;
}

.News .news_mune a {
  padding: .13rem .35rem;
  background: #fff;
  border: rgba(220, 220, 220, 1);
  font-size: .24rem;
  color: rgba(51, 51, 51, 1);
  margin-right: .2rem;
}

.News .news_mune a:last-child {
  margin-right: 0;
}

.News .news_mune a:hover,
.News .news_mune a.active {
  background: var(--color01);
  color: #fff;
}

.News .news-list {
  display: flex;
  margin-top: .6rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.News .news-item {
  width: calc((100% - .4rem) / 2);
  display: flex;
  background: #fff;
  padding: .32rem .26rem;
  margin-bottom: .4rem;
  transition: .3s;
}

.News .news-item:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  /* box-shadow: 0px 5px 20px  rgba(0, 0, 0, 0.05); */
}

.News .news-item .news-img {
  width: 2.16rem;
  height: 1.67rem;
  margin-right: .18rem;
  overflow: hidden;
}

.News .news-item .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}

.News .news-item:hover .news-img img {
  transform: scale(1.1);
}

.News .news-item .news-content {
  width: calc(100% - 2.34rem);
}

.News .news-item .news-title {
  font-size: .25rem;
  font-weight: 700;
  color: rgba(51, 51, 51, 1);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.News .news-item .news-info {
  font-size: .19rem;
  font-weight: 500;
  line-height: 2;
  color: rgba(102, 102, 102, 1);
  margin-top: .1rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.News .news-item .news-bottom {
  margin-top: .2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .19rem;
  color: rgba(153, 153, 153, 1);
}

.News .news-item .news-bottom i {
  color: rgba(102, 102, 102, 1);
  font-size: .2rem;
  transition: .3s;
}

.News .news-item:hover .news-bottom i {
  color: var(--color01);
}

.News .detail-header {
  padding: .66rem 0 .4rem 0;
  border-bottom: 1px dashed rgba(102, 102, 102, 1);
}

.News .detail-header .titles {
  text-align: center;
  font-size: .36rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(51, 51, 51, 1);
}

.News .detail-header .detail-info {
  margin-top: .48rem;
  font-size: .24rem;
  color: rgba(102, 102, 102, 1);
  text-align: center;
}

.News .detail-header .detail-info span {
  margin-right: .76rem;
}

.News .detail-header .detail-info span:last-child {
  margin-right: 0;
}

.News .detail-content {
  padding-top: .36rem;
  padding-bottom: .6rem;
  font-size: .2rem;
  line-height: 2;
  color: rgba(51, 51, 51, 1);
  font-family: "OPPOSansRegular";
  border-bottom: 1px solid rgba(214, 214, 214, 1);
  text-align: justify;
}

.News .detail-content img,
.News .detail-content table {
  max-width: 100% !important;
}

.News .pre-next {
  margin-top: .6rem;
  margin-bottom: 0;
}




.register-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-container .code {
  width: 200px;
  height: 200px;
}

.register-container .code img {
  width: 100%;
  height: 100%;
}

.register-container .code-text {
  text-align: center;
  margin-top: 10px;
}

.footer {
  background: #222222;
  padding-top: .6rem;
}

.footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer-left {
  width: 36.9375%;
  /*justify-content: space-between;*/
}

.footer .code-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}

.footer .code-img {
  width: 1.3rem;
  height: 1.3rem;
}

.footer .code-img img {
  width: 100%;
  height: 100%;
}

.footer .code-label {
  margin-top: .16rem;
  font-size: .18rem;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}

.footer .footer-right {
  width: 50.75%;
}

.footer .footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .18rem;
  color: rgba(255, 255, 255, 1);
  padding: .4rem 0;
  margin-top: .4rem;
  text-align: center;
}

.footer .footer-copyright a {
  color: #fff;
}

.footer .footer-copyright .site-info {
  margin-right: .4rem;
  text-align: center;
}

.footer .contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .contacts .content {
  font-size: .16rem;
  font-weight: 300;
  color: rgba(153, 154, 155, 1);
  margin-top: .1rem;
  display: flex;
  align-items: center;
}

.footer .contacts .content span {
  font-size: .4rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 1);
}

.footer .contact-address {
  margin-top: .3rem;
  font-size: .16rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
}


.registers .Hbanner{
    display: none;
}

@media screen and (max-width: 1735px) {
  .pc-nav {
    padding: 0 .8rem;
  }

  .hoverable .hoverable_txt {
    font-size: .17rem;
  }

  .pc-nav .nav .nav_a>a {
    padding: 0 .25rem;
  }
}

/*电端加上鼠标效果/动画 */
@media screen and (min-width: 1025px) {

  .rollAni,
  .font_effect {
    visibility: hidden;
  }

  .hoverable:hover .hoverable_txt:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  .pc-nav .operation ._item:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .pc-nav .language .language_item a:hover {
    background-color: #eee;
    color: var(--color01);
  }

  .pc-nav .operation ._item:hover .search {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .pc-nav .search ._dt>button:hover {
    color: var(--color01);
  }

  .menu ._list ._item ._b li a:hover {
    color: var(--color01);
  }

  .header .menu ._list ._item ._a,
  .header .menu ._list ._item ._b li {
    animation-name: fadeInUpSmall;
    animation-duration: 0.65s;
    animation-fill-mode: both;
  }

  .header .menu ._list ._item ._a {
    animation-delay: 0.2s;
  }

  .header .menu ._list ._item ._b li:nth-child(1) {
    animation-delay: 0.3s;
  }

  .header .menu ._list ._item ._b li:nth-child(2) {
    animation-delay: 0.4s;
  }

  .header .menu ._list ._item ._b li:nth-child(3) {
    animation-delay: 0.5s;
  }

  .header .menu ._list ._item ._b li:nth-child(4) {
    animation-delay: 0.6s;
  }

  .header .menu ._list ._item ._b li:nth-child(5) {
    animation-delay: 0.7s;
  }

  .header .menu ._list ._item ._b li:nth-child(6) {
    animation-delay: 0.8s;
  }

  .header .menu ._list ._item ._b li:nth-child(7) {
    animation-delay: 0.9s;
  }

  .header .menu ._list ._item ._b li:nth-child(8) {
    animation-delay: 1s;
  }

  .clock ._list ._li>div>a:hover ._icon:after {
    opacity: 1;
  }

  .footer ._menu ._item ._b a:hover {
    opacity: 1;
  }

  .footer ._link ._list li a:hover {
    opacity: 1;
  }

  .footer ._keep a:hover {
    text-decoration: underline;
  }

  #screenTab .item>a:hover:after {
    transform: translate(-50%, -50%) scale(2);
  }

  .serveLick ._list ._item>a:hover ._name {
    color: var(--color01);
  }

  .serveLick ._list ._item>a:hover ._img img {
    transform: scale(1.1);
  }

  .serveLick ._list ._item:nth-child(3n + 1) {
    animation-delay: 0s;
  }

  .serveLick ._list ._item:nth-child(3n + 2) {
    animation-delay: 0.1s;
  }

  .serveLick ._list ._item:nth-child(3n + 3) {
    animation-delay: 0.2s;
  }

  .below .below_l ._superior:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .below .below_r .slidenav_next>a:hover {
    color: #fff;
    background-color: var(--color01);
  }

  .slidenav ._item>a:hover {
    color: var(--color01);
  }

  .profile ._bg.fn2>img {
    transform: none;
    transition: transform 2s ease-in-out;
  }

  .cultureList ._item:nth-child(3n + 1) {
    animation-delay: 0s;
  }

  .cultureList ._item:nth-child(3n + 2) {
    animation-delay: 0.2s;
  }

  .cultureList ._item:nth-child(3n + 3) {
    animation-delay: 0.4s;
  }

  .newsList ._item>a:hover ._img {
    transform: scale(0.9);
  }

  .newsList ._item>a:hover ._img>img {
    transform: scale(1.2) rotate(5deg);
  }

  .newsList ._item>a:hover ._names {
    color: var(--color01);
  }

  .pagination li a:hover {
    background-color: var(--color01);
    color: #fff;
  }

  .clock ._list ._li>div {
    transform: translateY(-40px);
    opacity: 0;
  }

  .clock ._list ._li:nth-child(1)>div {
    transition-delay: 0.2s;
  }

  .clock.fadeIn ._list ._li>div {
    transform: none;
    opacity: 1;
    transition: all 1s ease;
  }

  .clock.fadeIn ._list ._li:nth-child(1)>div {
    transition-delay: 0.5s;
  }

  .clock.fadeIn ._list ._li:nth-child(2)>div {
    transition-delay: 0.7s;
  }

  .clock.fadeIn ._list ._li:nth-child(3)>div {
    transition-delay: 0.9s;
  }

  .clock.fadeIn ._list ._li:nth-child(4)>div {
    transition-delay: 1.1s;
  }

  .clock.fadeIn ._list ._li:nth-child(5)>div {
    transition-delay: 1.3s;
  }

  .clock.fadeIn ._list ._li:nth-child(6)>div {
    transition-delay: 1.5s;
  }

  .clock.fadeIn ._list ._li:nth-child(7)>div {
    transition-delay: 1.7s;
  }

  .clock>img {
    transform: rotate(-180deg);
  }

  .clock.fadeIn>img {
    transform: none;
    transition: transform 1.8s ease;
  }

  .purpose ._list ._item ._obj {
    animation: aniY 1.2s infinite cubic-bezier(0.36, 0, 0.7, 1) alternate backwards;
  }

  .pc-nav .nav .nav_a:hover .nav_b {
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
  }

  .pc-nav .nav .nav_a>.nav_b>.nav_b_list>li>a:hover {
    color: var(--color01);
    background-color: #f5f5f5;
  }
}

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1440px) {

  .header.onShow .menu {
    height: 5.8rem;
  }

  .menu ._box {
    height: 5.8rem;
  }

  .pc-nav .search ._dd>input {
    height: 0.5rem;
  }

  .pc-nav .search ._dt>button {
    width: 0.5rem;
    height: 0.5rem;
    line-height: 0.5rem;
  }

  .contactlist ._li ._citycnt ._map .ripple>span {
    width: 11px;
    height: 11px;
  }

  .row {
    width: 90%;
  }
}

@media screen and (max-width: 1280px) {
  .masterBtn1 {
    width: 1.7rem;
    height: 0.56rem;
    border-top-right-radius: 0.56rem;
    border-bottom-right-radius: 0.56rem;
    padding-right: 12px;
  }
}

@media screen and (max-width: 1024px) {

  .footer .code-label,
  .pre-next p,
  .pre-next a {
    font-size: 14px;
  }

  .Habout .about-info,
  .footer .contacts .content,
  .footer .contact-address,
  .footer .footer-copyright,
  .header__text a {
    font-size: 16px;
  }

  .footer .footer-copyright,
  .footer .footer-copyright .site-info {
    flex-direction: column;
    align-items: center;
  }

  .header::before {
    height: 50px;
  }

  .header.mobileNav .pc-nav>.nav {
    display: none;
  }

  /* .header__text{
    display: none;
  } */
  #main {
    position: initial;
  }

  .header .menu {
    display: none;
  }

  .light_open {
    display: none;
  }

  .light {
    display: none;
  }

  .openMenu {
    display: flex;
    align-items: center;
  }

  .pc-nav .operation {
    margin-left: auto;
  }

  .pc-nav {
    width: 100%;
    height: 50px;
    justify-content: space-between;
  }

  .pc-nav ._logo>a>div {
    height: 40px;
  }

  .pc-nav ._logo>a {
    padding: 0 5vw;
  }

  .pc-nav .operation {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .pc-nav>.nav {
    position: fixed;
    background-color: #fff;
    width: 100%;
    justify-content: center;
    z-index: -1;
    text-align: center;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.65s ease;
  }

  .pc-nav>.nav .nav_a {
    float: none;
  }

  .pc-nav>.nav .nav_a>a:after {
    display: none;
  }

  .header.mobileNav .pc-nav>.nav {
    transform: none;
  }

  .header__tel {
    margin-left: auto;
    padding-left: 0;
    font-size: .266rem;
  }

  .header__tel a {
    font-size: .42rem;
  }

  .header__tel span {
    display: none;
  }

  .openMenu {
    padding: 0 0.35rem;
  }

  .pc-nav .operation ._itemBtn {
    font-size: 22px;
    line-height: 50px;
  }

  .pc-nav .nav .nav_a>a {
    height: 1rem;
    line-height: 1rem;
    padding: 0;
    font-size: 16px;
    color: #333;
  }

  .Hbanner {
    margin-top: 50px;
    /* height: 32vh; */
    height: auto;
  }

  #Hbanner .swiper-slide:nth-child(3) {
    transform: none;
  }

  #Hbanner .swiper-slide:nth-child(3) .Hbanner_txt ._item {
    text-align: left;
    transform: none;
  }

  #Hbanner .Hbanner_txt ._item ._title {
    font-size: .56rem;
  }

  #Hbanner .Hbanner_txt ._item ._tps {
    font-size: .28rem;
  }

  .mobile {
    display: block;
  }

  .Hservice .row {
    padding: .97rem 1rem .9rem 1rem;
  }

  .footer .bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .footer-left,
  .footer .footer-right {
    width: 100%;
    justify-content: unset;
  }

  .footer .code-item {
    margin-right: 20px;
  }

  .footer .footer-right {
    margin-top: 20px;
  }

  .footer .footer-copyright {
    border-top: 1px solid #444;
  }

  .collection-list .collection {
    width: calc((100% - .8rem) / 3);
  }

  .collection-list .collection:nth-child(4n) {
    margin-right: .4rem;
  }

  .collection-list .collection:nth-child(3n) {
    margin-right: 0;
  }

  .pre-next {
    flex-direction: column;
  }
  
  .search_box.active{
      height: 50px !important;
  }
}

@media screen and (max-width: 768px) {

  .Hservice .service-item .item-text,
  .Hnews .news-list .news-time,
  .Hnews .more-btn,
  .Hnews .more-btn i,
  .collection-list .collection .collection-name,
  .Contact .code-item .code-title,
  .News .news-item .news-info,
  .News .news-item .news-bottom,
  .News .news-item .news-bottom i,
  .News .detail-header .detail-info {
    font-size: 14px;
  }

  .Hservice .service-item .item-label,
  .Hservice .service-item .item-desc i,
  .Hquery .desc,
  .Hcollection .swiper-slide .collection-name,
  .Hnews .news-list .news-title,
  .label-list li,
  .Contact .contact-way,
  .News .news-item .news-title,
  .News .detail-content,
  .Habout .about-info .info-text,
  .search_box .cent-form .tex::placeholder{
    font-size: 16px;
  }

  .Hservice .service-item .item-desc,
  .Aabout .about-text,
  .standard-label .label-title,
  .query-table tr td:first-child,
  .query-table tr td:last-child,
  .News .news_mune a {
    font-size: 18px;
  }

  .title1 span,
  .Contact .company-name {
    font-size: 30px;
  }

  .pc-nav {
    padding: 0 20px;
  }

  .pc-nav ._logo>a {
    padding: 0;
  }

  #Hbanner .Hbanner_nav ._pvn span {
    width: 6px;
    height: 6px;
  }

  .Hservice .row {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  /*.Hservice .service-item:first-child,*/
  /*.Hservice .service-item:last-child {*/
  /*  padding: 0;*/
  /*  width: 100%;*/
  /*}*/
  .Hservice .service-item {
    padding: 0;
    width: 100%;
  }

  .Hservice .service-item:last-child {
    margin-top: 20px;
  }

  .Hservice .service-item:first-child::after {
    content: none;
  }

  .Hservice .service-item .item-title {
    font-size: 22px;
  }

  .Hservice .service-item .item-img {
    height: 100px;
  }

  .Habout .about-container {
    flex-direction: column;
  }

  .Habout .about-info,
  .Habout .about-img {
    width: 100%;
    line-height: 2;
  }

  .Habout .about-img {
    margin-top: 20px;
  }

  .Hquery .titles {
    font-size: 30px;
  }

  .Hcollection .swiper-slide .collection-img {
    height: 250px;
  }

  .Hnews .news-box {
    flex-wrap: wrap;
  }

  .Hnews .box-item .box-title {
    font-size: 28px;
  }

  .Hnews .box-item {
    width: calc((100% - 30px) / 2);
    margin-bottom: 20px;
  }

  .Hnews .box-item .box-img {
    height: 170px;
  }

  .footer .code-img {
    width: 100px;
    height: 100px;
  }

  .footer .contacts {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .contacts .content span {
    font-size: 30px;
  }

  .Aabout .about-img {
    flex-direction: column;
    height: auto;
  }

  .Aabout .about-img img {
    width: 100%;
    margin-bottom: 10px;
  }

  .Standard .row {
    flex-direction: column;
  }

  .Standard .standard-label {
    width: 100%;
  }

  .Standard .label-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .standard-label .label-title {
    text-align: left;
    padding-left: 20px;
  }

  .label-list li {
    padding: 0 30px;
    white-space: nowrap;
  }

  .Standard .standard-content {
    width: 100%;
    margin-top: 20px;
  }

  .standard-content .content-title {
    font-size: 24px;
  }

  .Online-list .content-info .img-box2 {
    flex-wrap: wrap;
  }

  .Online-list .content-info .img-box2 img {
    width: calc((100% - 20px) / 2);
    margin-bottom: 20px;
  }

  .Contact .contact-top {
    flex-direction: column;
  }

  .News .news-item {
    width: 100%;
  }

  .News .news-item .news-img {
    height: auto;
    width: 120px;
  }

  .News .news-item .news-content {
    width: calc(100% - 120px);
  }

  .Contact .contact-code .code-item {
    width: 33.33%;
  }

  .Contact .code-item .code-img {
    height: auto;
  }
  .search_box .cent-form .tex {
    background-size: 20px 20px !important;
    font-size: 16px;
  }

  .search_box .close {
    background-size: 25px 25px !important;
  }
}

@media screen and (max-width: 600px) {
  .collection-list .collection {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }

  .collection-list .collection:nth-child(3n) {
    margin-right: 20px;
  }

  .collection-list .collection:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 485px) {
  .Hnews .box-item {
    width: 100%;
  }
}

.pc-none{
    display: none;
}

@media screen and (max-width: 760px) {
    .mobile-none{
        display: none;
    }
    .pc-none{
        display: flex;
    }
    
    .Hservice .service-item:nth-child(2){
        padding-left: 0;
    }
}


@media (max-width:6000px) {
  html {
    font-size: calc(100vw/19.2) !important;
  }
}

@media (max-width:750px) {
  html {
    font-size: calc(100vw/12) !important;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
  }
}