.home_page {
  position: relative;
}

#bannerCarousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 2.5rem;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
}

.home_page_banner {
  width: 100%;
  height: 100%;
}

.home_page_content {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.home_page__heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: -0.6rem;
  color: #1E60C9;
}

.home_page__title {
  font-size: 0.68rem;
  overflow-wrap: break-word;
  font-weight: bold;
  white-space: nowrap;
  text-shadow: 1px 1px 7px rgba(255, 255, 255, 0.8);
  -webkit-text-stroke: 2px white;
}

.home_page__subtitle {
  overflow-wrap: break-word;
  font-size: 0.34rem;
  line-height: 0.28rem;
  margin-top: 0.15rem;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
  -webkit-text-stroke: 1px white;
  font-weight: bold;
}

.home_page_body {
     background: rgba(30, 96, 201, 0.8);
     margin: 0 1.9rem;
     display: flex;
     padding: 0.2rem 0.2rem;
     border-radius: 10px;
}

.notice {
  width: 30%;
  padding: 0.2rem;
  padding: 0 0.2rem;
}

.notice__title {
  font-size: 0.2rem;
  color: #fff;
}

.notice__title-item {
  display: flex;
  align-items: center;
}

.notice__title img {
  margin-right: 0.1rem;
}

.notice__icon {
  width: 0.22rem;
  height: 0.22rem;
}

.notice__list {
  margin: 0.12rem 0 0;
  padding-left: 0;
  color: #fff;
}

.notice__list li {
  line-height: 0.24rem;
  font-size: 0.14rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  padding: 0.12rem 0;
  cursor: pointer;
}

.notice__list li a {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  text-decoration: none;
}

.notice__list li:last-child {
  border-bottom: none;
}

.search-wrapper {
  width: 100%;
  padding-left: 0.2rem;
  flex: 1;
}

.search-wrapper-form {
  background-color: #fff;
  border-radius: 0.08rem;
  height: 1.3rem;
  margin-top: 0.2rem;
  padding: 0.15rem 0.25rem 0.2rem 0.25rem;
}

.flight-type {
  font-size: 0.16rem;
  color: rgba(30, 96, 201, 0.4);
  font-weight: 600;
  margin-right: 0.4rem;
  cursor: pointer;
}

.flight-type.active {
  color: rgba(30, 96, 201, 1);
}

.flight-type img {
  margin-right: 0.08rem;
  height: 0.22rem;
}

.form-field-home {
  margin-top: 0.15rem;
}

.form-field-home .input-text-home {
  background: #EFF2F7;
  border-radius: 0.06rem;
  flex: 1;
  margin-right: 0.1rem;
  padding-left: 0.25rem;
  height: 0.44rem;
  font-size: 0.13rem;
}

.input-text-home::placeholder {
    color: rgba(0,0,0,0.2)
}

.form-field-home .btn-search-home {
  width: 1.2rem;
  height: 0.44rem;
  background: #1E60C9;
  border-radius: 0.04rem;
  font-weight: 600;
  font-size: 0.16rem;
  color: #FFFFFF;
  text-align: center;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-container {
  border-radius: 0.08rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.15);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.3rem;
  border-bottom: 1px solid #eee;
}

.modal-title {
  font-size: 0.2rem;
  font-weight: 700;
  color: #333;
}

.close-icon {
  font-size: 0.24rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.close-icon:hover {
  color: #666;
}

.modal-body {
  padding: 0.3rem;
  overflow-y: auto;
  font-size: 0.16rem;
  line-height: 1.6;
  color: #333;
  max-height: 4rem;
}

.modal-content {
  white-space: normal;
  word-break: break-word;
  text-align: justify;
}

.modal-footer {
  padding: 0.2rem 0.3rem;
  display: flex;
  justify-content: center;
}

.confirm-btn {
  background-color: #1E60C9;
  color: #fff;
  border: none;
  padding: 0.1rem 0.3rem;
  font-size: 0.16rem;
  border-radius: 0.04rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.confirm-btn:hover {
  background-color: #1E60C9;
}

.feature-grid {
  width: 100vw;
      margin: 0.4rem auto 0.6rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.24rem;
      padding: 0px 1.9rem;
}

.feature-card {
  background-color: white;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.feature-card:hover {
  transform: scale(1.02);
  transform-origin: 50% 50% 0px;
}

.feature-card__image {
  width: 100%;
  height: 2.1rem;
  object-fit: cover;
  display: block;
}

.feature-card__content {
  background-color: rgba(255, 255, 255, 1);
  padding: 0.25rem;
  /**
  display: flex;
  justify-content: space-between;
  row-gap: 0.2rem;
  flex-wrap: wrap;
  align-items: center;
  **/
}

.feature-card-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   row-gap: 0.1rem;
   max-width: 0.7rem;
   text-decoration: none;
}

.feature-card-item:hover .feature-card-item__image {
    transform: scale(1.1);
    transform-origin: 50% 50% 0px;
}

.feature-card-item:hover .feature-card-item__title {
    color: #1E60C9;
}

.feature-card-item__image {
    width: 0.32rem;
    height: 0.32rem;
    transition: all 0.3s ease-in-out;
}

.feature-card-item__title {
    text-align: center;
    font-size: 0.14rem;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.feature-card__title {
  font-size: 0.18rem;
  font-weight: 600;
  color: white;
  opacity: 0.9;
  background-color: rgba(30, 96, 201, 1);
  min-width: 1.52rem;
  height: 0.44rem;
  text-align: center;
  line-height: 0.44rem;
  position: absolute;
  bottom: -0.18rem;
  padding: 0rem 0.2rem;
  transition: all 0.3s ease-in-out;
}

.feature-card:hover .feature-card__title {
    min-width: 100%;
}

.feature-card__subtitle {
  font-size: 0.14rem;
  margin: 0 0 0.13rem;
  color: rgba(0, 0, 0, 1);
  opacity: 0.7;
  line-height: 1.8;
}

.feature-link {
  display: inline-block;
  margin-top: 0.12rem;
  color: #1E60C9;
  font-size: 0.14rem;
  text-decoration: none;
}
.page-content {
    background: #F4F4F4;
}


.grid-children-container {
  display: flex;
  justify-content: space-around;
  flex-flow: wrap;
  margin: 0.2rem 0rem;
}
