/* 公共样式 */
*{
    margin: 0 auto;
    padding: 0;
    scrollbar-width: thin;
}
.main_con{
    background-color: RGB(245,245,245);
    scrollbar-width: thin;
}
::-webkit-scrollbar-track-piece{
    background-color:#ffffff;
    /*-webkit-border-radius:4px;*/
}
.main_con, .main_con::after, .main_con::before {
    box-sizing: border-box;
}

 /* 电脑端样式 */
 @media (min-width: 768px) {
    /* 在这里编写针对电脑端的样式 */
     
      .content{
         margin-top: 10px;
         width: 1280px;
      }
     
  }


  /* 移动端样式 */
  @media (max-width: 767px) {
    /* 在这里编写针对移动端的样式 */
      .content{
          margin-top: 60px;
          width: 100%;
      }
      
  }

  .mall_main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    /* background-color: white; */
    color: black;
    position: relative;
    bottom: 0;
    overflow-y: scroll;
    justify-content: space-around;
    margin-bottom: 30px;
}