/**
 * 全站公共样式
 * —— 仅放多页复用内容：全局重置、CSS 变量、全站通用类等。
 * 某一页独有的版式与组件样式写在 css/对应页面名.css，勿写入本文件。
 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
}

:root {
  --color-primary: #008842;
  --color-primary-dark: #008842;
  --color-accent: #f5a523;
  --color-bg: #f0f2f5;
  --color-text: #333;
  --color-muted: #666;
  --container: 1500px;
  --overview-container: 1500px;
  --overview-blue: #008842;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*公共顶部*/
.page-overview {
  --overview-container: 1500px;
  --overview-blue: #008842;
  min-width: 1500px;
  color: #292c33;
  background: #fff;
}

.overview-wrap {
  width: var(--overview-container);
  margin-left: auto;
  margin-right: auto;
}

.overview-header {
  background: #fff;
}

.overview-header__inner {
  height: 145px;
  display: flex;
  align-items: center;
}

.overview-logo,
.overview-logo__img {
  display: block;
  width: 420px;
  height: 90px;
}

.overview-logo__img {
  object-fit: contain;
  object-position: left center;
}

.overview-logo:hover {
  text-decoration: none;
}

.overview-nav {
  position: relative;
  z-index: 60;
  height: 55px;
  background: #008842;
}

.overview-nav__list {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overview-nav__list > li {
  position: static;
  display: flex;
  align-items: center;
  height: 55px;
}

.overview-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 34px;
  padding: 0 17px;
  border-radius: 18px;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.overview-nav__list > li > a:hover {
  text-decoration: none;
}

.overview-nav__list > li > a.is-active {
  color: #008842;
  background: #fff;
}

.overview-nav__item--has-dropdown {
  position: static;
}

.overview-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 55px;
  height: 225px;
  overflow: hidden;
  background: rgba(0, 136, 66, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 70;
}

.overview-dropdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 136, 66, 0.38);
  pointer-events: none;
}

.overview-nav__item--has-dropdown:hover .overview-dropdown,
.overview-nav__item--has-dropdown:focus-within .overview-dropdown,
.overview-nav__item--has-dropdown.is-open .overview-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.overview-dropdown__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 245px 260px 1fr 325px;
  height: 225px;
  color: #fff;
}

.overview-dropdown__title,
.overview-dropdown__links,
.overview-dropdown__intro,
.overview-dropdown__quick {
  padding: 38px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.overview-dropdown__title strong {
  display: block;
  font-size: 38px;
  line-height: 1.1;
}

.overview-dropdown__title span {
  display: block;
  width: 78px;
  height: 6px;
  margin-top: 20px;
  background: #fff;
}

.overview-dropdown__links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 18px 50px;
  font-size: 17px;
}

.overview-dropdown__links a::before {
  content: "•";
  margin-right: 9px;
}

.overview-dropdown a {
  color: #fff;
  text-decoration: none;
}

.overview-dropdown a:hover {
  text-decoration: underline;
}

.overview-dropdown__intro h2 {
  margin: 0 0 13px;
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.overview-dropdown__intro p {
  width: 440px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  line-height: 1.65;
}

.overview-dropdown__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 28px;
  border-radius: 999px;
  background: #f49b23;
  font-size: 13px;
}

.overview-dropdown__quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 26px;
  border-right: 0;
}

.overview-dropdown__quick a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 15px;
}

.overview-dropdown__quick .quick-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.overview-hero {
  height: 380px;
  background: url("../images/overview/hero-overview.png") center top / cover no-repeat;
}

.overview-hero.is-bg-loaded {
  background: url("../images/overview/hero-overview.png") center top / cover no-repeat;
}

.overview-hero__inner {
  position: relative;
  height: 100%;
}

.overview-crumb {
  position: absolute;
  right: 0;
  bottom: 35px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
}

.overview-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 1080px;
  height: 98px;
  margin: -2px auto 0;
  border: 1px solid #e0e4ec;
  border-radius: 31px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(30, 45, 70, 0.22);
  overflow: hidden;
}

.overview-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d3d3d;
  font-size: 40px;
  line-height: 1;
  text-decoration: none;
}

.overview-tabs a.is-active {
  color: var(--overview-blue);
  font-weight: 700;
}

.overview-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 19px;
  width: 145px;
  height: 6px;
  border-radius: 3px;
  background: var(--overview-blue);
  transform: translateX(-50%);
}

.overview-main {
  padding-top: 96px;
}

.overview-page-title {
  margin: 0 0 44px;
  color: var(--overview-blue);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 4px;
}

/*-底部模块-*/
.page-wrap {
  width: 1500px;
  margin: 0 auto;
}
.contact-map {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.contact-map__image {
  position: absolute;
  inset: 0;
  background: url("../images/patient-service/traffic-map.png") center / cover no-repeat;
}

.contact-card {
  position: relative;
  height: 360px;
}

.contact-card__box {
  width: 480px;
  height: 360px;
  padding: 48px 44px;
  color: #fff;
  background: rgba(0,136,66, 0.82);
}

.contact-card__box h3 {
  margin: 0 0 35px;
  padding-bottom: 22px;
  font-size: 32px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card__box p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.2;
}

.site-footer2 {
  position: relative;
  height: 550px;
  background: #f5f7fa;
  margin-top: 100px;
}

.site-footer2::before {
  content: "";
  position: absolute;
  top: -95px;
  left: 0;
  width: 100%;
  height: 95px;
  background: #f5f7fa;
  clip-path: ellipse(120% 100% at 0% 100%);
  pointer-events: none;
}

.site-footer2__main {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: start;
  gap: 60px;
  height: 390px;
  padding: 60px 0 50px;
}

.site-footer2__logo img {
  width: 280px;
  height: auto;
}

.site-footer2__contact h4,
.site-footer2__follow h4 {
  margin: 0 0 24px;
  color: #008842;
  font-size: 36px;
  font-weight: 700;
}

.site-footer2__contact p {
  margin: 35px 0 0 0;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

.site-footer2__qrs {
  display: flex;
  gap: 36px;
}

.site-footer2__qrs figure {
  margin: 0;
  text-align: center;
}

.site-footer2__qrs img {
  width: 156px;
  height: 156px;
  border-radius: 8px;
}

.site-footer2__qrs figcaption {
  margin-top: 24px;
  color: #666;
  font-size: 18px;
}

.site-footer2__bottom {
  height: 114px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid #e5e8ed;
  text-align: center;
}

.site-footer2__bottom p {
  margin: 0 0 6px;
  color: #999;
  font-size: 14px;
  line-height: 1.6;
}
