/**
 * 患者服务-就诊流程页面样式
 */

.page-patient-service {
  min-width: 1500px;
  color: #292c33;
  background: #fff;
}

.patient-wrap {
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.patient-site-header {
  background: #fff;
}

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

.patient-logo {
  display: block;
  width: 407px;
  height: 76px;
}

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

.patient-logo__img {
  width: 407px;
  height: 76px;
  object-fit: contain;
}

.patient-main-nav {
  height: 55px;
  background:#008842;
}

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

.patient-main-nav__list 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: 18px;
  line-height: 1;
  text-decoration: none;
}

.patient-main-nav__list a:hover {
  text-decoration: none;
}

.patient-main-nav__list a.is-active {
  color:#008842;
  background: #fff;
}

.patient-hero {
  position: relative;
  height: 405px;
  overflow: hidden;
  background: #0d2744;
}

.patient-hero__img {
  width: 100%;
  height: 405px;
  object-fit: cover;
  object-position: center 33%;
}

.patient-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.patient-hero__inner {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
}

.patient-hero__crumb {
  position: absolute;
  right: 0;
  bottom: 36px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
}

.patient-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 980px;
  height: 75px;
  margin: 40px auto 0;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 1px 9px rgba(35, 45, 58, 0.22);
}

.patient-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  color: #333;
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
}

.patient-tabs a:hover {
  text-decoration: none;
}

.patient-tabs a.is-active {
  color:#008842;
  font-weight: 700;
}

.patient-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 110px;
  height: 6px;
  border-radius: 3px;
  background: #008842;
  transform: translateX(-50%);
}

.patient-flow {
  padding-top: 103px;
  padding-bottom: 120px;
}

.patient-page-title {
  margin: 0;
  color:#008842;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 3px;
}

.visit-type-tabs {
  display: grid;
  grid-template-columns: 270px 220px 220px;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
  margin-top: 95px;
}

.visit-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 180px;
  color: #008842;
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
  border-radius: 20px;
  box-sizing: border-box;
}

.visit-type-card:hover {
  text-decoration: none;
}

.visit-type-card + .visit-type-card::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 72px;
  width: 1px;
  height: 52px;
  background: #c7c7c7;
}

.visit-type-card.is-active {
  background: #008842;
  color: #fff;
}

.visit-type-card__icon {
  width: 74px;
  height: 70px;
  margin-bottom: 27px;
  object-fit: contain;
}

.patient-article {
  margin-top: 132px;
  font-size: 23px;
  line-height: 1.82;
  letter-spacing: 1px;
}

.patient-article h2,
.patient-chart-section h2 {
  margin: 0 0 58px;
  color:#008842;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 2px;
}

.patient-article h3 {
  margin: 56px 0 34px;
  color:#008842;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
}

.patient-article ol {
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
}

.patient-article li {
  margin-bottom: 43px;
}

.patient-article p {
  margin: 0 0 36px;
}

.patient-article strong {
  font-weight: 700;
}

.patient-article__center-title {
  margin-top: 94px !important;
}

.patient-chart-section {
  margin-top: 86px;
}

.chart-box {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #008842;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  background: #fff;
}

.chart-box--outline {
  border: 2px solid #008842;
  border-radius: 10px;
}

.chart-box--blue {
  border-radius: 8px;
  background: #008842;
  color: #fff;
}

.chart-box--orange {
  border-color: #ef6d13;
  color: #ef6d13;
}

.chart-arrow {
  position: absolute;
}

.chart-arrow--down {
  width: 2px;
  background: #008842;
}

.chart-arrow--down::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 17px solid #008842;
}

.chart-arrow--right,
.chart-arrow--left {
  height: 2px;
  background: #008842;
}

.chart-arrow--right::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -8px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 17px solid #008842;
}

.chart-arrow--left::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -8px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 17px solid #008842;
}

.outpatient-chart {
  position: relative;
  width: 1100px;
  height: 1300px;
  margin: 0 auto;
}

.outpatient-chart .chart-box {
  position: absolute;
}

.chart-box--wide {
  left: 0;
  top: 0;
  width: 710px;
  height: 82px;
}

.chart-box--orange {
  right: 0;
  top: 0;
  width: 260px;
  height: 82px;
}

.chart-box--small {
  top: 170px;
  width: 235px;
  height: 58px;
  font-size: 30px;
}

.chart-box--no-card {
  left: 0;
}

.chart-box--has-card {
  left: 468px;
  width: 285px;
}

.chart-note {
  position: absolute;
  left: 0;
  top: 326px;
  width: 532px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #008842;
  border-radius: 10px;
  color: #292c33;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  box-sizing: border-box;
}

.chart-box--full {
  left: 0;
  top: 562px;
  width: 1100px;
  height: 82px;
}

.chart-box--large-text {
  top: 720px;
  height: 95px;
  font-size: 30px;
}

.chart-box--middle {
  left: 222px;
  top: 895px;
  width: 700px;
  height: 82px;
}

.chart-box--bottom-left {
  left: 184px;
  top: 1124px;
  width: 220px;
  height: 72px;
}

.chart-box--bottom-right {
  left: 675px;
  top: 1098px;
  width: 367px;
  min-height: 142px;
  flex-direction: column;
}

.chart-box--bottom-right span {
  margin-top: 14px;
  font-size: 24px;
  font-weight: 400;
}

.chart-box--check {
  left: 675px;
  top: 1304px;
  width: 367px;
  height: 72px;
}

.chart-arrow--a {
  left: 113px;
  top: 82px;
  height: 78px;
}

.chart-arrow--b {
  left: 618px;
  top: 82px;
  height: 78px;
}

.chart-arrow--c {
  left: 114px;
  top: 228px;
  height: 88px;
}

.chart-arrow--d {
  left: 114px;
  top: 474px;
  height: 78px;
}

.chart-arrow--e {
  left: 575px;
  top: 644px;
  height: 70px;
}

.chart-arrow--f {
  left: 575px;
  top: 815px;
  height: 70px;
}

.chart-arrow--g {
  left: 300px;
  top: 977px;
  height: 136px;
}

.chart-arrow--h {
  left: 855px;
  top: 977px;
  height: 110px;
}

.chart-arrow--i {
  left: 855px;
  top: 1240px;
  height: 54px;
}

.chart-arrow--orange {
  right: 127px;
  top: 82px;
  width: 3px;
  height: 480px;
  background: #ef6d13;
}

.chart-arrow--orange::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid #ef6d13;
}

.patient-chart-section--emergency {
  margin-top: 110px;
}

.emergency-chart {
  position: relative;
  width: 1210px;
  height: 620px;
  margin: 0 auto 64px;
}

.emergency-chart .chart-box {
  position: absolute;
  height: 64px;
  font-size: 30px;
}

.emergency-chart__triage {
  left: 190px;
  top: 0;
  width: 300px;
}

.emergency-chart__to-register {
  left: 500px;
  top: 31px;
  width: 165px;
}

.emergency-chart__register {
  left: 680px;
  top: 0;
  width: 300px;
}

.emergency-chart__line {
  position: absolute;
  background: #008842;
}

.emergency-chart__line--main {
  left: 340px;
  top: 64px;
  width: 2px;
  height: 54px;
}

.emergency-chart__line--main::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 54px;
  width: 542px;
  height: 2px;
  background: #008842;
}

.emergency-chart__low {
  left: 120px;
  top: 150px;
  width: 420px;
}

.emergency-chart__high {
  left: 660px;
  top: 150px;
  width: 420px;
}

.emergency-chart__low::before,
.emergency-chart__high::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  width: 2px;
  height: 32px;
  background: #008842;
  transform: translateX(-50%);
}

.emergency-chart__line--left {
  left: 330px;
  top: 214px;
  width: 2px;
  height: 58px;
}

.emergency-chart__line--right {
  left: 870px;
  top: 214px;
  width: 2px;
  height: 58px;
}

.emergency-chart__rescue {
  left: 120px;
  top: 272px;
  width: 420px;
}

.emergency-chart__clinic {
  left: 660px;
  top: 272px;
  width: 420px;
}

.emergency-chart__between {
  left: 540px;
  top: 304px;
  width: 120px;
}

.emergency-chart__line--bottom {
  left: 220px;
  top: 392px;
  width: 780px;
  height: 2px;
}

.emergency-chart__line--rescue-bottom {
  left: 330px;
  top: 336px;
  width: 2px;
  height: 56px;
}

.emergency-chart__line--clinic-bottom {
  left: 870px;
  top: 336px;
  width: 2px;
  height: 56px;
}

.emergency-chart__line--ward,
.emergency-chart__line--icu,
.emergency-chart__line--surgery,
.emergency-chart__line--leave {
  top: 392px;
  width: 2px;
  height: 46px;
}

.emergency-chart__line--ward {
  left: 220px;
}

.emergency-chart__line--icu {
  left: 480px;
}

.emergency-chart__line--surgery {
  left: 740px;
}

.emergency-chart__line--leave {
  left: 1000px;
}

.emergency-chart__ward {
  left: 100px;
  top: 438px;
  width: 240px;
}

.emergency-chart__icu {
  left: 360px;
  top: 438px;
  width: 240px;
}

.emergency-chart__surgery {
  left: 620px;
  top: 438px;
  width: 240px;
}

.emergency-chart__leave {
  left: 880px;
  top: 438px;
  width: 240px;
}

.emergency-levels {
  width: 1388px;
  margin: 0 auto;
  color: #292c33;
  font-size: 23px;
  line-height: 1.72;
}

.emergency-levels p {
  margin: 0 0 12px;
}

.patient-article--inpatient {
  margin-top: 104px;
}

.inpatient-chart {
  position: relative;
  width: 1320px;
  height: 680px;
  margin: 34px auto 92px;
}

.inpatient-chart .chart-box {
  position: absolute;
  height: 62px;
  font-size: 28px;
}

.inpatient-chart__start {
  left: 540px;
  top: 0;
  width: 285px;
}

.inpatient-chart__arrow-a {
  left: 682px;
  top: 62px;
  height: 54px;
}

.inpatient-chart__apply {
  left: 470px;
  top: 116px;
  width: 430px;
}

.inpatient-chart__branch {
  position: absolute;
  left: 165px;
  top: 208px;
  width: 990px;
  height: 78px;
  border-top: 2px solid #008842;
}

.inpatient-chart__branch::before {
  content: "";
  position: absolute;
  left: 495px;
  top: -30px;
  width: 2px;
  height: 30px;
  background: #008842;
}

.inpatient-chart__branch::after {
  content: "";
  position: absolute;
  left: 495px;
  top: 0;
  width: 2px;
  height: 68px;
  background: #008842;
}

.inpatient-chart__branch-side {
  position: absolute;
  top: 0;
  width: 2px;
  height: 68px;
  background: #008842;
}

.inpatient-chart__branch-side--left {
  left: 0;
}

.inpatient-chart__branch-side--right {
  right: 0;
}

.inpatient-chart__branch::marker,
.inpatient-chart__branch-side::after {
  content: "";
}

.inpatient-chart__branch-side::after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 18px;
  height: 18px;
  background: #008842;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}

.inpatient-chart__pre::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 62px;
  width: 2px;
  height: 86px;
  background: #008842;
  transform: translateX(-50%);
}

.inpatient-chart__pre::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 18px;
  height: 18px;
  background: #008842;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}

.inpatient-chart__severe,
.inpatient-chart__pre,
.inpatient-chart__wait {
  top: 286px;
  width: 345px;
}

.inpatient-chart__severe {
  left: 0;
}

.inpatient-chart__pre {
  left: 488px;
}

.inpatient-chart__wait {
  left: 975px;
}

.inpatient-chart__merge {
  position: absolute;
  left: 172px;
  top: 348px;
  width: 976px;
  height: 86px;
  border-left: 2px solid #008842;
  border-right: 2px solid #008842;
  border-bottom: 2px solid #008842;
}

.inpatient-chart__merge::before {
  /*content: "";*/
  /*position: absolute;*/
  /*left: 488px;*/
  /*bottom: -54px;*/
  /*width: 2px;*/
  /*height: 54px;*/
  /*background: #008842;*/
}

.inpatient-chart__arrow-b {
  left: 659px;
  top: 434px;
  height: 48px;
}

.inpatient-chart__exam {
  left: 470px;
  top: 482px;
  width: 430px;
}

.inpatient-chart__arrow-c {
  left: 660px;
  top: 544px;
  height: 54px;
}

.inpatient-chart__ward {
  left: 342px;
  top: 598px;
  width: 684px;
}

.page-patient-service--inpatient .patient-article h2:first-child {
  margin-bottom: 70px;
}

.page-patient-service--inpatient .patient-flow {
  padding-bottom: 105px;
}

.patient-map {
  position: relative;
  height: 307px;
  overflow: hidden;
  background: #dce6ef;
}

.patient-map__img {
  width: 100%;
  height: 307px;
  object-fit: cover;
  object-position: center top;
}

.patient-map__card {
  position: absolute;
  left: calc((100% - 1500px) / 2 - 12px);
  top: 0;
  width: 480px;
  height: 307px;
  padding: 36px 43px 30px;
  box-sizing: border-box;
  background: rgba(0, 64, 146, 0.82);
  color: #fff;
}

.patient-map__card h2 {
  margin: 0 0 27px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.patient-map__card ul {
  display: grid;
  gap: 10px;
}

.patient-map__card li {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.patient-footer__main {
  background: #fff;
}

.patient-footer__inner {
  display: grid;
  grid-template-columns: 410px 380px 1fr;
  align-items: start;
  gap: 140px;
  min-height: 316px;
  padding-top: 83px;
  box-sizing: border-box;
}

.patient-footer__logo img {
  width: 407px;
  height: 76px;
  object-fit: contain;
}

.patient-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px 58px;
  padding-top: 4px;
}

.patient-footer__links a {
  color: #292c33;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.patient-footer__links a:hover {
  color:#008842;
  text-decoration: none;
}

.patient-footer__qr-list {
  display: flex;
  justify-content: flex-end;
  gap: 54px;
}

.patient-footer__qr-list figure {
  margin: 0;
  text-align: center;
}

.patient-footer__qr-list img {
  width: 160px;
  height: 160px;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 18px, #111 18px 28px, transparent 28px 40px, #111 40px 50px, transparent 50px 62px, #111 62px 72px),
    linear-gradient(#111 10px, transparent 10px 18px, #111 18px 28px, transparent 28px 40px, #111 40px 50px, transparent 50px 62px, #111 62px 72px),
    radial-gradient(circle at 50% 50%, #0f66c2 0 17px, #fff 18px 25px, transparent 26px),
    repeating-linear-gradient(90deg, transparent 0 8px, #111 8px 13px, transparent 13px 21px),
    repeating-linear-gradient(0deg, transparent 0 9px, #111 9px 14px, transparent 14px 24px),
    #fff;
  background-size: 72px 72px, 72px 72px, 62px 62px, 160px 160px, 160px 160px, auto;
  background-position: 12px 12px, 76px 76px, center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat;
}

.patient-footer__qr-list figcaption {
  margin-top: 25px;
  color: #292c33;
  font-size: 18px;
  line-height: 1;
}

.insurance-type-tabs {
  display: grid;
  grid-template-columns: 200px 1px 230px;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
  margin-top: 95px;
}

.insurance-type-tabs::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 52px;
  background: #c7c7c7;
}

.insurance-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 180px;
  color:#008842;
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
  border-radius: 20px;
  box-sizing: border-box;
}

.insurance-type-card:hover {
  text-decoration: none;
}

.insurance-type-card:first-child {
  grid-column: 1;
  grid-row: 1;
}

.insurance-type-card:last-child {
  grid-column: 3;
  grid-row: 1;
}

.insurance-type-card.is-active {
  background: #008842;
  color: #fff;
}

.insurance-type-card__icon {
  position: relative;
  width: 80px;
  height: 72px;
  margin-bottom: 25px;
  color: currentColor;
}

.insurance-type-card--policy .insurance-type-card__icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 66px;
  height: 50px;
  background:
    linear-gradient(currentColor, currentColor) 0 8px / 50px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 0 36px / 50px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 47px 0 / 6px 20px no-repeat,
    linear-gradient(currentColor, currentColor) 47px 28px / 6px 22px no-repeat,
    linear-gradient(currentColor, currentColor) 20px 22px / 40px 6px no-repeat;
}

.insurance-type-card--policy .insurance-type-card__icon::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-left: 6px solid currentColor;
  border-bottom: 6px solid currentColor;
  transform: rotate(-45deg);
}

.insurance-type-card--filing .insurance-type-card__icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 64px;
  height: 56px;
  border: 6px solid currentColor;
  border-radius: 12px;
  box-sizing: border-box;
}

.insurance-type-card--filing .insurance-type-card__icon::after {
  content: "+";
  position: absolute;
  right: 7px;
  top: 15px;
  font-size: 39px;
  font-weight: 700;
  line-height: 1;
}

.insurance-type-card--filing.is-active .insurance-type-card__icon::before {
  border-color: currentColor;
}

.insurance-type-card--filing .insurance-type-card__icon {
  background:
    linear-gradient(currentColor, currentColor) 18px 28px / 22px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 18px 44px / 32px 5px no-repeat;
}

.insurance-article {
  width: 1215px;
  margin: 131px 0 0 45px;
  color: #292c33;
  /*font-size: 30px;*/
  /*line-height: 1.55;*/
  /*letter-spacing: 3px;*/
}

.insurance-article h2 {
  margin: 0 0 24px;
  color:#008842;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
}

.insurance-article h2 + .insurance-article__lead,
.insurance-article h2 + p {
  /*margin-top: 25px;*/
}

.insurance-article h2:not(:first-child) {
  margin-top: 92px;
}

.insurance-article h3 {
  margin: 66px 0 7px;
  color: #292c33;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 4px;
}

.insurance-article p {
  margin: 0;
}
.insurance-article p  img{
  display: ruby;
}

.insurance-article strong {
  font-weight: 700;
}

.insurance-article__lead {
  margin-bottom: 0;
}

.insurance-article--filing {
  width: 1500px;
  margin: 131px 0 0;
  /*font-size: 23px;*/
  /*line-height: 1.88;*/
  /*letter-spacing: 3px;*/
}

.insurance-article--filing h2 {
  margin-bottom: 56px;
  font-size: 35px;
}

.insurance-article--filing h3 {
  margin: 16px 0 12px;
  font-size: 30px;
  line-height: 1.45;
}

.insurance-article--filing p {
  /*margin-bottom: 6px;*/
}

.insurance-article__indent {
  padding-left: 45px;
}

.page-patient-service--insurance .patient-flow {
  padding-top: 103px;
  padding-bottom: 146px;
}

.page-patient-service--filing .patient-flow {
  padding-bottom: 112px;
}

.appointment-page {
  padding-top: 103px;
  padding-bottom: 130px;
}

.appointment-intro {
  margin-top: 84px;
  color: #292c33;
  font-size: 23px;
  line-height: 1.28;
  text-align: center;
  letter-spacing: 2px;
}

.appointment-intro p {
  margin: 0 0 43px;
}

.appointment-intro strong {
  color: #f00;
  font-weight: 700;
}

.appointment-intro span {
  margin-left: 18px;
  color:#008842;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 10px;
}

.appointment-form {
  width: 1152px;
  margin: 133px auto 0;
  color: #292c33;
  font-size: 30px;
  line-height: 1;
}

.appointment-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px 145px;
}

.appointment-field {
  display: flex;
  align-items: center;
  color: #292c33;
}

.appointment-field span {
  flex: 0 0 auto;
  min-width: 136px;
  text-align: right;
  letter-spacing: 3px;
}

.appointment-field input,
.appointment-field select,
.appointment-field textarea {
  width: 295px;
  height: 66px;
  border: 2px solid #bdbdbd;
  border-radius: 10px;
  background: #fff;
  color: #292c33;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.2;
  outline: none;
}

.appointment-field input::placeholder,
.appointment-field textarea::placeholder {
  color: #bdbdbd;
}

.appointment-field select {
  width: 107px;
  padding: 0 22px;
  appearance: auto;
}

.appointment-field em {
  margin-left: 10px;
  color: #f00;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
}

.appointment-field--gender {
  justify-content: flex-start;
}

.appointment-field--gender span {
  min-width: 110px;
}

.appointment-field--disease {
  grid-column: 1 / 2;
}

.appointment-field--disease span {
  min-width: 207px;
}

.appointment-field--time {
  margin-top: 61px;
}

.appointment-field--time span,
.appointment-field--remark span {
  min-width: 207px;
}

.appointment-field--time input,
.appointment-field--time select {
  width: 140px;
  height: 66px;
  text-align: center;
}

.appointment-field--time select {
  width: 138px;
  padding: 0 22px;
  text-align-last: center;
}

.appointment-field--time b {
  width: 43px;
  margin-left: -46px;
  color: #292c33;
  font-weight: 400;
  pointer-events: none;
}

.appointment-field--time i {
  width: 43px;
  color: #292c33;
  font-style: normal;
  text-align: center;
}

.appointment-field--remark {
  align-items: flex-start;
  margin-top: 65px;
}

.appointment-field--remark textarea {
  width: 900px;
  height: 260px;
  padding: 24px;
  border-radius: 30px;
  resize: none;
  text-align: left;
  line-height: 1.7;
}

.appointment-field--remark textarea::placeholder {
  color: #bdbdbd;
  font-size: 24px;
  line-height: 1;
}

.appointment-submit {
  display: block;
  width: 205px;
  height: 55px;
  margin: 73px auto 0;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #F5A523;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 55px;
  text-align: center;
  letter-spacing: 8px;
}

.appointment-guide,
.appointment-notes {
  color: #292c33;
  font-size: 23px;
  line-height: 1.68;
  letter-spacing: 3px;
}

.appointment-guide {
  margin-top: 136px;
}

.appointment-guide h2,
.appointment-notes h2 {
  margin: 0 0 44px;
  color:#008842;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}

.appointment-guide p,
.appointment-notes p {
  margin: 0 0 44px;
}

.appointment-guide strong,
.appointment-notes strong {
  font-weight: 700;
}

.appointment-guide__qr {
  width: 330px;
  margin: 28px auto 66px;
  text-align: center;
}

.appointment-guide__qr img {
  width: 330px;
  height: auto;
  object-fit: contain;
}

.appointment-guide__qr figcaption {
  margin-top: 18px;
  color: #292c33;
  font-size: 36px;
  line-height: 1;
}

.appointment-guide__qr--mini {
  width: 340px;
  margin-top: 70px;
}

.appointment-guide__qr--mini img {
  width: 340px;
  height: 340px;
}

.appointment-notes {
  margin-top: 120px;
}

.appointment-notes p {
  margin-bottom: 28px;
}

.page-patient-service--appointment .patient-flow {
  padding-top: 103px;
}

.traffic-page {
  padding-top: 103px;
  padding-bottom: 190px;
}

.traffic-map-figure {
  width: 1520px;
  /*height: 992px;*/
  margin: 133px 0 0 -10px;
  overflow: hidden;
}

.traffic-map-figure img {
  width: 1520px;
  /*height: 992px;*/
  object-fit: cover;
}

.traffic-article {
  width: 1180px;
  margin: 119px 0 0 0;
  color: #292c33;
  font-size: 23px;
  line-height: 1.56;
  letter-spacing: 5px;
}

.traffic-article p {
  margin: 0;
}

.page-patient-service--traffic .patient-flow {
  padding-top: 103px;
}
