* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 0.16rem;
  color: #333;
  font-family: Microsoft YaHei;
}
span {
  font-size: inherit;
  color: inherit;
}
/* body {
  background: #F4F4F4;
} */
@font-face {
  font-family: Source Han Sans CN;
  src: url(../fonts/MiSans-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: PingFang SC;
  src: url(../fonts/PingFang.ttc);
  font-weight: 500;
}
@font-face {
  font-family: DIN Alternate;
  src: url(../fonts/DIN\ Alternate\ Bold.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Oswald;
  src: url(../fonts/Oswald-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Microsoft YaHei;
  src: url(../fonts/Microsoft-YaHei-Heavy.ttc);
  font-weight: 900;
}

@font-face {
  font-family: Microsoft YaHei;
  src: url(../fonts/Microsoft-YaHei-Bold.ttc);
  font-weight: 700;
}

@font-face {
  font-family: Microsoft YaHei;
  src: url(../fonts/Microsoft-YaHei-Semibold.ttc);
  font-weight: 600;
}

@font-face {
  font-family: Microsoft YaHei;
  src: url(../fonts/Microsoft-YaHei-Regular.ttc);
  font-weight: 400;
}

@font-face {
  font-family: Microsoft YaHei;
  src: url(../fonts/Microsoft-YaHei-Semilight.ttc);
  font-weight: 350;
}

@font-face {
  font-family: Microsoft YaHei;
  src: url(../fonts/Microsoft-YaHei-Light.ttc);
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}
a {
  display: block;
  outline: 0;
  text-decoration: none;
}
ul,
ol {
  padding-left: 2em;
}
input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  object-fit: contain;
}
/*多行溢出*/
.ellipsis1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.ellipsis3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
/* hover-图片放大1.1 */
.scale-box,
.imgBox {
  overflow: hidden;
}
.scale-box .scale-img,
.imgBox .scale-img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  cursor: pointer;
  object-fit: cover;
}
.scale-box:hover .scale-img,
.imgBox:hover .scale-img {
  transform: scale(1.1);
}
/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 0.02rem 0.12rem 0 rgba(0, 0, 0, 0.1);
}
/* 水波纹效果 */
.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);
  }
}
.headerWrap {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}
/* 头部 */
header {
  width: 100%;
  height: 0.8rem;
  display: flex;
  align-items: center;
  padding: 0 0.75rem 0 0.72rem;
  transition: background 0.3s;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #0F57E2;
}
header .logoBox {
  width: 0.8rem;
  display: flex;
}
header .headNav {
  height: 0.8rem;
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 0.5rem;
  margin-left: 4.1rem;
  margin-left: auto;
}
header .headNav .item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  transition: border 0.3s;
  gap: 0.05rem;
}
header .headNav .item img {
  width: 0.2rem;
  height: 0.2rem;
}
header .headNav .item.active > a,
header .headNav .item:hover > a,
header .headNav .item.act:hover > a {
  color: #fff;
}
header .headNav .item .navBox {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0rem 0.02rem 0.06rem 0.01rem rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0;
}
header .headNav .item .navBox a {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  line-height: 0.36rem;
  padding: 0 0.19rem;
  text-align: center;
  transition: color 0.3s;
}
header .headNav .item .navBox a.active,
header .headNav .item .navBox a:hover {
  background: #0F57E2;
  color: #fff;
}
header .headNav a {
  font-weight: normal;
  font-size: 0.16rem;
  color: #D1DAE4;
  white-space: nowrap;
}
header .user {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin-left: auto;
  font-weight: normal;
  font-size: 0.16rem;
  color: #D1DAE4;
}
header .user a {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 0.16rem;
  color: #D1DAE4;
  gap: 0.05rem;
}
/* 底部 */
footer {
  width: 100%;
  /* height: 6rem; */
  padding-top: 0.46rem;
  background: #3D3E49;
}
footer .top {
  display: flex;
  padding-bottom: 0.5rem;
  border-bottom: 0.01rem solid #ffffff;
}
footer .top .item {
  flex: 1;
  display: flex;
  gap: 0.14rem;
}
footer .top .item img {
  width: 0.53rem;
  height: 0.53rem;
}
footer .top .item .txt {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
footer .top .item .txt .p1 {
  font-weight: bold;
  font-size: 0.18rem;
  color: #FFFFFF;
}
footer .top .item .txt .p2 {
  font-weight: normal;
  font-size: 0.12rem;
  color: #FFFFFF;
}
footer .bottom {
  padding-top: 0.5rem;
  display: flex;
  gap: 1.2rem;
  padding-bottom: 0.97rem;
  padding-bottom: 0.6rem;
}
footer .bottom a {
  font-weight: normal;
  font-size: 0.16rem;
  color: #FFFFFF;
  opacity: 0.6;
  line-height: 1.5;
  transition: opacity 0.3s;
}
footer .bottom a.tit {
  font-size: 0.18rem;
  opacity: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.22rem;
  line-height: 1;
}
footer .bottom a.tit::after {
  content: '';
  width: 0.2rem;
  height: 0.02rem;
  background: #FFFFFF;
  margin-top: 0.2rem;
}
footer .bottom a:hover {
  opacity: 1;
}
footer .bottom .item.other {
  /* display: flex;
      flex-direction: column; */
  margin-left: auto;
}
footer .bottom .item.other .footServe {
  display: flex;
  align-items: center;
  gap: 0.07rem;
  margin-bottom: 0.28rem;
}
footer .bottom .item.other .footServe img {
  width: 0.42rem;
  height: 0.42rem;
}
footer .bottom .item.other .footServe .txt {
  display: flex;
  flex-direction: column;
}
footer .bottom .item.other .footServe .txt .p1 {
  font-weight: normal;
  font-size: 0.16rem;
  color: #FFFFFF;
}
footer .bottom .item.other .footServe .txt .p2 {
  font-weight: bold;
  font-size: 0.28rem;
  color: #FFFFFF;
}
footer .bottom .item.other .it {
  font-weight: normal;
  font-size: 0.16rem;
  color: #FFFFFF;
  opacity: 0.6;
  margin-bottom: 0.2rem;
}
footer .bottom .item.other .it:hover {
  opacity: 1;
}
footer .bottom .item.other .share {
  display: flex;
  gap: 0.18rem;
  margin-top: 0.26rem;
}
footer .bottom .item.other .share a {
  width: 0.37rem;
  height: 0.37rem;
  display: flex;
}
footer .bottom .item.other .share a img {
  width: 100%;
  height: 100%;
}
footer .beian {
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.29rem;
  opacity: .6;
}
footer .beian * {
  font-weight: normal;
  font-size: 0.14rem;
  color: #FFFFFF;
}
footer .beian span {
  margin-right: auto;
}
.swiper-slide > img,
.swiper-slide > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main {
  width: 100%;
  max-width: 14rem;
  margin: 0 auto;
}
.commonBanner {
  width: 100%;
  height: 4rem;
  position: relative;
}
.commonBanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.commonBanner .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.commonBanner .text h2 {
  font-weight: bold;
  font-size: 0.46rem;
  color: #FFFFFF;
  margin-bottom: 0.11rem;
}
.commonBanner .text h3 {
  font-family: Arial, Arial;
  font-weight: 400;
  font-size: 0.24rem;
  color: #FFFFFF;
}
.commonBanner2 {
  width: 100%;
  height: 6rem;
  position: relative;
}
.commonBanner2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.commonBanner2 .text {
  position: absolute;
  top: 1.74rem;
  left: 3.34rem;
}
.commonBanner2 .text h2 {
  font-weight: bold;
  font-size: 0.72rem;
  color: #000000;
  margin-bottom: 0.11rem;
  margin-bottom: 0.25rem;
}
.commonBanner2 .text h3 {
  font-weight: 400;
  font-size: 0.48rem;
  color: #000000;
  margin-bottom: 0.25rem;
}
.commonBanner2 .text h4 {
  font-weight: 400;
  font-size: 0.32rem;
  color: #848484;
}
.commonBanner2 .text p {
  font-weight: 400;
  font-size: 0.2rem;
  color: #3B3B3B;
}
.commonBanner2 .bread {
  position: absolute;
  width: 100%;
  top: 0;
}
.bread {
  width: 100%;
  border-bottom : 1px solid #F7F8FB;
}
.bread.hasLine {
  border-bottom: 0.01rem solid rgba(0, 0, 0, 0.11);
}
.bread.white {
  background: #fff;
}
.bread .main {
  display: flex;
  height: 0.6rem;
  align-items: center;
  justify-content: space-between;
}
.bread .left {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.bread .left img {
  width: 0.14rem;
  height: 0.14rem;
}
.bread .left a,
.bread .left span {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #999;
}
.bread .left a:last-child {
  color: #333;
}
.bread .right {
  height: 100%;
  display: flex;
  gap: 0.85rem;
}
.bread .right a {
  display: flex;
  align-items: center;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
}
.bread .right a.active {
  font-weight: 500;
  color: #0F57E2;
  border-bottom: 0.03rem solid #0F57E2;
}
.back {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pageBox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.43rem;
}
.pageBox .el-button {
  width: fit-content;
  padding: 0 0.1rem;
  height: 0.36rem;
  background: #FFFFFF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #EEEEEE;
  font-weight: 400;
  font-size: 0.14rem;
  color: #7A7A7A;
}
.pageBox .el-button:hover {
  background: #0F57E2;
  color: #fff;
}
.pageBox .el-pager li {
  width: 0.36rem;
  height: 0.36rem;
  background: #FFFFFF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #EEEEEE;
  line-height: 0.36rem;
  margin: 0 0.025rem;
}
.pageBox .el-pager li.active {
  background: #0F57E2;
  color: #fff;
}
.compage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.025rem;
}
.compage a,
.compage span {
  min-width: 0.36rem;
  height: 0.36rem;
  padding: 0 0.14rem;
  line-height: 0.36rem;
  text-align: center;
  background: #FFFFFF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #EEEEEE;
  font-weight: 400;
  font-size: 0.14rem;
  color: #7A7A7A;
}
.compage a:hover,
.compage span:hover,
.compage a.act,
.compage span.act {
  background: #0F57E2;
  color: #fff;
}
/* 单选框颜色 */
.el-empty {
  max-width: 100%;
  margin: 0 auto;
}
.el-empty .el-empty__image {
  max-width: 100%;
}
.el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
  background-color: #DD0F1F;
  border-color: #DD0F1F;
}
.homeBanner {
  width: 100%;
  height: 5.6rem;
  position: relative;
}
.homeBanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeBanner .content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1.52rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.homeBanner .content h2 {
  font-weight: bold;
  font-size: 0.56rem;
  color: #F3F9FF;
  text-shadow: 0.04rem 0.08rem 0.08rem rgba(0, 0, 0, 0.45);
  margin-bottom: 0.08rem;
  letter-spacing: .1rem;
  white-space: nowrap;
}
.homeBanner .content p {
  width: 6.28rem;
  height: 0.34rem;
  background: linear-gradient(94deg, rgba(255, 255, 255, 0) 0%, rgba(160, 218, 248, 0.5) 49.05%, rgba(255, 255, 255, 0) 100%);
  font-weight: normal;
  font-size: 0.14rem;
  color: #F3F9FF;
  text-align: center;
  line-height: 0.34rem;
  white-space: nowrap;
  padding: 0 0.2rem;
}
.homeBanner .content .searchTab {
  margin-bottom: 0.5rem;
}
.homeBanner .content .searchTab .tabBox {
  margin-top: 0.29rem;
  margin-bottom: 0.16rem;
  display: flex;
  gap: 0.53rem;
}
.homeBanner .content .searchTab .tabBox .el-tag {
  background-color: transparent;
  border-color: transparent;
  height: auto;
  padding: 0;
  font-weight: normal;
  font-size: 0.18rem;
  color: #FCFEFF;
  border-width: 0;
  border-style: solid;
  border-radius: 0;
  box-sizing: border-box;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.homeBanner .content .searchTab .tabBox .el-tag.active {
  font-weight: bold;
}
.homeBanner .content .searchTab .tabBox .el-tag.active::after {
  content: '';
  position: absolute;
  top: calc(100% + 0.04rem);
  left: 50%;
  transform: translateX(-50%);
  width: 0.46rem;
  height: 0.03rem;
  background: #FF2435;
  border-radius: 0.03rem;
}
.homeBanner .content .searchTab .searchForm {
  width: 7.96rem;
  display: flex;
}
.homeBanner .content .searchTab .searchForm .el-input__inner,
.homeBanner .content .searchTab .searchForm .el-button {
  height: 0.6rem;
  border: 0;
  border-radius: 0;
}
.homeBanner .content .searchTab .searchForm .el-button {
  width: 1.16rem;
  background: #DD0F1F;
  font-size: .2rem;
}
.homeBanner .content .announcement {
  display: flex;
  opacity: .6;
}
.homeBanner .content .announcement .icon {
  width: 0.19rem;
  height: 0.19rem;
  margin-right: 0.1rem;
  object-fit: contain;
}
.homeBanner .content .announcement span {
  font-weight: normal;
  font-size: 0.14rem;
  color: #FCFEFF;
  /*opacity: 0.6;*/
}
.homeBanner .content .announcement .list {
  display: flex;
  align-items: center;
  gap: 0 0.34rem;
}

.homeBanner .content .announcement .list a {
  font-weight: normal;
  font-size: 0.14rem;
  color: #FCFEFF;
  opacity: .8;
  transition: opacity 0.3s;
}
.homeBanner .content .announcement .list a:hover {
  opacity: 1;
  /*color: #fff;*/
}
.comFilter {
  background: #FFFFFF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #DBDBDB;
  position: relative;
}
.comFilter .item {
  display: flex;
  min-height: 0.5rem;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border-bottom: 0.01rem solid #DBDBDB;
}
.comFilter .item .left {
  width: 1.36rem;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.comFilter .item .right {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-right: 0.4rem;
}
.comFilter .item .right .list {
  height: 0.5rem;
  min-height: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.1rem;
  gap: 0.2rem 0.4rem;
  gap: 0.1rem;
  overflow: hidden;
}
.comFilter .item .right .list.active {
  height: auto;
}
.comFilter .item .right .list .el-tag {
  min-width: 1rem;
  /*width: 1rem;*/
  padding: 0 0.08rem;
  height: 0.32rem;
  background: transparent;
  border: 0;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  font-weight: normal;
  font-size: 0.16rem;
  color: #333333;
  line-height: 0.32rem;
  cursor: pointer;
}
.comFilter .item .right .list .el-tag:nth-child(9n+2){
    margin-left: 1.1rem;
}
.comFilter .item .right .list .el-tag:first-child{
    text-align: center;
}
.comFilter .item .right .list .el-tag:nth-child(2){
    margin-left: 0rem;
}
.comFilter .item .right .list .el-tag.active,
.comFilter .item .right .list .el-tag:hover {
  background: #0F57E2;
  color: #FFFFFF;
  text-align: center;
}
.comFilter .item .right .priceRange {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  height: 0.5rem;
}
.comFilter .item .right .priceRange .el-input__inner {
  width: 1.12rem;
  height: 0.36rem;
  background: #FFFFFF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #CCCCCC;
}
.comFilter .item .right .priceRange .el-button {
  width: 0.64rem;
  height: 0.32rem;
  background: #CDDCF8;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #B2BFED;
  padding: 0;
}
.comFilter .item .right .priceRange .el-button span {
  width: 0.64rem;
  height: 0.32rem;
  display: block;
  text-align: center;
  line-height: 0.32rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #0F57E2;
}
.comFilter .item .right .more {
  margin-left: auto;
  padding: 0;
  border: 0;
  margin-top: 0.2rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #666666;
  flex-shrink: 0;
}
.comFilter .item .right .more > span {
  display: flex;
  align-items: center;
  gap: 0.06rem;
}
.comFilter .item .right .more:hover > span{
    color: #0F57E2;
}
.comFilter .item .right .more > span img {
  width: 0.15rem;
}
.comFilter .item .right .more:hover{
  color: #0F57E2!important;
  font-weight: bold!important;
  background: transparent;
}
.comFilter .item .right .more:focus{
  background: transparent;
}
.comFilter .moreFilter {
  width: 100%;
  height: 0.46rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.comSearch {
  width: 100%;
  min-height: 1.74rem;
  background: #FFFFFF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #DBDBDB;
  margin-top: 0.16rem;
  padding: 0.2rem 0.33rem 0.28rem 0.52rem;
}
.comSearch .tabBtn {
  padding-left: 0.28rem;
}
.comSearch .tabBtn .el-tag {
  width: fit-content;
  padding: 0 0.22rem;
  height: 0.32rem;
  line-height: 0.32rem;
  background: transparent;
  border-radius: 0.12rem 0.12rem 0rem 0rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 0.16rem;
  color: #333333;
  cursor: pointer;
  border: 0;
}
.comSearch .tabBtn .el-tag.active {
  background: #DD0F1F;
  color: #FFFFFF;
}
.comSearch .searchFrom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comSearch .searchFrom .left {
  display: flex;
  align-items: center;
  width: 10.99rem;
  height: 0.48rem;
  background: #FFFFFF;
  border-radius: 0.32rem 0.32rem 0.32rem 0.32rem;
  border: 0.02rem solid #DD0F1F;
  padding-left: 0.24rem;
}
.comSearch .searchFrom .left .el-input__inner {
  border: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  padding: 0;
}
.comSearch .searchFrom .left .el-button {
  width: 1.16rem;
  height: 0.48rem;
  background: #DD0F1F;
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  font-weight: bold;
  font-size: 0.2rem;
  color: #FFFFFF;
  border: 0;
}
.comSearch .searchFrom .batch {
  width: 1.96rem;
  height: 0.48rem;
  background: #FDE4E8;
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  font-weight: bold;
  font-size: 0.2rem;
  color: #DD0F1F;
}
.comSearch .searchFrom .batch img {
  width: 0.18rem;
  height: 0.16rem;
}
.comSearch .filted {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.2rem;
}
.comSearch .filted > span {
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  flex-shrink: 0;
  margin-right: 0.24rem;
}
.comSearch .filted .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12rem;
  width: 100%;
}
.comSearch .filted .list .el-tag {
  background: #EAF1FF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #B2BFED;
  font-family: Arial, Arial;
  font-weight: 400;
  font-size: 0.16rem;
  color: #0F57E2;
}
.comSearch .filted button {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.14rem;
  color: #6A6A6A;
  flex-shrink: 0;
  gap: 0.07rem;
}
.comSearch .filted button img {
  width: 0.17rem;
  height: 0.19rem;
}
.comSort {
  width: 100%;
  height: 0.48rem;
  background: #FFFFFF;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #E1E2E5;
  margin-top: 0.16rem;
  display: flex;
  align-items: center;
}
.comSort .el-tag {
  width: 1.26rem;
  height: 0.46rem;
  background: #FFFFFF;
  border-radius: 0;
  background: transparent;
  font-weight: 400;
  font-size: 0.14rem;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.11rem;
  border: 0.01rem solid #E1E2E5;
}
.comSort .el-tag .arrowBox {
  display: flex;
  flex-direction: column;
  gap: 0.01rem;
}
.comSort .el-tag .arrowBox img {
  width: 0.09rem;
  height: 0.06rem;
  display: block;
}
.comMenu {
  width: 2.2rem;
  background: #FFFFFF;
}
.userMain {
  width: 100%;
  height: 100%;
  padding-bottom: 0.6rem;
  background: #F7F8FB;
}
.userMain > .main {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
}
.userMain > .main .right {
  width: 11.6rem;
}
.userMain > .main .right .title {
  height: 0.56rem;
  background: #FFFFFF;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 0.18rem;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.2rem 0 0.3rem;
  margin-bottom: 0.1rem;
}
.userMain > .main .right .title a {
  width: fit-content;
  min-width: 1.6rem;
  height: 0.44rem;
  background: #DD0F1F;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  display: flex;
  align-items: center;
  gap: 0.08rem;
  padding: 0 0.28rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
}
.userMain > .main .right .title a img {
  width: 0.24rem;
  height: 0.24rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
}
.userMain > .main .right .content {
  width: 100%;
  background: #fff;
}
.comMenu {
  width: 2.2rem;
  background: #FFFFFF;
  padding: 0 0.12rem;
}
.comMenu .tit {
  width: 1.96rem;
  height: 0.6rem;
  border-bottom: 0.01rem solid #F0F0F0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-indent: 0.33rem;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  font-size: 0.16rem;
  color: #333333;
}
.comMenu .item {
  padding-top: 0.22rem;
  padding-bottom: 0.2rem;
  border-bottom: 0.01rem solid #F0F0F0;
}
.comMenu .item:last-child {
  padding-bottom: 0.07rem;
  border: 0;
}
.comMenu .item .level1 {
  padding: 0 0.06rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.comMenu .item .level1 .left {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.16rem;
  color: #333333;
  gap: 0.06rem;
}
.comMenu .item .level1 .left img {
  width: 0.2rem;
  height: 0.2rem;
}
.comMenu .item .level1 > img {
  width: 0.06rem;
  height: 0.12rem;
}
.comMenu .item .level2 {
  margin-top: 0.1rem;
}
.comMenu .item .level2 a {
  height: 0.4rem;
  margin: 0 -0.12rem;
  padding-left: 0.46rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.4rem;
}
.comMenu .item .level2 a:hover,
.comMenu .item .level2 a.active {
  background: rgba(15, 87, 226, 0.1);
  color: #0045CB;
}


.common-phone-header,
.side-wrap {
  display: none;
}

@media only screen and (max-width: 1024px) {
  header {
    display: none;
  }
  html,
  body{
      max-width: 100%;
      overflow-x: hidden;
  }

  .common-phone-header {
    display: block !important;
  }

  .side-wrap {
    display: block !important;
  }

  .common-phone-header {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    /*background: #fff;*/
    background: #0F57E2;
  }

  .common-phone-header-inner {
    display: flex;
    height: 50px;
    border-bottom: 1px solid #eee;
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
  }

  .header-menu-phone {
    height: 30px;
    width: auto;
    display: block;
  }

  .header-logo-phone {
    height: 30px;
    width: auto;
    display: block;
  }

  .header-search-phone {
    height: 30px;
    width: auto;
    display: block;
  }

  .header-search-box-phone {
    display: none;
  }

  .header-search-input-phone {
    border-radius: 20px;
    height: 35px;
    border-width: 1px;
    border: 1px solid #333;
    padding: 0 10px;
    font-size: 14px;
  }

  .side-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, .5);
  }

  .side-container {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    height: 100vh;
    width: 80%;
    /*background-color: #fff;*/
    background: #0F57E2;
    color: #000;
    /* border-left: 1px solid #eee; */
    animation: ani_side 1s;
  }

  .side-container.shown {
    display: block;
  }

  @keyframes ani_side {
    from {
      display: none;
      width: 3rem;
    }

    to {
      display: block;
      width: 80%;
    }
  }

  .side-wrap {
    width: 100%;
  }

  .side-top {
    display: flex;
    height: 60px;
    padding: 0 20px 0 30px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
  }

  .side-logo {
    height: 30px;
    width: auto;
  }

  .side-close {
    width: .48rem;
  }

  .side-bottom {
    padding: 0 .48rem 0 .72rem;
  }

  .nav-item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .27rem 0 .27rem 0;
    border-bottom: 1px solid #eee;
    color: #fff;
  }

  .nav-item-inner span {
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .nav-item-inner img {
    width: .4rem;
  }

  .side-nav-list .nav-item a {
    color: #fff;
    font-size: .26rem;
    width: 100%;
    display: inline-block !important;
  }

  .side-nav-list .side-local-img {
    width: .3rem;
    margin-right: .2rem;
    vertical-align: text-bottom;
  }

  .side-nav-list-sub {
    display: none;
  }

  .side-nav-list-sub .side-back-img {
    width: .3rem;
    margin-right: .2rem;
    vertical-align: text-bottom;
  }

  .homeBanner{
    height: 6rem;
  }
  .homeBanner .content h2{
    font-size: 0.36rem;
  }
  .homeBanner .content p,.homeBanner .content .searchTab .tabBox .el-tag,.homeBanner .content .searchTab .searchForm .el-input__inner, .homeBanner .content .searchTab .searchForm .el-button{
    font-size: 12px;
  }
  .homeBanner .content .searchTab .searchForm{
    width: 100%;
  }
  .txtMarquee-left .bd .tempWrap{
    width: auto !important;
  }
  .txtMarquee-left{
    width: auto;
  }


  footer .main{
    width: 98%;
    margin: auto;
  }
  footer .bottom .item{
    display: none;
  }
  footer .bottom .item.other{
    display: block;
    margin-left: 0;
    width: 100%;
    padding-left: 0.3rem;
  }
  footer .top{
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .top .item{
    flex: 0 0 50%;
    padding-left: 0.2rem;
    margin-top: 0.3rem;
  }
  footer .top .item:nth-of-type(1){
    margin-top: 0;
  }
  footer .top .item:nth-of-type(2){
    margin-top: 0;
  }
  footer .top .item .txt .p1,footer .top .item .txt .p2,footer .bottom .item.other .footServe .txt .p1,footer .bottom .item.other .it{
    font-size: 12px;
  }
  footer .beian{
    display: block;
  }
  footer .beian span{
    margin-right: 0;
    text-align: center;
    width: 100%;
    display: block;
  }
  footer .beian *{
    font-size: 12px;
  }
  footer .beian a{
    display: none;
  }
  .comFilter .item .left{
    width: 1.48rem;
  }
  .bread .left a, .bread .left span{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .bread .left a, .bread .left span,.comFilter .item .left,.comFilter .item .right .list .el-tag,.comFilter .item .right .priceRange .el-input__inner,.comFilter .item .right .priceRange .el-button span,.comFilter .moreFilter span,.comSearch .tabBtn .el-tag{
    font-size: 12px;
  }
  .comSearch .searchFrom{
    display: block;
  }
  .comSearch .searchFrom .left{
    width: 100%;
  }
  .el-input,.comSearch .searchFrom .left .el-button span,.comSearch .searchFrom .batch span,.comSearch .filted > span,.comSearch .filted button span{
    font-size: 12px;
  }
  .comSearch .searchFrom .batch{
    margin-top: 0.1rem;
  }
  .comSort .el-tag,.comSort .el-tag span,.comSearch .filted .list .el-tag{
    font-size: 12px;
  }
  .breadWrap{
    margin-top: 50px;
  }
  .commonBanner2 .bread{
    width: 98%;
    margin: auto;
    left: 50%;
    transform: translate(-50%,0);
  }
  .commonBanner2{
    margin-top: 50px;
  }
  .commonBanner2 .text{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
  }
  .bread .main{
    width: 98%;
    margin: auto;
  }
  .comFilter .item .right .more > span span{
    font-size: 12px;
  }
  .pageBox .el-button span{
    font-size: 12px;
  }
  .banner2Wrap .commonBanner2{
    height: 4rem;
  }
  .banner2Wrap .commonBanner2 img{
    object-position: 40%;
  }
  .el-button--small span,.el-message-box__title span{
    font-size: 12px;
  }
  .userMain > .main{
    width: 98%;
    margin: auto;
    display: block;
  }
  .comMenu{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .comMenu .tit{
    width: 100%;
    font-size: 12px;
  }
  .comMenu .item{
    flex: 0 0 46%;
  }
  .comMenu .item .level1 .left span,.comMenu .item .level2 a,.userMain > .main .right .title span{
    font-size: 12px;
  }
  .comMenu .item:last-child{
    border-bottom: 0.01rem solid #F0F0F0;
  }
  .userMain > .main .right{
    width: 100%;
  }
  .el-table__header{
    width: 100%;
  }
  .el-form-item__label,.el-button,.el-button span{
    font-size: 12px !important;
  }
  .el-dialog__title{
    font-size: 12px;
  }
  .el-dialog__body,.el-dialog__body span{
    font-size: 12px;
  }
  .el-form-item{
        margin-bottom: 0.5rem;
  }
  .el-button{
    height: auto !important;
  }
  .pageBox .el-button{
    height: 0.36rem !important;
  }
  .user{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login{
    display: flex;
    align-items: center;
  }
  .user span,.login img{
    margin-right: 0.1rem;
  }
  .register,.user span{
    color: #FFFFFF;
    font-size: 12px;
  }
  .comFilter .item .right{
    align-items: center;
  }
  .comFilter .item .right .more{
    margin-top: 0;
  }
  .comFilter .item .right .list .el-tag{
    /*flex: 0 0 31.6%;*/
    text-align: center !important;
  }
  .case .comFilter .item:nth-of-type(2) .right .list .el-tag{
    flex:0 0 48.8%;
  }
  .comFilter .item .right .list .el-tag:nth-child(9n+2){
    margin-left: 0;
  }
}