/*产品展示里的轮播图css*/
  .container {
    width: 600px;
    margin: 30px auto;
    text-align: center;
  }
  /* 主图尺寸 600*460 */
  .main-img {
    width: 600px;
    height: 460px;
    object-fit: cover;
    border: 1px solid #ddd;
    display: block;
  }
  .thumb-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
  }
  .thumb-item {
    width: 100px;
    height: 77px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.8;
    transition: all 0.2s;
  }
  .thumb-item:hover,
  .thumb-item.active {
    opacity: 1;
    border-color: #333;
  }