﻿@font-face {
    font-family: 'AbrilFatface';
    src: url('../font/AbrilFatface-Regular.ttf') format('truetype');
  }

  #warp {
    -webkit-overflow-scrolling: auto;
    overflow-x: hidden;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
  }

  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .yuan {
    z-index: 200;
    width: 40px;
    height: 40px;
    border-top-right-radius: 5px;
    border-radius: 50%;
    background-color: var(--primary-color-te6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1%;
    left: 5%;
    opacity: 0.9;
    font-size: 12px;
    /* font-weight: bold; */

  }

  .Classification_details {
    max-width: 1500px;
    margin: 20px auto 20px;
  }

  .bigbox_content_right {
    margin-top: 10px;
    width: 100%;
  }

   .small_content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
  }

  .small_content ul {
    width: calc(25% - 10px);
    padding: 15px;
    list-style: none;
    margin-top: 10px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    text-align: center;
    box-shadow: 0px 0px 5px 0px #eee;
  }

  .el-divider {
    background-color: #ddd;
  }

  .el-divider--horizontal {
    height: 2px;
  }

  .overhid {
    width: 95%;
    color: var(--primary-font-color);
    font-size: inherit;
    text-decoration: none;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding: 0px 5px;
    text-align: center;
  }

  .hover_Show {
    z-index: 889;
    width: 100%;
    padding: 5px 0px;
    background: var(--primary-color-te6);
    color: #fff;
    text-align: center;
    display: none;
    position: absolute;
    bottom: 0px;
    /* transform: translateY(103%) translateZ(0); */
    box-shadow: var(--primary-color-te6);
  }

  .hover_Show:hover {
    opacity: 1;
    color: #fff;
    background-color: var(--primary-color-te6);
    font-weight: bold;
  }

  .boxHover {
    position: relative;
    opacity: 1;
    transition: opacity .5s;
  }

 

  .wishlist {
    z-index: 200;
    width: 40px;
    height: 40px;
    border-top-right-radius: 5px;
    border-radius: 50%;
    border: 2px solid #e0dcdb;
    color: #e0dcdb;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -7%;
    right: -5%;
    /* opacity: 0; */
    font-size: 18px;
    font-weight: bold;
  }

  .wishlist:hover {
    background-color: rgb(186, 6, 6);
    border: none;
  }

  .wishlistfoucs {
    background-color: rgb(186, 6, 6);
    border: none;
  }


 

  .large_show_box_item {
    display: block;
  }

  .large_hide_box_item {
    display: none;
    opacity: 0;
  }

  .image_list {
    width: 70%;
    display: flex;
    margin: 10px auto;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

  }

  .image_list .image_list_item {
    width: 32%;
    height: 200px;
    overflow: hidden;
    text-align: center;
    /* border: 1px solid #ccc; */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

  }

  .image_list .image_list_item img {
    max-width: 100%;
    max-height: 100%;
    /* object-fit: cover;
          object-position: center; */
  }

  .image_list .image_list_item img:hover {
    transition: all .6s ease-in-out;
    transform: scale(1.1);
  }

  .image_list .image_list_item img:not(:hover) {
    /* 鼠标离开时执行的CSS代码 */
    transition: all .6s ease-in-out;
    transform: scale(1);
  }

  .link_title {
    color: #fff;
    font-size: 16px;
    position: absolute;
    font-weight: bold;
  }

  .link_title:hover {
    transition: all .6s ease-in-out;
    transform: scale(1.1);
    border-bottom: 1px solid #fff;
  }

  @keyframes mymove {
    from {
      height: 0px;
    }

    to {
      height: 20px;
    }
  }
  @media screen and (max-width: 3420px) and (min-width: 950px) {
    .boxHover:hover .hover_Show {
        display: block;
        opacity: .8;
        /* transition: opacity 1s; */
        animation: mymove 0.1s;
        /* transform: translateY(0%) translateZ(0) */
    }

    .boxHover:hover .large_show_box_item {
        display: none;
        z-index: 99;
    }

    .large_show_box_item {
        display: block;
    }

}
  @media screen and (max-width: 850px) {
    .hover_Show {
      display: block;
      width: auto;
      padding: 6px 10px;
      left: 0;
      opacity: .8;
  }

    .text-inner {
      margin-top: 180px;
    }

    .small_content ul {

      width: 47%;
    }

    .Classification_details {
      width: 98%;
    }


    .image_list {
      width: 95%;
    }

    .image_list .image_list_item {
      margin: 10px;
      width: 100%;
    }
  }

  @media screen and (max-width: 1320px) and (min-width: 850px) {
    .small_content ul {
      width: 32%;
    }

  }