/* 全局基础 */
body {
  margin: 0;
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Section: Location ===== */
.sec-location{
  /* 你把这里换成你实际图片路径 */
  --bg: url("/assets/img/pages/connectus/location.bg.png");

  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 72px 0;

  /* 背景：横跨整个 section + 平铺 */
  background-image: var(--bg);
  background-repeat: repeat;           /* ✅ 平铺 */
  background-position: center center;  /* 居中对齐 */
  background-size: auto;               /* ✅ 保持原图大小平铺 */

  overflow: hidden;
}

/* 可选：如果你觉得平铺太“碎”，把下面这行加到 .sec-location 里就变成铺满（不平铺） */
/* background-repeat: no-repeat; background-size: cover; */

.sec-location__inner{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

/* ===== 更好看的玻璃罩子卡片（替换原来的卡片样式） ===== */
.sec-location__card{
  width: min(420px, 100%);
  padding: 26px 28px 24px;
  border-radius: 22px;
  position: relative;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,.28),
    rgba(255,255,255,.12)
  );

  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);

  border: 1px solid rgba(255,255,255,.35);

  box-shadow:
    0 24px 60px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.35);

  margin-left: auto;
  margin-right: 24px; /* 自己调：16 / 24 / 32 都可以 */
  margin-top:  124px;
}
  /* 默认靠左，你也可以像之前一样改成居中/靠右 */



/* 顶部高光“玻璃反光” */
.sec-location__card::before{
  content:"";
  position:absolute;
  inset: 10px 10px auto 10px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.38),
    rgba(255,255,255,0)
  );
  pointer-events:none;
}

/* 右上角柔光点缀 */
.sec-location__card::after{
  content:"";
  position:absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255,255,255,.38),
    rgba(255,255,255,0) 60%
  );
  filter: blur(1px);
  pointer-events:none;
}

/* 标题更精致一点 */
.sec-location__cn{
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  color: rgba(15,15,15,.92);
  letter-spacing: .2px;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}

.sec-location__en{
  margin: 0 0 16px;
  font-size: 12.5px;
  letter-spacing: .6px;
  color: rgba(20,20,20,.65);
  text-transform: uppercase;
}

/* 信息列表做成“胶囊行”，更像高级名片 */
.sec-location__list{
  display: grid;
  gap: 10px;
}


.sec-location__k{
  color: rgba(0,0,0,.55);
  white-space: nowrap;
  font-weight: 700;
}

.sec-location__v{
  color: rgba(0,0,0,.82);
  word-break: break-word;
}

/* 链接更“高级”一点 */
.sec-location__link{
  color: rgba(0,0,0,.85);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,0,0,.25);
}

.sec-location__link:hover{
  border-bottom-color: rgba(0,0,0,.55);
}

/* 小屏优化 */
@media (max-width: 640px){
  .sec-location__card{
    width: min(320px, 100%);
    padding: 20px 16px 16px;
    border-radius: 18px;
  }
  .sec-location__row{
    grid-template-columns: 64px 1fr;
    padding: 9px 10px;
    border-radius: 12px;
  }
  .sec-location__cn{ font-size: 20px; }
}

