.container {
  width: 100%;
  margin: 0 auto;
}

/* 响应式工具类 */
.hidden--md {
  display: none;
}

.visible--md {
  display: block;
}

/* 按钮样式 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .news .container {
    padding: 0 6.25rem !important;
  }
}

@media (max-width: 1200px) {
  .news .container {
    padding: 0 2rem !important;
  }
}
.contact__button {
  padding: 0 1rem 0 1.25rem;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
}
.contact__button img {
  margin-left: 2rem;
}

.button--primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.button--primary:hover {
  background-color: rgba(204, 0, 0, 0.9);
}

.button--secondary {
  background-color: #ffffff;
  color: #4b5563;
  border: 1px solid #d1d5db;
}

.button--secondary:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.button--light {
  background-color: #ffffff;
  color: #1d3557;
}

.button--light:hover {
  background-color: #f1f2f6;
}

.button--block {
  width: 100%;
}

.button--banner {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 1rem 1.25rem 1rem 1.5rem;
  font-size: 1rem;
  font-size: max(1rem, 14px);
  border-radius: 0.75rem;
  width: 12.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.button--banner:hover {
  background-color: rgba(204, 0, 0, 0.9);
  transform: scale(1.05);
}

/* 通知横幅 */
.notification {
  background-color: #f1f2f6;
  height: 5rem;
  display: flex;
  align-items: center;
}

.notification__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  user-select: none;
}

/* 通知轮播样式 */
.notificationSwiper {
  flex: 1;
  height: 30px;
  overflow: hidden;
}

.notificationSwiper .swiper-slide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification__arrow--red {
  opacity: 0;
}

.notification__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.5rem;
  cursor: pointer;
}

.notification__content-wrapper:hover .notification__arrow {
  opacity: 0;
}

.notification__content-wrapper:hover .notification__arrow--red {
  opacity: 1;
}

.notification__icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

.notification__text {
  color: #111827;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
  transition: all 0.2s;
  max-width: 350px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notification__content-wrapper:hover .notification__text {
  color: var(--color-primary);
}

.notification__arrow-container {
  position: relative;
  display: inline-block;
  margin-left: 1.25rem;
}

.notification__arrow {
  width: 2.125rem;
  height: 1.375rem;
  transition: opacity 0.2s ease;
}

.notification__arrow--red {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease;
}

/* 主横幅 */
.banner {
  height: 35rem;
  position: relative;
}

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

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.banner .container {
  padding: 0 6.25rem;
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner__content {
  max-width: 25rem;
  color: #ffffff;
  position: relative;
  z-index: 10;
  white-space: nowrap;
}

.banner__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner__subtitle {
  font-size: max(1.125rem, 14px);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Swiper按钮和自定义分页器样式 */
.bannerSwiper .swiper-pagination-custom {
  position: absolute;
  bottom: 2rem;
  right: 0;
  width: initial !important;
  left: initial !important;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
}

/* 在小屏幕上隐藏自定义分页器 */
@media (max-width: 767px) {
  .bannerSwiper .swiper-pagination-custom {
    display: none;
  }
}

.swiper-pagination-numbers {
  color: #ffffff;
  font-size: 14px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.current-num {
}

.separator {
  position: relative;
  width: 2px;
  height: 2px;
  background-color: #fff;
  margin: 0 0.875rem;
}

.separator::after,
.separator::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: #fff;
  top: -4px;
}

.separator::after {
  top: initial;
  bottom: -4px;
}

.swiper-pagination-progress {
  width: 115px;
  height: 2px;
  background-color: #fff;
  border-radius: 0.125rem;
  position: relative;
  overflow: hidden;
}

.swiper-pagination-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 0.125rem;
  width: 0;
  transition: width 0.1s linear;
  will-change: width;
}

.swiper-pause-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  border: 1px solid #fff;
  width: 28px;
  height: 18px;
  border-radius: 20px;
}

.swiper-pause-btn .pause-icon,
.swiper-pause-btn .play-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
}

/* 暂停图标 - 两个竖长方形 */
.swiper-pause-btn .pause-icon::before,
.swiper-pause-btn .pause-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 6px;
  background-color: #ffffff;
}

.swiper-pause-btn .pause-icon::before {
  left: 2px;
}

.swiper-pause-btn .pause-icon::after {
  right: 2px;
}

/* 播放图标 - 三角形 */
.swiper-pause-btn .play-icon {
  width: 0;
  height: 0;
  border-left: 6px solid #ffffff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}

.swiper-pause-btn .pause-icon {
  letter-spacing: -2px;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
  position: initial;
  color: #ffffff;
  border-radius: 50%;
  margin-top: initial;
  z-index: 30;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: initial;
}

.banner .swiper-button-next::after,
.banner .swiper-button-prev::after {
  font-size: 10px;
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
}

.banner .swiper-button-next {
}

.banner .swiper-button-prev {
}

.banner__button img {
  width: 1rem;
  height: 1rem;
  margin-left: 4.75rem;
  display: inline-block;
}

/* 快捷功能区 */
.features {
  padding: 0.25rem 0;
  background-color: #ffffff;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
}

.features__item:hover .features__title {
  color: var(--color-primary);
}

.features__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.features__icon img {
  width: 4rem;
  height: 4rem;
}

.features__icon--blue {
  background-color: #dbeafe;
}

.features__icon--green {
  background-color: #dcfce7;
}

.features__icon--purple {
  background-color: #f3e8ff;
}

.features__icon--orange {
  background-color: #ffeedd;
}

.features__title {
  font-weight: 500;
  color: #1f2937;
  font-size: 1rem;
  font-size: max(1rem, 14px);
  transition: color 0.3s;
}

/* 最新消息 */
.news {
  padding: 3.75rem 0;
  background-color: #f9fafb;
  background-image: url("../images/news-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news .container {
  padding: 0 16.25rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: left;
}

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

.news__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news__list-container {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  padding-top: 0;
}

.news__header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f2f6;
  height: 4rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.news__title {
  font-weight: 700;
  font-size: 1.25rem;
  font-size: max(1.25rem, 16px);
  color: #1f2937 !important;
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.news__title-icon {
  width: 1rem;
  height: 0.7rem;
  margin-right: 0.5rem;
}

.news__filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
}

.news__filter {
  color: #6b7280;
  text-decoration: none;
  margin-right: 2rem;
  font-size: 1rem;
  font-size: max(1rem, 14px);
  transition: color 0.2s ease, font-size 0.2s ease;
  white-space: nowrap;
}

.news__filter:hover {
  color: var(--color-primary);
}

.news__list {
  margin-top: 0;
  height: 23.625rem;
  overflow-y: auto;
}

.news__item {
  height: 3.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10.5px 0 0.71875rem;
  border-bottom: 1px solid #f1f2f6;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
}

.news__date {
  color: #626262;
  margin-right: 2rem;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
  white-space: nowrap;
}

.news__text {
  flex: 1;
  padding-right: 1rem;
}

.news__link {
  color: #111827;
  text-decoration: none;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.news__link:hover {
  color: var(--color-primary);
}

.news__arrow {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  margin-left: 0.5rem;
}

.news__arrow:hover {
  color: var(--color-primary);
}

.news__arrow img {
  width: 2.125rem;
  height: 1.375rem;
  margin-left: 1.25rem;
}

.news__more {
  margin-top: 1.5em;
  text-align: right;
}

.news__more-link {
  color: #111827;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #f1f2f6;
  padding-bottom: 1.25rem;
  transition: color 0.2s ease;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
}

.news__more-link:hover {
  color: rgba(204, 0, 0, 0.8);
}

.news__more-link img {
  width: 2.125rem;
  height: 1.375rem;
  margin-left: 1.25rem;
}

/* 日历样式 */
.calendar {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  padding-top: 1.5rem;
}

.calendar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.calendar__title {
  font-weight: 700;
  font-size: 1.25rem;
  font-size: max(1.25rem, 16px);
  color: #1f2937;
  display: flex;
  align-items: center;
}

.calendar__title-icon {
  width: 1rem;
  height: 0.7rem;
  margin-right: 0.5rem;
}

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

.calendar__nav {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 1.75rem;
}

.calendar__nav img {
  width: 1rem;
  height: 1rem;
}

.calendar__nav:hover {
  background-color: #f1f2f6;
}

.calendar__month-info {
  flex: 1;
}

.calendar__month-name {
  font-weight: 500;
  font-size: 1.25rem;
  font-size: max(1.25rem, 16px);
  margin: 0;
}

.calendar__year {
  font-weight: 500;
  font-size: 0.75rem;
  font-size: max(0.75rem, 12px);
  color: #8f9bb3;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
}

.calendar__weekday {
  color: #6b7280;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.625rem;
  height: 2.625rem;
  margin: 0 auto;
}

.calendar__day {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.625rem;
  height: 2.625rem;
  margin: 0.3rem auto 0;
  cursor: pointer;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-size: max(1rem, 16px);
}

.calendar__day:hover {
  background-color: #fbf1f1;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.calendar__day--other-month {
  color: #d1d5db;
}

.calendar__day--selected {
  background-color: #fbf1f1;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.calendar .calendar__day.calendar__day--today {
  background-color: var(--color-primary);
  color: #ffffff;
}

.calendar__notice {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
  color: #6b7280;
  background-color: #f1f2f6;
  padding: 0 1.5rem;
  border-radius: 0.75rem;
}

.calendar__notice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

/* 日历通知轮播样式 */
.calendarNoticeSwiper {
  width: 100%;
  height: 40px;
  overflow: hidden;
}

.calendarNoticeSwiper .swiper-slide {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendar__notice-icon {
  width: 1.25rem;
  height: 1.375rem;
  margin-right: 0.75rem;
}

.calendar__notice-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.calendar__notice-arrow {
  width: 2.125rem;
  height: 1.375rem;
  margin-left: auto;
  cursor: pointer;
}

/* 资产业务 */
.services {
  padding: 4rem 0;
  background-color: #ffffff;
}

.services__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.services__image {
  width: 100%;
  height: 25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.services__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #1e40af, #3b82f6);
  position: relative;
}

.services__info {
  width: 100%;
}

.services__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.services__description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.services__actions {
  display: flex;
  flex-wrap: gap;
  gap: 1rem;
}

/* 公司简介 */
.about {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
  color: #ffffff;
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.about__info {
  width: 100%;
}

.about__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about__description {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.about__image {
  width: 100%;
  height: 25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #1e3a8a, #3b82f6);
  position: relative;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.stats__item {
  text-align: center;
}

.stats__number {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stats__label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* 页脚 */
/* .footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 4rem 0 2rem;
} */

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__column--brand {
  grid-column: 1 / -1;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__logo {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer__brand-name {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__description {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer__social-link:hover {
  background-color: var(--color-primary);
}

.footer__title {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer__list {
  list-style: none;
}

.footer__link {
  color: #d1d5db;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__contact {
  border-top: 1px solid #1f2937;
  padding: 2rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

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

.footer__contact-item {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer__qr-codes {
  display: flex;
  gap: 1.5rem;
}

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

.footer__qr-placeholder {
  width: 5rem;
  height: 5rem;
  background-color: #1f2937;
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.footer__qr-text {
  font-size: 0.75rem;
}

.footer__copyright {
  border-top: 1px solid #1f2937;
  padding: 1.5rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer__copyright p {
  margin-bottom: 0.5rem;
}

@media (max-width: 450px) {
  .banner .container {
    padding-left: 2rem;
  }
}

/* 媒体查询 - 平板设备 */
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__column--brand {
    grid-column: 1 / 2;
  }

  .footer__contact {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

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

/* 媒体查询 - 桌面设备 */
@media (min-width: 1024px) {
  .news__content {
    flex-direction: row;
  }

  .news__list-container {
    width: 66.666%;
  }

  .calendar {
    width: 33.333%;
  }

  .services__content {
    flex-direction: row;
  }

  .services__image {
    width: 50%;
  }

  .services__info {
    width: 50%;
  }

  .about__content {
    flex-direction: row;
  }

  .about__info {
    width: 50%;
  }

  .about__image {
    width: 50%;
  }

  .footer__content {
    grid-template-columns: repeat(5, 1fr);
  }

  /* 通知横幅文本 */
  .notification__text {
    font-size: 1rem;
    font-size: max(1rem, 16px);
  }

  /* 消息标题 */
  .news__title {
    font-size: 1.25rem;
    font-size: max(1.25rem, 18px);
  }

  /* 消息筛选器 */
  .news__filters {
    font-size: 0.875rem;
    font-size: max(0.875rem, 16px);
  }

  /* 新闻项目 */
  .news__item {
    font-size: 1rem;
    font-size: max(1rem, 14px);
  }

  /* 新闻日期 */
  .news__date {
    font-size: 1rem;
    font-size: max(1rem, 14px);
  }

  /* 更多新闻链接 */
  .news__more-link {
    font-size: 0.875rem;
    font-size: max(0.875rem, 14px);
  }

  /* 日历标题 */
  .calendar__title {
    font-size: 1.25rem;
    font-size: max(1.25rem, 18px);
  }

  /* 日历月份名称 */
  .calendar__month-name {
    font-size: 1.25rem;
    font-size: max(1.25rem, 18px);
  }

  /* 日历年份 */
  .calendar__year {
    font-size: 0.75rem;
    font-size: max(0.75rem, 14px);
  }

  /* 日历网格 */
  .calendar__grid {
    font-size: 0.875rem;
    font-size: max(0.875rem, 14px);
  }

  /* 日历日期 */
  .calendar__day {
    font-size: 1rem;
    font-size: max(1rem, 16px);
  }

  /* 日历通知 */
  .calendar__notice {
    font-size: 0.875rem;
    font-size: max(0.875rem, 14px);
  }
}

/* 大型桌面设备 */
@media (min-width: 1536px) {
  .features__grid {
    padding: 0 16.25rem;
  }
}
