* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

button {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus,
*:focus {
  outline: none;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: #C9D6FF;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #E2E2E2, #C9D6FF);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #E2E2E2, #C9D6FF);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* 店铺评分 */
.shop-rating {
  display: flex;
  flex-direction: column;
  padding: 12px 15px;
  background: #ffffff;
  border-radius: 10px;
  margin: 10px 0;
  font-size: 14px;
}

/* 店铺名称 */
.shop-title-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 5px;
}

.shop-title {
  font-size: 17px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.title-arrow {
  font-size: 20px;
  color: #999;
  font-weight: normal;
  margin-left: 6px;
}

/* 评分行 */
.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating-left {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #ffe8ee;
  border-radius: 5px;
}

.rating-label {
  color: #ff3d63;
  font-size: 12px;
  font-weight: 500;
  background: #ffffff;
  padding: 2px 6px 2px 6px;
  margin: 1px;
  /*line-height: 1.2;*/
  border-radius: 5px 0px 0px 5px;
  display: inline-flex;
  align-items: center;
}

.rating-score {
  color: #ff4d4f;
  font-size: 14px;
  font-weight: bold;
  background: #ffe8ee;
    padding: 1px 5px 1px 1px;
    border-radius: 0px 5px 5px 0px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  /*margin-top: 2px;*/
}

.score-number {
  display: inline-block;
  transform: skew(-8deg);
  margin-right: 3px;
  font-style: italic;
}

/*.rating-badge {*/
/*  background: #FFE8EE;*/
/*  color: #FF676A;*/
/*  padding: 2px 8px;*/
/*  border-radius: 3px;*/
/*  font-size: 12px;*/
/*  font-weight: 500;*/
/*}*/

.rating-right {
  display: flex;
  align-items: center;
  margin-top: -30px;
}

.rating-verify {
  color: #27D193;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.verify-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.banner {
  left: 0px;
  top: 0px;
  width: 100%;
  position: relative;
  /* 调整盒子高度 */
  opacity: 1;
  overflow: hidden;
  border-radius: 10px;
  height: 188px;
}

.banner2 {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.banner img {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  /* 绝对定位让两张图片完全叠加 */
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: opacity 1s ease-in-out;
}

.banner img:first-child {
  position: relative;
  /* 第一张图片用相对定位撑起容器高度 */
}

.banner img.active {
  opacity: 1;
  /* 显示当前图片 */
}

.notice {
  width: 100%;
  height: 40px;
  padding-left: 5px;
  opacity: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
  margin: 10px 0px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.notice-icon {
  left: 9.47px;
  top: 7.94px;
  width: 24.21px;
  height: 24.21px;
  opacity: 1;

}

.notice-span {
  padding-left: 20px;
  margin: 0 5px;
  white-space: nowrap;
  overflow: hidden;
}

.notice span {
  opacity: 1;
  /** 文本1 */
  font-size: 14.74px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 21.34px;
  color: rgba(56, 56, 56, 1);
  text-align: left;
  vertical-align: top;
  display: inline-block;
  animation: scroll 30s linear infinite;

}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.group {
  left: 15px;
  top: 317.1px;
  width: 100%;
  height: 80px;
  opacity: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.groups {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 100px;
  /* 根据需要调整宽度 */
  height: 100px;
  /* 根据需要调整高度 */
  /*background-color: #ccc;*/
  /* 根据需要调整背景颜色 */
  position: relative;
  /* margin-bottom: 10px; */
  margin: -5px 10px 20px 10px;
}

.groupt {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 26px;
  color: rgba(54, 54, 54, 1);
  text-align: center;
  white-space: nowrap;
}


.group1 {
  left: 0px;
  top: 0px;
  width: 44.44px;
  height: 44.44px;
  opacity: 1;
  /*background: linear-gradient(130.39deg, rgba(156, 212, 255, 1) 0%, rgba(61, 159, 235, 1) 100%);*/
}


.group2 {
  left: 0px;
  top: 0px;
  width: 44.44px;
  height: 44.44px;
  opacity: 1;
  /*background: linear-gradient(130.39deg, rgba(255, 149, 138, 1) 0%, rgba(250, 80, 60, 1) 100%);*/
}

.group3 {
  left: 0px;
  top: 0px;
  width: 44.44px;
  height: 44.44px;
  opacity: 1;
  background: linear-gradient(132.36deg, rgba(74, 247, 190, 1) 0%, rgba(21, 199, 139, 1) 100%);
}

.group4 {
  left: 0px;
  top: 0px;
  width: 44.44px;
  height: 44.44px;
  opacity: 1;
  /*background: linear-gradient(136.45deg, rgba(255, 176, 120, 1) 0%, rgba(246, 109, 9, 1) 100%);*/
}

.group5 {
  left: 0px;
  top: 0px;
  width: 44.44px;
  height: 44.44px;
  opacity: 1;
  /*background: linear-gradient(130.39deg, rgba(156, 212, 255, 1) 0%, rgba(61, 159, 235, 1) 100%);*/
}

.group5 span {
  top: 58% !important;
}

.group4 span {
  top: 55% !important;
}

.group1 span {
  top: 53% !important;
}

.groups span {
  /** 文本1 */
  font-size: 26.67px;
  font-weight: 400;
  letter-spacing: -2.22px;
  line-height: 32px;
  color: rgb(255, 255, 255);
  text-align: left;
  vertical-align: top;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.groups img {
  width: 30px;
  position: absolute;
  transform: translate(-50%, -50%);
}

.shophead {
  margin-top: -5px;
  width: 100%;
  height: 110px;
  opacity: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
}

.heada {
  width: 100%;
  height: 42px;
  opacity: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: linear-gradient(210.18deg, rgb(52, 98, 210) 0%, rgb(87, 157, 255) 100%);
}

.heada p {
  /** 文本1 */
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 40px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  vertical-align: top;
  text-align: center;
}

.navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.navBar ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.navBar li {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 24.62px;
  color: rgba(52, 98, 210, 1);
  text-align: left;
  vertical-align: top;
  text-align: center;
  flex: 1;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* 三角 */
.navBar li.action::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid rgb(52, 98, 210);
}

/* 
.navBar li.action::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 10px;
  transform: translateX(50%);
  border-radius: 0 0 80% 80%;
  background-color: blue;
} */

/* 搜索 */
.search-box {
  text-align: center;
  margin: 10px 0px;
}

/* 搜索框 */
.groupss {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  max-width: 100%;
}

.input {
  width: 100%;
  height: 40px;
  line-height: 28px;
  padding: 0 1rem;
  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: #ffffff;
  color: #0d0c22;
  transition: .3s ease;
}

.input::placeholder {
  color: #9e9ea7;
}

.input:focus,
input:hover {
  outline: none;
  border-color: rgba(69, 159, 249, 0.4);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(5, 32, 128, 0.1);
}

.search_icon {
  position: absolute;
  left: 1rem;
  fill: #9e9ea7;
  width: 1rem;
  height: 1rem;
}

.content {
  display: none;
  margin-top: 10px;
}

/* 产品 */
.listitem {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  opacity: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 10.53px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.mainimg img {
  width: 100px;
  height: 100px;
  opacity: 1;
  margin: 10px;
  border-radius: 5px;

}

.itemtext {
  margin-right: 10px;
  margin-left: -5px;
}

.listitem p:first-of-type {
  margin-top: 10px;
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0px;
  color: rgba(54, 54, 54, 1);
  text-align: left;
  vertical-align: top;
}

.listitem p:nth-of-type(2) {
  margin-top: 5px;
  margin-bottom: 45px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20px;
  letter-spacing: 0px;
  color: rgba(84, 84, 84, 1);
  text-align: justify;
}

.itemtop {
  display: flex;
  height: 120px;
  position: relative;
}

.corner-image {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 25px;
  /* 调整图片的宽度 */
  height: 25px;
  /* 调整图片的高度 */
}

.itemtop>div:first-child {
  flex: 1;
  max-height: 100%;
}

.itemtop>div:last-child {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 100%;
}

.itembot {
  display: flex;
  /* justify-content: space-between; */
  height: 30px;
  margin: 0 10px;
  white-space: nowrap;
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  overflow-x: hidden;
  overflow-x: auto;
}

.itembot::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}

.itembot span {
  border-radius: 5px;
  height: 25px;
  display: inline-block;
  padding: 5px;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 15px;
  color: #333333;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  filter: brightness(1.05);
}

.spanc1 {
  background: #C9D6FF;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #E2E2E2, #C9D6FF);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #E2E2E2, #C9D6FF);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.spanc2 {
  background: #FFEEEE;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #DDEFBB, #FFEEEE);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #DDEFBB, #FFEEEE);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.spanc3 {
  background: #FFEFBA;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #FFFFFF, #FFEFBA);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #FFFFFF, #FFEFBA);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.spanc4 {
  background: #D3CCE3;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #E9E4F0, #D3CCE3);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #E9E4F0, #D3CCE3);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.spanc5 {
  background: #ccbbc6;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #fffcdc, #d9a7c7);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #fffcdc, #ebd6e3);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.spanc6 {
  background: #ECE9E6;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #FFFFFF, #ECE9E6);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.spanc7 {
  background: #E0EAFC;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #CFDEF3, #E0EAFC);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #CFDEF3, #E0EAFC);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.spanc8 {
  background: #D3CCE3;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #E9E4F0, #D3CCE3);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #E9E4F0, #D3CCE3);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.itembtn {
  position: absolute;
  right: 10px;
  bottom: 10px;
}


button {
  display: inline-block;
  padding: 2px 5px;
  width: 50px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 22px;
  color: rgba(250, 250, 250, 1);
  cursor: pointer;
  margin-right: 5px;
  opacity: 1;
  border-radius: 10px;
  background: linear-gradient(210.18deg, rgba(52, 98, 210, 1) 0%, rgba(87, 157, 255, 1) 100%);
}

button:last-child {
  margin-right: 0;
}

.noimg {
  width: 100%;
}

/* 海报 */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px;
  padding-bottom: 35px;
  height: 382px;
  width: 240;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  text-align: center;
}

.popup #poster {
  width: 100%;
  height: 100%;
}

#imageContainer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

#imageContainer img {
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup p {
  line-height: 0px;
}

.seabtn {
  margin-left: 5px;
  height: 40px;
  background: linear-gradient(210.18deg, rgb(224, 233, 255) 0%, rgb(255, 255, 255) 100%);
  opacity: 1;
  border-radius: 8px;
  color: #333333;
  /* 设置透明度为50% */
}

form {
  all: inherit;
  width: 100%;
}

/* 弹窗 */
.overlayxy {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#popupContenta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 380px;
  width: 100%;
  background-color: #fff;
  padding: 5px;
  text-align: center;
  border-radius: 10px;
}

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

#phoneContainera div {
  max-height: 420px;
  overflow: auto;
}

.closebtn {
  max-width: 100px;
  min-width: 100px;
  height: 36px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  border: none;
  overflow: hidden;
  background: #4262f4;
  margin: 10px;30