/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.more{

 display:none;
}
.possplit{
background:none;
text-indent:0;
padding:0 5px;
width:auto;
}

.wp_nav .sub-nav{
  background-color:rgba(0,0,0,.3);
border:none;

}
a{
  text-decoration: none;
  color: none;
}
body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 0;
}

/* 顶部导航栏 */
.header {
  background: transparent;
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  width: 100%;
}

.header.scrolled {
  background: rgba(74, 144, 226, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.wp_nav .nav-item a span.item-name{

 padding:5px;
}
.wp_nav .sub-nav{

 width:auto;
}

.wp_nav .sub-nav .nav-item a{
border-top:none;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  /* padding: 0 100px; */
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.title-section .title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
  margin-left: 50px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  transform: translateY(-2px);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

/* Banner轮播 */
.banner-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.banner-swiper {
  width: 100%;
  height: 100%;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-swiper .swiper-pagination {
  display: none;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
  display: none;
}

/* 通用内容区域样式 */
.content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  animation: fadeInUp 0.8s ease-out;
}

.banner-section {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #4a90e2;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #357abd;
}

/* 信息公开目录模块 */
.info-catalog-section {
  padding: 30px 0;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
}

.title-logo {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.title-text {
  font-size: 30px;
  color: #404040;
  font-weight: initial;
  margin: 0;
  letter-spacing: 1px;
}

.catalog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* 或 space-between */
  gap: 20px; /* 项之间的间距 */
}

.catalog-grid .catalog-item:nth-child(5) {
  grid-column: 1 / span 1;
  grid-row: 2;
}

.catalog-grid .catalog-item:nth-child(6) {
  grid-column: 2 / span 1;
  grid-row: 2;
}

.catalog-grid .catalog-item:nth-child(7) {
  grid-column: 3 / span 1;
  grid-row: 2;
}

.catalog-item {
flex:1;
  width: 100%;
  border: 1px solid #070002;
  background: #fff;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #4a90e2;
}
/* 平板端：一排3个 */
@media (max-width: 768px) {
  .catalog-item {
    flex: 0 0 calc(33.333% - 10px);
  }
}

/* 手机端：一排2个 */
@media (max-width: 480px) {
  .catalog-item {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width:300px) {
  .catalog-item {
    flex: 0 0 100%; /* 宽度100%，一排一个 */
  }
}
.catalog-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

.catalog-text {
  font-size: 16px;
  color: #404040;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* 新闻动态模块 */


.news-section .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.title-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.more-link {
  font-size: 20px;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.more-link:hover {
  color: #204c9a;
}

.news-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.news-swiper .swiper-slide {
  width: auto;
}

.news-item {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 530px;
  display: flex;
  flex-direction: column;
}

.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-image {
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-img {
  transform: scale(1.05);
}

.news-content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  background: transparent;
  transition: border-color 0.3s ease;
  border-top: none;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.news-icon {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.news-item:hover .news-icon {
  content: url('../images/hoverIcon.png');
}

.news-date {
  font-size: 18px;
  color: #404040;
  transition: color 0.3s ease;
}

.news-item:hover .news-date {
  color: #204c9a;
}

.news-title {
  font-size: 20px;
  color: #404040;
  margin: 0;
  font-weight: initial;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.news-item:hover .news-title {
  color: #204c9a;
}

.news-item:hover .news-content {
  border-color: #204c9a;
}

.news-pagination {
  margin-top: 40px;
  position: relative;
  text-align: center;
}

.news-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.news-pagination .swiper-pagination-bullet-active {
  background: #4a90e2;
  transform: scale(1.2);
}

/* 联系信息模块 */
.contact-section {
  padding: 40px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 100%;
}

.contact-card {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 15px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-card>* {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 24px;
  font-weight: initial;
  margin: 0 0 20px 0;
  color: #fff;
  text-align: left;
  letter-spacing: 1px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 3px 0;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-text {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.contact-card:first-child {
  background: url("../images/xxgksl.png") no-repeat center center;
  background-size: 100% 100%;
}

.contact-card:last-child {
  background: url("../images/jdyss.png") no-repeat center center;
  background-size: 100% 100%;
}

/* 底部Footer */
.footer {
  background: url('../images/footerbg.png') no-repeat center center;
  background-size: cover;
  padding: 40px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  object-fit: contain;
}

.footer-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-main-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 2px;
}

.footer-sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 1px;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.footer-info {
  text-align: left;
}

.footer-text {
  font-size: 16px;
  color: #fff;
  margin: 12px 0;
  line-height: 1.6;
  font-weight: 400;
}

.allContent {
  width: 100%;
  height: auto;
  background: url('../images/allBj.png') no-repeat;
  background-size: 100% 100%;
}

/* ========================================
   响应式设计 - 统一整合
======================================== */

/* 1024px以下 - 平板设备 */
@media (max-width: 1024px) {

  /* 导航栏 */
  .nav-container {
    padding: 0 50px;
    height: 70px;
    max-width: 1400px;
  }

  .logo {
    height: 50px;
  }

  .title-section .title {
    font-size: 24px;
  }

  .nav-list {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 15px;
  }

  /* Banner */
  .banner-section {
    height: 400px;
  }

  /* 信息公开目录 */
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .catalog-grid .catalog-item:nth-child(5) {
    grid-column: 1 / span 1;
    grid-row: 2;
  }
  
  .catalog-grid .catalog-item:nth-child(6) {
    grid-column: 2 / span 1;
    grid-row: 2;
  }
  
  .catalog-grid .catalog-item:nth-child(7) {
    grid-column: 3 / span 1;
    grid-row: 2;
  }
  
  .title-text {
    font-size: 30px;
  }

  .catalog-item {
    padding: 30px 15px;
    min-height: 160px;
  }

  .catalog-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .catalog-text {
    font-size: 18px;
  }

  /* 新闻模块 */
  .news-item {
    height: 520px;
  }

  .news-image {
    height: 280px;
  }

  .news-content {
    padding: 25px 20px;
  }

  .news-title {
    font-size: 22px;
  }

  .news-date {
    font-size: 18px;
  }

  /* 联系信息 */
  .contact-section {
    padding: 60px 0;
  }

  .contact-cards {
    gap: 30px;
  }

  .contact-card {
    padding: 40px 30px;
  }

  .contact-title {
    font-size: 25px;
    margin-bottom: 35px;
  }

  .contact-info {
    gap: 20px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-icon {
    width: 20px;
    height: 20px;
  }

  /* Footer */
  .footer {
    padding: 35px 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-main-title {
    font-size: 24px;
  }

  .footer-sub-title {
    font-size: 20px;
  }

  .footer-text {
    font-size: 15px;
  }
}
.sidebar{
margin:0 auto;
}
/* 768px以下 - 手机端 */
@media (max-width: 768px) {
.content-main p img{
 width:100% !important;
height:100% !important;
}
.page_nav .first{
width:40%;
}
.page_nav .last{
width:30%;
}
#wp_paging_w129 .wp_paging .page_nav{
 width:100%;
display:flex;
padding-left:0;
border:none;
}
.page_jump{
 width:100% !important;
display:flex !important;
        justify-content: center;
border:none !important;
}
.wp_paging li span, .wp_paging li a{
margin-left:0;
}
#wp_paging_w129 .list_ul ul li:after{
display:none !important;
}
#wp_paging_w129 .wp_paging {
padding:0;
flex-direction:column;
}
#wp_paging_w129 .wp_paging span{
 line-height:initial;
}
#.wp_paging::before,#.wp_paging::after{
 display:none;
}
#wp_paging_w129  .list_ul ul li:after{
display:none;
}
.news-section   .wp_nav{display:block;}
  .wp_nav{display:none;}
  /* 通用内容区域 */
  .content-container {
    padding: 0 15px;
  }
.list_ul ul li a{
overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 62%;
    display: block;

}
  .Column_Name{
    line-height:60px !important;
font-size:20px !important;

 }
.sidebar-submenu a{
line-height:20px !important;
}
.sidebar-nav-header{
 padding:2px 10px !important;
}
  /* 导航栏 - 汉堡菜单 */
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    height: 60px;
    padding: 10px 15px;
    max-width: 100%;
  }

  .logo-section {
    margin-bottom: 0;
  }

  .logo {
    height: 40px;
  }

  .title-section .title {
    font-size: 18px;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(74, 144, 226, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    margin-left: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }

  .nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: left;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
  }

  /* Banner */
  .banner-section {
    height: 250px;
  }

  .banner-swiper .swiper-button-next,
  .banner-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }

  .banner-swiper .swiper-button-next::after,
  .banner-swiper .swiper-button-prev::after {
    font-size: 14px;
  }

  /* 信息公开目录 */
  .info-catalog-section {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 30px;
    gap: 10px;
    justify-content: center;
  }

  .title-logo {
    height: 35px;
  }

  .title-text {
    font-size: 26px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .catalog-grid .catalog-item:nth-child(5) {
    grid-column: 1 / span 1;
    grid-row: 3;
  }
  
  .catalog-grid .catalog-item:nth-child(6) {
    grid-column: 2 / span 1;
    grid-row: 3;
  }
  
  .catalog-grid .catalog-item:nth-child(7) {
    grid-column: 1 / span 2;
    grid-row: 4;
    justify-self: center;
    max-width: calc(50% - 7.5px);
  }

  .catalog-item {
    padding: 20px 12px;
    min-height: 120px;
  }

  .catalog-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .catalog-text {
    font-size: 14px;
    line-height: 1.3;
  }

  /* 新闻模块 */
  .news-section {
    padding: 40px 0;
  }

  .news-section .section-title {
    margin-bottom: 30px;
  }

  .title-left {
    gap: 10px;
  }

  .news-item {
    height: 370px;
  }

  .news-image {
    height: 200px;
  }

  .news-content {
    padding: 15px 12px;
  }

  .news-meta {
    margin-bottom: 15px;
  }

  .news-icon {
    width: 30px;
    height: 30px;
  }

  .news-title {
    font-size: 20px;
    line-height: 1.4;
  }

  .news-date {
    font-size: 14px;
  }

  .more-link {
    font-size: 16px;
  }

  /* 联系信息 */
  .contact-section {
    padding: 40px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .contact-title {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
  }

  .contact-info {
    gap: 12px;
  }

  .contact-item {
    gap: 12px;
    padding: 2px 0;
  }

  .contact-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
  }

  /* Footer */
  .footer {
    padding: 25px 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
    gap: 15px;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-info {
    text-align: center;
  }

  .footer-main-title {
    font-size: 20px;
  }

  .footer-sub-title {
    font-size: 16px;
  }

  .footer-text {
    font-size: 13px;
    margin: 5px 0;
    line-height: 1.4;
  }
}

/* 480px以下 - 小屏手机 */
@media (max-width: 480px) {

  /* 通用内容区域 */
  .content-container {
    padding: 0 10px;
  }

  /* 导航栏 */
  .nav-container {
    padding: 8px 10px;
  }

  .logo {
    height: 40px;
  }

  /* 375px以下单独处理 */
}

@media (max-width: 375px) {
  .logo {
    height: 35px;
  }

  .nav-list {
    gap: 5px;
  }

  .nav-link {
    font-size: 12px;
    padding: 6px 8px;
  }

  /* Banner */
  .banner-section {
    height: 200px;
  }

  /* 信息公开目录 */
  .info-catalog-section {
    padding: 30px 0;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .title-logo {
    height: 30px;
  }

  .title-text {
    font-size: 20px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .catalog-grid .catalog-item:nth-child(5) {
    grid-column: 1;
    grid-row: 5;
  }
  
  .catalog-grid .catalog-item:nth-child(6) {
    grid-column: 1;
    grid-row: 6;
  }
  
  .catalog-grid .catalog-item:nth-child(7) {
    grid-column: 1;
    grid-row: 7;
    justify-self: stretch;
    max-width: 100%;
  }

  .catalog-item {
    padding: 18px 15px;
    min-height: 100px;
  }

  .catalog-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .catalog-text {
    font-size: 13px;
  }

  /* 新闻模块 */
  .news-section {
    padding: 30px 0;
  }

  .news-section .section-title {
    margin-bottom: 25px;
  }

  .news-item {
    height: 300px;
  }

  .news-image {
    height: 180px;
  }

  .news-content {
    padding: 12px 10px;
  }

  .news-meta {
    margin-bottom: 12px;
  }

  .news-icon {
    width: 25px;
    height: 25px;
  }

  .news-title {
    font-size: 14px;
    line-height: 1.3;
  }

  .news-date {
    font-size: 12px;
  }

  .more-link {
    font-size: 14px;
  }

  /* 联系信息 */
  .contact-section {
    padding: 30px 0;
  }

  .contact-cards {
    gap: 15px;
  }

  .contact-card {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .contact-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .contact-info {
    gap: 10px;
  }

  .contact-item {
    gap: 10px;
    padding: 1px 0;
  }

  .contact-text {
    font-size: 12px;
    line-height: 1.3;
  }

  .contact-icon {
    width: 25px;
    height: 25px;
  }

  /* Footer */
  .footer {
    padding: 20px 0;
  }

  .footer-container {
    gap: 15px;
    padding: 0 15px;
  }

  .footer-left {
    gap: 12px;
  }

  .footer-main-title {
    font-size: 18px;
  }

  .footer-sub-title {
    font-size: 14px;
  }

  .footer-text {
    font-size: 12px;
    margin: 4px 0;
    line-height: 1.3;
  }
}

/* 320px以下 - 超小屏幕 */
@media (max-width: 320px) {
  .nav-container {
    padding: 5px 8px;
  }

  .logo {
    height: 35px;
  }

  .nav-link {
    font-size: 11px;
    padding: 4px 6px;
  }

  .banner-section {
    height: 180px;
  }

  .info-catalog-section {
    padding: 20px 0;
  }

  .title-text {
    font-size: 18px;
  }

  .catalog-item {
    padding: 15px 10px;
    min-height: 90px;
  }

  .catalog-icon {
    width: 35px;
    height: 35px;
  }

  .catalog-text {
    font-size: 12px;
  }

  .news-section {
    padding: 20px 0;
  }

  .news-item {
    height: 280px;
  }

  .news-image {
    height: 160px;
  }

  .news-content {
    padding: 10px 8px;
  }

  .news-title {
    font-size: 13px;
  }

  .news-date {
    font-size: 11px;
  }

  .contact-section {
    padding: 20px 0;
  }

  .contact-card {
    padding: 15px 10px;
  }

  .contact-title {
    font-size: 16px;
  }

  .contact-text {
    font-size: 11px;
  }

  .footer {
    padding: 15px 0;
  }

  .footer-main-title {
    font-size: 16px;
  }

  .footer-sub-title {
    font-size: 12px;
  }

  .footer-text {
    font-size: 11px;
  }

  .footer-logo {
    width: 200px;
  }
}

.nav-item a {
  padding: 10px 15px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap
}

.item-name {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;

}

.nav-item>a:hover::before{
  width: 80%;
}
.wp_nav .nav-item:hover .sub-nav{
    visibility: visible;
}
.wp_nav .sub-nav .nav-item .mark{
background:none;
}
.nav-item a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* ========================================
   移动端全屏导航菜单样式
======================================== */
.mobile-fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-fullscreen-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  padding: 80px 20px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mobile-nav-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}

.mobile-nav-link {
  flex: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.arrow-icon {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  transition: transform 0.3s ease;
  display: block;
}

.mobile-nav-item.active .arrow-icon {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(0, 0, 0, 0.1);
}

.mobile-nav-item.active .mobile-submenu {
  max-height: 1000px;
  padding: 10px 0;
}

.mobile-submenu li {
  margin: 0;
}

.mobile-submenu a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-submenu a::before {
  content: '•';
  position: absolute;
  left: 25px;
  color: rgba(255, 255, 255, 0.6);
}

.mobile-submenu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding-left: 45px;
}

/* 移动端导航响应式 */
@media (min-width: 769px) {
  .mobile-fullscreen-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    z-index: 10000;
  }
  
  .mobile-fullscreen-nav {
    padding-top: 60px;
  }
  
  .mobile-nav-content {
    padding: 20px 15px 40px;
  }
  
  .mobile-nav-link {
    font-size: 16px;
  }
  
  .mobile-submenu a {
    font-size: 15px;
    padding: 10px 20px 10px 35px;
  }
  
  .mobile-submenu a::before {
    left: 20px;
  }
  
  .mobile-submenu a:hover {
    padding-left: 40px;
  }
}

@media (max-width: 480px) {
  .mobile-nav-content {
    padding: 15px 12px 30px;
  }
  
  .mobile-nav-header {
    padding: 14px 16px;
  }
  
  .mobile-nav-link {
    font-size: 15px;
  }
  
  .mobile-nav-toggle {
    width: 28px;
    height: 28px;
  }
  
  .arrow-icon {
    font-size: 12px;
  }
  
  .mobile-submenu a {
    font-size: 14px;
    padding: 10px 16px 10px 32px;
  }
  
  .mobile-submenu a::before {
    left: 18px;
  }
  
  .mobile-submenu a:hover {
    padding-left: 36px;
  }
}

/* 动画效果 */
@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-fullscreen-nav.active .mobile-nav-item {
  animation: slideInDown 0.4s ease forwards;
}

.mobile-fullscreen-nav.active .mobile-nav-item:nth-child(1) {
  animation-delay: 0.05s;
}

.mobile-fullscreen-nav.active .mobile-nav-item:nth-child(2) {
  animation-delay: 0.1s;
}

.mobile-fullscreen-nav.active .mobile-nav-item:nth-child(3) {
  animation-delay: 0.15s;
}

.mobile-fullscreen-nav.active .mobile-nav-item:nth-child(4) {
  animation-delay: 0.2s;
}

.mobile-fullscreen-nav.active .mobile-nav-item:nth-child(5) {
  animation-delay: 0.25s;
}

.mobile-fullscreen-nav.active .mobile-nav-item:nth-child(6) {
  animation-delay: 0.3s;
}

.mobile-fullscreen-nav.active .mobile-nav-item:nth-child(7) {
  animation-delay: 0.35s;
}