    * {
      box-sizing: border-box;
    }

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

    }

    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+ */
    }
/* 弹窗样式 */


  .newpopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    background-color: #fff;
    border: 1px solid #757575;
    z-index: 9999;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
  }

  .newpopup img {
    width: 100%;
  }

  .newpopup button {
    display: inline-block;
    padding: 5px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    color: rgba(250, 250, 250, 1);
    cursor: pointer;
    margin-top: 10px;
    opacity: 1;
    border-radius: 20px;
    background: rgb(0, 99, 255);
    width: 60%;
  }

  .conasp {
    padding: 10px 0px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
  }

  .conasp img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

  .mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .78);
    z-index: 9998;
  }

  .pst1 {
    margin: 5px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 18px;
    color: rgba(140, 140, 140, 1);
    text-align: justify;
    vertical-align: top;
    text-align: center;
  }


  .cpzl {
    display: none;
    /* 初始状态下隐藏 cpzl 的内容 */
  }

  .tabspan {
    padding: 0px 5%;
  }

  /* 隐藏弹窗 */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  
    .banner {
      left: 0px;
      top: 0px;
      width: 100%;
      height: 200px;
      /* 调整盒子高度 */
      opacity: 1;
      overflow: hidden;
    }

    .banner2 {
      border-radius: 10px;
      margin-top: -200px;
    }

    .banner img {
      border-radius: 10px;
      position: relative;
      /* 将定位属性改为相对定位 */
      opacity: 0;
      max-width: 500px;
      height: 200px;
      transition: opacity 1s ease-in-out;
    }

    .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 {
  position: fixed;
  left: 50%;
  bottom: -1px; /* 为手机底部黑条预留空间 */
  transform: translateX(-50%); /* 水平居中 */
  width: 100%; /* 默认设置为手机端宽度 */
  /* max-width: 380px; /* 电脑端的最大宽度 */
  height: 80px;
  opacity: 1;
  border-radius: 5px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* 添加阴影效果 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* 增加左右两边的间距 */
  z-index: 1000; /* 确保元素在所有其他内容之上显示 */
}

/* 电脑端 */
@media (min-width: 768px) {
  .group {
    width: 500px; /* 电脑端宽度 */
  }
}

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

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

.group1, .group2, .group3, .group4, .group5 {
  width: 35px;
  height: 35px;
  opacity: 1;
}

.group1 {
  background: linear-gradient(130.39deg, rgba(156, 212, 255, 1) 0%, rgba(61, 159, 235, 1) 100%);
}

.group2 {
  background: linear-gradient(130.39deg, rgba(255, 149, 138, 1) 0%, rgba(250, 80, 60, 1) 100%);
}

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

.group4 {
  background: linear-gradient(136.45deg, rgba(255, 176, 120, 1) 0%, rgba(246, 109, 9, 1) 100%);
}

.group5 {
  background: linear-gradient(130.39deg, rgba(156, 212, 255, 1) 0%, rgba(61, 159, 235, 1) 100%);
}

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

.groups img {
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  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;
    }

    /* 三角 */
    .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 {
        padding: 10px;
        width: 100%;
        height: 120px;
        margin-bottom: 10px;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0px 0px 10.53px rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        box-sizing: border-box;
    }
    .listitem .itemtop {
        overflow: hidden;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }
    .itemtop .mainimg {
        overflow: hidden;
        border-radius: 6px;
        width: 100px;
        height: 100px;
        box-sizing: border-box;
    }
    .mainimg img {
        width: 100px;
        height: 100px;
        opacity: 1;
        box-sizing: border-box;
    }


    .itemtop .itemtext {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding: 3px 0;
        width: calc(100% - 105px);
        height: 100%;
    }

    .itemtext .title {
        overflow: hidden;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        height: 28px;
    }
    .title .itembtn {
        overflow: hidden;
        display: flex;
        flex-direction: row;
        width: 100px;
        height: 100%;
    }
    strong {
        overflow: hidden;
        width: calc(100% - 105px);
        height: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    strong .corner {
        overflow: hidden;
        width: 16px;
        height: 16px;
    }
    .itembtn .a-bnt:last-child {
        margin-right: 0;
    }
    .a-bnt {
        overflow: hidden;
        cursor: pointer;
        padding: 3px 10px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        height: 22px;
        text-align: center;
        color: #fff;
        background: linear-gradient(210.18deg, rgba(52, 98, 210, 1) 0%, rgba(87, 157, 255, 1) 100%);
        margin-right: 8px;
        border-radius: 11px;
    }
    .itemtext .des {
        overflow: hidden;
        width: 100%;
        height: 40px;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 20px;
        color: rgba(84, 84, 84, 0.8);
        text-align: justify;
        vertical-align: top;
    }
    .itembot {
        overflow: hidden;
        padding: 2px 0;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        width: 100%;
        height: 28px;
        box-sizing: border-box;
    }
    .itembot::-webkit-scrollbar {
        display: none;
    }
    .itembot span {
        padding: 2px 5px;
        height: 20px;
        font-size: 12px;
        letter-spacing: 0;
        text-align: left;
        filter: brightness(1.05);
        margin-right: 10px;
        border-radius: 5px;
        color: #333333;
        vertical-align: center;
        background-color: #e7e7eb; /* 浅灰色背景 */
        display: inline-block; /* 显示为行内块 */
    }

    .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;
      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;
    }
      .OrderSearchEnterA {
    width: 75px;
    height: 27px;
    background: rgba(0, 0, 0, .5);
    font-size: 12.5px;
    color: #fff;
    border-radius: 16px 0 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 9999;
  }

  .OrderSearchEnterB {
    width: 75px;
    height: 27px;
    background: rgba(0, 0, 0, .5);
    font-size: 12.5px;
    color: #fff;
    border-radius: 16px 0 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 88px;
    right: 0;
    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;
    }