.w {
  width: 12rem;
  margin: 0 auto;
}

/*  隐藏滚动条 */
.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.select-arrow {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url('../img/icon/down.png') 90% center no-repeat #fff;
}

.model {
  padding: 0.4rem 0 0;
}

.model h2 {
  font-size: 0.24rem;
  font-weight: normal;
}

.model-head {
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.model-head .more a {
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  color: #767676;
}

.model-head .more a i {
  font-size: 0.2rem;
  margin-left: 0.1rem;
}

.model-head .more:hover a {
  color: #e32823;
}

.pagination {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.pagination ul {
  display: flex;
  padding: 0;
}

.pagination ul li {
  text-align: center;
  cursor: pointer;
  margin: 0 0.05rem;
  font-size: 0.14rem;
}

.pagination ul li a {
  display: block;
  color: #000;
  padding: 0.06rem 0.12rem;
}

.pagination ul li a:hover {
  background-color: #e32823;
  color: #fff;
}

.pagination ul li.active a {
  color: #fff;
  background-color: #e32823;
}

.pagination .prev,
.pagination .nexts,
.pagination .first,
.pagination .last {
  margin: 0 5px;
}

.pagination .prev a,
.pagination .nexts a,
.pagination .first a,
.pagination .last a {
  font-size: 0.15rem;
  display: block;
  padding: 0.06rem 0.1rem;
  color: #000;
  background: #fff;
}

.pagination .prev a:hover,
.pagination .nexts a:hover,
.pagination .first a:hover,
.pagination .last a:hover {
  background-color: #e32823;
  color: #fff;
}

.pagination .prev a,
.pagination .nexts a {
  font-weight: bold;
}

.aside {
  position: fixed;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 0.62rem;
}

.aside .aside-list {
  background: #fff;
  width: 100%;
  height: auto;
  padding: 5px;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  box-sizing: border-box;
  gap: 0.1rem;
  border-radius: 0.1rem 0 0 0.1rem;
  transform: translateX(0%);
  transition: all 0.3s;
}

.aside .aside-list .inner {
  width: 100%;
  height: 100%;
  margin-bottom: 0.1rem;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
}

.aside .aside-list .inner .item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.12rem;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.aside .aside-list .inner .item .icon {
  width: 0.24rem;
  height: 0.24rem;
}

.aside .aside-list .inner .item .icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.aside .aside-list .inner .mask {
  position: absolute;
  top: 0;
  left: -1.9rem;
  width: 1.7rem;
  display: none;
}

.aside .aside-list .inner .mask .box {
  width: 100%;
  padding: 0.2rem 0.1rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0 0.1rem #ccc;
}

.aside .aside-list .inner .mask .box::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 0.15rem solid transparent;
  border-left-color: #fff;
  position: absolute;
  top: 0.2rem;
  right: -0.28rem;
}

.aside .aside-list .inner .mask .box .title {
  font-size: 0.14rem;
  color: #767676;
}

.aside .aside-list .inner .mask .box .info {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 0.1rem;
  font-size: 0.13rem;
}

.aside .aside-list .inner .mask .box .info .ico {
  width: 0.26rem;
  height: 0.26rem;
  flex-shrink: 0;
  margin-right: 5px;
}

.aside .aside-list .inner .mask .box .info .ico img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.aside .aside-list .inner .mask .box .info:hover {
  color: #e32823;
}

.aside .aside-list .inner.active {
  background: #f5f5f5;
}

.aside .aside-list .ewm .mask .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.aside .aside-list .ewm .mask .box img {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.aside .btn {
  margin-top: 0.4rem;
  width: 100%;
  background: #fff;
  border-radius: 0.1rem 0 0 0.1rem;
  padding: 5px;
  cursor: pointer;
}

.aside .btn .item {
  width: 100%;
  height: 0.62rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.12rem;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.aside .btn .item .icon {
  width: 0.24rem;
  height: 0.24rem;
}

.aside .btn .item .icon i {
  font-size: 0.24rem;
  font-weight: bold;
}

.aside .btn .item .icon .hide {
  display: none;
}

.aside .btn .item .icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.aside .btn .item:hover {
  background: #f5f5f5;
}

.aside.active .aside-list {
  transform: translateX(100%);
}

.aside.active .btn .icon .hide {
  display: block;
}

.aside.active .btn .icon .open {
  display: none;
}

.Pages {
  padding-bottom: 1rem;
  min-height: 60vh;
}

.banner {
  background: #fff;
  margin-top: 1.1rem;
  width: 100%;
  height: 5.8rem;
  position: relative;
}

.banner .swiper {
  width: 100%;
  height: 100%;
}

.banner .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

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


.banner .swiper-button-prev {
  left: 6%;
}

.banner .swiper-button-next {
  right: 6%;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.banner .swiper .swiper-pagination {
  bottom: 0.3rem;
}

.banner .swiper .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.8);
}

.banner .swiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 0.15rem;
}

.banner-menu {
  position: absolute;
  top: 15%;
  left: 18.7%;
  background: rgba(255, 255, 255, .8);
  z-index: 30;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
  height: 5.2rem;
}

.banner-menu .menu_list {
  height: 100%;
  min-width: 2.3rem;
  width: fit-content;
  padding: 0.1rem 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -ms-fit-content;
  width: -o-fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banner-menu .menu_list .inner {
  width: 100%;
  height: 100%;
  padding: 0 0.26rem;
  line-height: 0.35rem;
}

.banner-menu .menu_list .inner .top {
  width: 100%;
}

.banner-menu .menu_list .inner .top a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.14rem;
  color: #1a1a1a;
}

.banner-menu .menu_list .inner .top a i {
  font-size: 0.2rem;
}

.banner-menu .menu_list .inner .top:hover a {
  color: #e32823;
}

.banner-menu .menu_list .inner .mask {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  height: 100%;
  /* background: #fff; */

  background: rgba(255, 255, 255, .8);
}

.banner-menu .menu_list .inner .mask .box {
  display: grid;
  /* 关键修改：固定5行，列自动生成（默认1列，不够时换行加列） */
  grid-template-rows: repeat(5, 1fr);
  /* 保持5行不变 */
  grid-template-columns: 1fr;
  /* 初始1列，宽度自适应父容器 */
  grid-auto-columns: 1fr;
  /* 自动新增的列也占1fr宽度 */
  grid-auto-flow: column;
  /* 布局流向：先填列，列满5行后自动新增列 */
  column-gap: 0.2rem;
  /* 列之间间距 */
  row-gap: 0.3rem;
  /* 行之间间距 */
  max-width: 9rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.1rem 0.2rem;
}

.banner-menu .menu_list .inner .mask .box .item {
  width: 2.5rem;
  padding: 0.1rem 0;
}

.banner-menu .menu_list .inner .mask .box .item a {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  transition: all 0.2s;
}

.banner-menu .menu_list .inner .mask .box .item a .imgs {
  width: 0.52rem;
  height: 0.52rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.banner-menu .menu_list .inner .mask .box .item a .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.banner-menu .menu_list .inner .mask .box .item a .name {
  flex: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.banner-menu .menu_list .inner .mask .box .item:hover a {
  color: #e32823;
}

.banner-menu .menu_list .inner .mask .box .last {
  /* width: 100%; */
  width: 2.5rem;
}

.banner-menu .menu_list .inner .mask .box .last a {
  width: 100%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.14rem;
  border-radius: 0.5rem;
  padding-left: 0.2rem;
  color: #999;
}

.banner-menu .menu_list .inner .mask .box .last a .icon {
  padding: 0.1rem 0.1rem;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-menu .menu_list .inner .mask .box .last a .icon i {
  font-size: 0.2rem;
  color: #999;
}

.banner-menu .menu_list .inner .mask .box .last:hover a {
  border-color: #e32823;
}

.banner-menu .menu_list .inner .mask .box .last:hover a .icon {
  border-color: #e32823;
}

.banner-menu .menu_list .inner .mask .box .last:hover a .icon i {
  color: #e32823;
}

.banner-menu.hide {
  display: none;
}

.banner-menu.fixed {
  position: fixed;
  display: block;
}

.banner-menu.show {
  position: fixed;
  display: block;
}

.section-1 {
  padding: 0.3rem 0 0.4rem;
  width: 100%;
}

.section-1 .sec1-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 0.3rem;
}

.section-1 .sec1-list .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-1 .sec1-list .item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-size: 0.14rem;
  color: #1a1a1a;
}

.section-1 .sec1-list .item a .imgs {
  width: 1rem;
  height: 0.62rem;
}

.section-1 .sec1-list .item a .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.section-1 .sec1-list .item a:hover {
  font-weight: bold;
}

.section-1 .sec1-list .item a:hover .imgs img {
  transform: scale(1.05);
}

.section-2 .w {
  padding: 0.32rem 0.48rem;
  background: #fff;
  border-radius: 0.12rem;
}

.section-2 .w h3 {
  font-size: 0.24rem;
  margin-bottom: 0.4rem;
}

.section-2 .w .sec2-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.section-2 .w .sec2-list .item {
  width: 100%;
  transition: all 0.2s;
}

.section-2 .w .sec2-list .item a {
  display: flex;
  align-items: center;
  width: 100%;
}

.section-2 .w .sec2-list .item a .imgs {
  width: 1.2rem;
  height: 0.8rem;
  flex-shrink: 0;
}

.section-2 .w .sec2-list .item a .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.section-2 .w .sec2-list .item a .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 0.1rem;
  font-size: 0.16rem;
}

.section-2 .w .sec2-list .item a .info .tip {
  font-size: 0.13rem;
  color: #767676;
  width: 80%;
  background: #efefef;
  text-align: center;
  padding: 5px 0;
  border-radius: 0.5rem;
  margin-bottom: 5px;
}

.section-2 .w:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 36px;
}

.section-3 .sec3-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.16rem;
}

.section-3 .sec3-list .item {
  transition: all 0.3s;
}

.section-3 .sec3-list .item a {
  display: block;
  background: #fff;
  border-radius: 0.12rem;
  width: 100%;
  height: 4.25rem;
}

.section-3 .sec3-list .item a .imgs {
  height: 2.8rem;
  width: 100%;
  padding: 0.2rem;
}

.section-3 .sec3-list .item a .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.section-3 .sec3-list .item a .info {
  height: calc(100% - 2.8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.2rem;
}

.section-3 .sec3-list .item a .info .title {
  font-size: 0.18rem;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.section-3 .sec3-list .item a .info .text {
  font-size: 0.14rem;
  margin: 0.1rem 0;
  height: 0.42rem;
  color: #767676;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.section-3 .sec3-list .item a .info .price {
  font-size: 0.16rem;
}

.section-3 .sec3-list .item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px;
}

.section-4 .pro {
  height: 4rem;
  margin-bottom: 0.3rem;
}

.section-4 .pro a {
  height: 100%;
  background: #fff;
  border-radius: 0.12rem;
  /* padding: 0.8rem 0.6rem; */
  padding: 0.4rem 0.6rem;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  width: 100%;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: .2rem;
  align-items: center;
}

.section-4 .pro a .info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  padding: .4rem 0;
}

.section-4 .pro a .info h5 {
  font-weight: normal;
  font-size: 0.36rem;
}

.section-4 .pro a .info .tags {
  font-size: 0.18rem;
  color: #767676;
  margin-top: 0.1rem;
  max-width: 4.7rem;
  height: 0.6rem;
}

.section-4 .pro a .info .tags .tag {
  position: relative;
  display: flex;
  align-items: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;

}

.section-4 .pro a .info .tags .tag::after {
  content: '';
  display: block;
  width: 1px;
  height: 0.18rem;
  margin: 0 0.1rem;
  background: #eee;
}

.section-4 .pro a .info .tags .tag:last-child::after {
  display: none;
}

.section-4 .pro a .info .price {
  font-size: 0.18rem;
  margin: auto 0 0.2rem;
}

.section-4 .pro a .info .look {
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -ms-fit-content;
  width: -o-fit-content;
  font-size: 0.18rem;
  color: #fff;
  background: #000;
  padding: 0.13rem 0.24rem;
  border-radius: 0.5rem;
}

.section-4 .pro a .imgs {
  /* width: 4.2rem; */
  /* height: 1.8rem; */

  /* width: 6rem;
  height: 3rem; */

  height: 2rem;
  width: 100%;
  flex-shrink: 0;
}

.section-4 .pro a .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.section-4 .sec3-list .item a .info {
  align-items: flex-start;
}

.product {
  padding: 1.2rem 0;
}

.proData {
  padding-bottom: 0;
  background: #fff;
}

.proData .numBox {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.proData .numBox .num {
  font-size: 0.16rem;
  margin: 0 0.2rem;
}

.proData .numBox .icon {
  width: 0.28rem;
  height: 0.28rem;
  color: #767676;
  cursor: pointer;
}

.proData .numBox .icon.disable {
  color: #d8d8d8;
  cursor: not-allowed;
}

.proData .head {
  margin-top: 0.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #d8d8d8;
  width: 100%;
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  gap: 0.5rem;
  height: auto;
  box-sizing: border-box;
  position: relative;
}

.proData .head .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proData .head .content .box {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proData .head .content .price {
  color: #e32823;
  font-size: 0.34rem;
  font-weight: bold;
}

.proData .head .content .top {
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #d8d8d8;
}

.proData .head .content .top h3 {
  font-size: 0.24rem;
  font-weight: bold;
}

.proData .head .content .top .tags {
  display: flex;
  align-items: center;
  font-size: 0.13rem;
  color: #767676;
  margin: 0.1rem 0 0.2rem;
  width: 100%;
}

.proData .head .content .top .tags .tag {
  position: relative;
  display: flex;
  align-items: center;
}

.proData .head .content .top .tags .tag::after {
  content: '';
  display: block;
  width: 1px;
  height: 0.12rem;
  margin: 0 5px;
  background: #000;
}

.proData .head .content .top .tags .tag:last-child::after {
  display: none;
}

.proData .head .content .spec {
  width: 100%;
}

.proData .head .content .spec .inner {
  margin-top: 0.3rem;
}

.proData .head .content .spec .inner .name {
  font-size: 0.2rem;
}

.proData .head .content .spec .specList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.16rem;
  margin-top: 0.15rem;
}

.proData .head .content .spec .specList .item {
  font-size: 0.16rem;
  border: 1px solid #d8d8d8;
  padding: 0.14rem 0.2rem;
  border-radius: 0.1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.proData .head .content .spec .specList .item:hover {
  border-color: #e32823;
  color: #e32823;
}

.proData .head .content .spec .specList .item.active {
  border-color: #e32823;
  color: #e32823;
}

.proData .head .content .spec .tipBox {
  margin-top: 0.3rem;
  width: 100%;
  background: #fafafa;
  padding: 0.18rem 0.3rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1rem;
  row-gap: 0.2rem;
}

.proData .head .content .spec .tipBox .tip {
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  color: #767676;
}

.proData .head .content .spec .tipBox .tip .icon {
  flex-shrink: 0;
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 4px;
}

.proData .head .content .spec .tipBox .tip .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proData .head .content .foot {
  margin-top: 0.3rem;
  font-size: 0.14rem;
  color: #767676;
}

.proData .head .content .foot .bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.3rem;
}

.proData .head .content .foot .bottom .btnBox {
  margin-left: auto;
  width: 100%;
  margin-left: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}

.proData .head .content .foot .bottom .btnBox .btn {
  transition: all 0.3s;
}

.proData .head .content .foot .bottom .btnBox .btn a {
  display: block;
  width: 100%;
  font-size: 0.16rem;
  color: #fff;
  text-align: center;
  padding: 0.14rem 0;
  border-radius: 0.5rem;
  background: #444444;
}

.proData .head .content .foot .bottom .btnBox .btn:last-child a {
  background: #e32823;
}

.proData .head .content .foot .bottom .btnBox .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.proData .head .right {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.proData .head .right .mySwiper2 {
  width: 100%;
  height: 5.6rem;
  box-sizing: border-box;
}

.proData .head .right .mySwiper2 .swiper-slide {
  width: 100%;
  height: 100%;
}

.proData .head .right .mySwiper2 .swiper-slide .imgs {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.proData .head .right .mySwiper2 .swiper-slide .imgs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.proData .head .right .mySwiper2 .swiper-slide video {
  width: 100%;
  height: 100%;
}

.proData .head .right .mySwiper2 .swiper-pagination {
  background: rgba(0, 0, 0, 0.4);
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  left: 90%;
  padding: 0 0.1rem;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.14rem;
}

.proData .head .right .mySwiper {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  padding: 0 0.3rem 0.4rem;
}

.proData .head .right .mySwiper .swiper-slide {
  width: 100%;
  height: 0.8rem;
  position: relative;
  opacity: 1;
  margin-right: 0.4rem;
}

.proData .head .right .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proData .head .right .mySwiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proData .head .right .mySwiper .swiper-slide .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.proData .head .right .mySwiper .swiper-button-prev,
.proData .head .right .mySwiper .swiper-button-next {
  transform: translateY(-45%);
}

.proData .head .right .mySwiper .swiper-button-prev::after,
.proData .head .right .mySwiper .swiper-button-next::after {
  font-size: 0.2rem;
  color: #000;
  font-weight: bold;
}

.proData .head .right .mySwiper .swiper-button-prev {
  left: 0;
}

.proData .head .right .mySwiper .swiper-button-next {
  right: 0;
}

.proData .head .right .mySwiper .swiper-slide-thumb-active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.1rem;
  bottom: -15px;
  width: 35%;
  height: 4px;
  background: #e32823;
}

.proData .head .sw {
  position: relative;
  width: 100%;
  height: 5.6rem;
}

.proData .head .sw .mask {
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: move;
  z-index: 10;
  display: none;
}

.proData .head .zoomBox {
  position: absolute;
  left: 47%;
  top: 0;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  display: none;
  background: #fff;
  z-index: 30;
  border: 1px solid #eee;
}

.proData .head .zoomBox img {
  object-fit: contain;
  display: block;
  width: auto;
  height: auto;
}

.proData .detail .top {
  margin: 0.26rem 0;
  color: #e32823;
  font-size: 0.2rem;
  position: relative;
  width: fit-content;
}

.proData .detail .top::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.06rem;
  width: 80%;
  height: 2px;
  background: #e32823;
}

.proData .detail .content {
  width: 100%;
}

.proData .detail .content img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.addressBox {
  display: flex;
  align-items: center;
  margin-top: 0.1rem;
  width: 100%;
}

.addressBox .info {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 0.06rem;
  padding: 0 0.16rem;
  height: 0.42rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  background-color: #fff;
}

.addressBox .info:hover {
  border-color: #94a3b8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.addressBox .info:focus-within {
  outline: none;
  border-color: #e32823;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.addressBox .selected-text {
  color: #1e293b;
  font-size: 0.15rem;
  padding-right: 0.24rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.addressBox .placeholder {
  color: #94a3b8;
}

.addressBox .icon {
  position: absolute;
  right: 0.16rem;
  color: #94a3b8;
  transition: transform 0.25s ease;
  pointer-events: none;
}

.addressBox .icon.active {
  transform: rotate(180deg);
}

.addressBox .cascader-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: none;
  z-index: 1000;
  overflow: hidden;
  transform-origin: top;
  transform: scaleY(0.95);
  opacity: 0;
  transition: all 0.2s ease;
}

.addressBox .cascader-panel.show {
  display: block;
  transform: scaleY(1);
  opacity: 1;
}

.addressBox .cascader-menus {
  display: flex;
  min-height: 2.2rem;
}

.addressBox .cascader-menu {
  flex: 1;
  min-width: 1.4rem;
  max-height: 3.2rem;
  overflow-y: auto;
  border-right: 1px solid #f1f5f9;
}

.addressBox .cascader-menu::-webkit-scrollbar {
  width: 6px;
}

.addressBox .cascader-menu::-webkit-scrollbar-track {
  background: #f8fafc;
}

.addressBox .cascader-menu::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.addressBox .cascader-menu::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.addressBox .cascader-menu:last-child {
  border-right: none;
}

.addressBox .cascader-option {
  padding: 0.1rem 0.16rem;
  font-size: 0.14rem;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.addressBox .cascader-option:hover {
  background-color: #ffe2e6;
  color: #1e293b;
}

.addressBox .cascader-option.active {
  background-color: #ffeaeb;
  color: #e32823;
  font-weight: 500;
}

.addressBox .cascader-option.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: #e32823;
}

.addressBox .separator {
  display: inline-block;
  margin: 0 0.06rem;
  color: #cbd5e1;
}

.addressBox .loading-indicator {
  color: #64748b;
  font-size: 14px;
  animation: fade 1.5s infinite;
}

@keyframes fade {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.addressBox .timeout-message {
  color: #f59e0b;
}

.related {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #d8d8d8;
  margin-top: 0.3rem;
  position: relative;
}

.related .title {
  font-size: 0.2rem;
}

.related .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related .top .more a {
  color: #767676;
  font-size: 0.14rem;
  transition: all 0.3s;
}

.related .top .more a:hover {
  color: #e32823;
}

.related .ts-box {
  position: relative;
  padding: 0 0.4rem;
  width: 100%;
  margin-top: 0.3rem;
}

.related .ts-box .source-conter {
  position: relative;
}

.related .ts-box .source-conter .swiper {
  width: 98%;
  padding-bottom: 0.2rem;
  box-sizing: border-box;
}

.related .ts-box .source-conter .swiper .swiper-slide {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.2rem;
}

.related .ts-box .source-conter .swiper .swiper-slide .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.16rem;
  width: 100%;
}

.related .ts-box .source-conter .swiper .swiper-slide .item .img {
  width: 100%;
  height: 1.65rem;
  overflow: hidden;
}

.related .ts-box .source-conter .swiper .swiper-slide .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related .ts-box .source-conter .swiper .swiper-slide .item .name {
  margin: 0.16rem 0;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.related .ts-box .source-conter .swiper .swiper-slide .item .price {
  color: #e32823;
}

.related .ts-box .source-conter .swiper .swiper-slide .item:hover .imgs {
  overflow: hidden;
  position: relative;
  transition: transform 0.5s;
}

.related .ts-box .source-conter .swiper .swiper-slide .item:hover .imgs img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(1.1);
}

.related .ts-box .source-conter .swiper-button-prev::after,
.related .ts-box .source-conter .swiper-button-next::after {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 0.15rem;
  border-radius: 50%;
  padding: 0.12rem 0.15rem;
  color: #fff;
  font-weight: bold;
  border: 1px solid #eeeeee;
  transition: all 0.3s;
  background: #eeeeee;
}

.related .ts-box .source-conter .swiper-button-prev:hover::after,
.related .ts-box .source-conter .swiper-button-next:hover::after {
  background-color: #e32823;
  color: #fff;
  border: none;
}

.related .ts-box .source-conter .swiper-button-prev {
  left: -3%;
  top: 45%;
}

.related .ts-box .source-conter .swiper-button-next {
  right: -3%;
  top: 45%;
}

.orderBox {
  background: #fafafa;
  padding-top: 1.2rem;
}

.orderBox .inner {
  background: #fff;
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.14rem 0.3rem;
}

.orderBox .inner h2 {
  font-weight: normal;
  font-size: 0.18rem;
}

.orderBox .inner .title {
  font-size: 0.16rem;
}

.orderBox .alert {
  padding: 0% 0.3rem;
  height: 0.48rem;
  background: #fff8f5;
  border: 1px solid #f16c36;
}

.orderBox .alert .tips {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 0.13rem;
  color: #e32823;
}

.orderBox .alert .tips .icon {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 0.1rem;
}

.orderBox .alert .tips .icon img {
  width: 100%;
  height: 100%;
}

.orderBox .alert .tips .btn a {
  padding: 0.06rem 0.24rem;
  border-radius: 0.1rem;
  background: #e32823;
  color: #fff;
  display: block;
  font-size: 0.13rem;
  margin-left: 0.3rem;
}

.orderBox .empty .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orderBox .empty .box .imgs {
  width: 1.6rem;
  height: 1.6rem;
}

.orderBox .empty .box .imgs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.orderBox .empty .box .btn a {
  padding: 0.1rem 0.37rem;
  border-radius: 0.5rem;
  background: #e32823;
  color: #fff;
}

.orderBox .related .ts-box {
  background: #fff;
}

.orderBox .related .ts-box .source-conter .swiper-button-prev {
  left: -2.4%;
  top: 45%;
}

.orderBox .related .ts-box .source-conter .swiper-button-next {
  right: -2.4%;
  top: 45%;
}

.orderBox .deliverAddr .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orderBox .deliverAddr .head .add a {
  font-size: 0.16rem;
}

.orderBox .deliverAddr .head .add:hover a {
  color: #e32823;
}

.orderBox .deliverAddr .addList .item {
  margin: 0.2rem 0;
  max-width: 8.3rem;
  border: 1px solid #eeeeee;
  padding: 0.13rem 0.22rem;
}

.orderBox .deliverAddr .addList .item.action {
  border: 1px solid #e32823;
}

.orderBox .deliverAddr .addList .item .top {
  display: flex;
  align-items: center;
  color: #767676;
  font-size: 0.13rem;
}

.orderBox .deliverAddr .addList .item .top .name {
  font-size: 0.16rem;
  color: #000;
}

.orderBox .deliverAddr .addList .item .top .tel {
  margin: 0 0.16rem;
}

.orderBox .deliverAddr .addList .item .top .tags {
  border: 1px solid #e32823;
  color: #e32823;
  padding: 2px 4px;
  margin-left: 6%;
}

.orderBox .deliverAddr .addList .item .text {
  margin-top: 0.1rem;
  color: #767676;
  font-size: 0.13rem;
}

.orderBox .deliverAddr .foot {
  margin-top: 0.1rem;
}

.orderBox .deliverAddr .foot .box {
  display: flex;
  align-items: center;
  font-size: 0.13rem;
  color: #767676;
  cursor: pointer;
}

.orderBox .deliverAddr .foot .box .icon {
  width: 0.14rem;
  height: 0.14rem;
  transform: rotate(90deg);
}

.orderBox .deliverAddr .foot .box .icon i {
  font-size: 0.14rem;
  font-weight: bold;
}

.orderBox .deliverAddr .foot .box.active .icon {
  transform: rotate(-90deg);
}

.orderBox .proInfo {
  padding: 0.38rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 3.8rem;
}

.orderBox .proInfo .le .head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.15rem;
  border: 1px solid #eeeeee;
  padding: 0.16rem 0.34rem;
}

.orderBox .proInfo .le .head .view {
  display: flex;
}

.orderBox .proInfo .le .head .view .imgs {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-right: 0.2rem;
}

.orderBox .proInfo .le .head .view .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.orderBox .proInfo .le .head .view .info .name {
  font-size: 0.16rem;
}

.orderBox .proInfo .le .head .view .info .tip {
  font-size: 0.14rem;
  color: #767676;
  margin-top: 0.1rem;
}

.orderBox .proInfo .le .foot {
  padding: 0.38rem;
  display: flex;
}

.orderBox .proInfo .le .foot .title {
  font-size: 0.18rem;
  margin-right: 0.26rem;
}

.orderBox .proInfo .le .foot .tip {
  font-size: 0.12rem;
  color: #999;
}

.orderBox .proInfo .le .foot .item {
  margin-top: 0.1rem;
  display: flex;
}

.orderBox .proInfo .le .foot .item label {
  font-size: 0.13rem;
  margin-left: 0.1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.orderBox .proInfo .le .foot .item label .name {
  margin: 0 0.2rem 0 0.1rem;
}

.orderBox .proInfo .le .foot .item label .edit {
  color: #0256ff;
}

.orderBox .proInfo .rg {
  background: #f6f6f6;
  padding: 0.33rem 0.22rem;
}

.orderBox .proInfo .rg .top {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #d8d8d8;
}

.orderBox .proInfo .rg .top .title {
  font-size: 0.18rem;
}

.orderBox .proInfo .rg .top span {
  color: #e32823;
}

.orderBox .proInfo .rg .top .text {
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
}

.orderBox .proInfo .rg .top .text img {
  width: 0.22rem;
  height: 0.22rem;
  display: block;
  margin-right: 0.1rem;
}

.orderBox .proInfo .rg .foot {
  height: calc(100% - 0.9rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.orderBox .proInfo .rg .foot .item {
  margin-top: 5px;
  font-size: 0.14rem;
}

.orderBox .proInfo .rg .foot .item .red {
  font-size: 0.24rem;
  color: #e32823;
}

.orderBox .proInfo .rg .foot .item span {
  margin-left: 0.1rem;
  display: inline-block;
}

.orderBox .order_foot {
  height: 2.8rem;
  padding: 0.32rem 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.orderBox .order_foot .item {
  font-size: 0.18rem;
}

.orderBox .order_foot .item .red {
  font-size: 0.3rem;
  font-weight: bold;
  color: #e32823;
}

.orderBox .order_foot .tips {
  max-width: 3.4rem;
  background: #fff8f5;
  border: 1px solid #f16c36;
  padding: 0.13rem 0.22rem;
  font-size: 0.12rem;
  display: flex;
}

.orderBox .order_foot .tips .name {
  flex-shrink: 0;
  margin-right: 5px;
  color: #767676;
}

.orderBox .order_foot .submit a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 0.52rem;
  background: #e32823;
  color: #fff;
  font-size: 0.18rem;
}

.carBox {
  width: 100%;
  /* 自定义复选框样式 - 未选中状态 */
  /* 选中状态 - 显示勾选图标 */
  /* 标签文字样式 */
}

.carBox .item {
  display: flex;
  user-select: none;
}

.carBox .goods-head {
  display: grid;
  grid-template-columns: auto 1fr 2rem 1.4rem 1.4rem 0.8rem;
  gap: 0.15rem;
}

.carBox .goods-head .item {
  display: block;
  font-size: 0.13rem;
  color: #767676;
  text-align: center;
}

.carBox .goods-center .head {
  padding: 0.2rem 0;
  border-bottom: 1px solid #d8d8d8;
  text-align: center;
}

.carBox .goods-center .head label {
  display: flex;
  align-items: center;
  font-size: 0.15rem;
}

.carBox .goods-center .head label .imgs {
  width: 0.48rem;
  height: 0.2rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.carBox .goods-center .head label .imgs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carBox .goods-center .goods-list .item {
  padding: 0.2rem 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr 2rem 1.4rem 1.4rem 0.8rem;
  gap: 0.15rem;
  align-items: center;
  text-align: center;
}

.carBox .goods-center .goods-list .item .int {
  width: 0.2rem;
  height: 0.2rem;
}

.carBox .goods-center .goods-list .item .data {
  display: flex;
  text-align: left;
}

.carBox .goods-center .goods-list .item .data .imgs {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.carBox .goods-center .goods-list .item .data .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carBox .goods-center .goods-list .item .data .info .title {
  font-size: 0.16rem;
  color: #1a1a1a;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.carBox .goods-center .goods-list .item .data .info .text {
  font-size: 0.14rem;
  margin-top: 5px;
  color: #767676;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.carBox .goods-center .goods-list .item .total {
  color: #e32823;
}

.carBox .goods-center .goods-list .item .del {
  font-size: 0.14rem;
  color: #767676;
  cursor: pointer;
  transition: all 0.3s;
}

.carBox .goods-center .goods-list .item .del:hover {
  color: #e32823;
}

.carBox label::before {
  content: '';
  display: inline-block;
  width: 0.18rem;
  /* 图标宽度 */
  height: 0.18rem;
  /* 图标高度 */
  margin-right: 0.12rem;
  vertical-align: middle;
  background: url('../img/icon/check.svg') no-repeat center;
  background-size: 100% 100%;
}

.carBox input:checked+label::before {
  border: none;
  /* 去掉边框 */
  background: url('../img/icon/check2.svg') no-repeat center;
  background-size: 100% 100%;
  vertical-align: middle;
  width: 0.18rem;
  /* 图标宽度 */
  height: 0.18rem;
  /* 图标高度 */
}

.carBox label {
  cursor: pointer;
  font-size: 0.13rem;
}

.carBox input[type='checkbox'] {
  display: none;
}

.carBox .goods-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.2rem;
  background: #fff;
  padding-left: 0.3rem;
}

.carBox .goods-bottom .left,
.carBox .goods-bottom .right {
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  color: #767676;
}

.carBox .goods-bottom .left .item {
  margin-right: 0.2rem;
  align-items: center;
}

.carBox .goods-bottom .left .item label {
  font-size: 0.14rem;
}

.carBox .goods-bottom .left .delAll {
  cursor: pointer;
  transition: all 0.3s;
}

.carBox .goods-bottom .left .delAll:hover {
  color: #e32823;
}

.carBox .goods-bottom .right .foot .total {
  font-size: 0.18rem;
  color: #000;
}

.carBox .goods-bottom .right .goPay {
  width: 2.8rem;
  flex-shrink: 0;
  margin-left: 0.2rem;
}

.carBox .goods-bottom .right .goPay a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.18rem 0;
  background: #e32823;
  color: #fff;
  font-size: 0.18rem;
}

.pay {
  background: #fff;
  margin-top: 1.2rem;
  padding: 0.23rem 0.4rem;
}

.pay .head {
  padding-bottom: 0.42rem;
  border-bottom: 1px solid #d8d8d8;
}

.pay .head .title {
  display: flex;
  align-items: center;
  font-size: 0.22rem;
}

.pay .head .title .icon {
  width: 0.36rem;
  height: 0.36rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.pay .head .title .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pay .head .tip {
  font-size: 0.15rem;
  margin-top: 0.1rem;
  color: #767676;
}

.pay .head .tip span {
  font-weight: bold;
  color: #000;
  margin: 0 3px;
}

.pay .head .info {
  background: #eeeeee;
  padding: 0.26rem 0.2rem;
  margin-top: 0.2rem;
  width: 100%;
}

.pay .head .info .item {
  font-size: 0.14rem;
  color: #767676;
  margin: 4px 0;
}

.pay .head .info .item span {
  color: #000;
}

.pay .pay-way {
  margin-top: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #d8d8d8;
}

.pay .pay-way .title {
  font-size: 0.16rem;
}

.pay .pay-way .radio {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
}

.pay .pay-way .radio .radio_box {
  position: relative;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  padding: 0.1rem 0.34rem;
  cursor: pointer;
  border: 1px solid #eeeeee;
  margin-right: 0.16rem;
}

.pay .pay-way .radio .radio_box .name {
  display: flex;
  align-items: center;
  font-size: 0.18rem;
}

.pay .pay-way .radio .radio_box .name .icon {
  width: 0.32rem;
  height: 0.32rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.pay .pay-way .radio .radio_box .name .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pay .pay-way .radio .radio_box .name span {
  font-size: 0.14rem;
  color: #333333;
}

.pay .pay-way .radio .radio_box label {
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  right: -2px;
  cursor: pointer;
}

.pay .pay-way .radio .radio_box input {
  width: 2.2rem;
  height: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.pay .pay-way .radio .radio_box input:checked+label {
  background: url(../img/icon/xuanze_03.png) no-repeat center;
}

.pay .pay-btn {
  padding: 0.3rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.pay .pay-btn .item {
  font-size: 0.15rem;
  display: flex;
  align-items: baseline;
}

.pay .pay-btn .item .price {
  color: #e32823;
  font-weight: bold;
}

.original-price {
  text-decoration: line-through;
  color: #767676;
  font-size: 0.12rem;
  margin-left: 10px;
}

.pay .pay-btn .item span {
  font-size: 0.22rem;
}

.pay .pay-btn .btn {
  width: 2.4rem;
  height: 0.52rem;
  background: #e32823;
  border-radius: 4px;
  text-align: center;
  line-height: 0.52rem;
  font-size: 0.16rem;
  color: #fff;
  cursor: pointer;
  margin: 0.18rem 0 0.34rem;
}

.pay .pay-btn .policyBox {
  font-size: 0.14rem;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  color: #9e9e9e;
  /* 自定义复选框样式 - 未选中状态 */
  /* 选中状态 - 显示勾选图标 */
  /* 标签文字样式 */
}

.pay .pay-btn .policyBox a {
  color: #e32823;
}

.pay .pay-btn .policyBox label::before {
  content: '';
  display: inline-block;
  width: 0.14rem;
  /* 图标宽度 */
  height: 0.14rem;
  /* 图标高度 */
  margin-right: 4px;
  vertical-align: middle;
  background: url('../img/icon/check.svg') no-repeat center;
  background-size: 100% 100%;
}

.pay .pay-btn .policyBox input:checked+label::before {
  border: none;
  /* 去掉边框 */
  background: url('../img/icon/check2.svg') no-repeat center;
  background-size: 100% 100%;
  vertical-align: middle;
  width: 0.14rem;
  /* 图标宽度 */
  height: 0.14rem;
  /* 图标高度 */
}

.pay .pay-btn .policyBox label {
  cursor: pointer;
  font-size: 0.13rem;
}

.pay .pay-btn .policyBox input[type='checkbox'] {
  display: none;
}

.payment {
  background: #fafafa;
}

.payment .head {
  border: none;
}

.payment .foot .name {
  font-size: 0.16rem;
  color: #767676;
}

.payment .foot .caozuo {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
}

.payment .foot .caozuo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 0.48rem;
  border: 1px solid #d8d8d8;
  margin-right: 0.23rem;
  color: #1a1a1a;
  transition: all 0.3s;
}

.payment .foot .caozuo a:hover {
  border-color: #e32823;
  color: #e32823;
}

.breadcrumb {
  font-size: 0.12rem;
  margin-top: 0.2rem;
  color: #767676;
}

.breadcrumb a {
  font-size: 0.12rem;
  color: #767676;
}

.breadcrumb a:hover {
  color: #e32823;
}

.orderpage {
  background: #fff;
}

.orderpage .orderList {
  margin-top: 0.16rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.76rem 1fr;
  gap: 0.8rem;
}

.orderpage .orderList .menus {
  position: sticky;
  top: 20%;
  left: 0;
  border-radius: 0.2rem;
  border: 1px solid #eeeeee;
  height: 4.2rem;
}

.orderpage .orderList .menus .head {
  padding: 0.15rem 0.25rem;
}

.orderpage .orderList .menus .head h3 {
  font-weight: normal;
  font-size: 0.18rem;
  color: #e32823;
}

.orderpage .orderList .menus .inner .item {
  padding: 0.1rem 0.25rem;
  border-bottom: 1px solid #eeeeee;
}

.orderpage .orderList .menus .inner .item .title {
  font-size: 0.14rem;
  font-weight: bold;
  margin-bottom: 0.15rem;
}

.orderpage .orderList .menus .inner .item .li {
  margin: 0.1rem 0;
}

.orderpage .orderList .menus .inner .item .li a {
  color: #767676;
  font-size: 0.14rem;
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.orderpage .orderList .menus .inner .item .li a:hover {
  color: #e32823;
}

.orderpage .orderList .menus .inner .item .li.active a {
  color: #e32823;
}

.orderpage .orderList .menus .inner .item:last-child {
  border: none;
}

.orderpage .orderList .content .head h2 {
  font-weight: normal;
  font-size: 0.24rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #d8d8d8;
}

.orderpage .orderList .content .head .tabs {
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.orderpage .orderList .content .head .tabs .tab {
  width: 100%;
}

.orderpage .orderList .content .head .tabs .tab a {
  min-width: 1.3rem;
  background: #f1f1f1;
  text-align: center;
  font-size: 0.14rem;
  display: block;
  padding: 0.06rem 0;
  transition: all 0.3s;
}

.orderpage .orderList .content .head .tabs .tab.active a {
  background: #1a1a1a;
  color: #fff;
}

.orderpage .orderList .content .head .tabs .tab:hover a {
  background: #1a1a1a;
  color: #fff;
}

.orderpage .orderList .content .thead {
  display: grid;
  grid-template-columns: 1fr 1.2rem 1rem 1.2rem 1rem 1.2rem;
  gap: 0.1rem;
  width: 100%;
  margin-top: 0.26rem;
  background: #fafafa;
  padding: 0 0.15rem;
}

.orderpage .orderList .content .thead .item {
  text-align: center;
  font-size: 0.13rem;
  padding: 0.14rem 0;
}

.orderpage .orderList .content .list .inner {
  margin-top: 0.2rem;
}

.orderpage .orderList .content .list .inner .top {
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  color: #767676;
  padding: 6px 0.15rem;
}

.orderpage .orderList .content .list .inner .top input[type='checkbox'] {
  width: 0.16rem;
  height: 0.16rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.orderpage .orderList .content .list .inner .top .time {
  margin-right: 0.3rem;
}

.orderpage .orderList .content .list .inner .top .status {
  margin-left: auto;
  font-size: 0.14rem;
}

.orderpage .orderList .content .list .inner .head {
  padding: 6px 0.15rem;
  background: #fafafa;
  font-size: 0.12rem;
  color: #999999;
  margin: 0.1rem 0;
}

.orderpage .orderList .content .list .inner .head span {
  color: #000;
}

.orderpage .orderList .content .list .inner .item {
  display: grid;
  grid-template-columns: 1fr 1.2rem 1rem 1.2rem 1rem 1.2rem;
  gap: 0.1rem;
  width: 100%;
  align-items: center;
  font-size: 0.14rem;
  color: #767676;
  padding: 0.3rem 0.15rem;
  text-align: center;
  border: 1px solid #eeeeee;
}

.orderpage .orderList .content .list .inner .item .view {
  display: flex;
  align-items: center;
  text-align: left;
}

.orderpage .orderList .content .list .inner .item .view .imgs {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.orderpage .orderList .content .list .inner .item .view .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orderpage .orderList .content .list .inner .item .view .info .name {
  color: #000;
  font-size: 0.16rem;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.orderpage .orderList .content .list .inner .item .view .info .tip {
  font-size: 0.14rem;
  margin-top: 0.1rem;
}

.price .tip {
  color: #e32823;
  font-size: 0.14rem;
}

.orderpage .orderList .content .list .inner .item .operation {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.orderpage .orderList .content .list .inner .item .operation a {
  display: block;
  width: 100%;
  padding: 5px 0;
  transition: all 0.3s;
  margin: 2px 0;
}

.orderpage .orderList .content .list .inner .item .operation a.active {
  background: #e32823;
  color: #fff;
}

.orderpage .orderList .content .list .inner .item .operation a:hover {
  background: #e32823;
  color: #fff;
}

.orderpage .orderList .content .foot {
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
  padding: 0 0.15rem;
}

.orderpage .orderList .content .foot .all {
  display: flex;
  align-content: baseline;
  font-size: 0.14rem;
  flex-shrink: 0;
}

.orderpage .orderList .content .foot .all input {
  width: 0.16rem;
  height: 0.16rem;
  display: block;
  margin-right: 4px;
}

.orderpage .orderList .content .foot .gopay {
  margin-left: 0.2rem;
  width: 100%;
}

.orderpage .orderList .content .foot .gopay a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 0.3rem;
  color: #fff;
  font-size: 0.14rem;
  background: #e32823;
}

.orderDeta .tool {
  margin-top: 0.4rem;
  max-width: 100%;
  width: 100%;
}

.orderDeta .tool .item {
  max-width: 1.2rem;
}

.orderDeta .tool .item .bottom-item-left .yes,
.orderDeta .tool .item .bottom-item-left .no {
  width: 0.15rem;
  height: 0.15rem;
}

.orderDeta .tool .item .bottom-item-left .no img {
  width: 0.15rem;
  height: 0.15rem;
}

.orderDeta .tool .item .bottom-item-left .line {
  flex: 1;
  top: 60%;
  min-width: 2.1rem;
}

.orderDeta .tool .item .bottom-item-right {
  opacity: 0;
  width: 100%;
}

.orderDeta .tool .item .bottom-item-right .br-title {
  width: 100%;
  height: 0.4rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.orderDeta .orderList .content .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #d8d8d8;
}

.orderDeta .orderList .content .head h2 {
  font-weight: normal;
  font-size: 0.24rem;
  padding-bottom: 0;
  border: none;
  display: flex;
  align-items: center;
}

.orderDeta .orderList .content .head h2 i {
  font-size: 0.3rem;
  margin-right: 0.1rem;
}

.orderDeta .orderList .content .head .right {
  display: flex;
  align-items: center;
}

.orderDeta .orderList .content .head .right .cancel,
.orderDeta .orderList .content .head .right .save,
.orderDeta .orderList .content .head .right .pays {
  transition: all 0.3s;
  margin-left: 0.1rem;
}

.orderDeta .orderList .content .head .right .cancel a,
.orderDeta .orderList .content .head .right .save a,
.orderDeta .orderList .content .head .right .pays a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 0.3rem;
  font-size: 0.14rem;
}

.orderDeta .orderList .content .head .right .cancel:hover,
.orderDeta .orderList .content .head .right .save:hover,
.orderDeta .orderList .content .head .right .pays:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.orderDeta .orderList .content .head .right .cancel {
  border: 1px solid #d8d8d8;
  background: #f9f9f9;
}

.orderDeta .orderList .content .head .right .save {
  background: #e88b00;
}

.orderDeta .orderList .content .head .right .save a {
  color: #fff;
}

.orderDeta .orderList .content .head .right .pays {
  background: #e32823;
}

.orderDeta .orderList .content .head .right .pays a {
  color: #fff;
}

.orderDeta .orderList .content .warn {
  display: flex;
  align-items: center;
  width: 100%;
  height: 0.3rem;
  background: #fffdde;
  padding: 6px;
  font-size: 0.13rem;
}

.orderDeta .orderList .content .warn .icon {
  width: 0.18rem;
  height: 0.18rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.orderDeta .orderList .content .warn .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.orderDeta .orderList .content .shop_adres {
  margin-top: 0.5rem;
}

.orderDeta .orderList .content .shop_adres .top {
  display: flex;
  align-items: center;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #d8d8d8;
}

.orderDeta .orderList .content .shop_adres .top .name {
  font-size: 0.16rem;
  margin-right: 0.1rem;
}

.orderDeta .orderList .content .shop_adres .top .add a {
  color: #0256ff;
  font-size: 0.14rem;
}

.orderDeta .orderList .content .shop_adres .top .tip {
  font-size: 0.14rem;
  color: #999999;
}

.orderDeta .orderList .content .shop_adres .lists {
  width: 100%;
  margin: 0.15rem 0;
}

.orderDeta .orderList .content .shop_adres .lists .item {
  padding: 0.15rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
}

.orderDeta .orderList .content .shop_adres .lists .item .le {
  opacity: 0;
}

.orderDeta .orderList .content .shop_adres .lists .item .le .box {
  display: flex;
  align-items: center;
}

.orderDeta .orderList .content .shop_adres .lists .item .le .icon {
  width: 0.24rem;
  height: 0.24rem;
}

.orderDeta .orderList .content .shop_adres .lists .item .le span {
  color: #e32823;
  font-size: 0.14rem;
  margin: 0 0.1rem;
  display: block;
}

.orderDeta .orderList .content .shop_adres .lists .item .check,
.orderDeta .orderList .content .shop_adres .lists .item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.orderDeta .orderList .content .shop_adres .lists .item .check {
  margin-right: auto;
}

.orderDeta .orderList .content .shop_adres .lists .item .check input {
  width: 0.14rem;
  height: 0.14rem;
  margin-right: 0.1rem;
}

.orderDeta .orderList .content .shop_adres .lists .item label {
  font-size: 0.14rem;
  color: #767676;
}

.orderDeta .orderList .content .shop_adres .lists .item label .name {
  color: #000;
  margin-right: 0.12rem;
}

.orderDeta .orderList .content .shop_adres .lists .item label .tel {
  margin-left: 0.12rem;
}

.orderDeta .orderList .content .shop_adres .lists .item label .city {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.orderDeta .orderList .content .shop_adres .lists .item .action {
  flex-shrink: 0;
  margin-left: 0.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 2.35rem;
  padding-right: 0.3rem;
  font-size: 0.14rem;
}

.orderDeta .orderList .content .shop_adres .lists .item .action .edits,
.orderDeta .orderList .content .shop_adres .lists .item .action .delete {
  cursor: pointer;
}

.orderDeta .orderList .content .shop_adres .lists .item .action .edits:hover,
.orderDeta .orderList .content .shop_adres .lists .item .action .delete:hover {
  color: #e32823;
}

.orderDeta .orderList .content .shop_adres .lists .item.active .le {
  opacity: 1;
}

.orderDeta .orderList .content .inv_box {
  padding: 0.38rem;
}

.orderDeta .orderList .content .inv_box .title {
  font-size: 0.18rem;
  margin-right: 0.26rem;
}

.orderDeta .orderList .content .inv_box .item {
  margin-top: 0.1rem;
  display: flex;
}

.orderDeta .orderList .content .inv_box .item label {
  font-size: 0.13rem;
  margin-left: 0.1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.orderDeta .orderList .content .inv_box .item label .name {
  margin: 0 0.2rem 0 0.1rem;
}

.orderDeta .orderList .content .inv_box .item label .edit {
  color: #0256ff;
}

.orderDeta .orderList .content .thead {
  grid-template-columns: 1fr 1.2rem 1rem 1.2rem 1.3rem;
}

.orderDeta .orderList .content .list .inner .item {
  grid-template-columns: 1fr 1.2rem 1rem 1.2rem 1.3rem;
}

.orderDeta .orderList .content .foots {
  width: 100%;
}

.orderDeta .orderList .content .foots .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0.3rem 0 0.2rem;
  border-bottom: 1px solid #d8d8d8;
}

.orderDeta .orderList .content .foots .inner .item {
  font-size: 0.15rem;
}

.orderDeta .orderList .content .foots .inner .item .c-red {
  font-size: 0.22rem;
  font-weight: bold;
}

.orderDeta .orderList .content .foots .inner .item span {
  margin-left: 0.1rem;
}

.orderDeta .orderList .content .foots .inner .btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 0.48rem;
  text-align: center;
  font-size: 0.18rem;
  border: 1px solid #d8d8d8;
  background: #f9f9f9;
}

.orderDeta .orderList .content .foots .inner .btn:last-child {
  margin-left: 0.2rem;
}

.orderDeta .orderList .content .foots .inner .btn:last-child a {
  color: #fff;
  background: #e32823;
  border: none;
}

.orderDeta .orderList .content .foots .inner:last-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  border: none;
}

.orderDeta .order_info .heads {
  margin-top: 0.1rem;
  width: 100%;
  background: #fafafa;
  font-size: 0.13rem;
  color: #767676;
  padding: 0.14rem 0;
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  text-align: center;
}

.orderDeta .order_info .od_list {
  width: 100%;
  margin-top: 0.1rem;
}

.orderDeta .order_info .od_list .item {
  width: 100%;
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  position: relative;
  align-items: flex-start;
  padding: 0.1rem 0;
  min-height: 0.6rem;
}

.orderDeta .order_info .od_list .item .box {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.orderDeta .order_info .od_list .item .box .bottom-item-left {
  display: flex;
  align-items: center;
  position: relative;
}

.orderDeta .order_info .od_list .item .box .bottom-item-left .icon {
  width: 0.12rem;
  height: 0.12rem;
  color: #999;
  position: relative;
  z-index: 1;
}

.orderDeta .order_info .od_list .item .box .bottom-item-left .line {
  flex: 1;
  min-height: 0.6rem;
  border-right: 2px solid #d8d8d8;
  width: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
}

.orderDeta .order_info .od_list .item .box .time {
  flex-shrink: 0;
  margin-left: 0.2rem;
  font-size: 0.14rem;
}

.orderDeta .order_info .od_list .item .bottom-item-right {
  color: #767676;
}

.orderDeta .order_info .od_list .item .bottom-item-right .title {
  font-size: 0.14rem;
}

.orderDeta .order_info .od_list .item .bottom-item-right .text {
  font-size: 0.12rem;
}

.orderDeta .order_info .od_list .item:last-child .line {
  display: none;
}

.orderDeta .order_info .od_list .item.active .bottom-item-right {
  color: #e32823;
}

.orderDeta .order_info .od_list .item.active .box .time,
.orderDeta .order_info .od_list .item.active .box .bottom-item-left .icon {
  color: #e32823;
}

.orderDeta .order_info .od_list .item.active .box .bottom-item-left .line {
  border-color: rgba(227, 40, 35, 0.6);
}

.orderDeta .adres_inf {
  width: 100%;
  margin-top: 0.2rem;
  display: grid;
  grid-template-columns: 38% 1fr 1fr;
}

.orderDeta .adres_inf .inner {
  width: 100%;
  border-right: 1px solid #d8d8d8;
  padding: 0 0.4rem;
}

.orderDeta .adres_inf .inner .title {
  font-size: 0.14rem;
  margin-bottom: 0.2rem;
}

.orderDeta .adres_inf .inner .item {
  width: 100%;
  font-size: 0.14rem;
  display: flex;
  margin-bottom: 0.16rem;
}

.orderDeta .adres_inf .inner .item .label {
  width: 0.8rem;
  flex-shrink: 0;
  color: #999;
}

.orderDeta .adres_inf .inner .item .value {
  font-size: 0.14rem;
}

.orderDeta .adres_inf .inner .item .value a {
  font-size: 0.14rem;
}

.orderDeta .adres_inf .inner:first-child {
  padding-left: 0;
}

.orderDeta .adres_inf .inner:last-child {
  padding-right: 0;
  border-right: none;
}

.afterBox .orderList {
  padding-bottom: 1rem;
}

.afterBox .orderList .content .thead {
  grid-template-columns: 1fr 2rem 2rem 2rem;
}

.afterBox .orderList .content .list .inner .top {
  padding: 5px 0;
}

.afterBox .orderList .content .list .inner .item {
  grid-template-columns: 1fr 2rem 2rem 2rem;
  color: #000;
}

.afterBox .orderList .content .list .inner .item .sendback {
  cursor: pointer;
}

.msgList {
  margin: 0.25rem 0;
  width: 100%;
}

.msgList .inner {
  height: 1.4rem;
  width: 100%;
  background: #f9f9f9;
  padding: 0.2rem;
  display: flex;
  position: relative;
  margin-bottom: 0.2rem;
}

.msgList .inner .close {
  position: absolute;
  right: 0.24rem;
  top: 0.14rem;
  cursor: pointer;
}

.msgList .inner .close i {
  font-size: 0.25rem;
  color: #5a5a68;
}

.msgList .inner .close:hover i {
  color: #e32823;
}

.msgList .inner .imgs {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-right: 0.3rem;
}

.msgList .inner .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.msgList .inner .data {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.msgList .inner .data .top {
  display: flex;
  align-items: center;
}

.msgList .inner .data .top .title {
  font-size: 0.16rem;
  flex-shrink: 0;
}

.msgList .inner .data .top .time {
  font-size: 0.12rem;
  color: #767676;
  margin-left: 0.12rem;
}

.msgList .inner .data .text {
  margin-bottom: auto;
  margin-top: 0.1rem;
  font-size: 0.13rem;
  color: #767676;
}

.msgList .inner .data .look {
  margin-left: auto;
}

.msgList .inner .data .look a {
  font-size: 0.14rem;
  color: #0256ff;
}

.msgData {
  margin: 0.24rem 0;
  font-size: 0.15rem;
}

.msgData p {
  line-height: 1.6;
}

.msgData img {
  display: block;
  max-width: 100%;
  height: auto !important;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  margin: 0.2rem auto;
}

.addmanage .from {
  margin-top: 0.24rem;
  width: 80%;
}

.addmanage .from .item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}

.addmanage .from .item .name {
  width: 1.2rem;
  font-size: 0.14rem;
}

.addmanage .from .item .input {
  border: 1px solid #d3d8e0;
  width: 100%;
}

.addmanage .from .item .input input,
.addmanage .from .item .input select {
  width: 100%;
  height: 0.4rem;
  font-size: 0.14rem;
  border: none;
  padding: 0 0.15rem;
  outline: none;
}

.addmanage .from .item .input textarea {
  width: 100%;
  padding: 0.1rem;
  box-sizing: border-box;
  height: 0.6rem;
  border: none;
  outline: none;
  resize: none;
  font-size: 0.14rem;
}

.addmanage .from .item .addressBox .loading-indicator {
  animation: none;
  color: #000;
}

.addmanage .from .item .box {
  width: 100%;
  font-size: 0.14rem;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.addmanage .from .item .box input {
  width: 0.14rem;
  height: 0.14rem;
}

.addmanage .from .item .box label {
  cursor: pointer;
}

.addmanage .bottom {
  margin-left: 1.1rem;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 0.18rem;
  margin-top: 0.34rem;
}

.addmanage .bottom .submit,
.addmanage .bottom .clear {
  width: 1.8rem;
  height: 0.48rem;
  text-align: center;
  line-height: 0.48rem;
  font-size: 0.16rem;
  cursor: pointer;
  transition: all 0.3s;
}

.addmanage .bottom .submit:hover,
.addmanage .bottom .clear:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.addmanage .bottom .clear {
  color: #000;
  border: 1px solid #d8d8d8;
}

.addmanage .bottom .submit {
  color: #fff;
  background: #e32823;
  margin-right: 0.2rem;
}

.addmanage .add_list {
  margin-top: 0.56rem;
}

.addmanage .add_list table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  /* 固定表格布局，避免列宽被内容撑开 */
}

.addmanage .add_list table thead {
  width: 100%;
  background: #fafafa;
  border: 1px solid #eee;
}

.addmanage .add_list table thead th {
  text-align: center;
  background: #fafafa;
  font-size: 0.14rem;
  padding: 0.14rem 0;
  font-weight: normal;
  word-wrap: break-word;
  min-width: 1rem;
}

.addmanage .add_list table tbody {
  width: 100%;
}

.addmanage .add_list table tbody tr {
  border-bottom: 1px solid #eeeeee;
}

.addmanage .add_list table tbody td {
  text-align: center;
  border: none;
  font-size: 0.14rem;
  padding: 0.1rem;
  word-wrap: break-word;
  min-width: 1rem;
}

.addmanage .add_list table tbody .opt {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.addmanage .add_list table tbody .opt .btn {
  cursor: pointer;
}

.addmanage .add_list table tbody .opt .btn:hover {
  color: #e32823;
}

.addmanage .add_list .table {
  width: 100%;
}

.addmanage .add_list .table .thead {
  width: 100%;
  background: #fafafa;
  border: 1px solid #eee;
  display: grid;
  grid-template-columns: 10% 1fr 2rem 2rem;
  gap: 4px;
  padding: 0;
}

.addmanage .add_list .table .thead .th {
  text-align: center;
  background: #fafafa;
  font-size: 0.14rem;
  padding: 0.14rem 0;
}

.addmanage .add_list .table .tbody {
  width: 100%;
}

.addmanage .add_list .table .tbody .tr {
  border-bottom: 1px solid #eeeeee;
  display: grid;
  grid-template-columns: 10% 1fr 2rem 2rem;
  gap: 4px;
  padding: 0.14rem 0;
  font-size: 0.14rem;
  text-align: center;
}

.addmanage .add_list .table .tbody .tr .opt {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  text-align: center;
}

.addmanage .add_list .table .tbody .tr .opt .btn {
  cursor: pointer;
}

.addmanage .add_list .table .tbody .tr .opt .btn:hover {
  color: #e32823;
}

.helpBox .orderList .menus {
  height: 7.1rem;
}

.helpBox .orderList .content h4 {
  margin-top: 0.2rem;
  font-size: 0.18rem;
}

.feedback .form {
  width: 7.32rem !important;
}

.feedback .form .item2 {
  display: flex;
  align-items: center;
  padding: 0.1rem 0;
}

.feedback .form .item2 .name {
  width: 1rem;
  font-size: 0.14rem;
}

.feedback .form .item2 .name span {
  color: #e32823;
}

.feedback .form .item2 .input {
  border: 1px solid #d3d8e0;
  width: 100%;
}

.feedback .form .item2 .input input,
.feedback .form .item2 .input select {
  width: 100%;
  height: 0.4rem;
  font-size: 0.14rem;
  border: none;
  padding: 0 0.15rem;
  outline: none;
}

.feedback .form .item2 .input textarea {
  width: 100%;
  padding: 0.1rem;
  box-sizing: border-box;
  height: 0.6rem;
  border: none;
  outline: none;
  resize: none;
  font-size: 0.14rem;
}

.feedback .form .last {
  align-items: flex-start;
  margin-top: 0 !important;
}

.feedback .upload {
  width: 100%;
  position: relative;
}

.feedback .upload .sc-btn {
  width: 1.1rem;
  height: 1.1rem;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #e9e9e9;
}

.feedback .upload ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.feedback .upload ul li {
  width: 1.35rem;
  height: 1.35rem;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.15rem;
  margin-bottom: 0.3rem;
  position: relative;
  border: 1px solid #e9e9e9;
  padding: 0.1rem;
}

.feedback .upload ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
  margin-bottom: 0;
}

.feedback .upload ul li:nth-of-type(4n) {
  margin-right: 0;
}

.feedback .upload .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.14rem;
}

.feedback .upload input {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.feedback .upload img {
  width: 0.44rem;
  height: 0.44rem;
  display: block;
}

.filterBox .w {
  background: #fff;
  padding: 0.2rem 0.35rem;
}

.filterBox .label {
  font-size: 0.13rem;
  color: #767676;
  flex-shrink: 0;
  margin-right: 0.2rem;
}

.filterBox .sortBox {
  width: 100%;
  display: flex;
  margin-top: 0.1rem;
}

.filterBox .sortBox .list {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
}

.filterBox .sortBox .list .item {
  margin-right: 0.5rem;
  margin-bottom: 0;
  font-size: 0.13rem;
  cursor: pointer;
}

.filterBox .sortBox .list .item.active {
  color: #e32823;
}

.filterBox .sortBox .list .item:hover {
  color: #e32823;
}

.filterBox .classity {
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.filterBox .classity .label {
  margin-top: 2px;
}

.filterBox .classity .list {
  display: inline;
}

.filterBox .classity .list a {
  text-decoration: none;
  display: inline-block;
}

.filterBox .classity .list a:nth-child(n + 8) {
  display: none;
}

.filterBox .classity .item {
  font-size: 0.13rem;
  color: #333;
  cursor: pointer;
  margin-right: 0.2rem;
  margin-bottom: 0.1rem;
}

.filterBox .classity .item:hover {
  color: #e32823;
}

.filterBox .classity .item.active {
  color: #e32823;
}

.filterBox .classity .more {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.13rem;
  color: #767676;
  flex-shrink: 0;
  margin-left: auto;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.filterBox .classity .more .icon {
  margin-left: 5px;
  transition: all 0.3s ease;
  transform: rotate(90deg);
}

.filterBox .classity.active .icon {
  transform: rotate(-90deg);
}

.filterBox .classity.active .list a:nth-child(n + 8) {
  display: inline-block;
}

.dialog {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.dialog .popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  background-color: #fff;
  border-radius: 6px;
  padding: 0.3rem 0.4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialog .popup .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dialog .popup .top .title {
  font-size: 0.24rem;
}

.dialog .popup .close i {
  font-size: 0.3rem;
  color: #a7a7a7;
  font-weight: normal;
  cursor: pointer;
}

.dialog .popup .tabs {
  margin-top: 0.4rem;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  border-bottom: 1px solid #d8d8d8;
}

.dialog .popup .tabs .tab {
  height: 0.4rem;
  text-align: center;
  color: #767676;
  font-size: 0.16rem;
  position: relative;
  cursor: pointer;
}

.dialog .popup .tabs .tab.active {
  color: #e32823;
}

.dialog .popup .tabs .tab.active::after {
  content: '';
  width: 100%;
  height: 0.02rem;
  background: #e32823;
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
}

.dialog .popup .confirm {
  width: 30%;
  height: 0.4rem;
  background: #e32823;
  border-radius: 4px;
  text-align: center;
  line-height: 0.4rem;
  font-size: 0.16rem;
  color: #fff;
  cursor: pointer;
  margin-top: 0.3rem;
}

#fp_dialog .form {
  margin-top: 0.4rem;
  width: 80%;
}

#fp_dialog .form .item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.1rem 0;
}

#fp_dialog .form .item .name {
  width: 1.2rem;
  color: #767676;
  font-size: 0.13rem;
}

#fp_dialog .form .item .name span {
  color: #e32823;
}

#fp_dialog .form .item .input {
  border-bottom: 1px solid #d8d8d8;
  width: 100%;
}

#fp_dialog .form .item .input input {
  width: 100%;
  height: 0.4rem;
  font-size: 0.14rem;
  border: none;
  padding: 0 0.15rem;
}

#address_dialog .form {
  margin-top: 0.3rem;
  width: 100%;
}

#address_dialog .form .item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.1rem 0;
}

#address_dialog .form .item .name {
  width: 1.2rem;
  font-size: 0.13rem;
}

#address_dialog .form .item .name span {
  color: #e32823;
}

#address_dialog .form .item .addressBox .loading-indicator {
  animation: none;
  color: #000;
}

#address_dialog .form .item .input {
  border: 1px solid #d3d8e0;
  width: 100%;
}

#address_dialog .form .item .input input {
  width: 100%;
  height: 0.4rem;
  font-size: 0.14rem;
  border: none;
  padding: 0 0.15rem;
}

#address_dialog .form .item .input textarea {
  width: 100%;
  padding: 0.1rem;
  box-sizing: border-box;
  height: 0.68rem;
  border: none;
  outline: none;
  resize: none;
  font-size: 0.14rem;
}

#address_dialog .form .last {
  align-items: flex-start;
}

#address_dialog .bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.18rem;
  margin-top: 0.34rem;
}

#address_dialog .bottom .cancel,
#address_dialog .bottom .save {
  width: 1.8rem;
  height: 0.48rem;
  text-align: center;
  line-height: 0.48rem;
  font-size: 0.16rem;
  cursor: pointer;
}

#address_dialog .bottom .cancel {
  color: #000;
  background: #d8d8d8;
  margin-right: 0.15rem;
}

#address_dialog .bottom .save {
  color: #fff;
  background: #e32823;
}

#pay_dialog .content {
  padding: 0 0.8rem;
  width: 100%;
}

#pay_dialog .head {
  margin: 0.2rem 0;
  display: flex;
  align-items: baseline;
  font-size: 0.14rem;
  color: #767676;
  width: 100%;
}

#pay_dialog .head h3 {
  margin-right: 0.2rem;
  font-size: 0.2rem;
  color: #000;
}

#pay_dialog .info {
  background: #f5f5f5;
  padding: 0.23rem 0.27rem;
  border-radius: 0.2rem;
}

#pay_dialog .info .item {
  font-size: 0.15rem;
  margin: 5px 0;
  display: flex;
  align-items: center;
}

#pay_dialog .info .item .label {
  width: 1.4rem;
}

#pay_dialog .tip {
  font-size: 0.13rem;
  margin: 0.2rem 0;
}

#pay_dialog .tip span {
  color: #e32823;
}

#pay_dialog .bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.18rem;
  margin-top: 0.34rem;
}

#pay_dialog .bottom .cancel,
#pay_dialog .bottom .save {
  width: 1.8rem;
  height: 0.48rem;
  text-align: center;
  line-height: 0.48rem;
  font-size: 0.16rem;
  cursor: pointer;
}

#pay_dialog .bottom .cancel {
  color: #000;
  background: #d8d8d8;
  margin-right: 0.15rem;
}

#pay_dialog .bottom .save {
  color: #fff;
  background: #e32823;
}

#after_dialog .form {
  margin-top: 0.3rem;
  width: 100%;
}

#after_dialog .form .item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.1rem 0;
}

#after_dialog .form .item .name {
  width: 1.2rem;
  font-size: 0.13rem;
}

#after_dialog .form .item .name span {
  color: #e32823;
}

#after_dialog .form .item .input {
  border: 1px solid #d3d8e0;
  width: 100%;
}

#after_dialog .form .item .input input,
#after_dialog .form .item .input select {
  width: 100%;
  height: 0.4rem;
  font-size: 0.14rem;
  border: none;
  padding: 0 0.15rem;
  outline: none;
}

#after_dialog .form .item .input textarea {
  width: 100%;
  padding: 0.1rem;
  box-sizing: border-box;
  height: 0.6rem;
  border: none;
  outline: none;
  resize: none;
  font-size: 0.14rem;
}

#after_dialog .form .last {
  align-items: flex-start;
}

#after_dialog .bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.18rem;
  margin-top: 0.34rem;
}

#after_dialog .bottom .cancel,
#after_dialog .bottom .save {
  width: 1.8rem;
  height: 0.48rem;
  text-align: center;
  line-height: 0.48rem;
  font-size: 0.16rem;
  cursor: pointer;
}

#after_dialog .bottom .cancel {
  color: #000;
  background: #d8d8d8;
  margin-right: 0.15rem;
}

#after_dialog .bottom .save {
  color: #fff;
  background: #e32823;
}

#after_dialog .upload {
  width: 100%;
  position: relative;
}

#after_dialog .upload .sc-btn {
  width: 1.1rem;
  height: 1.1rem;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #e9e9e9;
}

#after_dialog .upload ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#after_dialog .upload ul li {
  width: 1.35rem;
  height: 1.35rem;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.15rem;
  margin-bottom: 0.3rem;
  position: relative;
  border: 1px solid #e9e9e9;
  padding: 0.1rem;
}

#after_dialog .upload ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
  margin-bottom: 0;
}

#after_dialog .upload ul li:nth-of-type(4n) {
  margin-right: 0;
}

#after_dialog .upload .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.14rem;
}

#after_dialog .upload input {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

#after_dialog .upload img {
  width: 0.44rem;
  height: 0.44rem;
  display: block;
}

.phone {
  display: none;
}