/*典型案例*/
/*头部*/
header.main nav.main .main-container {
  height: 132px;
}

header.main.jjfa nav.main {
  border-bottom: none;
}


header.main nav.main {
  background-color: #F7F7F7;
}

header.main .nav-list {
  text-align: center;
}

header.main.jjfa .content p {
  margin-top: 18px;
  font-weight: 400;
  font-size: 19px;
  color: #272727;
}

header.main .nav-list li {
  height: 75px;
  font-weight: 400;
  font-size: 16px;
  color: #272727;
  margin: 0 20px;
  width: 85px;
}

nav.main ul li:hover {
  border-bottom: 2px solid #DC0014;
}


header.main .main-container.content {
  background-image: url('../../images/educationNew/xwzx-bg.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 519px;
  padding-top: 152px;

}

header.main .main-container p {
  margin: 18px auto 46px auto;
}

header.main .content h1 {
  font-size: 48px;
  color: #DC0014;
  margin-bottom: 0px;
  width: 1070px;
  margin: 0 auto;
  text-align: left;
}

header.main.content-center .main-container p {
  width: 1070px;
  font-size: 24px;
  color: #272727;
  margin-top: 28px;
  margin-bottom: 54px;
  text-align: left;
  height: 59px;
  line-height: 35px;
}


header.main.content-center {
  height: auto;
}

header .more-button {
  width: 161px;
  height: 58px;
  font-size: 21px;
  margin-top: 0;
}

header .more-button-container {
  width: 1070px;
  margin: 0 auto;
  text-align: left;
  margin-top: 76px;
}

/*正文*/
.xw-list {
  width: 1060px;
  margin: 0 auto;
  color: #2A2A2C;
  font-size: 17px;
  margin-top: 80px;
}

.xw-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted #DEDEDE;
  height: 70px;
  padding-right: 25px;
}

.xw-content-time {
  font-size: 15px;
  color: #B7B7B7;
}

.page-container {
  height: auto;
  margin-top: 105px;
  margin-bottom: 224px;
}

.zx-container {
  height: 241px;
  background: #DC0014;
  padding-top: 72px;
}

.zx-title {
  font-size: 30px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
}

.zx-button {
  display: block;
  width: 225px;
  height: 45px;
  border: 1px solid #FFFFFF;
  margin: 0 auto;
  font-size: 17px;
  color: #FFFFFF;
  line-height: 45px;
  text-align: center;
}

.zx-button:visited {
  color: #FFFFFF;
}
/* 创建新的粘性上下文 */
header.main {
  position: relative;
}

header.main nav.main {
  position: fixed; /* 改为fixed定位 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #F7F7F7;
}

/* 为body内容增加上边距，避免被固定导航栏遮挡 */
body {
  padding-top: 132px; /* 等于导航栏的高度 */
}