
  
  #small-notices {
        color: #0000ff;
        font-family: "宋体", "SimSun", 'Times New Roman', Times, serif;
    }
    
  #takeout-titles span {
        color: #0066cc;  
        white-space: nowrap;
        font-weight: 400;
    }
    
  h2 {
        font-weight: 500;
        margin: 3rem auto 1rem 0rem;
    }
    
  #about-us, #about-us h2{
      font-size: 16px;
  }
    
  #about-us p {
      line-height:1.5;
      margin: 0rem auto auto auto;
  }

@media (min-width: 768px){ 
    
  body {
      display: flex;
      flex-direction: column;
  }
  
  main{
      width: 100%;
  }
  
  #brands {
      width: 100%;
      background-color: #f4f9fd;
      padding: 2% 10%; 
      margin: 1.5rem 0 1.2rem 0;
  }
  
  #brands img {
      width: 4.5rem;
      height: 4.5rem;
  }
  
  #brands ul {
      display: flex;
      padding: 0; 
      margin-bottom: 1rem;
      gap: 1.5rem;
  }
  
  #small-notices {
    font-size: 1.4rem;
    display: block;
    margin:1rem auto 2rem 10%;
  }
  
  #takeout{
      width: 16%;
      min-width: 180px;  /* 🌟 新增：确保在 iPad 上至少有 180px 宽 */
      height: auto;
      background-color: #eaf4fc;
      border-radius: 1rem;
      margin: 2rem auto 2rem 10%;
  }
  
  #takeout img{
      border-radius: 1rem;
      width:100%;
  }
  
  #takeout-titles{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 2rem;
  }
  
  #takeout-titles img{
    width: 2.8rem;
    height: auto;
    margin-right: 0.5rem;
    border-radius: 0rem;
  }
  
  #takeout-titles span{
    display:block;
    font-size: 2.5rem;
  }
  
  #about-us{
      width: 80%;
      margin: 1rem auto 1rem auto;
  }
  
}

/* 针对屏幕宽度小于 767px 的设备 */
@media (max-width: 767px) {
    
  body {
    display: flex;
    flex-direction: column;
  }
  
  main{
    width: 100%;
    padding: 0 0%;
    margin: 0 auto;
  }
  
  #brands {
    width: 100%;
    background-color: #f4f9fd;
    padding: 1.5rem 5%;
    margin-bottom: 0.5rem; 
  }

  #brands ul {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
  }
  
  #brands ul li img {
      width: 2.8rem; 
      height: 2.8rem;
  }
  
  #small-notices {
    font-size: 1rem;
    color:#0000ff;
    display: block;
    margin:1rem auto 2rem 2rem;
  }
  
  ##about-us{
      font-size: 1.2rem;
  }
  
  #takeout{
    width: 100%;
    min-width: 140px;
    max-width: 75vw;
    height: auto;
    background-color: #eaf4fc;
    margin-left: 5%;
    border-radius: 0.5rem;
  }

  #takeout img{
    width: 100%;
    border-radius: 0.5rem;
  }
  
  #takeout-titles{
    display:flex;
    align-items: center; 
    justify-content: center;
    padding: 0.2rem 0.2rem;
  }
  
  #takeout-titles img{
    width: 2rem;
    height: auto;
    margin-left: 0rem;
  }
  
  #takeout-titles span{
    font-size: 1.5rem;
    margin: 0 0rem 0 0.3rem;
  }

  #about-us {
      width: 90%;
      margin: 1.5rem 5%;
  }
  
}