﻿:root {
  --orange: #FF6002;
  --orange-dark: #f05900;
  --blue: #1676f3;
  --ink: #2a2a2a;
  --muted: #7d7d7d;
  --paper: #f4f4f4;
  --border: rgba(0,0,0,0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #f6f3ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  overflow: hidden;
}

.site-header {
  background: var(--orange);
  color: #fff;
}

.topbar {
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.topbar .container {
  display: flex;
  justify-content: flex-end;
  padding: 6px 0;
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  line-height: 1;
  opacity: 0.95;
}

.home-link .inline-svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand img {
  width: 235px;
  max-width: 48vw;
  flex-shrink: 0;
}

.site-brand > span {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.brand-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.brand-text-wrap {
  display: grid;
  gap: 4px;
}

.brand-en {
  font-size: 11px;
  letter-spacing: 0.7px;
  opacity: 0.9;
}

.brand-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.search {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  overflow: hidden;
  width: 260px;
  flex-shrink: 0;
}

.search input {
  border: 0;
  outline: 0;
  flex: 1;
  height: 36px;
  color: #fff;
  font-size: 16px;
  padding: 0 12px;
  background: transparent;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.86);
}

.search button {
  width: 42px;
  height: 36px;
  border: 0;
  cursor: pointer;
  background: transparent;
  /* border-left: 1px solid rgba(255, 255, 255, 0.2); */
}

.search button img {
  width: 15px;
  margin: 0 auto;
}

.mobile-toggle {
  display: none;
  position: relative;
  width: 24px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  position: absolute;
  left: 0px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
  content: "";
}

.mobile-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-toggle span::before {
  transform: translateY(-8px);
}

.mobile-toggle span::after {
  transform: translateY(8px);
}

.mobile-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span::after {
  transform: translateY(0) rotate(-45deg);
}

.main-nav {
  /* border-top: 1px solid rgba(255, 255, 255, 0.22); */
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  /* display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr)); */
  display: flex;
  justify-content: space-between;
}

.main-nav .nav-item {
  position: relative;
}

.main-nav .sub-nav {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  background: rgba(255, 96, 2, 0.96);
  border-radius: 0 0 8px 8px;
  z-index: 20;
}

.main-nav .sub-nav li {
  width: 100%;
  margin: 0;
  border-top: 0;
}

.main-nav .sub-nav a {
  border-radius: 0;
  text-align: left;
  padding: 10px 14px;
  font-size: 16px;
}

.main-nav .nav-item.has-children:hover > .sub-nav,
.main-nav .nav-item.has-children:focus-within > .sub-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 8px 8px;
  font-size: 20px;
  font-weight: 400;
  transition: background 0.25s;
  border-radius: 8px 8px 0 0;
}

.main-nav a.active,
.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.section-bg-1 {
  background: #f2f2f2 url("../img/section-1-bg.png") top center / cover no-repeat;
}

.section-bg-2 {
  background: #f8f5f1 url("../img/section-2-bg.png") top center / cover no-repeat;
}

.section-bg-3 {
  background: #efefef url("../img/section-3-bg.jpg") bottom center / cover no-repeat;
  position: relative;
}

.section-bg-3::before {
  /* content: ""; */
  position: absolute;
  inset: 0;
  background: rgba(240, 240, 240, 0.84);
}

.section-bg-4 {
  background: var(--orange-dark) url("../img/section-4-bg.png") center / cover no-repeat;
}

main section {
  padding: 32px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  /* border: 1px solid #d6d6d6;
  background: #fff; */
}

.hero-track {
  height: 100%;
}

.hero-slide {
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.92) brightness(0.96);
  transition: transform 0.9s ease, filter 0.9s ease;
}

.hero-slider .swiper-slide-active img {
  transform: scale(1);
  filter: saturate(1) brightness(1);
}

@media (hover: hover) {
  .hero-slide:hover img {
    transform: scale(1.05);
    filter: saturate(1.06) brightness(1.03);
  }
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  z-index: 2;
}

.hero-prev {
  left: 10px;
}

.hero-prev::before {
  content: "\2039";
}

.hero-next {
  right: 10px;
}

.hero-next::before {
  content: "\203A";
}

.hero-dots {
  position: absolute;
  left: 50% !important;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.hero-dots.swiper-pagination {
  left: 50% !important;
  width: auto !important;
  transform: translateX(-50%) !important;
}

.hero-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.hero-dot.active,
.hero-dot.swiper-pagination-bullet-active {
  background: var(--orange);
}

.hero-slider .swiper-slide-shadow-left,
.hero-slider .swiper-slide-shadow-right {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
}

.hero-slider.swiper {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

.panel {
  background: transparent;
}

.important-news {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.important-news .news-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  border-bottom: none;
  padding: 0;
}

.important-news .news-list li {
  flex: 1;
  border-bottom: 1px solid var(--border);
}

.important-news .news-list li:last-child {
  border-bottom: none;
}

.important-news .date-box {
  background: rgba(255, 106, 0, 0.14);
  color: var(--orange);
  border-radius: 3px;
  padding: 4px 6px;
  width: auto;
  min-width: 48px;
}

.important-news .date-box strong {
  font-size: 15px;
}

.important-news .date-box em {
  font-size: 12px;
}

.important-news .news-list .title {
  /* font-size: 15px; */
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel-head h2 {
  margin: 0;
  font-size: 32px;
}

.panel-head a {
  color: var(--orange);
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.panel-head a img {
  height: 70%;
  transition: transform 0.28s ease;
}

@media (hover: hover) {
  .panel-head a:hover img[src$="more.svg"] {
    transform: translateX(4px) scale(1.06);
  }
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--border);
  /* border-bottom: 4px solid var(--orange); */
  background: #fff;
}

.news-list li {
  border-bottom: 1px solid var(--border);
}

.news-list li:last-child {
  border-bottom: 0;
}

.news-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 8px 10px 0;
  min-width: 0;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease,padding 0.25s ease;
}

.news-list a:hover {
  background: rgba(255, 96, 2, 0.08);
  transform: translateX(4px);
  padding: 8px 8px 8px 8px;
}

.news-list a:hover .title,
.news-list a:hover .news-title,
.news-list a:hover .time {
  color: var(--orange);
}

.news-list .title {
  flex: 1;
  min-width: 0;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
}

.news-list .title.is-new {
  position: relative;
  /* padding-left: 34px; */
}

.news-list .title.is-new::before {
  /* content: ""; */
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../img/new.svg") center / contain no-repeat;
}

.date-box {
  width: 52px;
  flex-shrink: 0;
  text-align: center;
  color: var(--orange);
  line-height: 1.1;
}

.date-box strong {
  display: block;
  font-size: 17px;
}

.date-box em {
  font-style: normal;
  font-size: 14px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.work-grid > * {
  min-width: 0;
}

.work-card .news-list {
  border-bottom-width: 5px;
}

.card-banner {
  display: block;
  position: relative;
  overflow: hidden;
}

.card-banner > img {
  width: 100%;
  transition: transform 0.45s ease, filter 0.45s ease;
}

@media (hover: hover) {
  .card-banner:hover > img {
    transform: scale(1.04);
    filter: brightness(1.06);
  }

  .card-banner:hover .card-banner-text {
    transform: translate(-50%, -50%) translateY(-3px);
  }
}

.card-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease;
}

.card-banner-text strong {
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.card-banner-enter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1;
}

.card-banner-enter img {
  width: 14px;
  height: 14px;
}

.card-orange .news-list {
  border-bottom-color: var(--orange);
}

.card-blue .news-list {
  border-bottom-color: var(--blue);
}

.news-list .time {
  margin-left: auto;
  color: #ea7e39;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.news-list .time img {
  width: 13px;
}

.white-panel,
.white-panel .news-list {
  position: relative;
  z-index: 1;
}

.white-panel .date-box {
  background: rgba(255, 106, 0, 0.14);
  color: var(--orange);
  border-radius: 2px;
  padding: 4px 6px;
  width: auto;
  min-width: 48px;
}

.white-panel .date-box strong {
  font-size: 15px;
}

.white-panel .date-box em {
  font-size: 12px;
}

.site-footer {
  color: #fff;
  overflow: hidden;
}

.footer-grid {
  padding: 40px 0 34px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}

.site-footer h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
  padding-bottom: 10px;
  font-size: 24px;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2em;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  font-size: 14px;
  line-height: 1.55;
}

.contact-grid p {
  margin: 0;
}

.qrcode-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.qr-item {
  text-align: center;
  font-size: 12px;
}

.qr-item img {
  width: 112px;
  height: 112px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 4px;
  background: #fff;
  margin: 0 auto 8px;
}

.copyright {
  background: #2f3035;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 15px 12px;
  font-size: 13px;
}

.copyright p{
  margin: 0;
}

.inner-banner {
  height: 300px;
  background: url("../img/top-banner.jpg") top / cover no-repeat;
}

.inner-main {
  background: #efefef;
  padding: 46px 0 46px;
}

.inner-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

.sidebar {
  background: #ffffff;
  border: 1px solid #e6e6e6;
}

.department-sidebar {
  position: sticky;
  top: 0;
}

.sidebar h3 {
  margin: 0;
  height: 86px;
  background: var(--orange);
  color: #ffffff;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  border-top: 1px solid #eeeeee;
  color: #5f5f5f;
  font-size: 18px;
  transition: all 0.25s ease;
}

.sidebar ul li a.active{
  color: var(--orange);
  background: #fcf8f5;
}

.sidebar ul li a:hover {
  color: var(--orange);
  background: #fcf8f5;
}

.content-panel {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 0 44px 44px;
}

.breadcrumb {
  height: 70px;
  border-bottom: 1px solid #efefef;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #898989;
  font-size: 12px;
}

.breadcrumb .current {
  color: var(--orange);
}

.list-news {
  padding-top: 16px;
}

.list-news li {
  border-bottom: 1px dashed #eeeeee;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.list-news li.animated {
  opacity: 1;
  transform: translateY(0);
}

.list-news li:nth-child(1) { transition-delay: 0.05s; }
.list-news li:nth-child(2) { transition-delay: 0.1s; }
.list-news li:nth-child(3) { transition-delay: 0.15s; }
.list-news li:nth-child(4) { transition-delay: 0.2s; }
.list-news li:nth-child(5) { transition-delay: 0.25s; }
.list-news li:nth-child(6) { transition-delay: 0.3s; }
.list-news li:nth-child(7) { transition-delay: 0.35s; }
.list-news li:nth-child(8) { transition-delay: 0.4s; }
.list-news li:nth-child(9) { transition-delay: 0.45s; }
.list-news li:nth-child(10) { transition-delay: 0.5s; }
.list-news li:nth-child(11) { transition-delay: 0.55s; }
.list-news li:nth-child(12) { transition-delay: 0.6s; }
.list-news li:nth-child(13) { transition-delay: 0.65s; }
.list-news li:nth-child(14) { transition-delay: 0.7s; }
.list-news li:nth-child(15) { transition-delay: 0.75s; }
.list-news li:nth-child(16) { transition-delay: 0.8s; }
.list-news li:nth-child(17) { transition-delay: 0.85s; }
.list-news li:nth-child(18) { transition-delay: 0.9s; }

.list-news li .title {
  flex: 1;
  min-width: 0;
  color: #3e3e3e;
  font-size: 16px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.list-news li:hover .title {
  color: var(--orange);
}

.list-news li .date {
  color: #9d9d9d;
  font-size: 13px;
}

.list-news li.active .title,
.list-news li.active .date {
  color: var(--orange);
}

.inputbox{
  margin: 20px auto;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}

.pagination a,
.pagination span{
  min-width: 30px;
  height: 30px !important;
  border: 1px solid #e7e7e7 !important;
  background: #ffffff !important;
  color: #999999 !important;
  font-size: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pagination a.active {
  background: var(--orange)  !important;
  border-color: var(--orange) !important;
  color: #ffffff !important;
}

.pagination table div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.pagination table div span,
.pagination table div a,
#gotopagebut {
  min-width: 30px;
  height: 30px !important;
  border: 1px solid #e7e7e7 !important;
  background: #ffffff !important;
  color: #999999 !important;
  font-size: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#gotopagebut {
  border: var(--orange)  1px solid !important;
  background: var(--orange)  !important;
  color: #fff !important;
}

.pagination table div a {
  color: #000 !important;
  border: solid 1px var(--orange) !important;
  cursor: pointer !important;
}

.pagination table div a.Next,
.pagination table div a.Prev {
  color: #fff !important;
  background: var(--orange)  !important;
}

.pagination table div a:hover {
  background: var(--orange) !important;
  cursor: pointer !important;
  color: #000 !important;
}

.defaultInputStyle {
  height: 30px;
  border: 1px solid #e7e7e7;
  background: #ffffff;
  color: #999999;
  font-size: 12px;
  text-align: center;
}

.article-wrap {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 0 48px 48px;
}

.article-head {
  border-bottom: 1px solid #efefef;
  padding: 24px 0 24px;
  text-align: center;
}

.article-head h1 {
  font-size: 36px;
  color: #343434;
  line-height: 1.45;
  margin-bottom: 12px;
}

.article-meta {
  color: #999999;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.article-body {
  padding-top: 30px;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 2;
}

.article-body p {
  margin-bottom: 18px;
  word-wrap: break-word;
  text-align: justify;
}

.article-body p img{
    margin: 0 auto;
  }

.article-body h4 {
  margin: 16px 0 8px;
  font-size: 18px;
  color: #3d3d3d;
}

.attach a{
  color: var(--orange);
}

.article-nav {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid #ececec;
  color: #575757;
  font-size: 14px;
}

.article-nav p {
  margin-bottom: 12px;
}

.article-nav a {
  color: var(--orange);
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="left"] {
  transform: translateX(-30px);
}

[data-animate="left"].animated {
  transform: translateX(0);
}

[data-animate="right"] {
  transform: translateX(30px);
}

[data-animate="right"].animated {
  transform: translateX(0);
}

@media (max-width: 1280px) {
  .brand-title {
    font-size: 44px;
  }

  .site-brand > span {
    font-size: 44px;
  }

  .panel-head h2 {
    font-size: 32px;
  }

  .news-list .title {
    font-size: 16px;
  }

  .card-banner-text strong {
    font-size: 38px;
  }

  .card-banner-enter {
    font-size: 19px;
  }

  .news-list .time {
    font-size: 16px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .contact-grid {
    font-size: 16px;
  }

  .site-footer h3 {
    font-size: 30px;
  }

  .qr-item {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .hero-grid .hero-slider {
    order: -1;
  }
  
  .hero-grid,
  .work-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .qrcode-wrap {
    justify-content: space-between;
  }

  .search {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: relative;
    z-index: 40;
  }

  .container {
    width: min(1200px, calc(100vw - 24px));
  }

  .header-main-inner {
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 12px 0;
  }

  .brand-badge {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .brand-en {
    font-size: 8px;
  }

  .brand-title {
    font-size: 28px;
  }

  .site-brand {
    gap: 8px;
  }

  .site-brand img {
    width: 128px;
    max-width: 34vw;
  }

  .site-brand > span {
    font-size: 20px;
  }

  .search {
    display: none;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
    height: 24px;
  }

  .main-nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 0;
    z-index: 45;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transform-origin: top center;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.32s ease, opacity 0.22s ease, transform 0.22s ease;
  }

  .main-nav.is-open {
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav .container {
    width: 100%;
  }

  .main-nav ul {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 96, 2, .95);
  }

  .main-nav li {
    width: 80%;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0;
    transform: translateX(-10px);
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .main-nav.is-open li {
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav.is-open li:nth-child(1) { transition-delay: 0.03s; }
  .main-nav.is-open li:nth-child(2) { transition-delay: 0.06s; }
  .main-nav.is-open li:nth-child(3) { transition-delay: 0.09s; }
  .main-nav.is-open li:nth-child(4) { transition-delay: 0.12s; }
  .main-nav.is-open li:nth-child(5) { transition-delay: 0.15s; }
  .main-nav.is-open li:nth-child(6) { transition-delay: 0.18s; }
  .main-nav.is-open li:nth-child(7) { transition-delay: 0.21s; }

  .main-nav a {
    padding: 12px 8px;
    font-size: 15px;
    border-radius: 0;
    text-align: left;
  }

  .main-nav .sub-nav {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border-radius: 0;
    padding-left: 14px;
  }

  .main-nav .sub-nav a {
    padding: 10px 8px;
    font-size: 14px;
  }

  .hero-section{
    padding: 12px 0 0;
    background: #fff url("../img/section-1-bg.png") no-repeat 14% 100% / auto 80%;
  }

  .section-bg-2{
    background: #fff url("../img/section-2-bg.png") no-repeat 83% 100% / auto 100%;
  }

  .inner-banner {
    height: 120px;
    background: url("../img/top-banner-mini.jpg") top / cover no-repeat;
  }

  .inner-main .container {
    padding: 0;
    width: 100%;
  }

  .inner-main {
    padding: 0;
  }

  .inner-layout {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 10px;
    width: auto;
  }

  .sidebar {
    display: none;
  }

  .department-sidebar {
    position: static;
  }

  .content-panel {
    padding: 0 10px 16px;
  }

  .breadcrumb {
    height: 50px;
    font-size: 11px;
  }

  .list-news li {
    padding: 12px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .list-news li .title {
    font-size: 14px;
  }

  .list-news li .date {
    font-size: 12px;
  }

  .pagination {
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .pagination a,
  .pagination span {
    min-width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .pagination table div {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pagination table div span,
  .pagination table div a,
  #gotopagebut {
    min-width: 26px !important;
    height: 26px !important;
    font-size: 11px !important;
  }

  .defaultInputStyle {
    height: 26px;
    font-size: 11px;
    width: 40px;
  }

  .article-wrap {
    padding: 0 16px 40px;
  }

  .article-head {
    padding: 16px 0 16px;
  }

  .article-head h1 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .article-meta {
    font-size: 12px;
    gap: 12px;
  }

  .article-body {
    padding-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .article-body p {
    margin-bottom: 12px;
  }

  .article-body h4 {
    margin: 12px 0 6px;
    font-size: 16px;
  }

  .article-nav {
    margin-top: 24px;
    padding-top: 12px;
    font-size: 13px;
  }

  .article-nav a {
    font-size: 13px;
  }

  .hero-grid .hero-slider {
    order: -1;
  }

  main section {
    padding: 20px 0 28px;
  }

  .panel-head h2 {
    font-size: 28px;
  }

  .news-list a {
    padding: 8px 10px 8px 0;
    gap: 8px;
  }

  .news-list .title {
    font-size: 15px;
  }

  .card-banner-text {
    gap: 6px;
  }

  .card-banner-text strong {
    font-size: 28px;
  }

  .card-banner-enter {
    font-size: 15px;
  }

  .card-banner-enter img {
    width: 12px;
    height: 12px;
  }

  .hero-nav {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .hero-dots {
    bottom: 8px;
  }

  .date-box {
    width: 42px;
  }

  .date-box strong {
    font-size: 12px;
  }

  .date-box em {
    font-size: 11px;
  }

  .news-list .time {
    font-size: 16px;
  }

  .footer-grid {
    gap: 20px;
    padding: 24px 0;
  }

  .site-footer h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 14px;
    gap: 10px;
  }

  .qrcode-wrap {
    gap: 16px;
    justify-content: space-around;
  }

  .qr-item{
    width: -webkit-fill-available;
    font-size: 10px;
  }

  .qr-item img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .panel-head h2 {
    font-size: 24px;
  }
}