.support {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 48px 0px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
  }

  /* ---------- 左侧文字 ---------- */
  .support__text { flex: 1 1 44%; min-width: 300px; }

  .support__title {
    font-size: clamp(30px, 1.4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 36px;
  }

  .feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
  }

  .feature__check {
    flex: none;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    background: #eafaf4;
    color: #17a589;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature__title { font-size: 19px; font-weight: 700; margin-bottom: 3px; }
  .feature__desc  { font-size: 15px; color: #5b6478; }

  .rating {
    margin-top: 44px;
    font-size: 14px;
    color: #3d465c;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .rating strong { color: #1c2340; font-weight: 700; }
  .stars { color: #14b8a6; font-size: 15px; letter-spacing: 1px; }
  .stars .half {
    background: linear-gradient(90deg, #14b8a6 50%, #cfd6ea 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* ---------- 右侧四张独立图片 ---------- */
  .support__gallery {
    flex: 1 1 35%;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
      "a a b"
      "c d d";
    gap: 10px;
    aspect-ratio: 16 / 10;
  }

  .support__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
   /* display: block;*/
  }
  .ph-a { grid-area: a; }
  .ph-b { grid-area: b; }
  .ph-c { grid-area: c; }
  .ph-d { grid-area: d; }


.button{ 
  width:250px; 
  margin:40px auto;
}
.search-hotel-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #2196e8;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(33, 150, 232, 0.35);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
}
.search-hotel-btn svg{
    width:20px;
    height:20px;
    fill:#fff;
    transition: transform 0.25s ease;
}
.search-hotel-btn:hover{
    background-color:#1b84cf;
    box-shadow: 0 6px 18px rgba(33, 150, 232, 0.45);
    transform: translateY(-2px);
}
.search-hotel-btn:hover svg{
    transform: translateX(4px);
}
.search-hotel-btn:active{
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(33, 150, 232, 0.3);
}



  /* ---------- 自适应 ---------- */
  @media (max-width: 900px) {
    .support { flex-direction: column; gap: 44px; padding: 48px 24px; }
    .support__text, .support__gallery { flex: none; width: 100%; }
	.support__gallery { display:none;}
	.button {
    width: 250px;
    margin: 0px auto 50px auto;
	padding: 10px 14px;	
}
.search-hotel-btn{ font-size:19px;}
  }

  @media (max-width: 768px) {
    .support__gallery { grid-template-columns: 1fr 1fr; grid-template-areas: "a a" "b c" "d d"; grid-template-rows: repeat(3, 1fr); aspect-ratio: auto; }
    .support__gallery img { aspect-ratio: 4 / 3; height: auto; }
	
	.support__title {
    font-size: clamp(25px, 1.4vw, 44px);
    font-weight: 800;   
    margin-bottom: 35px;
}
  }
  
 
 
