@charset "utf-8";
/*品牌*/
.brand_con {
    width: 100%;
    padding: 50px 0 70px 0;
  }
  .brand_con .sub_ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
  .brand_con .sub_ul li {
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    padding-bottom: 14px;
    margin: 0 55px;
    position: relative;
  }
  .brand_con .sub_ul li.on {
    color: #27883C;
  }
  .brand_con .sub_ul li.on::after {
    background: #27883C;
  }
  .brand_con .sub_ul li:hover {
    color: #27883C;
  }
  .brand_con .sub_ul li::after {
    content: '';
    width: 60%;
    height: 3px;
    background: transparent;
    display: inline-block;
    position: absolute;
    left: 20%;
    bottom: 0;
    z-index: 1;
  }
  .brand_con .brand_list {
    width: 100%;
  }
  .brand_con .brand_list .brand_box {
    width: 100%;
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .brand_con .brand_list .brand_box .brand_item {
    width: calc((100% - 5%) / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    margin: 0 2.5% 2vw 0;
  }
  .brand_con .brand_list .brand_box .brand_item:nth-child(3n) {
    margin-right: 0;
  }
  .brand_con .brand_list .brand_box .brand_item .brand_img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 340px;
    background: #dcdcdc;
  }
  .brand_con .brand_list .brand_box .brand_item .brand_img img {
    display: inline-block;
    width: auto;
    max-width: 80%;
    height: auto;
    max-height: 80%;
    webkit-transition: all 0.4s ease-in-out 0.1s;
    transition: all 0.4s ease-in-out 0.1s;
  }
  .brand_con .brand_list .brand_box .brand_item .brand_more {
    width: 100%;
    height: 76px;
    background: #fff;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 20px;
    font-size: 20px;
    color: #2d2d2d;
    line-height: 76px;
  }
  .brand_con .brand_list .brand_box .brand_item:hover .brand_img img {
    webkit-transition: all 0.4s ease-in-out 0.1s;
    transition: all 0.4s ease-in-out 0.1s;
    transform: scale(1.04);
  }
  .brand_con .brand_list .brand_box .brand_item:hover .brand_more {
    color: #27883C;
  }

  @media screen and (max-width: 767px){
    /*品牌*/
  .brand_con {
    padding: 1.5rem 0 2.2rem 0;
  }
  .brand_con .sub_ul {
    margin-bottom: 1.5rem;
  }
  .brand_con .sub_ul li {
    font-size: 0.65rem;
    font-weight: normal;
    padding-bottom: 0.55rem;
    margin: 0 1.2rem;
  }
  .brand_con .sub_ul li::after {
    width: 100%;
    height: 0.1rem;
    left: 0%;
  }
  .brand_con .brand_list {
    flex-direction: column;
  }
  .brand_con .brand_list .brand_box .brand_item {
    width: calc(100%);
    margin-bottom: 0.75rem;
    margin-right: 0;
  }
  .brand_con .brand_list .brand_box .brand_item .brand_img {
    height: 9.9rem;
  }
  .brand_con .brand_list .brand_box .brand_item .brand_more {
    height: 2.3rem;
    padding: 0 0.6rem;
    font-size: 0.7rem;
    line-height: 2.3rem;
  }
  }