@charset "UTF-8";
:root {
  --color-themes: #023c49;
  --color-text-primary: #666666;
  --color-text-secondary: #999999;
  --color-text-dark: #333333;
  --color-text-light: #ffffff;
  --color-accent: #076479;
  --color-accent-light: #69bcad;
  --color-border: #e0e0e0;
  --color-border-dark: #292929;
  --color-bg-light: #f7f7f7;
  --color-bg-dark: #023c49;
  --color-bg-hover: #efefef;
}

/* 颜色变量 */
/* 字体大小变量 */
/* 间距变量 */
/* 断点变量 */
/*
 * 组件函数
 * cubic-bezier(0.25, 0.1, 0.82, 0.44)
 */
/* 文本截断混合器 */
/* 网格布局混合器 */
/* 响应式断点混合器 */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.read_body_main {
  background: url("/public/static/default/images/read_body_main_back.jpg") no-repeat center;
  background-size: cover;
  padding: 100px 0;
  margin-top: 120px;
}
.read_body_main .read_body {
  padding-top: 40px;
  padding-bottom: 40px;
}
.read_body_main .read_body .news-item {
  position: relative;
}
.read_body_main .read_body .news-link {
  display: block;
  height: 100%;
}
.read_body_main .read_body .news-content {
  width: 100%;
}
.read_body_main .read_body .news-image {
  margin-bottom: 25px;
  overflow: hidden;
}
.read_body_main .read_body .news-image img {
  width: 100%;
  height: 171px;
  transition: transform 0.3s ease;
  object-fit: cover;
}
.read_body_main .read_body .news-image img:hover {
  transition: transform 0.3s ease;
  transform: scale(1.05);
}
@media (max-width: 770px) {
  .read_body_main .read_body .news-image img {
    height: 140px;
  }
}
.read_body_main .read_body .news_td_box {
  height: 163px;
}
@media (max-width: 770px) {
  .read_body_main .read_body .news_td_box {
    height: auto;
  }
}
.read_body_main .read_body .news-title {
  color: #000;
  font-size: 22px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
  height: 66px;
}
.read_body_main .read_body .news-title:hover {
  color: #004657;
  text-decoration: underline;
}
.read_body_main .read_body .news-description {
  color: #666;
  font-size: 18px;
  margin-bottom: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.5;
}
.read_body_main .read_body .news-date-container {
  margin-top: 60px;
}
.read_body_main .read_body .news-date {
  color: #076479;
  font-size: 18px;
}
@media (max-width: 770px) {
  .read_body_main {
    padding: 30px 0;
    margin-top: 30px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .read_body_main {
    padding: 60px 0;
    margin-top: 60px;
  }
}

.wonderful-activities {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 120px;
}
.wonderful-activities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/public/static/default/images/wa_back.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
}
.wonderful-activities .activities-container {
  position: relative;
  z-index: 2;
  padding: 20px 0 0 0;
}
.wonderful-activities .activities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.wonderful-activities .activities-header h2 {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}
.wonderful-activities .activities-header .read-more {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.wonderful-activities .activities-header .read-more:hover {
  color: #076479;
}
.wonderful-activities .activities-swiper {
  margin-top: 55px;
  overflow: hidden;
  padding: 10px 0 150px 0;
}
.wonderful-activities .activities-swiper .swiper-container {
  padding: 0 100px;
  position: relative;
}
.wonderful-activities .activities-swiper .swiper-slide {
  width: 80%;
  max-width: 1000px;
}
.wonderful-activities .activities-swiper .swiper-slide .activity-link {
  display: block;
  position: relative;
  height: 630px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 1300px) {
  .wonderful-activities .activities-swiper .swiper-slide .activity-link {
    height: 448px;
  }
}
@media (max-width: 770px) {
  .wonderful-activities .activities-swiper .swiper-slide .activity-link {
    height: 348px;
  }
}
.wonderful-activities .activities-swiper .swiper-slide .activity-link:hover img {
  transition: transform 0.3s ease;
  transform: scale(1.05);
}
.wonderful-activities .activities-swiper .swiper-slide .activity-image {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.wonderful-activities .activities-swiper .swiper-slide .activity-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  object-fit: cover;
}
.wonderful-activities .activities-swiper .swiper-slide .activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background-color 0.3s ease;
  background-color: rgba(0, 0, 0, 0.4);
}
.wonderful-activities .activities-swiper .swiper-slide.swiper-slide-active .activity-overlay {
  transition: background-color 0.3s ease;
  background-color: rgba(0, 0, 0, 0);
}
.wonderful-activities .activities-swiper .swiper-slide .activity-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: #fff;
  font-size: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  margin: 0;
  z-index: 10;
}
.wonderful-activities .activities-swiper .swiper-button-prev,
.wonderful-activities .activities-swiper .swiper-button-next {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.wonderful-activities .activities-swiper .swiper-button-prev:hover,
.wonderful-activities .activities-swiper .swiper-button-next:hover {
  background-color: #076479;
}
.wonderful-activities .activities-swiper .swiper-button-prev::after,
.wonderful-activities .activities-swiper .swiper-button-next::after {
  color: #fff;
  font-size: 24px;
}
.wonderful-activities .activities-swiper .swiper-pagination {
  bottom: -50px;
}
.wonderful-activities .activities-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #336572;
  opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 15px;
}
.wonderful-activities .activities-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #336572;
  width: 70px;
  border-radius: 6px;
}
@media (max-width: 770px) {
  .wonderful-activities .activities-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .wonderful-activities .activities-header h2 {
    font-size: 28px;
  }
  .wonderful-activities .activities-swiper .swiper-container {
    padding: 0 20px;
  }
  .wonderful-activities .activities-swiper .swiper-slide {
    width: 80%;
  }
  .wonderful-activities .activities-swiper .swiper-slide .activity-title {
    font-size: 18px;
    padding: 20px;
  }
  .wonderful-activities .activities-swiper .swiper-button-prev,
.wonderful-activities .activities-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .wonderful-activities .activities-swiper .swiper-button-prev::after,
.wonderful-activities .activities-swiper .swiper-button-next::after {
    font-size: 16px;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .wonderful-activities .activities-swiper .swiper-container {
    padding: 0 50px;
  }
  .wonderful-activities .activities-swiper .swiper-slide {
    width: 60%;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .wonderful-activities .activities-swiper .swiper-slide {
    width: 55%;
  }
}

.hzhb_box {
  margin-top: 50px;
}
.hzhb_box .img {
  height: 130px;
  border: 1px solid #c6cfd2;
  object-fit: contain;
}

.events-container {
  margin-top: 40px;
}
.events-container .events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.events-container .event-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.events-container .event-item:hover .event-image img {
  transition: transform 0.3s ease;
  transform: scale(1.05);
}
.events-container .event-link {
  display: block;
  height: 100%;
}
.events-container .event-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.events-container .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: scale(1);
}
.events-container .event-image .event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.345) 0%, rgba(0, 0, 0, 0.789) 100%);
}
.events-container .event-content {
  padding: 24px 24px 54px 24px;
  color: #fff;
  z-index: 1;
  position: relative;
  height: 100%;
  line-height: 1.4;
}
.events-container .event-title {
  font-size: 22px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
  height: 66px;
}
@media (max-width: 770px) {
  .events-container .event-title {
    height: auto;
  }
}
.events-container .event-date {
  font-size: 22px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.events-container .event-date .calendar-icon i {
  font-size: 22px;
  color: #44ccb3;
}
.events-container .event-description {
  font-size: 14px;
  margin-bottom: 26px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.5;
}
.events-container .event-button {
  font-size: 18px;
  margin-top: 30px;
  position: absolute;
  left: 25px;
  bottom: 25px;
}
.events-container .event-button span.text {
  position: relative;
  margin-right: 5px;
}
.events-container .event-button span.text:hover::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(7, 100, 121, 0.9);
}

@media (max-width: 1024px) {
  .events-container .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 770px) {
  .events-container .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .events-container .event-image {
    height: 300px;
  }
  .events-container .event-content {
    padding: 20px;
  }
  .events-container .event-title,
.events-container .event-date {
    font-size: 18px;
  }
  .events-container .event-button {
    font-size: 18px;
    margin-top: 20px;
  }
}