.common-hero .banner-title {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  letter-spacing: 4px;
  user-select: none;
  -webkit-user-select: none;
}

.common-hero .banner-title.visible {
  top: 32%;
}

.common-hero .banner-title h3 {
  font-size: 36px;
  font-weight: bold;
  color: rgba(196, 5, 10, 1);
}

.common-hero .banner-title p {
  color: #333;
  font-size: 18px;
}

.up {
  transform: translateY(-180px);
  position: relative;
  z-index: 2;
}

/* service-access 区块 */
.service-access__content {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0px 0px 20px #3F808080;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 28px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  /* aspect-ratio: 1400 / 400; */
}

.service-access__left {
  flex: 1;
}

.service-access__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  position: relative;
  align-items: stretch;
  height: 100%;
}

/* 列之间的垂直线 */
.service-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: url('../../images/lafw_line1.png') no-repeat center;
  background-size: contain;
}

/* 最后一列不需要垂直线 */
.service-item:nth-child(3n)::after {
  display: none;
}

/* 行之间的水平线 */
.service-access__grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 1px;
  background: url('../../images/lafw_line2.png') no-repeat center;
  background-size: contain;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.service-item:hover {
  transform: translateY(-4px);
}

.service-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service-item span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

.service-access__right {
  height: 100%;
  width: 48.5%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-access__header {
  text-align: center;
  margin-bottom: 12px;
}

.service-access__title-img {
  height: 48px;
  object-fit: contain;
}

.service-access__swiper {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.product-swiper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  -webkit-aspect-ratio: 610 / 215;
  aspect-ratio: 610 / 215;
  padding-bottom: 24px;

}

.product-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.product-swiper .swiper-pagination {
  position: relative;
  bottom: 4px !important;
  z-index: 8;
}

.product-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
  opacity: 1;
  margin: 0 3px;
  transition: all 0.3s ease;
}

.product-swiper .swiper-pagination-bullet-active {
  width: 18px;
  height: 6px;
  background: #c9151e;
  border-radius: 3px;
}

.service-access__right .decr {
  font-size: 12px;
  color: #999999;
}

.service-access__right .decr a {
  color: #c9151e;
  font-weight: bold;
}

.service-access__right .decr span {
  color: #c9151e;
  font-weight: bold;
}






/* 两岸特色专区对象 */
.la-service-object {
  position: relative;
  padding: 60px 0;
  /* overflow: hidden; */
}

.la-service-object__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.la-service-object__bg img {
  width: 100%;
}

.la-service-object__content {
  text-align: left;
}

.la-service-object__header {
  margin-bottom: 12px;
  max-width: 68%;
}

.la-service-object__title {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 12px;
  display: inline-block;
}

.la-service-object__title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 4px;
  width: 100px;
  background-color: #c9151e;
}

.la-service-object__title span {
  color: #c9151e;
}

.la-service-object__desc {
  font-size: 16px;
  color: #333;
  line-height: 40px;
  max-width: 820px;
}

.la-service-object__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 68%;
}

.la-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.la-service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.la-service-card__info {
  flex: 1;
}

.la-service-card__title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.la-service-card__toggle {
  transition: transform 0.3s ease;
}

.la-service-card.active .la-service-card__title {
  color: #c9151e;
}

.la-service-card.active .la-service-card__toggle {
  transform: rotate(180deg);
}

.la-service-card__detail {
  display: none;
  padding-top: 16px;
}

.la-service-card.active .la-service-card__detail {
  display: block;
}

.la-service-card__detail p {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
  /* text-justify: inter-ideograph; */
  text-wrap: pretty;
  word-break: break-all;
}

/* 两岸新闻 */
.la-news {
  padding: 40px 0 0;
}

.la-news__content {
  /* 无卡片背景 */
}

.la-news__header {
  margin-bottom: 20px;
}

.la-news__title {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  padding-bottom: 12px;
}

.la-news__title span {
  color: #c9151e;
}

.la-news__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 60px;
  background-color: #c9151e;
  border-radius: 2px;
}

.la-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 16px;
}

.la-news__card {
  display: flex;
  flex-direction: column;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  border-left: 6px solid transparent;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.la-news__card:hover {
  background: rgba(254, 242, 242, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.la-news__card-image {
  width: 100%;
  height: 225px;
  overflow: hidden;
}

.la-news__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.la-news__card:hover .la-news__card-image img {
  transform: scale(1.05);
}

.la-news__card-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.la-news__card-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.la-news__card-summary {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.la-news__card:hover .la-news__card-title {
  color: #c9151e;
}

.la-news__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.la-news__card-date {
  font-size: 12px;
  color: #999;
}

.la-news__card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: #9ca3af;
  transition: all 0.2s ease;
}

.la-news__card:hover .la-news__card-arrow {
  background: #c9151e;
  border-color: #c9151e;
  color: white;
  transform: translateX(4px);
}

/* 两岸新闻 响应式 */
@media (max-width: 991px) {
  .la-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .la-news__title {
    font-size: 22px;
    padding-bottom: 10px;
  }

  .la-news__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .la-news__card-image {
    height: 180px;
  }

  .la-news__card-title {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .la-news__title {
    font-size: 20px;
    padding-bottom: 8px;
  }
}

/* la-service-object 响应式 */
@media (max-width: 991px) {

  .la-service-object__title {
    font-size: 22px;
  }

  .la-service-object__desc {
    font-size: 14px;
  }

  .la-service-object__cards {
    gap: 16px;
  }

  .la-service-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {

  .la-service-object__title {
    font-size: 20px;
  }
}

/* service-access 响应式 */
@media (max-width: 1200px) {
  .service-access {
    padding: 30px;
  }

  .service-access__grid {
    gap: 16px;
  }

  .service-item {
    padding: 16px 12px;
  }

  .service-item img {
    width: 40px;
    height: 40px;
  }

  .service-access__right {
    width: 340px;
  }
}

@media (max-width: 991px) {
  .common-hero .banner-title.visible {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .up {
    transform: translateY(0);
  }

  .la-service-object {
    padding: 30px 16px;
  }

  .la-service-object__cards {
    max-width: 100%;
  }

  .service-access__content {
    flex-direction: column;
  }

  .service-access__right {
    width: 100%;
  }

  .product-swiper .swiper-slide img {
    height: 240px;
  }
}

@media (max-width: 991px) {
  .service {
    padding: 20px;
  }

  .service-access__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .service-item {
    padding: 16px 0;
    gap: 8px;
  }

  .service-item img {
    width: 36px;
    height: 36px;
  }

  .service-access__title-img {
    height: 36px;
  }

  .product-swiper .swiper-slide img {
    height: 240px;
  }

  .service-item span {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .service-access {
    padding: 16px;
  }

  .service-access__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-swiper .swiper-slide img {
    height: 160px;
  }
}


/* Hero 移动端适配 */
@media (max-width: 991px) {

  .common-hero::after {
    height: 60px;
  }

  .common-hero .banner-title {
    top: 40%;
  }

  .common-hero .banner-title h3 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .common-hero .banner-title p {
    font-size: 14px;
    margin-top: 8px;
  }

}

/* la-service-object 移动端适配 */
@media (max-width: 991px) {
  .la-service-object__header {
    max-width: 100%;
  }

  .la-service-object__desc {
    font-size: 14px;
    line-height: 28px;
  }
}

@media (max-width: 576px) {
  .la-service-object__title {
    font-size: 20px;
    padding-bottom: 8px;
  }

  .la-service-object__desc {
    font-size: 13px;
    line-height: 24px;
  }
}

/* service-access 移动端适配 */
@media (max-width: 991px) {

  .service-access__grid::before,
  .service-access__grid::after {
    display: none;
  }

  .service-item::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .service-access__content {
    padding: 16px;
    gap: 20px;
  }

  .service-access__left {
    width: 100%;
  }

  .service-access__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .service-item img {
    width: 32px;
    height: 32px;
  }

  .service-access__header {
    margin-bottom: 8px;
  }

  .service-access__title-img {
    height: 32px;
  }

  .product-swiper {
    aspect-ratio: auto;
    height: 180px;
  }

  .product-swiper .swiper-slide img {
    height: 154px;
  }

  .service-access__right .decr {
    font-size: 11px;
  }
}