* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #3B3B3B;
  /* 修改颜色 */
  text-decoration: none;
  /* 去掉下划线 */
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 9999;
  display: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
}

.back-to-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body {
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 1240px;
  margin: 0 auto;
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #1e88e5;
  color: #1e88e5;
  background: transparent;
}

.btn-outline:hover {
  background: #1e88e5;
  color: #fff;
}

.btn-lg {
  padding: 14px 32px;
}

/* 头部导航 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 70px;
}

.logo {
  padding-top: 10px;
}

.logo img {
  width: 134px;
}

.nav ul {
  display: flex;
  list-style: none;
}

.nav ul li {
  margin-left: 60px;
  padding-top: 10px;
}

.nav ul li a {
  text-decoration: none;
  color: #3B3B3B;
  /* font-weight: 500; */
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 20px;
}

.nav ul li a:hover {
  color: #3F7DEE;
}

.nav ul li a.active {
  color: #3F7DEE;
}

.nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #3F7DEE, #1E88E5);
  border-radius: 2px;
}

.section-header {
  padding: 0;
}

.header-right {
  display: flex;
  gap: 12px;
}

/* 英雄区域 */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 3840px;
  right: 0;
  object-fit: cover;
  margin: auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* 服务介绍 */
.services {
  /* background: #f8f9fa; */
}

.section-header {
  text-align: center;
  padding-top: 70px;
  margin-bottom: 27px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.section-header p {
  font-size: 18px;
  line-height: 40px;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #F8F6F6;
  text-align: center;
  width: 100%;
  height: 330px;
  box-sizing: border-box;
  overflow: hidden;
}

.service-icon img {
  width: 388px;
  height: 219px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.service-card p {
  color: #666;
  padding: 25px;
  line-height: 32px;
  text-align: left;
}

/* Swiper服务卡片轮播样式 */
.services-swiper {
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.services-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.services-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
}

.services-swiper .swiper-slide .service-card {
  opacity: 1 !important;
  transform: none !important;
  width: 100%;
  max-width: 388px;
}

.services-swiper .swiper-pagination {
  text-align: center;
  margin-top: 30px;
  position: relative;
  bottom: auto;
}

.services-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
  background: #3F7DEE;
}

/* 合作伙伴 */
.partners {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-grid {
  display: grid;
  /* 两列等宽；同时让每行顶部对齐，避免因高度不同而错位 */
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
  justify-items: stretch;
  width: 100%;
  margin-top: 24px;
}

.partner-item {
  display: flex;
  /* 左对齐而不是居中，保证每行开头对齐 */
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.partner-item>div:first-child {
  flex-shrink: 0;
}

.partner-item>div:first-child img {
  display: block;
  height: 137px;
  width: 255px;
  object-fit: contain;
}

.partner-item>div:last-child {
  flex: 1;
  min-width: 0;
}



.partner-item img {
  width: 200px;
  height: 100px;

}

/* 全球网络 */
.global-network {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1976d2 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.global-network::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.global-network .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.network-content {
  flex: 1;
  max-width: 500px;
}

.network-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.network-content p {
  opacity: 0.9;
  margin-bottom: 40px;
}

.network-stats {
  display: flex;
  gap: 60px;
}

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

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.network-map {
  flex: 1;
  text-align: right;
}

.network-map img {
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
}

/* 新闻动态 */
.news {
  padding-top: 0;

}

.news-tabs {
  display: flex;
  justify-content: center;
  background: #fff;
  z-index: 999;
}

.news-tabs.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.tab {
  height: 54px;
  width: 213px;
  border: none;
  background: transparent;
  font-size: 22px;
  font-weight: 500;
  color: #010101;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 17px;
  padding-top: 2px;
  gap: 8px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  z-index: 1;
}

.tab-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.tab-icon[data-icon="yingxiao"] {
  background-image: url('./images/yingxiao.webp');
}

.tab-icon[data-icon="jishu"] {
  background-image: url('./images/jishu.webp');
}

.tab-icon[data-icon="yuqing"] {
  background-image: url('./images/yuqing.webp');
}

.tab-icon[data-icon="chanye"] {
  background-image: url('./images/chanye.webp');
}

.tab.active,
.tab:hover {
  color: #3F7DEE;
  background: url(./images/tab-bg.png) no-repeat;
  background-size: cover;
}

.tab.active .tab-icon[data-icon="yingxiao"],
.tab:hover .tab-icon[data-icon="yingxiao"] {
  background-image: url('./images/yingxiao-active.webp');
}

.tab.active .tab-icon[data-icon="jishu"],
.tab:hover .tab-icon[data-icon="jishu"] {
  background-image: url('./images/jishu-active.webp');
}

.tab.active .tab-icon[data-icon="yuqing"],
.tab:hover .tab-icon[data-icon="yuqing"] {
  background-image: url('./images/yuqing-active.webp');
}

.tab.active .tab-icon[data-icon="chanye"],
.tab:hover .tab-icon[data-icon="chanye"] {
  background-image: url('./images/chanye-active.webp');
}

.news-grid {
  display: none;
  flex-direction: column;
  gap: 30px;
  /* padding: 30px; */
  background-color: #F8F6F6;
  width: 100%;
  margin: 0 auto;
}

.news-grid.active {
  display: flex;
}

.news-grid p {
  width: 1240px;
  display: block;
  font-size: 18px;
  margin: 15px auto 0;
  line-height: 36px;
  font-weight: bold;
}

.news-card {
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card>div {
  display: flex;
  width: 1240px;
  margin-bottom: 30px;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 24px;
}

.news-category {
  display: inline-block;
  padding: 4px 12px;
  background: #e3f2fd;
  color: #1e88e5;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.news-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.news-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-date {
  font-size: 12px;
  color: #999;
}

.news-more {
  text-align: center;
  margin-top: 40px;
}

.column-head {
  position: relative;
  width: 420px;
  margin-right: 66px;
}

/* 栏目卡片网格（根据图片方向动态切换） */
/* ⚠️ 默认可见：2 列横图布局兜底，JS 未执行时也能看到 */
.column-grid {
  width: 754px;
  display: grid;
  grid-template-columns: repeat(3, 352px);
  gap: 48px;
  margin-top: 20px;
}

.column-grid>div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.column-grid li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-grid img {
  width: 352px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.column-grid li:last-child {
  color: #3B3B3B;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  padding-top: 8px;
}

/* 横图模式：2 列，图片 350x200（与默认一致，JS 检测横图后显式应用） */
.column-grid.grid-horizontal {
  grid-template-columns: repeat(3, 352px);
  height: 260px;
}

.column-grid.grid-horizontal img {
  width: 352px;
  height: 200px;
}

/* 竖图模式：3 列，图片 229x306 */
.column-grid.grid-vertical {
  grid-template-columns: repeat(3, 229px);
  gap: 37px;
}

.column-grid.grid-vertical img {
  width: 229px;
  height: 306px;
}

.column-grid.grid-vertical li:last-child {
  color: #3B3B3B;
}

.column-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.column-head>div {
  color: #3B3B3B;
  align-self: flex-end;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: absolute;
  bottom: 0;
}

.column-head>div img {
  margin-left: 10px;
  height: 10px;
}

.column-head h3 {
  text-align: center;
  font-size: 24px;
  font-weight: bolder;
}

.column-head h4 {
  font-size: 16px;
  line-height: 34px;
  font-weight: normal;
}

/* 发展历程 */
.timeline {
  padding-bottom: 50px;
}

.timeline-content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.timeline-years {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-years-viewport {
  /* 只显示3条的固定高度容器 */
  overflow: hidden;
  height: 380px;
  width: 100%;
  position: relative;
}

.timeline-years-list {
  transition: transform 0.5s ease;
  will-change: transform;
}

.timeline-arrow {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 0;
}

.timeline-arrow:hover {
  transform: scale(1.1);
}

.timeline-item {
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
  /* 每条固定100px高度，3条即300px */
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.timeline-year {
  display: block;
  font-size: 127px;
  font-weight: bolder;
  color: #F2F2F2;
  transition: color 0.3s ease;
  line-height: 1;
}

.timeline-item.active .timeline-year {
  color: #3F7DEE;
}

.timeline-context {
  flex: 1;
  position: relative;
  min-height: 300px;
}

.timeline-panel {
  /* 默认完全隐藏，不占位 */
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 20px;
}

.timeline-panel.active {
  /* active时才显示 */
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.timeline-panel h3 {
  font-size: 24px;
  font-weight: 600;
  color: #3F7DEE;
  margin-bottom: 16px;
}

.timeline-panel p {
  font-size: 18px;
  line-height: 40px;
  font-weight: bold;
  color: #666;
  word-break: break-all;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 358px;
}

.timeline-panel label {
  display: block;
  padding-bottom: 25px;
  padding-top: 15px;
  border-bottom: 1px solid #efefef;
}

.timeline-panel label:last-child {
  border-bottom: 0 none;
}

.timeline-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}




.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #1e88e5;
  border-radius: 50%;
  top: 24px;
  right: -8px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}



.timeline-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-info p {
  font-size: 14px;
  color: #666;
}

.home {
  background: url("./images/home_background.webp") no-repeat center center/cover;
}

/* 联系我们 */
.contact {
  padding-bottom: 210px;
  padding-top: 20px;
  background: #25282B;
  color: #fff;
}

.timeline-panel label a {
  color: #3F7DEE;
  text-decoration: underline;
}

.contact-content {
  flex: 1;
}

.contact-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-content p {
  color: #666;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 37px;

}

.contact-content p {
  color: #3B3B3B;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.info-icon {
  font-size: 24px;
  width: 30px;
}

.info-label {
  width: 50px;
  display: block;
  color: #fff;
}

.info-value {
  font-weight: 500;
}

.contact-image img {
  width: 500px;
  height: auto;
  border-radius: 8px;
}

/* 页脚 */
.footer {
  background: #1a1a1a;
  padding: 60px 0 30px;
  color: #999;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-section {
  width: 100%;
}

.footer-section-left {
  padding-right: 20px;
  border-right: 2px solid #F2F2F2;
}

.footer-section:nth-child(2) {
  padding-left: 20px;
}

.info-row {
  display: flex;
  gap: 40px;
}

.info-row .info-item {
  flex: 1;
}

.info-row {
  display: flex;
  gap: 40px;
}

.info-row .info-item {
  flex: 1;
}

.info-row {
  display: flex;
  gap: 40px;
}

.info-row .info-item {
  flex: 1;
}

.footer-section-left {
  padding-right: 20px;
  border-right: 2px solid #F2F2F2;
}

.footer-section:nth-child(2) {
  padding-left: 20px;
}

.footer-section p {
  font-size: 10px;
}

.info-icon img {
  display: block;
  height: 20px;
  margin-right: 4px;
}

.qr-code img {
  width: 84px;
  height: 84px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.qr-code {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
}


.qr-code p {
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
}

/* 战略愿景 */
.hope-header {
  text-align: center;
  margin-bottom: 60px;
}

.hope-header img {
  max-width: 300px;
  height: auto;
}

.hope-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #fff;
  padding: 30px;
}

.hope-image {
  flex-shrink: 0;
}

.hope-text {
  flex: 1;
}

.hope-text p {
  font-size: 18px;
  line-height: 40px;
  color: #333;
  text-align: justify;
  margin: 0;
}

/* 战略愿景 */
.hope {
  padding: 50px 0;
  background: #f8f9fa;
}

.hope-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #fff;
  padding: 30px;
}

.hope-image {
  flex-shrink: 0;
}

.hope-image img {
  width: 500px;
  margin-top: -50px;
}

.hope-text {
  flex: 1;
}

.hope-text p {
  font-size: 18px;
  line-height: 40px;
  color: #333;
  text-align: justify;
  margin: 0;
}

.ck-content .image img {
  max-width: 100% !important;
}

/* 响应式设计 */
@media (max-width: 1200px) {

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

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

  .global-network .container {
    flex-direction: column;
    text-align: center;
  }

  .network-map {
    margin-top: 40px;
    text-align: center;
  }

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

.section-flex {
  flex-direction: row;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;

}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .services-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;

  }

  .contact-image {
    margin-top: 40px;
  }

  .contact-image img {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* 文章详情弹窗 */
.article-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.article-modal-box {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  background: #fff;
  border-radius: 8px;
  padding: 30px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  box-sizing: border-box;
}

.article-modal-box img {
    margin: 0 auto;
    display: block;
}

/* 整体滚动条宽度 */
.article-modal-box::-webkit-scrollbar {
  width: 8px;    /* 垂直滚动条宽度 */
  height: 8px;   /* 水平滚动条高度 */
}

/* 滚动条轨道（背景） */
.article-modal-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

/* 滚动滑块 */
.article-modal-box::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

/* 滑块hover加深 */
.article-modal-box::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 滚动条角落（横竖交汇处） */
.article-modal-box::-webkit-scrollbar-corner {
  background: transparent;
}

.article-modal-content .media {
  width: 485px;
  margin: 0.9em auto !important;
}

.article-modal-close {
  position: sticky;
  display: flex;
  justify-self: flex-end;
  padding-left: 10px;
  padding-top: 5px;
  top: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.article-modal-close:hover {
  background: #f2f2f2;
  color: #333;
}

.article-modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 33px;
  padding-right: 40px;
  margin-top: -30px;
  line-height: 1.4;
  display: flex;
  justify-self: flex-start;
}

.article-modal-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.article-modal-images img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  background: #E9F3FE;
  padding: 20px;
}

.article-modal-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  word-break: break-all;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-modal-content img {
  max-width: 820px;
  height: auto;
  display: block;
  margin: 12px auto;
}

@media (max-width: 768px) {
  .article-modal-box {
    padding: 20px;
  }

  .article-modal-title {
    font-size: 20px;
  }
}