:root {
  --blue: #2e6bbd;
  --blue-deep: #175497;
  --blue-bright: #5493f2;
  --text: #333;
  --muted: #999;
  --line: #e5e7eb;
  --orange: #f15b2a;
  --red: #ef2b2d;
  --page: 1200px;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}
body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  font-size: 16px;
}
.floating-window {
  position: fixed;
  top: 80px;
  left: 80px;
  z-index: 9999;
  width: 300px;
  max-width: 300px;
  overflow: hidden;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(15, 42, 76, 0.35);
}
.floating-window.is-hidden {
  display: none;
}
.floating-close {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  background: rgba(23, 84, 151, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  cursor: pointer;
}
.floating-close:hover,
.floating-close:focus-visible {
  background: #f15b2a;
  border-color: #fff;
}
.floating-body {
  display: flex;
  min-height: 0;
  flex-direction: column;
}
.floating-body a,
.floating-body img {
  display: block;
  max-width: 100%;
}
.floating-body img {
  height: auto;
  border: 0;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
li {
  list-style: none outside none;
  overflow: hidden;
}
.page-width {
  width: min(var(--page), calc(100% - 40px));
  margin-inline: auto;
}
/*åˆ†é¡µ--start*/
.pager {
  text-align: center;
  margin-top: 20px;
}
.pager a {
  display: inline-block;
  background-color: #fff;
  height: 32px;
  margin-left: 3px;
  margin-right: 3px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 31px;
  border: 1px solid #ccc;
}
.pager a.on,
.pager a:hover {
  background-color: #62adf1;
  color: #fff;
  text-decoration: none;
}
/*åˆ†é¡µ--end*/
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -60px;
  padding: 10px 16px;
  color: #fff;
  background: #111;
  border-radius: 0 0 6px 6px;
}
.skip-link:focus {
  top: 0;
}
.site-header {
  position: relative;
  height: 280px;
  overflow: hidden;
  color: #fff;
  background: #348bcc url("image7_80_2.jpg") center right / 1920px 280px no-repeat;
}
.header-art {
  position: absolute;
  left: 46.5931%;
  top: 59.4119px;
  width: 28.1229%;
  height: 1041.22px;
  background: url("image8_80_2.png") 0 0% 100% no-repeat;
  transform: rotate(121.718deg);
  transform-origin: 0 0;
  pointer-events: none;
}
.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-tools {
  position: absolute;
  top: 18px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #445065;
  font-size: 15px;
}
.search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #3786d1;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.search-trigger:hover {
  transform: translateY(-1px);
  background: #216fb8;
  box-shadow: 0 7px 18px rgba(15, 78, 143, 0.25);
}
.search-trigger svg,
.inline-search svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.inline-search {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  min-height: 44px;
  padding: 3px 8px 3px 15px;
  border: 1px solid rgba(46, 121, 197, 0.55);
  border-radius: 12px;
  color: #2e79c5;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 26px rgba(17, 71, 122, 0.22);
  transform: translateY(-50%);
  animation: search-in 0.2s ease-out;
}
.inline-search[hidden] {
  display: none;
}
.inline-search:focus-within {
  border-color: #2e79c5;
  box-shadow: 0 10px 28px rgba(17, 71, 122, 0.28), 0 0 0 3px rgba(84, 147, 242, 0.16);
}
.inline-search input {
  width: 100%;
  min-width: 0;
  height: 36px;
  padding: 0;
  border: 0;
  outline: 0;
  color: #23415d;
  background: transparent;
}
.inline-search input::-moz-placeholder {
  color: #9aa8b6;
}
.inline-search input::placeholder {
  color: #9aa8b6;
}
.inline-search-close {
  display: inline-flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #718096;
  background: #edf4fb;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.inline-search-close:hover {
  color: #1d5f9f;
  background: #dcecfb;
  transform: rotate(90deg);
}
@keyframes search-in {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
.site-header h1 {
  position: relative;
  z-index: 1;
  /*margin-top: 0;*/
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.15;
  letter-spacing: 3px;
  color: #3277c7;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.98);
  text-shadow: 0 3px 11px rgba(25, 83, 148, 0.82), 0 0 10px #fff;
  text-align: left;
  white-space: nowrap;
}
.main-nav {
  position: relative;
  z-index: 80;
  color: #fff;
  background: var(--blue);
  border-bottom: 10px solid #2558a4;
  box-shadow: 0 4px 14px rgba(28, 80, 143, 0.14);
}
.nav-inner {
  position: relative;
}
.main-nav ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px;
  transition: background 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--blue-bright);
}
.main-nav a img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu {
  display: none;
}
.cloud-section {
  position: relative;
  padding: 0 0 24px;
  overflow: hidden;
  background: #fff;
}
.cloud-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 300px;
  background-image: linear-gradient(to bottom, transparent 0 39%, #fff 92.3% 100%), url("image0_80_2.png");
  background-position: center top, center -332px;
  background-size: 100% 100%, 1920px 1920px;
  background-repeat: no-repeat;
  pointer-events: none;
}
.cloud-section > .page-width {
  position: relative;
}
.panel {
  background: rgba(255, 255, 255, 0.97);
}
.lead-grid {
  position: relative;
  display: grid;
  grid-template-columns: 600fr 519fr;
  gap: 33px;
  height: 386px;
  padding: 24px;
  background: #fff;
}
.lead-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 838px;
  height: 15px;
  border-radius: 50%;
  background: rgba(176, 202, 224, 0.5);
  filter: blur(18.35px);
  transform: translateX(-50%);
  pointer-events: none;
}
.lead-gridx {
  overflow: hidden;
  padding: 24px;
  background: #fff;
}
.lead-gridx::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 838px;
  height: 15px;
  border-radius: 50%;
  background: rgba(176, 202, 224, 0.5);
  filter: blur(18.35px);
  transform: translateX(-50%);
  pointer-events: none;
}
.news-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: 0;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}
.compact {
  height: 52px;
  margin-bottom: 12px;
  padding: 0 16px;
  background: #f0f1f4;
}
.heading-mark {
  display: inline-block;
  width: 14px;
  height: 21px;
  flex: 0 0 14px;
  transform: translateY(0.5px);
  background: linear-gradient(#2558a4, #2558a4) 0 0px 7px no-repeat, linear-gradient(#2e6bbd, #2e6bbd) 7px 1px 7px no-repeat, linear-gradient(#3a82ef, #3a82ef) 0 2px 7px no-repeat;
}
.more-link {
  color: #2475cc;
  font-size: 15px;
  white-space: nowrap;
}
.more-link:hover {
  color: #0e4f97;
}
.more-link span {
  font-size: 22px;
  vertical-align: -1px;
}
.article-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-list li {
  position: relative;
  min-width: 0;
  padding-left: 14px;
}
.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d8dadd;
  transform: translateY(-50%);
}
.article-list a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s, transform 0.2s;
}
.article-list a:hover {
  color: #1768bb;
}
.dated li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  height: 40px;
}
.dated time {
  color: #9e9e9e;
  font-size: 15px;
}
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track,
.topic-track {
  position: relative;
  height: 100%;
}
.feature-carousel {
  z-index: 1;
  align-self: start;
  height: 338px;
}
.feature-slide,
.topic-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}
.feature-slide.active,
.topic-slide.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.feature-slide img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
}
.feature-slide-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.feature-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 50px;
  background: rgba(20, 26, 33, 0.7);
}
.feature-slide > a:not(.feature-slide-link) {
  position: absolute;
  z-index: 2;
  left: 17px;
  right: 140px;
  bottom: 0;
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 32px;
  height: 44px;
  border: 0;
  color: #fff;
  background: rgba(0, 40, 88, 0.45);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s, background 0.2s;
}
.carousel:hover .carousel-arrow,
.carousel-arrow:focus-visible {
  opacity: 1;
}
.carousel-arrow:hover {
  background: rgba(0, 40, 88, 0.78);
}
.carousel-arrow.prev {
  left: 0;
}
.carousel-arrow.next {
  right: 0;
}
.carousel-dots {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}
.carousel-dots button {
  width: 28px;
  height: 6px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}
.carousel-dots button.active {
  background: #fff;
}
.topic-carousel {
  height: 100px;
  margin-top: 24px;
}
.topic-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.topic-slide img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
}
.topic-slide span {
  padding-inline: 55px;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
}
.topic-blue {
  background: linear-gradient(100deg, #1954a5, #1a8cc6 45%, #57b6e8);
}
.topic-gold {
  background: linear-gradient(100deg, #e14a25, #f49a23 55%, #d9341f);
}
.content-band {
  padding: 24px 0;
  background: #f5f6f7;
}
.overview-card {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 32px;
  height: 375px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 82, 116, 0.08);
}
.projects-column,
.services-column {
  min-width: 0;
}
.line-heading {
  height: 46px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
.line-heading::after {
  content: "";
  position: absolute;
}
.doc-icon,
.law-icon,
.info-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
}
.doc-icon {
  position: relative;
  background: var(--orange);
  box-shadow: -6px -5px 0 rgba(241, 91, 42, 0.2);
}
.doc-icon::after {
  content: "=";
  font-weight: 700;
}
.project-list li {
  height: 39px;
  display: flex;
  align-items: center;
}
.service-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.service-card {
  position: relative;
  display: block;
  height: 68px;
  overflow: hidden;
  border: 0;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(33, 90, 142, 0.22);
}
.service-card span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 16px 0 0 17px;
  padding-bottom: 6px;
  border-bottom: 3px solid #fff;
  font-size: 18px;
  font-weight: 700;
}
.service-card img {
  position: absolute;
  right: 7px;
  bottom: -10px;
  width: 72px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-card .water-level-icon {
  position: absolute;
  right: 3px;
  top: 7px;
  bottom: auto;
  width: 69px;
  height: 67px;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-card.map {
  background: linear-gradient(135deg, #74a7e9, #4f87d2);
}
.service-card.water {
  background: linear-gradient(135deg, #72c9d7, #57b3cc);
}
.service-card.weather {
  background: linear-gradient(135deg, #e8cf8a, #dfb850);
}
.plain-heading {
  height: 42px;
}
.info-icon {
  background: var(--orange);
}
.disclosure-list li {
  height: 39.4px;
  display: flex;
  align-items: center;
}
.dual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-block: 24px 34px;
}
.list-card {
  height: 356px;
  border: 1px solid #d8d8d8;
  padding: 22px 24px 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #e0f0ff 0, #fff 50px);
}
.card-heading {
  margin: -22px -24px 14px;
  padding: 22px 24px 17px;
  background: transparent;
}
.card-heading h2 img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.law-icon {
  background: var(--red);
  box-shadow: -5px -4px 0 rgba(239, 43, 45, 0.17);
}
.bottom-list li {
  height: 44px;
}
.site-footer {
  padding: 0 0 26px;
  color: #555;
  background: #dcebf8;
  border-top: 6px solid #07528f;
}
.friend-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid #b8c9d8;
  text-align: center;
  font-size: 15px;
}
.friend-links a:hover {
  color: #1768bb;
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
  padding-top: 22px;
  color: #6a6a6a;
  text-align: center;
  font-size: 14px;
}
.footer-info p {
  margin: 0 0 8px;
}
.footer-info img {
  width: 55px;
}
.blank10 {
  height: 10px;
  clear: both;
}
.list-lpagex {
  width: 23%;
}
.colbw {
  width: 100%;
  background-color: #f6f6f6;
  text-align: center;
}
.colbw h1 {
  background: url(icon-bg.png) no-repeat;
  background-size: 100%;
  font-size: 1.2em;
  font-weight: normal;
  color: #fff;
  line-height: 60px;
}
.colbw li {
  background-color: #fff;
  font-size: 1.1em;
  line-height: 55px;
}
.colbw li:hover,
.col li.on {
  background-color: #edfbff;
  border-left: 6px solid #1870c1;
  font-weight: bold;
}
.colbw li:hover a,
.colbw li.on a {
  color: #1870c1;
}
.list-prx {
  width: 73%;
  float: right;
  margin-right: 1%;
  overflow: hidden;
}
.flaot_l {
  float: left;
}
.flaot_r {
  float: right;
}
.loc {
  padding-left: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(icon-loc.png);
  background-position: left center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #d8d8d8;
}
.loc span,
.loc a {
  margin-left: 3px;
  margin-right: 3px;
}
.back-top {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #2e6bbd;
  box-shadow: 0 8px 22px rgba(24, 90, 160, 0.3);
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s;
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  max-width: calc(100% - 32px);
  padding: 11px 18px;
  border-radius: 7px;
  color: #fff;
  background: rgba(24, 34, 48, 0.92);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s, transform 0.2s;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
/*ç»†è§ˆ--start*/
.detail-page {
  overflow: hidden;
  padding: 15px;
  background-color: #fff;
}
.info-container {
  position: relative;
  text-align: center;
}
.news-cont h2 {
  line-height: 50px;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: normal;
  color: #c93231;
  text-align: center;
}
.list-pl {
  width: 65%;
}
.list-plxw {
  width: 100%;
}
.news-imglistb li {
  width: 47%;
  margin: 1%;
  height: 150px;
  float: left;
}
.news-cont .news-infob span {
  font-size: 12px;
  color: #999;
  margin-right: 10px;
  margin-left: 10px;
}
.news-cont .icon-group {
  position: absolute;
  top: 0;
  right: 0;
}
.icon-group img {
  margin-left: 5px;
}
.news-cont .seg-line {
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #d8d8d8;
}
.news-cont {
  width: 96%;
  margin: 0 auto;
}
.news-cont .news-pic {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.news-cont p {
  margin-bottom: 15px;
  line-height: 2em;
}
/* CMS æ­£æ–‡å®¹å™¨ä¸­çš„å›¾ç‰‡æŒ‰ç¼–è¾‘å™¨åŽŸå§‹å¯¹é½æ–¹å¼å±•ç¤ºï¼Œé¿å…å…¨å±€ block é€ æˆå±…ä¸­å¤±æ•ˆ */
.TRS_UEDITOR img,
.news-cont .zwnr img {
  display: inline;
}
.attachment {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #183181;
}
.attachment a {
  color: #183181;
}
.attachment li {
  margin-top: 12px;
}
.func {
  margin-top: 24px;
  text-align: center;
}
.btn-group {
  display: inline-block;
  margin-right: 5px;
}
.btn-group img {
  margin-left: 5px;
  margin-right: 5px;
}
/*ç»†è§ˆ--end*/
@media (max-width: 980px) {
  .list-lpagex,
  .colbw {
    width: 100%;
  }
  .colbw li {
    width: 33%;
    float: left;
  }
  .list-prx {
    width: 100%;
  }
  .col li,
  .colbw h1 {
    font-size: 30px;
    background: #06C;
  }
  .colbw li:hover,
  .colbw li.on {
    border-left: none;
  }
  .news-cont p {
    line-height: 3em;
  }
  .site-header {
    height: 180px;
  }
  .site-header h1 {
    font-size: clamp(30px, 5.2vw, 46px);
    letter-spacing: 1px;
  }
  .header-tools {
    top: 12px;
  }
  .main-nav a {
    font-size: 17px;
    gap: 7px;
  }
  .lead-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .feature-carousel {
    height: 420px;
  }
  .overview-card {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
  }
  .dual-section {
    grid-template-columns: 1fr;
  }
  .list-card {
    height: auto;
  }
  .friend-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-block: 12px;
  }
}
@media (max-width: 720px) {
  .page-width {
    width: min(100% - 24px, var(--page));
  }
  .site-header {
    height: 155px;
  }
  .header-tools time {
    display: none;
  }
  .search-trigger {
    min-height: 36px;
    padding-inline: 12px;
  }
  .site-header h1 {
    margin-top: 30px;
    font-size: clamp(23px, 7.2vw, 36px);
    white-space: normal;
    text-align: left;
    -webkit-text-stroke-width: 1px;
  }
  .main-nav {
    border-bottom-width: 5px;
  }
  .mobile-menu {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 15px;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
  }
  .mobile-menu span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
  }
  .mobile-menu b {
    margin-left: 5px;
    font-weight: 400;
  }
  .main-nav ul {
    position: absolute;
    left: 0;
    right: 0;
    top: 52px;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: #2e6bbd;
    box-shadow: 0 12px 18px rgba(15, 62, 115, 0.25);
    transition: max-height 0.28s;
  }
  .main-nav ul.open {
    max-height: 340px;
  }
  .main-nav a {
    height: 54px;
    justify-content: flex-start;
    padding-left: 28px;
  }
  .cloud-section {
    padding-top: 0;
  }
  .cloud-section::before {
    background-position: center top, center -332px;
    background-size: 100% 100%, 1920px 1920px;
  }
  .lead-grid {
    height: auto;
    min-height: 0;
    padding: 14px 12px;
    gap: 18px;
  }
  .lead-grid::after {
    width: min(76vw, 838px);
  }
  .compact {
    margin-inline: -12px;
  }
  .dated li {
    height: 43px;
  }
  .dated time {
    font-size: 13px;
  }
  .feature-carousel {
    height: 270px;
  }
  .topic-carousel {
    height: 76px;
  }
  .topic-slide span {
    padding-inline: 35px;
    font-size: 21px;
  }
  .overview-card {
    padding: 18px 15px;
    gap: 24px;
  }
  .service-links {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: 82px;
  }
  .dual-section {
    gap: 18px;
  }
  .list-card {
    padding: 18px 15px;
  }
  .card-heading {
    margin: -18px -15px 14px;
    padding: 18px 15px 15px;
  }
  .section-heading h2 {
    font-size: 21px;
  }
  .friend-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-info {
    gap: 18px;
    font-size: 12px;
  }
  .footer-info img {
    width: 45px;
  }
}
@media (max-width: 480px) {
  .site-header h1 {
    font-size: 27px;
  }
  .header-tools {
    right: 0;
  }
  .search-trigger {
    font-size: 14px;
  }
  .feature-carousel {
    height: 230px;
  }
  .feature-slide > a:not(.feature-slide-link) {
    right: 90px;
    font-size: 14px;
  }
  .carousel-dots {
    right: 12px;
  }
  .carousel-dots button {
    width: 18px;
  }
  .article-list a {
    font-size: 14px;
  }
  .dated li {
    gap: 8px;
  }
  .dated time {
    font-size: 12px;
  }
  .topic-carousel {
    height: 68px;
  }
  .topic-slide span {
    font-size: 17px;
  }
  .card-heading {
    align-items: flex-start;
  }
  .footer-info {
    flex-direction: column;
  }
  .friend-links {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
