/* CSS Reset - 默认样式重置 */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

@font-face {
  font-family: MyFont;
  src: url('../fonts/FZCSJW.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family:"方正黑体_GBK";
  src: url('../fonts/fangzhengheitiGBK.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family:"方正楷体_GBK";
  src: url('../fonts/fangzhengkaitiGBK.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family:"方正仿宋_GBK";
  src: url('../fonts/fangzhengfangsongGBK.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family:"方正仿宋_gkb";
  src: url('../fonts/fangzhengfangsongGBK.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family:"方正小标宋_GBK";
  src: url('../fonts/fangzhengbiaosongGBK.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* 基础样式设置 */
html {
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  height: 100%;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 1600px;
}

/* 链接样式 */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

/* 标题样式重置 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
  line-height: inherit;
}

/* 列表样式重置 */
ul,
ol {
  list-style: none;
}

/* 表格样式重置 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

/* 表单元素样式重置 */
input,
textarea,
select,
button {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* 图片样式 */
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* 其他元素样式重置 */
p {
  margin: 0;
}



strong,
b {
  font-weight: normal;
}




/* 移动端触摸优化 */
button,
input,
select,
textarea,
a {
  -webkit-tap-highlight-color: transparent;
}

/* 滚动条样式（Webkit） */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 选中文本样式 */
::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}


/* 顶部渐变条 */
.header-top-line {
  height: 8px;
  background: linear-gradient(90deg, #069090 0%, #77be71 100%);
  width: 100%;
}

.logoBodyBg {
  background: url("../image/headBg.png") no-repeat;
  background-size: 100% 100%;
}

/* 头部主体区域 */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  position: relative;
  margin: 0 auto;
  width: 1400px;
}

/* Logo区域 */
.header-logo img {
  height: auto;
  max-height: 80px;
  display: block;
}

/* 移动端控件容器 */
.mobile-header-controls {
  display: none;
  align-items: center;
  gap: 15px;
}

/* 移动端搜索按钮 */
.mobile-search-btn {
  width: 30px;
  height: 30px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-search-btn:hover {
  background: #069090;
}

.mobile-search-btn img {
  width: 100%;
}

/* 汉堡菜单按钮 */
.hamburger-menu {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* 汉堡菜单激活状态 */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* 移动端搜索覆盖层 */
.mobile-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
}

.mobile-search-container {
  width: 90%;
  max-width: 95%;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  position: relative;
  margin: 0 auto;
}

.mobile-search-box {
  display: flex;
  align-items: center;
  border: 2px solid #069090;
  border-radius: 25px;
  overflow: hidden;
}

.mobile-search-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #000;
  /* background: transparent; */
}

.mobile-search-submit {
  width: 50px;
  height: 50px;
  background: url("../image/search.png") no-repeat;
  background-size: 100% 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-search-submit img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.mobile-search-close {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 30px;
  height: 30px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}

/* 防止移动端菜单打开时body滚动 */
body.mobile-menu-open {
  overflow: hidden;
}



/* 导航条 */
.navbar {
  background: rgba(255,255,255,.3);
  padding: 0;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 1400px;
  margin: 0 auto;
}

.nav-item {
  list-style: none;
}

.nav-link {
  display: block;
  padding: 18px 35px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: #ffffff;
}

/* ===== 二级菜单样式 ===== */

/* 有子菜单的导航项 */
.nav-item.has-submenu {
  position: relative;
}

/* 子菜单箭头 - PC端隐藏 */
.submenu-arrow {
  display: none;
}7
/* 隐藏没有二级菜单的三角符号 */
.nav-item:not(.has-submenu) .submenu-arrow {
  display: none !important;
}


/* 二级菜单容器 */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border-top: 3px solid #069090;
}

/* 鼠标悬停时显示二级菜单 */
.nav-item.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 二级菜单项目 */
.submenu li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child {
  border-bottom: none;
}

/* 二级菜单链接 */
.submenu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  transition: all 0.3s ease;
  position: relative;
}

/* 二级菜单链接悬停效果 */
.submenu a:hover {
  background: #9d2529;
  color: #ffffff;
  padding-left: 30px;
}

/* 二级菜单链接悬停时的小箭头 */
.submenu a:hover::before {
  content: '▶';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #ffffff;
}

/* 二级菜单项目淡入动画 */
.submenu li {
  animation-delay: 0.05s;
}

.submenu li:nth-child(2) {
  animation-delay: 0.1s;
}

.submenu li:nth-child(3) {
  animation-delay: 0.15s;
}

.submenu li:nth-child(4) {
  animation-delay: 0.2s;
}

/* 当父菜单项悬停时，保持高亮状态 */
.nav-item.has-submenu:hover>.nav-link {
  background-color: rgba(255, 255, 255, 0.2);
}

/* 防止子菜单和父菜单之间的间隙导致菜单消失 */
.nav-item.has-submenu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 5px;
  background: transparent;
}

/* 移动端二级菜单激活状态 */
.submenu.mobile-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.has-submenu.menu-open>.nav-link {
  background-color: rgba(255, 255, 255, 0.2);
}


/* banner顶部信息 */
/* header / nav / banner styles */
.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.containerBanner {
  width: 100%;
}

.site-header {
    background: transparent;
    color: #fff;
    position: absolute;
    z-index: 1000;
    width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  padding: 0 10px;
  max-width: 1400px;
  margin: 0 auto;
}
.headBg{
  background-size: 100% 100%;
}
.logo img {;
  display: block;
}

.search-wrap {
  display: flex;
  align-items: center;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box input[type="text"] {
  width: 200px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: #fff;
  color: #666;
}

.search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d2a85a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.search-btn img {
  width: 20px;
  height: 20px;
}

.site-nav {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);

}

.site-nav ul {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}



.site-nav li a {
  color: #404040;
  font-weight: 700;
  font-size: 22px;
}

.site-nav li.active a {
  color: #b71c1c;
}

/* 二级菜单 - 桌面 */
.site-nav {
  position: relative;
}
.site-nav ul li {
  position: relative;
  overflow: visible;
}
.site-nav li.has-sub > a::after {
  content: " ▾";
  font-size: 12px;
  margin-left: 6px;
  color: #666;
  font-weight: 600;
  display: none;
}
#main-nav>li:last-child .sub-menu{
  left: 0;
}
.site-nav .sub-menu {
  position: absolute;
  /* align directly under the parent list item to avoid hover gap */
  top: 100%;
  left: -17px;
  width: 100%;
  min-width: 120px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: none;
  padding: 6px 0;
  border-radius: 4px;
  z-index: 999;
  margin-top: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.site-nav li:hover > .sub-menu {
  display: block;
  visibility: visible;
  opacity: 1;
}
.site-nav .sub-menu li {
  padding: 0;
}
.site-nav .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.site-nav .sub-menu li a:hover {
  background: #f5f5f5;
  color: #a93135;
}

.banner-wrap {
  background: #fff;
  padding: 0;
}

.main-swiper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.main-swiper .swiper-slide img {
  width: 100vw;
  height: auto;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.banner-swiper-prev {
  left: calc((100% - 1400px)/2 + 10px) !important;
  width: 50px !important;
  height: 50px !important;
}

.banner-swiper-next {
  right: calc((100% - 1400px)/2 + 10px) !important;
  width: 50px !important;
  height: 50px !important;
}

.banner-swiper-prev img,
.banner-swiper-next img {
  width: 100%;
  height: 100%;
}

.banner-swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 12;
  justify-content: center;
}

.banner-swiper-pagination .swiper-pagination-bullet {
  width: 35px !important;
  height: 35px !important;
  background: transparent;
  opacity: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: none;
}

.banner-swiper-pagination .swiper-pagination-bullet .bullet-normal {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  display: block;
}

.banner-swiper-pagination .swiper-pagination-bullet .bullet-active-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 36px;
  height: 36px;
}

.banner-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .bullet-normal {
  display: none;
}

.banner-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .bullet-active-img {
  display: block;
}

/* 工作动态 */
.gzdt-section {
  padding: 40px 0 30px;
  background: url("../image/gzdtIndexBg.png") no-repeat;
  background-size: 100% 100%;
}

.gzdt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 18px;
}

.gzdt-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gzdt-title h3 {
  font-size: 28px;
  color: #333;
font-family:MyFont;
}

.gzdt-more img {
  /* width: 90px; */
  /* height: 56px; */
  display: block;
}

.gzdt-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.gzdt-left,
.gzdt-right {
  width: 675px;
  overflow: hidden;
}

.gzdt-left {
  position: relative;
}

.gzdt-left .gzdt-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.gzdt-left .gzdt-image img {
  width: 100%;
  height: 475px;
  display: block;
  transition: all .6s;

}
.gzdt-left .gzdt-image:hover img {
  transform: scale(1.1);
}
.gzdt-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85%;
  padding: 18px 0;
  background: url("../image/gzdtBj.png") no-repeat;
  background-size: 100% 100%;
  color: #fff;
  display: flex;
  gap: 18px;
  align-items: center;
}

.gzdt-date {
  min-width: 84px;
  text-align: center;
}

.gzdt-day {
  display: block;
  font-size: 30px;
  font-family:MyFont;
height:40px;
}

.gzdt-month {
  display: block;
  font-size: 16px;
  /* opacity: 0.9; */
}

.gzdt-desc {
  font-size: 20px;
  line-height: 1.4;
  max-height: 54px;
  overflow: hidden;
  width: 80%;
  /* 超出两行 */
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}

.gzdt-list {
  background: transparent;
}

.gzdt-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gzdt-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.gzdt-num {
  width: 72px;
  font-size: 24px;
  color: #b53737;
  font-weight: 700;
  text-align: center;
}

.gzdt-item {
  color: #333;
  font-size: 16px;
}

.gzdt-date-right {
  width: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-right: 10px;
  background: url("../image/gzdtTimeBg.png") no-repeat;
  background-size: 100% 100%;
}

.gzdt-day-right {
  font-size: 30px;
  color: #a93135;
  line-height: 1;
  font-family: MyFont;
}

.gzdt-month-right {
  font-size: 15px;
  color: #404040;
  font-weight:bold;
}

.gzdt-list li .gzdt-item {
  font-size: 20px;
  color: #404040;
  width: 560px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* 确保有足够高度显示两行 */
  line-height: 1.4; /* 建议设置行高 */
  max-height: 2.8em; /* 行高 × 行数 */
}

.gzdt-list li a.gzdt-link-right {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 70px;
  /* padding: 18px 0; */
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.zbfc-article{

  width: 100%;
}
.zbfc-article .zbfc-thumb img{
  transition: all .6s;
}
.zbfc-article:hover .zbfc-thumb img{
  transform: scale(1.1);
}
.gzdt-list li a.gzdt-link-right:hover .gzdt-item {
  color: #404040;
font-weight:bold;
}

.gzdt-list li a.gzdt-link-right:hover .gzdt-date-right {
  background: url("../image/hoverGzdtTimeBg.png") no-repeat;
  background-size: 100% 100%;
}

.gzdt-list li a.gzdt-link-right:hover .gzdt-day-right {
  color: #fff;
}

.gzdt-list li a.gzdt-link-right:hover .gzdt-month-right {
  color: #fff;
}

.gzdt-controls {
  position: absolute;
  right: calc((100% - 1400px)/2 + 10px);
  top: calc(50% + 20px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gzdt-prev,
.gzdt-next {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 100;
}

.gzdt-prev {
  position: absolute;
  right: 60px;
  bottom: 40px;
  background: url("../image/gzdtLeft.png") no-repeat;
  background-size: 100% 100%;
}

.gzdt-next {
  position: absolute;
  right: 10px;
  bottom: 40px;
  background: url("../image/gzdtRight.png") no-repeat;
  background-size: 100% 100%;
}


.gzdt-controls {
  z-index: 20;
}

/* 通知公告 & 党风廉政 双栏 */
.dual-module {
  max-width: 1400px;
  margin: 36px auto 0;
  padding: 30px 0;
  background: url("../image/section-bg.png") no-repeat;
  background-size: cover;
}

.dual-row {
  display: flex;
  gap: 50px;
}

.dual-col {
  width: 675px;
  background: transparent;
}

.module-header.small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.module-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-title img {
  width: 34px;
  height: 34px;
}

.module-header.small h4 {
  font-size: 28px;
  color: #333;
  margin: 0;
  font-family: MyFont;
}

.module-more img {
  width: auto;
}

.dual-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dual-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  height: 70px;
  color: #404040;
  text-decoration: none;
  font-size: 20px;
  border-radius: 6px;
  position: relative;
  padding: 0 20px;
}

.dual-list li {
  border-bottom: 1px dashed #e5e5e5;
  margin-bottom: 10px;
}

.dual-list li:last-child {
  border-bottom: none;
}

.dual-list li a .dual-dot {
  color: #404040;
  margin-right: 8px;
  width: calc(675px - 180px);
  /* 超出一行 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dual-left .dual-list li:hover a .dual-dot{
 color:#a93135;
}
.dual-list li a .dual-date {
  color: #404040;
  font-size: 18px;
  width: 128px;
  height: 35px;
  /* line-height: 70px; */
}

.dual-list li a .dual-date img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-top: 2px;
  position: relative;
  top: 2px;
}

.right-style li a .bullet {
  color: #404040;
  margin-right: 8px;
  width: calc(675px - 200px);
  /* 超出一行 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dual-left .dual-list li:hover a {
  background: url("../image/tzggHoverBg.png") no-repeat;
  background-size: 100% 98%;
  padding: 0 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dual-left .dual-dot img {
  margin-right: 5px;
}

.dual-right .dual-list li a {
  background-color: #f9f5f6;
}

.dual-right .dual-list li:hover a {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.dual-right .dual-list li:hover .bullet{
 color:#a93135;
}
.dual-right .dual-list li:hover .dual-date {
  background-color: #a93135;
  border-radius: 15px;
  color: #fff;
  padding: 0 10px;
}

/* 调整列表行外边距（卡片间距） */



#search {
  background: url("../image/search.png") no-repeat;
  background-size: 100%;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.banner-swiper-prev::after {
  display: none;
}

.banner-swiper-next::after {
  display: none;
}

/* 支部风采 */
.zbfc-section {
  padding: 40px 0 20px;
  background: url("../image/zbfcBg.png") no-repeat;
  background-size: cover;
}
ghfc-section{
  padding: 40px 0 20px;
  background: url("../image/ghfcBg.png") no-repeat;
  background-size: cover;
}
.zbfc-header {
  max-width: 1400px;
  margin: 0 auto 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zbfc-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zbfc-title img {
  width: 36px;
}

.zbfc-title h3 {
  font-size: 28px;
  color: #333;
  margin: 0;
  font-family: MyFont;
}

.zbfc-swiper-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0 60px;
  overflow: hidden;
}

.zbfc-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.zbfc-card {
  display: block;
  width: 100%;
  max-width: 300px;
  color: inherit;
  text-decoration: none;
}

.zbfc-thumb {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
}

.zbfc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zbfc-title-line {
  font-size: 20px;
  color: #333;
  margin: 10px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 60px;
line-height:1.3;
}

.zbfc-desc {
  font-size: 16px;
  color: #404040;
  line-height: 1.4;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 38px;
}

.zbfc-link:hover .zbfc-title-line {
  color: #a93135;
}

.zbfc-link:hover .zbfc-meta {
  border-bottom: 1px solid #a93135;
}

.zbfc-meta {
  font-size: 14px;
  color: #404040;
  border-bottom: 1px dashed #e5e5e5;
  padding-bottom: 12px;
  display: block;
  text-align: right;
}

.zbfc-meta img {
  width: 16px;
  margin-right: 4px;
  position: relative;
  top: 2px;
}

.zbfc-prev,
.zbfc-next {
  position: absolute;
  bottom: 8px;
  width: 36px;
  height: 30px;
  background: none;
  border: none;
  z-index: 30;
  cursor: pointer;
}

.zbfc-prev img,
.zbfc-next img {
  width: 100%;
  height: 100%;
  display: block;
}

.zbfc-prev {
  left: calc(50% - 30px);
  transform: translateX(-50%);
}

.zbfc-next {
  left: calc(50% + 30px);
  transform: translateX(-50%);
}

/* 工会风采 */
.ghfc-section {
  padding: 40px 0 60px;
  background: url("../image/ghfcBg.png") no-repeat;
  background-size: cover;
}

.ghfc-header {
  max-width: 1400px;
  margin: 0 auto 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ghfc-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ghfc-title img {
  width: 46px;
  height: 46px;
}

.ghfc-title h3 {
  font-size: 28px;
  margin: 0;
  color: #333;
  font-family: MyFont;
}

.ghfc-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.ghfc-left {
  width: 600px;
  overflow: hidden;
}

.ghfc-right {
  width: 765px;
  position: relative;
}

.ghfc-swiper .swiper-slide {
  display: block;
}

.ghfc-article {
  display: block;
  position: relative;
}

.ghfc-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: all .6s;
}

.ghfc-article:hover .ghfc-image img {
  transform: scale(1.1);
}

.ghfc-body {
  height: 150px;
  background: url("../image/ghfcTitleBg.png") no-repeat;
  background-size: 100% 100%;
  padding: 12px 0;
  position: relative;
  top: -40px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
}

.ghfc-title-line {
  font-size: 20px;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.3;
  padding: 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 52px;
text-align: justify;
}

.ghfc-time {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: left;
  width: 110px;
  height: 25px;
  border:1px solid #ffffff;
  border-radius: 20px;
  margin: 0 auto;
  text-align: center;
}

.ghfc-feature {
  display: flex;
  gap: 12px;
  /* padding: 12px; */
  border-radius: 4px;
  justify-content: space-between;
}

.feature-item {
  width: calc((765px - 24px)/2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.feature-item figure {
  width: 350px;
  height: 230px;
  /* overflow: hidden; */
  margin: 0;
  position: relative;
  margin-bottom: 20px;
}
.feature-item figure::after{
  display: block;
  content: "";
  width: 350px;
  height: 230px;
  background-color: #f3e6e7;
  position: absolute;
  bottom: -10px;
  right: -10px;
}
.feature-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1000;
  transition: all .5s;
}
.feature-item figure:hover img {
  transform: scale(1.1);
}
.feature-item:hover .feature-body h5{
  color: #a93135;
}
.ghfc-list a:hover .ghfc-list-title{
  color: #a93135;
}
.ghfc-list a:hover .ghfc-list-time{
  color: #a93135;
}

.feature-body h5 {
  font-size: 20px;
  color: #404040;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 64px;
  font-weight: bold;
line-height:1.3;
}
.feature-desc{
  font-size: 16px;
  color: #404040;
  display: -webkit-box;
  margin-bottom: 10px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}
.feature-body time {
  font-size: 14px;
  color: #404040;
  display: block;
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px dashed #e5e5e5;
}
.feature-body time img {
  width: 16px;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
.ghfc-list {
  margin-top:15px;
}

.ghfc-list li {
  margin-bottom: 10px;
  position: relative;

}
.ghfc-list li::before{
  display: block;
  content: "";
  width: 2px;
  height: 15px;
  background-color: #a93135;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ghfc-list a {
  display: flex;
  justify-content: space-between;
  color: #404040;
  text-decoration: none;
  font-size: 18px;
  gap: 10px;
  align-items: center;
  padding-left: 15px;
}

.ghfc-list-title {
  flex: 1;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yjx-box {

  max-width: 1400px;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.yjx-content {
  width: 1190px;
  height: 200px;
  background: url("../image/yjxBg.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.yjx-title{
  font-size: 30px;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  font-family: MyFont;
}
.yjx-title img{
  margin-right: 10px;
}
.yjx-info{
  display: flex;

}
.yjx-phone,.yjx-email{
  height: 55px;
  background-color: rgba(240, 219, 118, .5);
  font-size: 30px;
  color: #a93135;
  text-align: center;
  line-height: 55px;
  border-radius: 20px;
  margin-right: 10px;
  padding: 0 30px;
  font-family: MyFont;
font-weight: normal;
}

.yjx-ewm{
  width: 200px;
}
.yjx-title-img {
  width: 120px;
}

.yjx-info {
  color: #812a2a;
  font-weight: 700;
}


.yjx-qr img {
  width: 110px;
  height: 110px;
  display: block;
  border: 6px solid #fff;
  border-radius: 6px;
  background: #fff;
}

/* footer */
.site-footer {
  background: url("../image/footerBg.png") no-repeat;
  background-size: cover;
  padding: 60px 0;
  color: #fff;
}
.site-footer .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer .footer-left img {
  /* height: 72px; */
  display: block;
}
.footer-left{
      display: flex;
    justify-content: space-between;
    width: 800px;

}
.footer-left span{
  font-family: 'MyFont';
font-size:32px;
letter-spacing: 8px;
}
.site-footer .footer-address {
  font-size: 16px;
  opacity: 0.95;
  margin: 0 0 6px;
}
.site-footer .footer-copy {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}



/* 师生服务页面 */
.ssfwBanner{
  position: relative;
}
.ssfwLogo{
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}