/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.indent-0 {
  text-indent: 0;
}
.indent-1 {
  text-indent: 2em;
}
.indent-2 {
  text-indent: 4em;
}
.indent-3 {
  text-indent: 6em;
}
.indent-4 {
  text-indent: 8em;
}

body {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* 顶部工具栏 */
.top-bar {
  background: #f5f5f5;
  padding: 8px 0;
  font-size: 14px;
}

.quick-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.quick-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.quick-links a:hover {
  color: #005bac;
}

/* 头部样式 */
.header {
  background: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #065649 0%, rgba(6, 86, 73, 0) 100%);
  padding-top: 10px;
}

.header.scrolled {
  background-image: url(/web/static/back.png);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  padding: 0 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 1000;
}

.logo img {
  display: inline-block;
  width: 40rem; /* 400px */
  height: auto;
}

.nav-menu,
.nav-menu-t {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-left: auto;
}
.nav-menu-t {
  display: none;
}

.right-section {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-menu ul,
.nav-menu-t ul {
  display: flex;
  list-style: none;
  justify-content: center;
}

.nav-menu ul:first-child {
  margin-bottom: 5px;
  transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease;
}

.header.scrolled .nav-menu ul:first-child {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.nav-menu ul:last-child li a {
  font-weight: 500;
  font-size: 2.2rem;
  margin-right: 3rem;
}

.nav-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  transition: color 0.3s;
  font-weight: normal;
}

.nav-menu #myDiv li {
  height: 30px;
  display: flex;
  align-items: center;
}

.nav-menu #myDiv li span {
  background-color: #fff;
  margin: 0 1rem;
  width: 1px;
  height: 16px;
}

#sub-list li a:hover {
  border-bottom: 1px solid #fff;
}

#sub-list li:hover .sub {
  display: block;
  opacity: 1;
  visibility: visible;
}

#sub-list li {
  position: relative;
}

.sub {
  position: absolute;
  top: 100%;
  left: -5%;
  background: #fff;
  float: left;
  text-align: center;
  background-color: #005245;
  border-radius: 8px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sub div {
  padding: 10px 1.5rem;
}

#sub-list li .sub div a {
  font-weight: normal;
  font-size: 2rem;
  margin-right: 0;
}

.sub div:hover {
  background-color: #fff;
  cursor: pointer;
}

.sub div:hover a {
  color: #000;
}

.sub div:first-child:hover {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.sub div:last-child:hover {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.nav-tools {
  display: flex;
  align-items: center;
  color: #fff;
}

.header.scrolled .nav-menu {
  margin-top: 0;
}

.header.scrolled .nav-tools {
  padding-bottom: 0;
  align-items: center;
}

.search-icon,
.menu-toggle,
.menu-toggle-three img {
  cursor: pointer;
  margin-left: 30px;
}

.search-icon img,
.menu-toggle img,
.menu-toggle-three img {
  width: 3rem;
  height: 3rem;
}

.menu-toggle {
  display: none;
}
.list-three {
  background-color: #007361;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 100;
  padding: 8% 5%;
  display: none;
}
.search-close-three {
  text-align: right;
  cursor: pointer;
}
.search-close-three img {
  width: 2%;
  height: 2%;
}
.list-three a {
  text-decoration: none;
}
.three-box {
  padding-bottom: 8%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d6d3d3;
}
.item-title {
  padding-bottom: 30%;
  color: #fff;
  font-size: 1.3em;
}

.item-title a {
  text-decoration: none;
  color: #fff;
}

.son-item {
  text-align: center;
}
.son-item div {
  padding: 5% 0%;
}
.son-item a {
  color: #d6d3d3;
  padding: 10% 0%;
  cursor: pointer;
  opacity: 1;
  /* transition: opacity 0.5s ease; */
}
.son-item a:hover {
  color: #0a508d;
}
.three-ul {
  padding-top: 5%;
}
.three-ul ul {
  margin-top: 10;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.three-ul ul li {
  border: 1px solid white;
  padding: 10px;
}

.three-ul ul li a {
  text-decoration: none;
  color: #fff;
}

/* 搜索层样式 */
.search-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.search-layer.active {
  display: flex;
  background: rgba(0, 0, 0, 0.8);
}

.search-container {
  width: 80%;
  max-width: 600px;
  position: relative;
}

.search-close {
  position: absolute;
  top: -40px;
  right: 0px;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}
.search-close-else {
  position: absolute;
  top: 30px;
  right: 33px;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  display: none;
}
.search-close-else img,
.search-close img {
  width: 30px;
  height: 30px;
}

.search-box input {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
}

.search-box button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 20px;
  background: #007361;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  padding: 24px !important;
  color: #fff !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(245, 242, 242, 0.8) !important;
  color: #767171 !important;
}

.rightSwiper .swpTwo {
  position: absolute;
  left: 200px !important;
}

.swiper-title {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(44, 44, 44, 0.5);
  font-size: 14px;
  color: #fff;
  padding: 20px;
  font-weight: 500;
}

.swiper-pagination-bullet-active {
  background-color: white !important;
}

.zhuyaode {
  width: 100%;
  background-image: url(/web/static/lvsede.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bd-no {
  border: none !important;
}

.news-section {
  padding: 50px 80px;
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.news-block {
  border-radius: 8px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  color: #fff;
}
.one {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.two {
  width: 35%;
}
.section-header h2 {
  font-size: 20px;
  margin: 0;
}

.more-link {
  text-decoration: none;
  font-size: 14px;
}

.more-link span {
  display: inline-block;
  margin-left: 5px;
}

/* 通知公告样式 */
.news-list {
  padding: 15px;
  background-color: rgba(247, 246, 246, 0.6);
  border-radius: 5px;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.news-item {
  display: flex;
  padding: 15px 0;
  font-size: 10em;
  border-bottom: 1px dashed #3d3b3b;
  align-items: center;
}

.news-item:last-child {
  border-bottom: none;
}

.date {
  min-width: 80px;
  text-align: center;
}

.day {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background-color: #007361;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.year {
  font-size: 16px;
  background-color: #ebebeb;
  color: #007361;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.content {
  padding-left: 10px;
}

.content a {
  color: #333;

  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content a:hover {
  color: #008751;
}

/* 媒体盐农和会议通知样式 */
.news-card-list {
  display: flex;
  justify-content: space-between;
}

.news-card {
  padding-bottom: 15px;
  width: 50%;
  margin-right: 20px;
  background: #fff;
  transition: transform 0.3s;
}

.news-image {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
}
.news-info {
  padding: 0px 20px;
}

.news-info h3 {
  font-size: 16px;
  color: #333;
  margin: 0 0 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}

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

.year-data {
  text-align: left;
  color: #999;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.clock {
  width: 19px;
  height: 19px;
  background-image: url(/web/static/clock.png);
  background-size: 100% auto;
}

.time {
  padding-left: 10px;
}

/* 轮播图区域 */
.banner {
  width: 100%;
  position: relative;
  height: 74vh;
  overflow: hidden;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-image {
  position: relative;
  z-index: 1;
  height: 100%;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.more-link {
  color: #fff;
  font-size: 14px;
}

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

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

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.news-date .day {
  font-size: 36px;
  font-weight: bold;
  color: #005bac;
  line-height: 1;
}

.news-date .month {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.news-content .news-excerpt {
  color: #666;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 快速链接区域 */
.quick-links-section {
  padding: 40px 0;
  background: #f5f5f5;
}

.quick-links-sectionds {
  width: 100%;
  height: 100%;
  background: #fff;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.quick-link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-link-item i {
  font-size: 24px;
  color: #005bac;
  margin-bottom: 10px;
}

/* 底部区域 */
.footer {
  width: 100%;
  background-image: url("/web/static/dibus.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 0 180px;
}

.weiboddesds {
  width: 62px;
  height: 62px;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.weiboddes {
  width: 62px;
  height: 62px;
}

.weibo {
  width: 62px;
  height: 62px;
}

.erweima {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  left: -9px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show QR code when hovering over Weibo icon */
.weiboddesds:hover .erweima {
  opacity: 1;
  visibility: visible;
}

.erweima2 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  left: -9px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show QR code when hovering over Weixin icon */
.weiboddesds:hover .erweima2 {
  opacity: 1;
  visibility: visible;
}

.weixin {
  width: 62px;
  height: 62px;
}

.douyin {
  width: 62px;
  height: 62px;
}

.douyin-tooltip {
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  top: -40px;
  left: -9px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  white-space: nowrap;
}

/* Show tooltip when hovering over Douyin icon */
.weiboddesds:hover .douyin-tooltip {
  opacity: 1;
  visibility: visible;
}

.xiaohong {
  width: 62px;
  height: 62px;
}

.xiaohong-tooltip {
  color: #333;
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  top: -40px;
  left: -9px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  white-space: nowrap;
}

/* Show tooltip when hovering over Xiaohong icon */
.weiboddesds:hover .xiaohong-tooltip {
  opacity: 1;
  visibility: visible;
}

.footercenter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.imagesd {
  display: flex;
  align-items: center;
  padding: 10px 0px;
}

.cibu7 {
  width: 100%;
  height: 86px;
  background-image: url("/web/static/dibu7.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}

.zu363 {
  width: 100%;
  height: 100%;
  background-image: url("/web/static/zu363.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}

.nice {
  padding: 50px 0;
  background-image: url("/web/static/nice.jpg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.nice-top {
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nice-title {
  font-size: 26px;
  color: #13825a;
  font-weight: bold;
}

.nice-box {
  padding: 0 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}

.footerdibud {
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  font-size: 1.3rem;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.footer-info p {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-copyright {
  text-align: right;
  font-size: 14px;
}

.footer-copyright p {
  margin-bottom: 5px;
}

/* 新闻轮播区域 */
.news-carousel {
  padding: 60px 0;
  background: #fff;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.carousel-control {
  width: 40px;
  height: 40px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-control:hover {
  background: #e0e0e0;
  transform: scale(1.1);
}

.carousel-control i {
  color: #333;
  font-size: 16px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
}

.carousel-slide .slide-content {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.carousel-slide .slide-image {
  flex: 0 0 60%;
  overflow: hidden;
  border-radius: 4px;
}

.carousel-slide .slide-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-slide .slide-image:hover img {
  transform: scale(1.05);
}

.carousel-slide .slide-text {
  flex: 0 0 40%;
  padding: 30px 20px;
}

.carousel-slide .slide-text h2 {
  font-size: 24px;
  color: #005bac;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.carousel-slide .slide-news {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.carousel-slide .news-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.carousel-slide .news-date {
  font-size: 14px;
  color: #666;
}

.carousel-slide .news-title {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  transition: color 0.3s;
}

.carousel-slide .news-title:hover {
  color: #005bac;
}

/* 新闻标签页区域 */
.news-tabs {
  /* width: 1400px; */
  background: #fff;
  z-index: 10;
  margin: 0 auto;
  margin-top: -60px;
  /* position: relative; */
  border-radius: 10px;
}

.news-tabs2 {
  position: relative;
  margin-top: -40px;
  z-index: 2;
}

.tab-controls {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.djasklf {
  position: relative;
  width: 100%;
}

.btn-container {
  padding: 10px 80px;
  top: 0px;
  position: absolute;
  z-index: 222;
  display: flex;
}

.btn-item {
  width: 100px;
}

.tab-control {
  width: 100px;
  height: 115px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  object-fit: contain;
}

.dsa {
  left: -88px;
  top: -44px;
}

.tab-control img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tab-control i {
  color: #333;
  font-size: 16px;
}

.tabs-wrapper {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  height: 240px;
}

.tabs-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  padding: 0 10px;
}

.tab-content {
  flex: 0 0 32%;
  background: #fff;
  padding: 30px;
  transition: transform 0.3s ease-in-out;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

.tab-header h2 {
  font-size: 20px;
  color: #13825a;
  font-weight: bold;
}

.tab-header .date {
  color: #13825a;
  font-size: 14px;
}

.news-content {
  margin-bottom: 20px;
}

.news-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-content h3 a {
  color: #333;
  text-decoration: none;
}

.news-content h3 a:hover {
  color: #13825a;
}

.news-content .news-excerpt a {
  color: #807c7c;
  text-decoration: none;
}

.news-content .news-excerpt a:hover {
  color: #13825a;
}

.read-more {
  display: inline-block;
  color: #13825a;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.read-more:hover {
  color: #005245;
}

.warp {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.warp a {
  padding-left: 20px;
  color: #000;
  text-decoration: none;
}

.warp-zb {
  padding: 20px 0;
  overflow: hidden;
  border-bottom: 2px solid #eee;
}
.warp-zb .news-dateds {
  font-weight: bold;
}

.warp-zb a {
  padding-right: 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: color 0.3s;
}
.warp-zb a:hover {
  color: #245845;
}

.news-list-section {
  width: 100%;
  padding-top: 290px;
  padding-bottom: 40px;
  background-image: url(/web/static/bancd.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-columns {
  display: flex;
  justify-content: space-between;
  padding: 40px 80px;
  flex: 1;
}

.list-card {
  padding-left: 20px;
  width: 100%;
}

/* 添加新的样式 */
.newsSwiper {
  border-radius: 10px;
  width: 35%;
}
.right-box {
  width: 35%;
}
.swpThree {
  margin-top: 40px;
  border-radius: 10px;
  width: 100%;
  height: 82%;
}
.rightSwiper {
  width: 100%;
  height: 85%;
  border-radius: 5px;
  padding-bottom: 56.25%;
}

.newsSwiper .news {
  position: absolute;
  left: 200px !important;
}

.newsSwiper .news {
  position: absolute;
  left: 200px !important;
}
.swpThree .swpThreePage {
  position: absolute;
  left: 200px !important;
}
.mySwiper .swiper-slide {
  overflow: hidden; /* 确保图片缩放不会溢出容器 */
}

.mySwiper .swiper-slide img {
  animation: zoom 10s ease-in-out infinite;
  position: relative;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.newsSwiper .swiper-slide img,
.rightSwiper .swiper-slide img,
.swpThree .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 3s ease;
}

.SPSwiper {
  margin: 20px;
  padding: 0 50px !important;
  position: relative;
}

.SPSwiper .swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: fill;
  transition: transform 3s ease;
}

.SPSwiper .swiper-slide img:hover {
  transform: scale(1.2);
}

.SPSwiper .swiper-button-next {
  position: absolute;
  right: 1px;
  color: #fff !important;
  background-color: #c5c5c5;
  border-radius: 50%;
  z-index: 1000;
}

.SPSwiper .swiper-button-next::after {
  font-size: 20px;
}

.SPSwiper .swiper-button-prev {
  left: 1px;
  color: #fff !important;
  background-color: #c5c5c5;
  border-radius: 50%;
}

.SPSwiper .swiper-button-prev::after {
  font-size: 20px;
}

.newsSwiper .swiper-slide img:hover {
  transform: scale(1.2);
}

.rightSwiper .swiper-slide img:hover {
  transform: scale(1.2);
}

.swpThree .swiper-slide img:hover {
  transform: scale(1.2);
}

.school-container {
  background-color: #f5f9f8;
  padding: 20px 0;
  background-image: url(/web/static/video.jpg);
  width: 100%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.list-card {
  display: flex;
  justify-content: space-between;
}

.news-column {
  border-radius: 10px;
  padding-left: 16px;
  width: 34%;
  display: flex;
  flex-direction: column;
}

.column-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.column-header h2 {
  font-size: 20px;
  color: #13825a;
  font-weight: bold;
}

.mall {
  display: flex;
  align-items: center;
}

.round {
  width: 24px;
  height: 24px;
  background-image: url(/web/static/round.png);
  background-size: 100% auto;
}

.round2 {
  width: 24px;
  height: 24px;
  background-image: url(/web/static/round2.png);
  background-size: 100% auto;
}

.view-more {
  color: #13825a;
  text-decoration: none;
  font-size: 14px;
  padding-right: 10px;
}

.white {
  color: #fff;
}

.news-items {
  flex: 1 !important;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.news-items li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #005245;
  transition: width 0.3s ease;
}

.sanj li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.2em 0 0.2em 0.35em;
  /* 上、右、下、左边框宽度，控制三角形的大小和形状 */
  border-color: transparent #005245;
  /* 边框颜色，这里设置为透明和黑色，黑色边框形成三角形 */
  position: absolute;
  left: 0;
  top: 29%;
  /* 调整三角形的垂直位置 */
}

.news-items li:hover::after {
  width: 100%;
}

.news-items li:last-child {
  border-bottom: none;
}

.news-items li a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.news-items li a:hover {
  color: #13825a;
}

.news-date {
  color: #999;
  font-size: 14px;
  margin-left: 15px;
}

.news-dateds {
  color: #13825a;
  font-size: 14px;
  margin-right: 10px;
  white-space: nowrap;
}

/* 返回顶部按钮样式 */
.back-to-top {
  position: fixed;
  right: 0px;
  bottom: 50%;
  width: 50px;
  height: 50px;
  background: #005245;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* 提示文字样式 */
.back-to-top::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 12px;
  background: rgba(0, 82, 69, 0.9);
  color: white;
  font-size: 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top img {
  width: 30px;
  height: 30px;
}

/* 鼠标悬浮时显示提示文字 */
.back-to-top:hover::before,
.back-to-top:hover::after {
  opacity: 1;
  visibility: visible;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #13825a;
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 20px;
}

/* 美丽校园 */
.imgs-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.imgs-box {
  display: none; /* 初始状态隐藏所有imgs-box */
}

/* 显示第一个imgs-box */
.imgs-box:first-child {
  display: flex;
}

.img-item {
  width: 48%;
  position: relative;
  overflow: hidden;
}

.img-title {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: 5;
  background: rgba(44, 44, 44, 0.5);
  font-size: 1.6rem;
  color: #fff;
  padding: 10px;
  font-weight: 500;
  text-align: center;
}

.img-item img {
  width: 100%;
  height: calc(100vw * 0.071);
  object-fit: cover;
  transition: transform 3s ease;
}

.img-item img:hover {
  transform: scale(1.1);
}

.img-foot {
  width: 100%;
  position: relative;
  padding-top: 20px;
  overflow: hidden;
}

.img-foot img {
  width: 100%;
  height: calc(100vw * 0.072);
  object-fit: cover;
  transition: transform 3s ease;
}

.img-foot img:hover {
  transform: scale(1.1);
}

.foot-title {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(44, 44, 44, 0.5);
  font-size: 1.6rem;
  color: #fff;
  padding: 10px;
  font-weight: 500;
  text-align: center;
}

/* 底部 */
.foot-thoroughfare {
  color: #fff;
  padding-top: 20px;
}

.title {
  font-size: 1em;
}

.item-box {
  padding: 10px 40px;
  border-bottom: 1px solid #a9a6a6;
  color: #d8d7d7;
  display: flex;
  justify-content: space-between;
}

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

.img-box {
  background: url(/web/static/ibg.png) no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  position: relative;
}
.img-box img {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 40px;
  height: 40px;
}
.icon-title {
  padding-top: 10px;
}

.icon-title a {
  font-size: 1.6rem;
  text-decoration: none;
  color: #fff;
}

.foot-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
}

.foot-item {
  color: #fff;
  line-height: 20px;
  text-align: left;
  font-size: 16px;
  padding-right: 20px;
}

/* list样式 */

.list-box {
  padding: 20px 200px;
  background-color: #eef7f4;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.list-left {
  width: 20%;
}

.left-one {
  margin-bottom: 20px;
  background-color: #fff;
}
.left-one-title {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #308d7e;
  color: #fff;
  text-align: left;
}

.left-one-item {
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.left-one-item a {
  text-decoration: none;
  color: #000;
}
.item-check {
  background: url(/web/static/list-left.png) no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  display: none;
}

.left-two-title {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #fff;
  text-align: left;
}

.left-two-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 20px solid green;
  border-right: 20px solid transparent;
}

.left-two-item {
  padding: 4px 20px;
  font-size: 14px;
  background-color: #fff;
  color: #333;
  position: relative;
  word-wrap: break-word;
}

.left-two-item:last-child {
  padding-bottom: 10px;
}

.list-right {
  background-color: #fff;
  padding: 0px 20px;
  flex: 1;
  margin-left: 20px;
  width: 100%;
}
.title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0px;
}
.right-title {
  color: #44a696;
  font-size: 20px;
  font-weight: 500;
}
.address {
  color: #8d8d8d;
  font-size: 14px;
}

.address a {
  text-decoration: none;
  color: #8d8d8d;
}

.right-list-box {
  padding: 20px 0px;
  width: 100%;
}
.right-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  width: 100%;
}
.right-item img {
  height: 200px;
  width: 300px;
  object-fit: cover;
}

.right-item .item-img-box {
  position: relative;
}

.data-box {
  position: absolute;
  text-align: center;
  background-color: #44a696;
  padding: 5px;
  border-radius: 5px;
  right: -40px;
  top: 30px;
}

.data-box .data-day {
  font-size: 20px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.data-box .data-year {
  font-size: 16px;
  color: #fff;
}

.item-content {
  padding-left: 50px;
  height: 200px;
  width: 100%;
}

.item-content .right-date {
  font-size: 16px;
  color: #3f9677;
}

.item-content .right-item-title {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.item-content .right-item-title a {
  color: #000;
  text-decoration: none;
}

.item-content .right-item-title a:hover {
  color: #3f9677;
}

.right-item-msg {
  color: #ccc;
  font-size: 16px;
  width: 100%;
  padding-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  cursor: pointer;
}
.right-item-msg a {
  color: #ccc;
  text-decoration: none;
}

.right-item-msg a:hover {
  color: #3f9677;
}
.detail {
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 10px 18px;
  font-size: 16px;
  width: 120px;
}
.detail a {
  color: #ccc;
  text-decoration: none;
}
.fy {
  display: flex;
  float: right;
  padding: 20px 0;
}
.fy .fy-item {
  border: 1px solid #ccc;
  padding: 0px 10px;
  margin-right: 10px;
  font-size: 16px;
}

.fy .fy-item a {
  text-decoration: none;
  color: #000;
}

.active {
  border-left: 5px solid #007361;
  background-color: #f6f6f6;
}
.left-one-item.active .item-check {
  display: block;
}

/*  文章列表 */
.article-list {
  padding: 10px 0px;
}
.article-item {
  display: flex;
  padding: 10px;
  justify-content: space-between;
  border-bottom: 1px dashed #ccc;
}

.article-item .item-one {
  text-decoration: none;
  color: #4d4b4b;
  font-size: 16px;
}

.article-item .item-one:hover {
  color: #005245;
}

.item-one::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: green;
  margin-right: 20px;
  vertical-align: middle;
}

.article-item .item-two {
  color: #ccc;
  font-size: 16px;
}

/* 详情 */
.deatil-box {
  padding: 20px;
}

.detail-title {
  font-size: 28px;

  text-align: center;
}

.author {
  font-size: 16px;
  color: #767676;
  display: flex;
  justify-content: center;
  padding: 20px;
  width: 100%;
}
.sur {
  margin-left: 20px;
}
.detail-content {
  font-size: 16spx;
  color: #333;
  line-height: 30px;
}
.detail-content img {
  max-width: 90% !important;
  height: auto !important;
  margin: 10px 10px 4px 0;
}

.detail-img-box {
  text-align: center;
  padding: 10px;
}

.detail-img-box img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}

.change {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  border-top: 1px dashed #ccc;
}

.change-left a {
  text-decoration: none;
  color: #000;
}
.change-left a:hover {
  color: #008001;
}

/* 头像列表 */
.head-box {
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px dashed #ccc;
}

.head-item {
  text-align: center;
  width: calc(100% / 6);
  margin-bottom: 20px;
}
.head-item a {
  text-decoration: none;
  color: #000;
}

.head-item img {
  width: 120px;
  height: 170px;
  object-fit: cover;
}

.head-name:hover {
  color: #005245;
}

/* 风景列表 */
.land-box {
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px dashed #ccc;
}

.land-item {
  text-align: center;
  width: calc(100% / 4);
  padding-bottom: 20px;
}
.land-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
}

.land-item img {
  width: 180px;
  height: 130px;
  object-fit: cover;
}

.land-name {
  padding: 20px 0;
  width: 150px;
  font-size: 1.3rem;
}

.land-item:hover img {
  color: #005245;
  transform: scale(1.1);
  transition: all 1s;
}

.land-item:hover .land-name {
  box-shadow: 0 5px 15px #e0e0e0;
  transform: scale(1.1);
  transition: all 1s;
}

/* 移动端二级列表 */

.smm {
  display: none;
}

.small-box {
  display: flex;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.small-item {
  width: calc(100% / 4);
  padding-bottom: 20px;
}

.small-item a {
  text-decoration: none;
  color: #000;
}

.small-item.ac a {
  color: red;
}

/* 移动端查询 */

.small-sub {
  display: none;
}
.small-sub a {
  text-decoration: none;
  color: #fff;
}

.action {
  background-color: #026b59;
  color: #fff !important;
}
.action a {
  color: #fff !important;
}

/* 媒体查询配置 */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1024px) {
  .carousel-container {
    max-width: 90%;
  }

  .carousel-slide .slide-image img {
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .news-tabs {
    margin-top: -40px;
  }

  .tabs-track {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-content {
    flex: 0 0 45%;
    margin-bottom: 20px;
  }

  .tab-controls {
    display: none;
  }
}

@media (max-width: 1024px) {
  .news-columns {
    flex-wrap: wrap;
  }
}

@media (max-width: 1000px) {
  #btnimg {
    height: 400px;
    margin-bottom: 20px;
  }
  .news-list-section {
    padding: 60px 0;
  }
  .img-item img {
    height: 200px;
  }
  .img-foot img {
    height: 200px;
  }
  .nice-top {
    padding: 0 20px;
  }
  .nice-box {
    padding: 0;
  }
  .SPSwiper .swiper-wrapper .swiper-slide img {
    height: 150px;
  }
  .nav-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .news-columns {
    flex-direction: column;
    gap: 20px;
  }

  .news-columns img {
    width: 100%;
    height: 100px;
  }

  .news-column {
    flex: 0 0 100%;
    padding: 15px;
  }

  .news-items li {
    padding: 4px 0;
  }

  .news-items li a {
    font-size: 14px;
  }

  .column-header h2 {
    font-size: 18px;
  }

  .view-more {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .back-to-top i {
    font-size: 16px;
  }

  .back-to-top::before,
  .back-to-top::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .news-tabs {
    margin-top: -30px;
    padding: 15px;
  }

  .tab-content {
    flex: 0 0 100%;
    padding: 15px;
  }

  .tab-header h2 {
    font-size: 18px;
  }

  .tab-header .date {
    font-size: 13px;
  }

  .news-content h3 {
    font-size: 15px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .read-more {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .news-carousel {
    padding: 30px 0;
  }

  .carousel-slide .slide-content {
    flex-direction: column;
    gap: 20px;
  }

  .carousel-slide .slide-image,
  .carousel-slide .slide-text {
    flex: 0 0 100%;
  }

  .carousel-slide .slide-image img {
    height: 200px;
  }

  .carousel-controls {
    display: none;
  }

  .carousel-slide .slide-text {
    padding: 20px;
  }
}

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

  .active {
    display: flex !important;
  }

  .menu-toggle {
    display: block;
  }
  .menu-toggle-three {
    display: none;
  }

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

  .footer-copyright {
    text-align: center;
  }

  .right-section {
    margin-left: 0;
  }
  .nice {
    padding: 10px 40px;
  }
  .nice-top,
  .nice-box {
    padding: 0;
  }
}

/* 响应式设计 */
@media screen and (min-width: 2101px) {
  .tab-header h2 {
    font-size: 24px;
  }
  .news-content h3 {
    font-size: 20px;
  }
  .news-content .news-excerpt {
    font-size: 16px;
  }
  .swiper-title,
  .news-info h3 {
    font-size: 20px;
  }
  .column-header h2,
  .section-header h2 {
    font-size: 26px;
  }
  .view-more {
    font-size: 20px;
  }
  .news-items li a,
  .content a {
    font-size: 20px;
  }
  .warp-zb {
    padding: 32px 0;
  }
}
.none-w {
  display: none;
}

@media screen and (max-width: 800px) {
  .footerdibud {
    display: none;
  }

  .none-w {
    display: block;
  }
}

@media (max-width: 1480px) {
  .logo img {
    width: 200px;
  }
  .nav-menu ul:last-child li a {
    margin-right: 2rem;
  }
}

@media (max-width: 1280px) {
  .nav-menu ul:last-child li a {
    font-size: 1.8rem;
  }
  .nav-menu ul li a {
    font-size: 1.5rem;
  }
}

@media (min-width: 1800px) {
  .land-item img {
    width: 200px;
    height: 170px;
  }
  .land-name {
    width: 200px;
  }
}

.animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.visible-element {
  opacity: 1;
  transform: translateY(0);
}
