/* @font-face {
  font-family: "iconfont"; 
  src: url('iconfont.woff2?t=1749108008297') format('woff2'),
       url('iconfont.woff?t=1749108008297') format('woff'),
       url('iconfont.ttf?t=1749108008297') format('truetype');
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 32px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} */
body {
    margin: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background: #3b3b4d;
    color: #fff;
  }
  
  .navbar {
    width: 100%;
    height: 60px;
    background: rgb(118, 122, 125);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .navbar-logo {
    margin-left: 40px;
    font-size: 22px;
    font-weight: bold;
    color: #00eaff;
    letter-spacing: 2px;
  }
  
  .logo-text {
    color: #2cc9d7;
  }
  
  .navbar-menu {
    display: flex;
    gap: 40px;
  }

  .navbar-menu .dropdown {
    position: relative;
  }
  
  .navbar-menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    min-width: 125px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 4px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    padding-top: 8px;
    overflow: hidden;
    border: 1px solid rgba(225, 235, 245, 0.8);
    animation: fadeIn 0.2s ease-out;
  }
  
  .navbar-menu .dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
  }
  
  .navbar-menu .dropdown-content a {
    color: #2196f3;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 15px;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(225, 235, 245, 0.5);
  }
  
  .navbar-menu .dropdown-content a:last-child {
    border-bottom: none;
  }
  
  .navbar-menu .dropdown-content a:hover {
    background-color: #f1f9ff;
  }
  
  .navbar-menu .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .navbar-menu ul {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
  }
  
  .navbar-menu li {
    position: relative;
  }
  
  .navbar-menu a {
    display: inline-block;
    padding: 10px 0;
    color: #eaf6ff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(.4,0,.2,1);
  }
  
  .navbar-menu a::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #00e0ff 0%, #005bff 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    position: absolute;
    left: 0;
    bottom: 0;
  }
  
  .navbar-menu li:hover a {
    color: #00bfff;
  }
  
  .navbar-menu li:hover a::after {
    width: 100%;
  }
  
  .navbar-search {
    display: flex;
    align-items: center;
    background: none;
    margin-right: 24px; 
  }
  
  .navbar-search input[type="text"] {
    height: 36px;
    width: 180px;
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 6px 0 0 6px;
    background: #fff;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  /* .navbar-search button {
    padding: 5px 10px;
    border: none;
    background: #00eaff;
    color: #fff;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    font-size: 16px;
  } */
  .search-btn {
    height: 36px;
    width: 44px;
    border: none;
    background: #00d6ff;
    border-radius: 0 6px 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
  }
  .search-btn:hover {
    background: linear-gradient(90deg, #38b6ff 60%, #00d6ff 100%);
    box-shadow: 0 2px 8px rgba(56,182,255,0.10);

  }
  .search-btn svg {
    display: block;
  }
  
/* 让轮播图填充整个主体内容 */
.main-bg, .carousel {
    /* width: 100vw; */
    height: 100vh;
    min-height: 600px;
    position: relative;
    /* overflow: hidden; */
  }
  .carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .carousel-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0; top: 0;
    opacity: 0;
    transition: opacity 0.5s;

  }
  
  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }
  .custom-slide-bg {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .slide-top-bg {
    flex: 0 0 120px;
   /* height: 120px; */
   background-image: url(./static/bg-top.png),linear-gradient(to bottom, #87CEFA, #00008B);
   background-size: 100% 100%;
   background-repeat: no-repeat;
   background-position: center;
   background-blend-mode: overlay;
   /* background: 
    linear-gradient(to top, 
    #001a7a 0%, 
    #0033cc 100%);
  */
    width: 100%;
  }
  
  .slide-bottom-bg {
    flex: 1;
    background: linear-gradient(90deg, 
      rgba(255,100,255,0.8) 0%, 
      rgba(210,85,225,0.8) 15%,
      rgba(130,105,235,0.8) 35%,
      rgba(65,145,255,0.8) 55%,
      rgba(20,185,220,0.8) 75%,
      rgba(0,220,210,0.8) 95%);
    width: 100%;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* filter: brightness(0.6); */
  }
  .carousel-slide .slide3-image {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    /* height: auto; */
  }

  /* 左右按钮样式 */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.3);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    outline: none;
  }
  .carousel-btn:hover {
    background: rgba(0,0,0,0.6);
  }
  .carousel-prev { left: 32px; }
  .carousel-next { right: 32px; }
  .carousel-btn svg {
    display: block;
  }
  
  .carousel-caption {
    position: absolute;
    left: 0; right: 0; top: 35%; 
    text-align: center;
    color: #fff;
    z-index: 3;
  }
  
  .carousel-caption h1 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 2px;
  }
  
  .carousel-caption p {
    font-size: 20px;
    color: #b3e5ff;
    margin-bottom: 0;
  }
  
  .carousel-controls {
    position: absolute;
    left: 0; right: 0; bottom: 18px;
    text-align: center;
    z-index: 4;
  }
  
  .carousel-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
  }
  
  .carousel-dot.active {
    opacity: 1;
    background: #00eaff;
  }

  .carousel {
    position: relative;
    /* 其他原有样式 */
  }

 
  .mobile-menu{
    display: none;
  }
  
  .stats-overlay {
    position: absolute;
    left: 50%;
    bottom: 40px; /* 距离轮播底部的距离，可根据实际调整 */
    transform: translateX(-50%);
    /* width: 90%; */
    z-index: 10;
    display: flex;
    justify-content: center;
    /* pointer-events: none; 避免遮挡轮播按钮 */
  }
  
  .stats-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 20px;
  }
  
  .stats-item {
    background: linear-gradient(135deg, #f3faff 80%, #e0f0fa 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 0 #e0f0fa inset;
    border: 1.5px solid #e0f0fa;
    padding: 24px 28px 18px 22px;
    min-width: 210px;
    max-width: 280px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
  }
  /* 点击效果 */
.stats-item:active {
  transform: scale(0.98);
  background-color: rgba(0, 224, 255, 0.05) !important;
}

  /* 创建覆盖整个卡片的链接 */
  .stats-item .stats-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  /* .stats-item:hover {
    box-shadow: 0 12px 36px rgba(0,188,212,0.18), 0 2px 0 #b2eaff inset;
    transform: translateY(-12px) scale(1.045);
    border: 1.5px solid #00bcd4;
    z-index: 2;
  } */
  .stats-content {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .stats-icon-bg {
    width: 56px;
    height: 56px;
    background: #eaf4fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,188,212,0.08);
  }
  .stats-icon svg {
    width: 38px;
    height: 38px;
    display: block;
  }
  .stats-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .stats-num {
    color: #222;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
  }
  .stats-num:hover {
    color: #00bcd4;
    text-decoration: underline;
  }
  .stats-num sup {
    font-size: 1.1rem;
    color: #00bcd4;
    font-weight: normal;
    margin-left: 2px;
  }
  .stats-label {
    font-size: 1.08rem;
    color: #333;
    margin-top: 6px;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: left;
  }
  
  @media (max-width: 900px) {
    .stats-list {
      /* flex-wrap: wrap; */
      gap: 24px;
    }
    .stats-item {
      min-width: 120px;
      padding: 14px 10px 10px 10px;
    }
  }


  /* 业务板块样式 */
.services {
  padding: 80px 0;
  background-color: #f6f8fb; 
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 60px;
  font-weight: normal;
  position: relative;
  display: inline-block;
}

.service-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  /* flex-wrap: wrap; */
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  margin-bottom: 30px;
}

.service-icon {
  /* margin-bottom: 20px; */
  transition: transform 0.3s;
}

.service-item:hover .service-icon {
  transform: translateY(-10px);
}

.service-item h3 {
  font-size: 18px;
  color: #333;
  font-weight: normal;
  margin-top: 10px;
}

/* 响应式调整 */
@media (min-width: 1680px) {
  .carousel-slide .slide3-image {
    width: 100%;
    height: 700px;
    /* height: auto; */
  }
}
@media (max-width: 992px) {
  .service-items {
    gap: 40px;
  }
  
  .service-item {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .service-items {
    gap: 30px;
  }
  
  .service-item {
    width: 45%;
  }

   /* 在电脑端隐藏main-bg内的mobile-only类 */
   .mobile-only {
    display: none !important;
  }

   
}

@media (max-width: 480px) {
  .service-item {
    width: 100%;
  }
}


  .news-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 40px 0;
    background: transparent;
    text-align: center;
  }

  .news-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: normal;
    letter-spacing: 2px;
  }

  .news-list {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    /* margin-bottom: 32px; */
  }

  .news-item {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 370px; /* 可选，防止超宽 */
  }

  .news-img {
    width: 100%;
    aspect-ratio: 16/9; /* 保持图片比例，现代浏览器支持 */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #222;
    /* display: flex;
    align-items: center;
    justify-content: center; */
  }

  .news-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s cubic-bezier(.23,1.02,.64,.97);
  }

  .news-img img:hover {
    transform: scale(1.18);
  }

  .news-info {
    padding: 12px 16px 8px 16px;
    text-align: left;
    width: 100%;
  }

  .news-desc {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-date {
    color: #b0c4de;
    font-size: 14px;
  }

  .news-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
  }

  .news-page-btn {
    background: #fff;
    color: #333;
    border: none;
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

  .news-page-btn.active,
  .news-page-btn:hover:not(:disabled) {
    background: #00e0ff;
    color: #fff;
  }

  .news-page-btn:disabled {
    background: #eee;
    color: #aaa;
    cursor: not-allowed;
  }

  
  .side-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
  }
  .side-btn-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .side-btn {
    position: relative;
    margin-bottom: 2px;
  }
  .side-btn button {
    width: 56px;
    height: 56px;
    background: #009fd9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    cursor: pointer;
    outline: none;
  }
  .side-btn button:hover,
  .side-btn:hover button {
    background: rgba(122, 189, 232,1);
    
  }
  .side-btn .side-tooltip {
    display: none;
    position: absolute;
    right: 56px;
    top: 0;
    min-width: 160px;
    max-width: 220px;
    background: #e6f7ff;
    color: #222;
    padding: 12px 10px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    white-space: pre-line;
    font-size: 15px;
    z-index: 10;
    font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
    text-align: center;       /* 文字居中 */
  }

  .side-btn:hover .side-tooltip {
    display: block;
    animation: fadeIn 0.2s;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px);}
    to { opacity: 1; transform: translateX(0);}
  }
  .side-btn.top .side-tooltip {
    display: none !important; /* 顶部按钮无悬浮卡片 */
  }

  .site-footer {
    background: grey;
    color: #333;
    padding: 40px 0 28px 0;
    font-size: 16px;
  }
  
  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 0 32px;
  }
  
  .footer-left {
    flex: none;
    min-width: 600px;
    text-align: center;           /* 让左侧内容居中 */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav {
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;      /* 导航项居中 */
  }
  
  .footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    line-height: 2.2;
  }
  .footer-nav a:hover {
    color: #00e0ff;
  }
  
  .footer-info {
    margin-bottom: 10px;
    font-size: 15px;
    color: #eee;
    word-break: break-all;
    line-height: 2;  
    text-align: center;           /* 信息行居中 */
  }
  
  .footer-info a {
    color: #b0c4de;
    margin-right: 16px;
    font-size: 14px;
    text-decoration: none;
  }
  .footer-info a:hover {
    color: #00e0ff;
    text-decoration: underline;
  }
  
  .footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;      /* 右侧图片居中 */
  }
  
  .footer-qrcode, .footer-wechat {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    background: #fff;
    object-fit: cover;
    border: 2px solid #eee;
  }
  

  .footer-icp {
    text-align: center;
    margin-top: 8px;
  }
  
  .footer-icp a {
    color: #b0c4de;
    font-size: 15px;
    text-decoration: none;
    margin: 0 8px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
  }
  
  .police-icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    display: inline-block;
    vertical-align: middle;
  }

  @media (max-width: 900px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .footer-left {
      min-width: 0;
    }
    .footer-right {
      margin-top: 16px;
    }
  }

.login-btn {
  background: #00eaff54;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-size: 16px;
  margin-left: 18px;
  margin-right: 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.login-btn:hover {
  background: #2196f3;
}

.modal-mask {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(16,28,43,0.82);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: modalMaskFadeIn 0.3s;
}
.modal-dialog {
  background: rgba(25,37,58,0.98);
  border-radius: 26px;
  padding: 48px 38px 36px 38px;
  min-width: 360px;
  box-shadow: 0 12px 48px 0 rgba(0,234,255,0.13), 0 0 0 2px #00eaff44, 0 1.5px 0 #00eaff33 inset;
  border: 1.5px solid #00eaff;
  position: relative;
  text-align: center;
  animation: modalDialogPop 0.35s cubic-bezier(.23,1.02,.64,.97);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00eaff 30%, #38b6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  border: none;
  box-shadow: none;
  display: block;
}
.modal-title::before { display: none; }
.modal-form input, .modal-submit {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: block;
}

.modal-form input {
  padding: 12px 14px;
  margin-bottom: 18px;
}

.modal-submit {
  padding: 12px 0;
  font-size: 18px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.modal-switch {
  font-size: 16px;
  color: #b0c4de;
  margin-bottom: 6px;
}
.modal-switch a {
  color: #00eaff;
  text-decoration: underline;
  cursor: pointer;
  font-weight: bold;
}
.modal-close {
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 28px;
  color: #b0c4de;
  cursor: pointer;
  transition: color 0.2s, box-shadow 0.2s;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 8px;
}
.modal-close:hover {
  color: #00eaff;
  background: #223a5a;
  box-shadow: 0 0 0 2px #00eaff44;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* 添加这个新的选择器，创建一个不可见的区域连接导航项和下拉框 */
.navbar-menu .dropdown::after {
  content: '';
  position: absolute;
  height: 10px;
  width: 100%;
  top: 100%;
  left: 0;
  display: block;
}

.navbar-menu .dropdown:hover .dropdown-content,
.navbar-menu .dropdown-content:hover {
  display: block;
}

 /* 电脑端隐藏手机端页脚 */
 .mobile-footer {
  display: none !important;
}

/* iPad和其他中小尺寸平板设备适配 (768px-850px) */
@media screen and (min-width: 768px) and (max-width: 850px) {
  /* 隐藏搜索框 */
  .navbar-search {
    display: none !important;
  }
  
  /* 导航栏布局优化 */
  .navbar {
    padding: 0 15px;
    justify-content: space-between;
  }
  
  /* 增加logo区域宽度 */
  .navbar-logo {
    flex: 1;
    text-align: left;
    margin-left: 20px;
  }
  
  .logo-text {
    font-size: 15px;
    white-space: nowrap;
  }
  
  /* 导航菜单优化 */
  .navbar-menu {
    flex: 2;
    display: flex;
    justify-content: flex-end;
  }
  
  .navbar-menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0;
    gap:0;
  }
  
  .navbar-menu ul li {
    padding: 0;
    margin: 0;
  }
  
  .navbar-menu ul li a {
    font-size: 14px;
    padding: 0 10px;
    white-space: nowrap;
  }
  
  /* 登录按钮样式优化 */
  .login-btn {
    padding: 5px 17px;
    font-size: 14px;
    margin-left: 10px;
  }
  
  /* 下拉菜单位置调整 */
  .dropdown-content {
    min-width: 120px;
    right: 0;
    left: auto;
  }

  .stats-overlay{
    width: 90%;
  }
  .stats-content{
    gap:0;
  }
  .stats-num{
    font-size: 16px;
  }
  .carousel-slide .slide3-image{
    height: 100%;
  }
}

/* 特别窄的平板设备 (768px-800px) */
@media screen and (min-width: 768px) and (max-width: 800px) {
  /* 进一步简化导航 */
  .navbar-menu ul li a {
    padding: 0 6px;
    font-size: 13px;
  }
  
  /* 登录按钮进一步缩小 */
  .login-btn {
    padding: 4px 10px;
    font-size: 13px;
  }
}
@media screen and (min-width:960px) and (max-width:1024px) {
  .navbar-search{
    display: none;
  }
  .login-btn{
    padding:5px 10px;
  }
  .carousel-slide .slide3-image{
    height: 100%;
  }
  .stats-item{
    min-width: 168px;
  }
  .stats-content{
    gap: 0;
  }
  
}

