    :root {
            --primary-color: #4361ee;
            --secondary-color: #3f37c9;
            --accent-color: #f72585;
            --light-gray: #f8f9fa;
            --dark-gray: #495057;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
    
    .listitem {
            width: 100%;
            max-width: 380px;
            padding: 10px;
            border-radius: 12px;
            background-color: var(--white);
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            margin-bottom: 16px;
        }
        
        .listitem:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }
        
        .shopname {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark-gray);
            line-height: 1.4;
            word-break: break-word;
            text-indent: 1.5em;
        }
        
        .itemtop {
            display: flex;
            margin-bottom: 16px;
            gap: 12px;
        }
        
        .mainimg {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .mainimg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .itemtext {
            flex: 1;
            font-size: 13px;
            color: var(--dark-gray);
            line-height: 1.5;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0; /* 防止flex内容溢出 */
        }
        
        .itemtext-line {
            display: flex;
            justify-content: space-around;
            text-align: center;
            margin: 4px 0;
        }
        
        .itemtext-item {
            flex: 1;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .top-line {
            font-weight: bold;
            font-size: 14px;
            margin-left: -15px;
        }
        
        .bottom-line {
            font-weight: bold;
            color: #666;
            font-size: 14px;
            margin-left: -15px;
        }
        
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
            max-height: 28px;
            overflow: hidden;
            position: relative;
        }
        
        .tag-container.expanded {
            max-height: none;
        }
        
        .tag {
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            color: white;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .tag-more {
            position: absolute;
            right: 0;
            bottom: 0;
            background-color: var(--light-gray);
            color: var(--dark-gray);
            cursor: pointer;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 11px;
        }
        
        .tag-tooltip {
            position: absolute;
            bottom: 100%;
            left: 0;
            background-color: #333;
            color: white;
            padding: 10px;
            border-radius: 6px;
            font-size: 12px;
            line-height: 1.4;
            width: 220px;
            max-width: 220px;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: none;
            word-wrap: break-word;
            white-space: normal;
            text-align: left;
        }
        
        .tag-container:hover .tag-tooltip,
        .tag-container.active .tag-tooltip {
            display: block;
        }
        
        .itembtn {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        
        .fenxiang {
            position: relative;
            display: inline-block;
        }
        
        .fenxiang:hover .activation-tooltip,
        .fenxiang.active .activation-tooltip {
            display: block;
        }
        
        .banli {
            display: flex;
            gap: 10px;
        }
        
        .share-btn, .buy-btn {
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            -webkit-tap-highlight-color: transparent;
        }
        
        .share-btn {
            background-color: var(--light-gray);
            color: var(--dark-gray);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .share-btn:hover {
            background-color: #e9ecef;
        }
        
        .buy-btn {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .buy-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        /* 工具提示容器 - 相对定位 */
.tooltip-container {
    position: relative;
    display: inline-block;
}

/* 基础按钮样式 */
.transparent-button {
    font-size: 12px;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
    display: inline-block;
}

/* 工具提示文本 - 默认隐藏 */
.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 100px;
    transform: translateX(-50%);
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 14px;
    word-break: break-word;
    white-space: normal;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    pointer-events: none; /* 防止提示框阻挡点击 */
}

/* 工具提示箭头 */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 15%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* 鼠标悬停时显示工具提示 */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* 点击时保持显示（添加active类） */
.tooltip-container.active .tooltip-text {
    visibility: visible;
    opacity: 1;
}
        
        /* 颜色类 */
        .color-1 { background-color: #4361ee; }
        .color-2 { background-color: #3f37c9; }
        .color-3 { background-color: #f72585; }
        .color-4 { background-color: #4cc9f0; }
        .color-5 { background-color: #4895ef; }
        .color-6 { background-color: #7209b7; }

        /* 移动端触摸优化 */
        @media (hover: none) {
            .fenxiang.active .activation-tooltip,
            .tag-container.active .tag-tooltip {
                display: block;
            }
            
            .fenxiang:hover .activation-tooltip,
            .tag-container:hover .tag-tooltip {
                display: none;
            }
        }
    
    * {
      box-sizing: border-box;
    }

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

    }

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

    html {
      background: #eee;
      
    }

    .banner {
      left: 0px;
      top: 0px;
      width: 100%;
      height: 160px;
      /* 调整盒子高度 */
      opacity: 1;
      overflow: hidden;
    }

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

    .banner img {
      border-radius: 10px;
      position: relative;
      /* 将定位属性改为相对定位 */
      opacity: 0;
      max-width: 400px;
      height: 160px;
      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; */
      box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
      background: linear-gradient(to right, #f0f3ff, #ffffff);
    }

    .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 {
      height: 90px;
      opacity: 1;
      border-radius: 10px 10px 0px 0px;
      /*background: rgba(255, 255, 255, 1);*/
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 10px;
      margin: 0 10px;
      position: sticky;
      bottom: 0;
      box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
      background: linear-gradient(to right, #f0f3ff, #ffffff);
    }
    
    .groupx {
      height: 40px;
      opacity: 1;
      border-radius: 10px;
      background: rgba(255, 255, 255, 1);
      display: flex;
      position: sticky;
      bottom: 0;
      color: rgba(52, 98, 210, 1);
      font-size: 17px;
      font-weight: 700;
      box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
      background: linear-gradient(to right, #f0f3ff, #ffffff);
    }
    
    .groupx1 {
    width: 49%;
    display: flex;
    justify-content: center;
    border-radius: 5px 0px 0px 5px;
    align-items: center;
    }
    
    .groupx2 {
    width: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .groupx3 {
    width: 49%;
    display: flex;
    justify-content: center;
    border-radius: 5px 0px 0px 5px;
    align-items: center;
    }
    
    .sr {  
    flex: 0 0 auto; /* 分隔符不占据额外空间，仅显示自身宽度 */  
    color: #F0F0F0; /* 分隔符颜色与按钮文字相同 */  
    margin: 0 5px;
    }
    
    .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 10px 10px;
    }

    .groupt {
      position: absolute;
      top: 100%;
      left: 0;
      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 {
      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%);
    }

    .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%);
    }

    @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }
  
    .shophead {
      margin-top: -5px;
      width: 100%;
      height: 110px;
      opacity: 1;
      border-radius: 10px;
      /*background: rgba(255, 255, 255, 1);*/
      box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
      background: linear-gradient(to right, #f0f3ff, #ffffff);
    }

    .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;
      cursor: pointer;
    }

    .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;
    box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
      background: linear-gradient(to right, #f0f3ff, #ffffff);
    }

    .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 p:first-of-type {
      margin-top: 10px;
      font-weight: 700;
      height: 70px;
      letter-spacing: 0px;
      color: rgba(54, 54, 54, 1);
      text-align: left;
      vertical-align: top;
      overflow-y:auto;
      background-color: #f9f9f9;
      box-shadow: 0px 0px 10px 1px rgb(225 225 225);
      border-radius: 10px;
      padding: 1px;
    }

    .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;
    }

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

     .itembot {
    display: flex;
    height: 30px;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: auto;
    cursor: grab;
    align-items: flex-end;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    }

    .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;
    }

    .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+ */
    }


    .groupss 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;
      opacity: 1;
      border-radius: 10px;
      background: var(--primary-color)
      /*background: linear-gradient(210.18deg, rgba(52, 98, 210, 1) 0%, rgba(87, 157, 255, 1) 100%);*/
    }
    
    .hr {
    border-bottom: 1px solid #c3c3c385;
    border-radius: 20px;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
}

    .groupss 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%);
      box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
      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;
    }
