@charset "utf-8";
@import url('https://fonts.googleapis.cn/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

:root {
  --primary-color: #3b82f6;
  --secondary-color: #6366f1;
  --accent-color: #0ea5e9;
  --white-bg: #ffffff;
  --light-surface: #f8fafc;
  --light-card: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white-bg);
  overflow-x: hidden;
  font-style: normal;
}

em, i {
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

#wrap_index {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

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

.mt-6 {
  margin-top: 48px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-surface);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px var(--glow-color); }
  50% { box-shadow: 0 0 40px var(--glow-color), 0 0 60px rgba(0, 212, 255, 0.2); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease-out forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease-out forwards; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }

#header_top {
  background: var(--light-surface);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.header_top .tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.header_top .tel em {
  color: var(--primary-color);
  font-weight: 600;
}

.header_top .weixin {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  cursor: pointer;
}

.header_top .weixin em {
  width: 24px;
  height: 24px;
  background:orange;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.wxtc {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 15px;
  display: none;
  z-index: 101;
  box-shadow: var(--shadow-lg);
}

.weixin:hover .wxtc {
  display: block;
}

.wxtc img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
}

.wxtc p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: 8px;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
}

.search .txt {
  width: 200px;
  padding: 8px 40px 8px 15px;
  background: var(--white-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.search .txt:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search .btn {
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  background:#999;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search .btn::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid white;
  border-radius: 50%;
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
  margin-left: 3px;
}

#header {
  background: var(--white-bg);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 49px;
  z-index: 99;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  max-height: 60px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

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

.yiji {
  position: relative;
  padding: 10px 20px;
}

.yiji a {
  font-size: 16px;
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.yiji a em {
  display: inline-block;
}

.yiji:hover a{ text-decoration: none;},
.yiji.current a {
  color: var(--primary-color);
}

.yiji a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.yiji:hover a::after,
.yiji.current a::after {
  width: 100%;
}

.libox {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 200px;
  display: none;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.3s ease;
}

.yiji:hover .libox {
  display: block;
}

.libox a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-secondary);
}

.libox a:hover {
  background: var(--light-surface);
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.carousel-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* 内页banner样式 */
#myCarousel {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 280px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

#myCarousel .carousel-inner {
  width: 100%;
  height: 100%;
}

#myCarousel .item {
  width: 100%;
  height: 100%;
}

#myCarousel .item a {
  display: block;
  width: 100%;
  height: 100%;
}

#myCarousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.molbanner {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 180px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.molbanner .swiper-container {
  width: 100%;
  height: 100%;
}

.molbanner .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.molbanner .swiper-slide {
  width: 100%;
  height: 100%;
}

.molbanner .swiper-slide .pic {
  display: block;
  width: 100%;
  height: 100%;
}

.molbanner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-prev {
  left: 30px;
}

.carousel-next {
  right: 30px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--white-bg);
  border-color: var(--primary-color);
}

.carousel-prev span,
.carousel-next span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--text-primary);
  border-right: none;
  border-bottom: none;
}

.carousel-prev span {
  transform: rotate(-45deg);
  margin-left: 4px;
}

.carousel-next span {
  transform: rotate(135deg);
  margin-right: 4px;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  width: 30px;
  border-radius: 6px;
  background: var(--white-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  position: relative;
}

.section-divider {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about-section {
  padding: 80px 0;
  background: var(--white-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image .image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.about-image:hover img {
  transform: scale(1.02);
}

.image-overlay {
  display: none;
}

.about-text {
  padding: 20px;
}

.about-description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: var(--primary-color);
  border-radius: 6px;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.news-section {
  padding: 80px 0;
  background: var(--light-surface);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.news-featured {
  grid-column: span 1;
}

.featured-card {
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.card-image {
  position: relative;
  height: 280px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  background: var(--primary-color);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-content h3 a {
  color: var(--text-primary);
  line-height: 26px;
}

.card-content h3 a:hover {
  color: var(--primary-color);
}

.card-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-content time {
  font-size: 13px;
  color: var(--text-muted);
}

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

.news-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.news-item:hover {
  border-color: var(--primary-color);
  transform: translateX(3px);
}

.item-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 10px;
  background: var(--light-surface);
  border-radius: 8px;
}

.item-date {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.item-content {
  flex: 1;
}

.item-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.item-content h4 a {
  color: var(--text-primary);
  line-height: 26px;
}

.item-content h4 a:hover {
  color: var(--primary-color);
}

.item-content p {
  font-size: 14px;
  color: var(--text-secondary);
}

.view-more {
  padding: 12px;
  text-align: center;
  background: var(--light-card);
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.view-more:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(59, 130, 246, 0.02);
}

.gallery-section {
  padding: 80px 0;
  background: var(--white-bg);
}

.gallery-container {
  position: relative;
  margin-bottom: 30px;
}

.gallery-swiper {
  padding: 20px 0;
}

.gallery-slide {
  opacity: 0.85;
  transform: scale(0.97);
  transition: all 0.3s ease;
}

.gallery-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-item {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 14px;
  color: white;
}

.gallery-pagination {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--white-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-prev {
  left: -20px;
}

.gallery-next {
  right: -20px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.gallery-prev::after,
.gallery-next::after {
  font-size: 18px;
  color: var(--text-primary);
}

.gallery-prev:hover::after,
.gallery-next:hover::after {
  color: white;
}

.section4 {
  padding: 40px 0;
  background: var(--light-surface);
  border-top: 1px solid var(--border-color);
}

.section4 .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section4 .letter1 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.section4 .friendlylink {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section4 .friendlylink .wrap_friendly {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section4 .friendlylink a {
  padding: 8px 20px;
  background: var(--white-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.section4 .friendlylink a:hover {
  background: var(--white-bg);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.section5 {
  padding: 60px 0;
  background: var(--white-bg);
}

.section5 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.section5 ul li {
  text-align: center;
  padding: 35px 20px;
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
}

.section5 ul li:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.section5 ul li i {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background: var(--light-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.section5 ul li:hover i {
  background: rgba(59, 130, 246, 0.1);
}

.section5 ul li i img {
  width: 30px;
  height: 30px;
}

.section5 ul li .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section5 ul li .info span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.section5 ul li .info em {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
  font-style: normal;
}

.inner_main {
  padding: 30px 0;
  background: var(--light-surface);
}

.wrap_inner {
  display: flex;
  gap: 30px;
}

.nynav {
  width: 220px;
  flex-shrink: 0;
}

.ny_content.full-width {
  max-width: 100%;
  width: 100%;
}

.wrapside {
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.nytt {
  padding: 25px;
  background: var(--primary-color);
  text-align: center;
}

.nytt .imgbg1 {
  position: relative;
}

.nytt .letter {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}

.nytt .letter1 {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-top: -10px;
}

.nytt .letterq1,
.nytt .letterq2,
.nytt .letterq3 {
  display: none;
}

.wrapside ul {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.wrapside ul li {
  margin: 0;
  padding: 0;
}

.wrapside ul li a {
  display: block;
  padding: 15px 25px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.wrapside ul li:last-child a {
  border-bottom: none;
}

.wrapside ul li a:hover {
  background: var(--light-surface);
  color: var(--primary-color);
  padding-left: 30px;
}

.ny_content {
  flex: 1;
  min-width: 0;
}

.pc_weizhi {
  padding: 15px 20px;
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pc_weizhi a {
  color: var(--primary-color);
}

.pc_weizhi a:hover {
  text-decoration: underline;
}

.mbtop {
  display: none;
}

.newspage {
  list-style: none;
  padding: 0;
  margin: 0;
}

.newspage li {
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.newspage li:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.newspage li a {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.newspage .div_img {
  width: 200px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.newspage .div_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newspage .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newspage .info .tt1 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.newspage .info .tt2 {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.newspage .info .time {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

.pagess {
  text-align: center;
  padding: 30px 0;
}

.propage {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.propage li {
  margin: 0;
  padding: 0;
}

.propage li a {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.propage li a:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.propage .vcimg {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.propage .info {
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin: 0;
  line-height: 1.4;
  
}

.newdtedit {
  background: var(--light-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
}

.newdtedit .tt {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-align: center;
}

.newdtedit .prodett {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.newdtedit .time {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.aboutedit,
.aboutedit1 {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.aboutedit p,
.aboutedit1 p {
  margin-bottom: 15px;
}

.aboutedit img,
.aboutedit1 img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 15px 0;
}

.aboutedit h1,
.aboutedit1 h1,
.aboutedit h2,
.aboutedit1 h2,
.aboutedit h3,
.aboutedit1 h3,
.aboutedit h4,
.aboutedit1 h4 {
  color: var(--text-primary);
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.proswiper-container {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.tabBox .hd {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.tabBox .hd ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.tabBox .hd ul li {
  padding: 12px 25px;
  cursor: pointer;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s ease;
}

.tabBox .hd ul li.con,
.tabBox .hd ul li.on {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tabBox .bd .con {
  padding: 10px 0;
}

.footer {
  padding: 30px 0;
  background: var(--light-surface);
  border-top: 1px solid var(--border-color);
}

.footer .copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer .copyright a {
  color: var(--primary-color);
}

.footer .copyright a:hover {
  text-decoration: underline;
}

.backtop {
  position: fixed;
  right: 30px;
  bottom: 50px;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.backtop:hover {
  transform: translateY(-3px);
  background: #2563eb;
}

.backtop::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid white;
}

.backtop.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  #header_top {
    display: none;
  }

  #header {
    top: 0;
  }

  .header {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .nav_box {
    order: 3;
    width: 100%;
    margin-top: 15px;
    justify-content: center;
  }

  .wrap_nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .yiji {
    padding: 8px 12px;
  }

  .yiji a {
    font-size: 14px;
  }

  .hero-section {
    height: 280px;
  }

  .carousel-prev,
  .carousel-next {
    width: 35px;
    height: 35px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .inner_main {
    padding: 20px 0;
  }

  .wrap_inner {
    flex-direction: column;
    gap: 20px;
  }

  .nynav {
    display: none;
  }

  .ny_content {
    width: 100%;
  }

  .pc_weizhi {
    display: none !important;
  }

  .mbtop {
    display: block !important;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .mbtop .nytt {
    margin-bottom: 10px;
  }

  .mbtop .nywz {
    font-size: 14px;
    color: var(--text-secondary);
  }

  .mbtop .nywz a {
    color: var(--primary-color);
  }

  .newspage li a {
    flex-direction: column;
    gap: 15px;
  }

  .newspage .div_img {
    width: 100%;
    height: 180px;
  }

  .newspage .info {
    align-items: flex-start;
  }

  .newspage .info .tt1 {
    font-size: 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    height: 280px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-item {
    flex-direction: column;
    gap: 15px;
  }

  .item-meta {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 15px;
  }

  .item-date {
    font-size: 18px;
  }

  .section5 ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .section5 ul li {
    padding: 20px;
    min-height: 160px;
  }

  .section5 ul li i {
    width: 60px;
    height: 60px;
  }

  .section5 ul li i img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .section5 ul {
    grid-template-columns: 1fr;
  }

  .section4 .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section4 .friendlylink {
    width: 100%;
  }

  .gallery-prev {
    left: 0;
  }

  .gallery-next {
    right: 0;
  }

  .propage {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .propage .vcimg {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .propage {
    grid-template-columns: 1fr;
  }

  .propage .vcimg {
    height: 220px;
  }
}