* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
header{
    border-radius: 6.18px;
    margin: 15px 15px 0px 15px;
    border: 1px solid black;
    border: 1px solid #ddd;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h2{
    margin: 0 0 10px;
    font-size: 12px;
}
.product p{
    margin: 0;
    display: inline-block;
}
.product a{
    text-decoration:none;
    color: #000000;
}
 .text {
      flex: 1; /* 让文字部分自动占满剩余空间 */
    }
.sales1{
    color: #ff4500;
    font-size: 18px;
}
.sales2{
    color: #2B2A2A;
    font-size: 10px;
}
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #f8f8ff;
}

.box {
      display: flex;
      align-items: center; /* 垂直居中 */
      gap: 20px; /* 图片和文字的间距 */
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 8px;
    }
.product img {
    width: 120px;
      height: 120px;
      object-fit: cover;
      
    border-radius: 6.18% 6.18% 6.18% 6.18%;
}

@media screen and (max-width: 1024px){
    .none{display:none;
     }
}

@media (max-width: 768px) {
    .product {
        width: 90%;
        
    }
    .product-details {
        flex-direction: column;
        align-items: center;
    }
}
