/* ===================== Banner 轮播区域 ===================== */
.banner {
  width: 100%;
  height: 380px;
  position: relative;
}
.banner .banner-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.banner .banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner .banner-swiper .swiper-pagination {
  position: absolute;
  bottom: 108px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.banner .banner-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  background: url(../images/banner_swiper_pagination_inactive.png.png) no-repeat
    center center;
  background-size: contain;
  border-radius: 0;
  opacity: 1;
  cursor: pointer;
}
.banner .banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: url(../images/banner_swiper_pagination_active.png) no-repeat
    center center;
  background-size: contain;
}

/* 动作面板 */
.action-panel {
  width: 1218px;
  height: 138px;
  margin: -60px auto 0;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: url(../images/action_panel_bg.png) no-repeat center center;
  background-size: contain;
  box-sizing: border-box;
  padding: 0 36px 20px;
}
.action-panel .action-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.action-panel .action-item:hover {
  transform: translateY(-3px);
}
.action-panel .action-item .action-icon {
  width: 42px;
}
.action-panel .action-item .action-text {
	font-size: 25px;
	font-weight: bolder;
	line-height: 1;
	height: 25px;
}
.action-panel > .action-item:nth-child(1) .action-text {
	color: #067101;
}
.action-panel > .action-item:nth-child(3) .action-text {
	color: #003c71;
}
.action-panel > .action-item:nth-child(5) .action-text {
	color: #723500;
}
.action-panel > .action-item:nth-child(7) .action-text {
	color: #6f0071;
}
.action-panel .action-separator {
  height: 100%;
}
.action-panel .action-separator img {
  display: block;
  height: 182px;
}

/* ===================== 通用区块标题样式 ===================== */
.block-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.block-title-center {
  justify-content: center;
  padding-left: 80px;
}
.block-title-left {
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 10px;
  background-image: url(../images/title_bg.png);
  background-repeat: no-repeat;
  background-size: 69px 37px;
  background-position: 33px 20px;
}
.block-title-left-long {
  height: 60px;
  background-position: 70px 24px;
  gap: 20px;
}
.block-title-left .title-bg {
  height: 37px;
}
.block-title-left .title-text {
  height: 30px;
}
.block-title-left .title-alias {
  font-size: 10px;
  color: #b58d5a;
  line-height: 10px;
  height: 30px;
  padding-top: 10px;
}
.block-title .block-more {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #713500;
  font-size: 10px;
  transition: opacity 0.3s ease;
}
.block-title .block-more:hover {
  opacity: 0.7;
  color: #713500;
}
.block-title .block-more img {
  width: 12px;
  height: 12px;
}
.block-title .block-more span {
  color: #713500;
}
.block-title .block-title-space {
  width: 100px;
}
.block-bg-1 {
  background-image: url(../images/block_2_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center 260px;
}

/* ===================== 区块1 - 工作动态 ===================== */
.block-1 {
  padding: 100px 0 30px;
}
.block-1-content {
	width: 100%;
	height: 530px;
	position: relative;
}
.block-1-swiper {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.block-1-layout {
	width: 100%;
	height: 100%;
	position: relative;
}
.block-1-layout li:nth-child(1) {
	width: 276px;
	position: absolute;
	left: 0;
	top: 53px;
}
.block-1-layout li:nth-child(2) {
	width: 276px;
	position: absolute;
	left: 0;
	top: 313px;
}
.block-1-layout li:nth-child(3) {
	width: 586px;
	height: 520px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	text-decoration: none;
	color: #333;
	transition: transform 0.3s ease;
	box-shadow: 0px 1px 4px 0px rgba(65, 30, 0, 0.3);
}
.block-1-layout li:nth-child(4) {
	width: 276px;
	position: absolute;
	right: 0;
	top: 53px;
}
.block-1-layout li:nth-child(5) {
	width: 276px;
	position: absolute;
	right: 0;
	top: 313px;
}
.block-1-item {
  width: 100%;
	display: block;
	text-decoration: none;
	color: #333;
	transition: transform 0.3s ease;
}
.block-1-item:hover {
	transform: translateY(-3px);
}
.block-1-img {
	width: 100%;
	height: 168px;
	overflow: hidden;
}
.block-1-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.block-1-item:hover .block-1-img img {
	transform: scale(1.05);
}
.block-1-title {
	font-weight: 500;
	font-size: 15px;
	color: #333333;
	line-height: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.block-1-desc {
	text-indent: 30px;
	font-weight: 500;
	font-size: 15px;
	color: #333333;
	line-height: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	position: relative;
}
.block-1-desc::before {
	display: block;
	content: "——";
	position: absolute;
	left: -30px;
	top: 0;
	font-size: 15px;
	color: #333333;
}
.block-1-layout li:nth-child(3) .block-1-img {
	height: 322px;
}
.block-1-info {
	margin-top: 10px;
}
.block-1-layout li:nth-child(3) .block-1-info {
	margin-top: 0;
	height: 198px;
	box-sizing: border-box;
	padding: 34px 24px;
	background: linear-gradient(0deg, #fffbf5, #fcedd6);
}
.block-1-layout li:nth-child(3) .block-1-title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
	line-height: 1.5;
}
.block-1-layout li:nth-child(3) .block-1-desc {
	text-indent: 0;
	font-size: 15px;
	color: #777;
	line-height: 1.8;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.block-1-layout li:nth-child(3) .block-1-desc::before {
	display: none;
}
.block-1-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 32px;
}
.block-1-nav div {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.block-1-nav div:hover {
  opacity: 0.7;
}
.block-1-nav img {
  height: 14px;
}

/* ===================== 区块2 - 通知公告 ===================== */
.block-2 {
  padding: 20px 0 50px;
}
.block-2-content {
  display: flex;
  align-items: flex-start;
}
.block-2-left {
  flex: 1;
  padding-top: 96px;
}
.block-2-left .block-title {
  margin-bottom: 10px;
}
.notice-list {
  width: 870px;
  height: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(0deg, #fcedd5, #fff4e5);
  box-shadow: 0px 1px 4px 0px rgba(46, 22, 1, 0.5);
  padding: 18px 28px;
  box-sizing: border-box;
}
.notice-item a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 10px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease;
}
.notice-item a:hover {
  background-color: rgba(139, 105, 20, 0.05);
}
.notice-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 40px;
}
.notice-month {
  font-size: 14px;
  color: #4d4d4d;
  line-height: 20px;
}
.notice-year {
  font-size: 14px;
  color: #4d4d4d;
  line-height: 20px;
}
.notice-text {
  font-size: 15px;
  color: #333;
  line-height: 17px;
  width: 346px;
  height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border-bottom: 1px dashed #999999;
}
.notice-item a:hover .notice-text {
  color: #8b6914;
}
.block-2-right {
  width: 399px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -14px;
}
.block-2-right-bg {
  width: 100%;
  height: auto;
  display: block;
}
.block-2-right-text {
  position: absolute;
  left: 102px;
  top: 119px;
  width: 240px;
}
.block-2-qrcode {
  position: absolute;
  left: 71px;
  top: 324px;
  width: 192px;
}

/* ===================== 区块3 - 兰台揽胜 ===================== */
.block-3 {
  width: 100%;
  padding: 0;
}
.block-3 .block-title {
  padding-left: 400px;
  margin-bottom: 28px;
}
.block-3-bg {
  width: 1280px;
  background: url(../images/block_3_bg.png) no-repeat left bottom;
  background-size: 1131px 659px;
  padding: 98px 0 20px;
}
.block-3-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow:hidden;
}
.block-3-row {
  display: flex;
  gap: 15px;
}
.block-3-row-1 {
  height: 220px;
  align-items: end;
  padding-left: 20px;
}
.block-3-row-2 {
  height: 300px;
}
.block-3-item {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.block-3-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.block-3-item-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-3-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  height: 80px;
}
.block-3-item-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #fff;
  font-weight: bolder;
}
.block-3-item-large .block-3-item-text {
  height: 48px;
}
.block-3-row-1 .block-3-item-large .block-3-item-text {
  bottom: 45%;
  font-size: 46px;
  font-weight: bold;
  color: #fff;
}
.block-3-row-1 .block-3-item-small .block-3-item-text {
  bottom: 18%;
}
.block-3-row-2 .block-3-item-large .block-3-item-text {
  bottom: 40%;
}
.block-3-row-2 .block-3-item-small .block-3-item-text {
  bottom: 26%;
}
.block-3-col {
  display: flex;
  gap: 15px;
}
.block-3-item-1 {
  width: 522px;
  height: 380px;
}
.block-3-item-2 {
  width: 380px;
  height: 220px;
}
.block-3-item-3 {
  width: 320px;
  height: 220px;
}
.block-3-item-4 {
  width: 320px;
  height: 300px;
}
.block-3-item-5 {
  width: 250px;
  height: 300px;
}
.block-3-item-6 {
  width: 250px;
  height: 300px;
}
.block-3-item-7 {
  width: 380px;
  height: 300px;
}

/* ===================== 区块4 - 精彩场馆 ===================== */
.block-4 {
  padding: 150px 0 140px;
}
.block-4 .block-title {
  margin-bottom: 12px;
}
.block-4-grid {
	display: flex;
	justify-content: flex-start;
	justify-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.block-4-grid li:nth-child(1),
.block-4-grid li:nth-child(4) {
	width: 800px;
	height: 300px;
}
.block-4-grid li:nth-child(2),
.block-4-grid li:nth-child(3) {
	width: 380px;
	height: 300px;
}

.block-4-item {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
.block-4-item:hover {
	transform: translateY(0px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.block-4-item-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.block-4-item:hover .block-4-item-bg {
	transform: scale(1.05);
}
.block-4-item-fade {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.block-4-item-info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 12px 16px;
	font-size: 20px;
	color: #fff;
	z-index: 2;
  box-sizing: border-box;
}
