/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  /* Ensure padding and borders are included in element sizes */
  text-decoration: none;
  color: inherit;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root,
html {
  font-size: 15px;
  --text-color: #333;
  --text-color-secondary: #666;
  --active-color: #1A87FF;
}

.page {
  position: relative;
  width: 100%;
  min-width: 1000px;
  margin: 0 auto;
  scroll-behavior: smooth;
}

.pagebottom {
  width: 100%;
  padding: 10px 0;
  background-color: #302e30;
  font-size: .93rem;
  color: #fff;
  text-align: center;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.flex,
.flex-row,
.flex-x {
  display: flex;
}

.flex-y,
.flex-column,
.flex-col {
  display: flex;
  flex-direction: column
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.justify-center {
  justify-content: center;
}

/* 主轴起点对齐 */
.justify-start {
  justify-content: flex-start;
}

/* 主轴终点对齐 */
.justify-end {
  justify-content: flex-end;
}

/* 主轴等比间距 */
.justify-between {
  justify-content: space-between;
}

/* 主轴均分间距 */
.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

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

/* 交叉轴起点对齐 */
.align-start {
  align-items: flex-start;
}

/* 交叉轴终点对齐 */
.align-end {
  align-items: flex-end;
}

/* 交叉轴第一行文字基线对齐 */
.align-baseline {
  align-items: baseline;
}

/* 交叉轴方向拉伸对齐 */
.align-stretch {
  align-items: stretch;
}

.flex-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-fill {
  flex: 1 1 auto;
}

.flex-1 {
  flex: 1;
}

/* 换行 */
.flex-wrap {
  flex-wrap: wrap;
}

/* 反向换行 */
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-unshrink {
  flex-shrink: 0;
}

.border-box {
  box-sizing: border-box;
}

.margin-auto {
  margin: 0 auto;
}

.block {
  display: block;
}

.lines-1 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

/* 公共 */
/* 标题 */
.part-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 2.5rem;
}

.part-title::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(section-1.png) no-repeat center;
  background-size: 100% 100%;
  margin-right: 1.25rem;
  flex-shrink: 0;
}

.part-title-people::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(2024-IP-1.png) no-repeat center;
  background-size: 100% 100%;
  margin-right: 0;
  flex-shrink: 0;
}

.part-title-more {
  display: block;
  width: 4.75rem;
  height: 1rem;
  background: url(more.png) no-repeat center;
  background-size: contain;
  margin-left: .625rem;
  text-indent: -9999px;
  overflow: hidden;
  flex-shrink: 0;
}

.part-title .title {
  display: inline-block;
  margin-right: .625rem;
  font-size: 1.73rem;
  font-weight: 500;
  color: var(--text-color);
}

.part-title .describe {
  font-size: 1.25rem;
  color: var(--text-color-secondary);
}

/* logo */
.page .page-top {
  position: relative;
}

.top-nav-bg-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  z-index: 99999;
}

.top-nav-bg-left {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 4rem;
  z-index: 99999;
}

.page .top-title {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 0 0;
  background-color: #fff;
}

.page .top-title .title-pic {
  display: block;
  width: 60%;
  margin: 0 auto;
}

/* swiper */
.page .top {
  position: relative;
  width: 100%;
  background: url(2024-bigbg.png) no-repeat center;
  background-size: cover;
}

.page .top .top-box {
  max-width: 1550px;
  margin: 0 auto;
}

.page .top .bg {
  width: 100%;
  height: 100%;
}

/* .swiper {
  width: 100%;
  height: 100%;
} */

/* 导航 */
.mobile-nav-button {
  display: none;
}

.top-nav {
  position: sticky;
  top: 0;
  height: 5rem;
  padding: 0 6.25rem;
  z-index: 9999;
  background: url(2024-top-nav-bg.png) no-repeat right 1% bottom;
  background-size: 12rem;
  color: #333;
}

.top-nav li {
  cursor: pointer;
}

.scroll {
  background-color: #011536;
}

.scroll .nav-item {
  color: #fff;
}

.top-nav .nav-item:hover {
  color: var(--active-color);
}

/* .top-nav .nav-item:hover::before {
  content: '';
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.875rem;
  height: .125rem;
  background-color: #1A87FF;
} */

.top-nav .nav-item .sub-nav-wrap {
  position: absolute;
  top: 2.5rem;
  padding-top: 2.25rem;
  min-width: 6.25rem;
  max-width: 62.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all .1s;
}

.sub-nav-wrap a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.scroll .sub-nav-wrap a {
  color: #fff;
}

.nav-item:hover .sub-nav-wrap,
.nav-item:hover .nav-line {
  display: block;
}

.top-nav .nav-item:hover .sub-nav-wrap {
  max-height: 62.5rem;
}

.sub-nav-wrap .sub-nav {
  display: flex;
  flex-direction: column;
  border: 1px solid #fff;
  border-radius: .25rem;
  background: rgba(255, 255, 255, .4);
}

.scroll .sub-nav-wrap .sub-nav {
  background: #011536;
}

.sub-nav-wrap .sub-nav a:hover {
  color: var(--active-color);
  background-color: #fff;
}

.scroll .sub-nav-wrap .sub-nav a:hover {
  color: #fff;
  background-color: #0086FF;
}

/* 工作动态/通知公告/党建群团 */
.page .work {
  background: url(bg-work.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 3% 5%;
  overflow: hidden;
}

.page .work .work-box {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.work .work-left {
  width: 50%;
}

.work .work-left .part-work {
  margin-bottom: 4rem;
}

/* 工作动态 */
.dynamic-top {
  display: flex;
  position: relative;
  /* width: 35.625rem; */
  /* height: 16rem; */
  background-color: #dfebff70;
  border-radius: 0 10rem 10rem 0;
  margin: 0 0 3.125rem 0;
}

.dynamic-top .dynamic-pic-bg {
  /* position: absolute; */
  top: 1.875rem;
  left: 0;
  /* width: 21.25rem; */
  width: 55%;
  /* height: 100%; */
  background: #75A8FF url(title-1.png) no-repeat bottom 0 center;
  background-size: 80%;
  padding-bottom: 8%;
  flex-shrink: 0;
}

.dynamic-top .dynamic-pic-bg img {
  width: 100%;
  position: relative;
  transform: translate(-20px, -10%);
}

.dynamic-top .dynamic-pic {
  position: absolute;
  top: -2.5rem;
  left: -1.875rem;
  width: 21.25rem;
  height: 14.0625rem;
}

.dynamic-top .dynamic-describe {
  top: 0;
  right: 1.875rem;
  overflow: hidden;
  padding: 3% 10% 3% 5%;
}

.dynamic-describe .dynamic-top-title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.625rem;
  color: var(--text-color);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  margin-bottom: .5rem;
}

.dynamic-describe .dynamic-top-content,
.dynamic-describe .dynamic-top-time {
  font-size: .875rem;
  line-height: 1.625rem;
  color: var(--text-color-secondary);
  margin-bottom: 1rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.dynamic-list {
  position: relative;
}

.dynamic-list .more {
  display: block;
  width: 4.75rem;
  height: 1rem;
  background: url(more.png) no-repeat center;
  background-size: 100% 100%;
  margin-left: .625rem;
  position: absolute;
  top: -2rem;
  right: 0;
}

.dynamic-list .dynamic-list-item {
  background: url(label.png) no-repeat left center;
  background-size: .875rem .875rem;
  padding-left: 1.25rem;
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.dynamic-list .dynamic-list-item a {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
  font-size: .93rem;
}

.dynamic-list .dynamic-list-item .dynamic-list-item-time {
  flex-shrink: 0;
  font-size: .87rem;
  font-weight: 500;
  color: #999;
}

.dynamic-list-item a:hover,
.dynamic-list-item:hover {
  color: var(--active-color);
}

/* 党建群团 */
.page .work .work-party-box {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.part-party {
  margin-bottom: 4rem;
}

/* 通知公告 */
.work .work-right {
  width: 40%;
}

.publicity-party-left {
  width: 50%;
}

.publicity-party-left .work-party-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.publicity-party-left .work-party-left {
  width: 70%;
  background-color: #94BBFF;
  border-radius: 2.5rem 0 0 2.5rem;
  padding: 4% 0 4% 0;
  margin-bottom: 2rem;
}

.work-party-left .work-party-pic {
  width: 100%;
  position: relative;
  transform: translateX(8%);
}

.work-party-left .work-party-pic img {
  width: 100%;
  height: 300px;
  border-radius: 2.5rem 0 5rem 2.5rem;
}

.publicity-party-left .work-party-list {
  width: 85%;
}

.work-party-list>li {
  margin-bottom: 0.5rem;
}

.work-party-list .work-party-item {
  position: relative;
  /* margin-left: 6.25rem; */
  margin-bottom: 3.125rem;
  transition: all .3s;
  align-items: center;
  border: 6px solid #3879e7;
  border-radius: 10rem;
}

.work-party-list .work-party-item:last-child {
  margin-bottom: 0;
}

.work-party-list .work-party-item:hover {
  transform: translateX(-3.125rem);
  cursor: pointer;
  border: 6px solid #0b9d8d;
  background-color: #0fbca9;
}

.work-party-list .work-party-item:hover .work-party-content {
  color: #fff;
}

.work-party-list .work-party-item:hover .day,
.work-party-list .work-party-item:hover .month {
  color: #0fbca9;
}

.work-party-list .work-party-item:hover .work-party-time {
  background-color: #fff;
}

.work-party-item .work-party-time {
  width: 4rem;
  height: 4rem;
  background-color: #3879e7;
  border-radius: 10rem;
  position: relative;
  transform: translateX(-1px);
}

.work-party-item .work-party-time .day {
  font-size: 1.73rem;
  font-weight: 700;
  color: #fff;
}

.work-party-item .work-party-time .month {
  font-size: .8rem;
  color: #fff;
}

.work-party-list .work-party-item .work-party-content {
  font-size: .93rem;
  line-height: 1.4;
  color: #3879E7;
  padding: 0 3.75rem 0 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  align-items: center;
  white-space: normal;
  max-height: 3em;
  margin: auto;
}

.work .work-right .part-work {
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

/* .work .work-right .work-right-header::after {
  content: '';
  display: block;
  width: 4.75rem;
  height: 1rem;
  background: url(more.png) no-repeat center;
  background-size: 100% 100%;
  margin-left: .625rem;
} */

.work-right .notice-list {
  background-color: #FEFEFF;
  border-radius: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 4px 0px, rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
  padding: 1.875rem 1.875rem 1.875rem 2.75rem;
  /* max-height: 46.875rem; */
}

.notice-item {
  height: 4.5rem;
  position: relative;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.notice-item .notice-item-date {
  position: absolute;
  top: 50%;
  left: -5rem;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 4.5rem;
  background-color: #3879E7;
  border-radius: 2rem 0 0;
  box-shadow: 1px 3px 4px 0 #88A4D3;
}

.notice-item-date .date {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .375rem;
}

.notice-item-date .year-month {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .25rem;
}

.notice-item:last-child {
  margin: 0;
}

.notice-item .notice-item-title {
  font-size: .93rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: var(--text-color);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.notice-item-title:hover,
.notice-item-title a:hover {
  color: var(--active-color);
}

.notice-item .notice-item-time {
  font-size: .875rem;
  line-height: 1rem;
  color: rgba(0, 0, 0, 0.45);
}

/* 功能支持 */
.feature-support {
  background: url(bg-support.png) no-repeat center;
  background-size: 100% 100%;
  padding: 3% 0;
}

.feature-support .support-box {
  max-width: 1500px;
  margin: 0 auto;
}

.part-support {
  margin-bottom: 5rem;
}

.part-support .title {
  color: #fff;
}

.part-support .describe {
  color: #fff;
}

.feature-support .support-list {
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
}

.support-list li {
  cursor: pointer;
  flex: 1;
}

.support-list li a {
  display: block;
  text-align: center;
}

.support-list li p {
  font-size: .93rem;
  text-align: center;
  color: #fff;
}

.support-list .support-pic {
  width: 75%;
  margin-bottom: 1.875rem;
  transition: all .3s;
}

.support-list .support-pic:hover {
  transform: scale(1.2);
}

.support-list span {
  font-size: .875rem;
  color: #fff;
}

/* 公示公开 */
.publicity-wrap {
  background: url(bg-publicity.png) no-repeat center center;
  background-size: 100% 100%;
  padding: 3% 5%;
}

.publicity-wrap .publicity-box {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
}
.work-party-left {
	width: 50%;
}

.part-publicity {
  margin-bottom: 4rem;
}

.publicity-right {
  width: 50%;
}

.mobile-publicity {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.publicity-wrap .publicity-left {
  width: 70%;
  background-color: #94BBFF;
  border-radius: 2.5rem 0 0 2.5rem;
  padding: 4% 0;
  margin-bottom: 2rem;
}

.publicity-left .publicity-pic {
  width: 100%;
  height: 300px;
  border-radius: 2.5rem 0 5rem 2.5rem;
  /* margin-left: 2.5rem; */
  position: relative;
  transform: translateX(8%);
}

.publicity-list {
  width: 85%;
  /* min-width: 31.25rem; */
}

.publicity-list>li {
  margin-bottom: 0.5rem;
}

.publicity-list>li:last-child {
  margin-bottom: 0;
}

.publicity-list .publicity-item {
  position: relative;
  /* margin-left: 6.25rem; */
  margin-bottom: 3.125rem;
  transition: all .3s;
  align-items: center;
  border: 6px solid #3879e7;
  border-radius: 10rem;
}

.publicity-list .publicity-item:last-child {
  margin-bottom: 0;
}

.publicity-list .publicity-item:hover {
  transform: translateX(-3.125rem);
  cursor: pointer;
  border: 6px solid #0b9d8d;
  background-color: #0fbca9;
}

.publicity-list .publicity-item:hover .publicity-content {
  color: #fff;
}

.publicity-list .publicity-item:hover .day,
.publicity-list .publicity-item:hover .month {
  color: #0fbca9;
}

.publicity-list .publicity-item:hover .publicity-time {
  background-color: #fff;
}

.publicity-item .publicity-time {
  width: 4rem;
  height: 4rem;
  background-color: #3879e7;
  border-radius: 10rem;
  position: relative;
  transform: translateX(-1px);
}

.publicity-item .publicity-time .day {
  font-size: 1.73rem;
  font-weight: 700;
  color: #fff;
}

.publicity-item .publicity-time .month {
  font-size: .8rem;
  color: #fff;
}

.publicity-list .publicity-item .publicity-content {
  font-size: .93rem;
  line-height: 1.4;
  color: #3879E7;
  padding: 0 3.75rem 0 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  align-items: center;
  white-space: normal;
  max-height: 3em;
  margin: auto;
}

/* 就业信息 */
.employee-wrap {
  background: url(bg-employment.png) no-repeat top center;
  background-size: 100%;
  padding: 3% 5%;
  overflow: hidden;
}

.employee-wrap .employee-box {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.part-employment {
  margin: 0 auto 4rem;
}

.information-wrap {
  position: relative;
  height: 31.25rem;
}

.information-list {
  width: 100%;
  margin-bottom: 4.375rem;
}

.swiper-employee {
  width: 100%;
  height: 100%;
}

.swiper-employee .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}

.swiper-slide .information-item {
  width: 20.875rem;
  min-height: 18.75rem;
  box-sizing: border-box;
  background: url(employment-item-bg.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 10%;
  transition: all .3s;
}

.information-item:hover {
  cursor: pointer;
  transform: translateY(-1.25rem);
}

.swiper-employee .swiper-slide .information-title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.swiper-employee .swiper-slide .information-content {
  font-size: .93rem;
  line-height: 1.2;
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.swiper-employee .swiper-slide .information-pic {
  width: 100%;
  border-radius: .625rem;
  margin-top: 1rem;
}

.swiper-employee .swiper-slide:nth-child(even) {
  transform: translateY(2.75rem);
}

.swiper-employee .swiper-slide:nth-child(odd) {
  transform: translateY(-2.75rem);
}

.custom-button-prev,
.custom-button-next {
  position: absolute;
  top: auto;
  transform: translateY(-50%);
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  z-index: 999;
}

.custom-button-prev {
  left: 12.5rem;
  background: url(arrow-left.png) no-repeat top center;
  background-size: contain;
}

.custom-button-next {
  right: 12.5rem;
  background: url(arrow-right.png) no-repeat top center;
  background-size: contain;
}


/* .information-list {
  overflow-x: scroll;
  scrollbar-width: none;
}

.information-list::-webkit-scrollbar {
  display: none;
}

.information-list .information-item {
  position: relative;
  width: 18.75rem;
  height: 21.75rem;
  background: url(employment-item-bg.png) no-repeat center center;
  background-size: 100% 100%;
  margin-right: 4.6875rem;
  flex-shrink: 0;
}

.information-list .information-item:nth-child(odd) {
  top: 5.5rem;
} */

.information-wrap .switch-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
}

.information-links {
  margin: 2rem 0 0 0;
  padding: 0 7.5rem;
}

.info-link-item {
  margin-bottom: 1.25rem;
}

.info-link-item .link-item-label {
  display: block;
  position: relative;
  min-width: 20rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
  border: 1px solid #2e7aff;
  color: #2e7aff;
  background-color: #fff;
  margin-right: 1rem;
}

.info-link-item .link-item-label::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #9bbaf0;
  position: absolute;
  top: .25rem;
  left: .25rem;
  z-index: -1;
}

.info-link-item .link-item-content {
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-item-content:hover {
  color: var(--active-color);
}

/* 心理健康教育 */
.health-wrap {
  background: url(health-bg.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 3% 5%;
}

.health-wrap .health-box {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* 心理健康教育-左-招生与培养 */
.enrollment-box {
  width: 40%;
}
.part-enrollment {
  margin-bottom: 2rem;
}
.part-enrollment .title,
.part-enrollment .describe {
  color: #fff;
}

.enrollment-box .rules-tab-list {
  width: 5rem;
  background-color: #6DA3FFD9;
  border-radius: 1.625rem 0 0 1.625rem;
  margin-right: .625rem;
  box-sizing: border-box;
  overflow: hidden;
}

.rules-tab-list .tab-item {
  height: 33%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.rules-tab-list .tab-item-active {
  background-color: #005FFF;
}

.rules-tab-list .tab-item:hover {
  background-color: #005FFF;
}

.enrollment-box .rules-content-list {
  overflow: scroll;
  display: none;
}

.enrollment-box .active {
  display: block;
}

.enrollment-box .rules-content-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.enrollment-box .rules-content-list .rules-content-item {
  height: 4.5rem;
  margin-bottom: .75rem;
  flex-shrink: 0;
  background-color: #387BFFAD;
  border-radius: 0 5rem 5rem 0;
  padding: 0 1rem;
  justify-content: space-between
}

.enrollment-box .rules-content-list .rules-content-item:last-child {
  margin-bottom: 0;
}

.enrollment-box .rules-content-list .rules-content-item:nth-child(2n) {
  background-color: #0DBCA99E;
}

.enrollment-box .rules-content-list .rules-content-item:nth-child(3n) {
  background-color: #FA9B00D9;
}

.rules-content-item a {
  height: 100%;
}

.rules-content-item .title {
  font-size: 0.93rem;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  /* margin-bottom: .75rem; */
}

.rules-content-item .title a {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.rules-content-item .content {
  font-size: .875rem;
  color: #fff;
}

.rules-content-item .rules-content-date {
  width: 4rem;
  height: 4rem;
}

.rules-content-date .date {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .3125rem;
}

.rules-content-date .month {
  font-size: .75rem;
  color: #fff;
}

.psychology-box {
  width: 45%;
}

.part-health {
  margin-bottom: 4rem;
}

.health-nav-left {
  width: 60%;
  height: 20rem;
  background: url(health-bg-1.png) no-repeat top center;
  background-size: 100%;
  padding: 5% 12%;
}

.health-title {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  color: #fff;
  width: 100%;
  min-width: 14rem;
}

.health-nav-left .health-title {
  text-align: right;
}

.health-title::after {
  content: '';
  display: block;
  width: 100%;
  height: .25rem;
  background: linear-gradient(to right, #1895fe, #fff);
}

.health-nav-left .health-title::after {
  background: linear-gradient(to right, #5d82f6, #fff);
}

.health-content {
  line-height: 2rem;
  font-size: .93rem;
  color: #fff;
  width: 14.375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.health-nav-left .health-content {
  text-align: right;
  margin: 0 6.875rem 2.625rem 0;
}

.health-more {
  margin-top: 1rem;
}

.health-more img {
  width: 50%;
  transition: all .3s;
}

.health-more img:hover {
  transform: scale(1.1);
}

.health-nav-right {
  width: 60%;
  /* height: 20rem; */
  background: url(health-bg-2.png) no-repeat top center;
  background-size: 100%;
  margin-left: -5%;
  padding: 5% 12%;
}

/* 规章制度 */
.rules-wrap {
  background: url(bg-rule.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 5% 10%;
}

.rules-wrap .mobile-rules-wrap {
  max-width: 1600px;
  margin: 0 auto;
}

.part-rules {
  margin-bottom: 4rem;
}

.rules-list-left,
.rules-list-right {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rules-left-item {
  width: 100%;
  margin-bottom: .75rem;
}

.rules-left-item:hover,
.rules-left-item a:hover {
  color: var(--active-color);
}

.rules-left-item:last-child {
  margin-bottom: 0;
}

.rules-left-item .rules-left-date {
  width: 4.5rem;
  height: 4.5rem;
  background-color: #3879E7;
  border-radius: 2rem 0 0;
  box-shadow: 1px 3px 4px 0 #88A4D3;
}

.rules-left-date .date {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .375rem;
}

.rules-left-date .year-month {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .25rem;
}

.rules-left-item .rules-content {
  height: 4.5rem;
  background-color: #fff;
  font-size: .93rem;
  font-weight: bold;
  line-height: 1.5rem;
  padding: 0 1rem;
  width: 100%;
}

/* 下载中心 */
.download-wrap {
  background: url(bg-download.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 3% 10%;
}

.download-wrap .download-box {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.part-download {
  margin-bottom: 4rem;
}

.download-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-item {
  width: 100%;
  height: 3rem;
  box-sizing: border-box;
  margin-bottom: .5rem;
  padding: 0 3%;
}

.download-item-bg {
  height: 100%;
  background: url(download-bg-blue.png) no-repeat top center;
  background-size: 100% 100%;
  padding-left: 1.125rem;
  padding-right: 15%;
}

.download-item:nth-child(even) .download-item-bg {
  background: url(download-bg-green.png) no-repeat top center;
  background-size: 100% 100%;
}

.download-item-bg::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(download-icon-blue.png) no-repeat center;
  background-size: contain;
  margin-right: 1rem;
  flex-shrink: 0;
}

.download-item:nth-child(even) .download-item-bg::before {
  background: url(download-icon-green.png) no-repeat center;
  background-size: contain;
}

.download-item-bg a {
  font-size: .93rem;
  font-weight: 500;
  color: #fff;
}

/* 底部 */
.footer-wrap {
  background: url(bg-follow.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 3% 5%;
}

.footer-wrap .footer-box {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}

/* #4182ee */
.footer-line {
  width: 100%;
  height: .125rem;
  display: flex;
  margin-bottom: 1.25rem;
}

.footer-line::before {
  content: '';
  display: block;
  width: 6.25rem;
  height: 100%;
  background-color: #fff;
}

.footer-line::after {
  flex: 1;
  content: '';
  display: block;
  height: 100%;
  background-color: #4182ee;
}

.footer-left {
  width: 60%;
}

.footer-left .contact {
  margin-bottom: 6%;
}

.contactbox .label,
.footer-wrap .label {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
}

.footer-wrap .content {
  font-size: .87rem;
  line-height: 2;
  font-weight: normal;
  color: #fff;
}

.footer-left .link-list {
  margin-top: 1.25rem;
}

.footer-left .link-list a {
  color: #fff;
}

.footer-left .link-list img {
  width: 98%;
}

.footer-right {
  width: 30%;
}

.footer-right .follow-list {
  width: 100%;
  margin-top: 1.875rem;
}

.footer-right .follow-item {
  width: 30%;
  margin-bottom: 1.25rem;
}

.follow-item:nth-child(3n) {
  margin-right: 0;
}

.follow-item img {
  width: 4rem;
  height: 4rem;
  margin-bottom: .5rem;
  transition: all .3s;
}

.follow-item img:hover {
  transform: scale(1.2);
}

.follow-item span {
  font-size: .87rem;
  line-height: 1rem;
  color: #fff;
  text-align: center;
}

/* 二级页面-list */
.list-article-wrap {
  padding: 0 10%;
  background: url(2024-list-bg.png) no-repeat bottom center;
  background-size: cover;
}

.list-article-wrap .list-article-box {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.list-article-left {
  width: 14%;
  /* padding-bottom: 30px; */
  background: #fff url(2024-IP-two.png) no-repeat bottom center;
  background-size: 90%;
  box-shadow: 0px 1px 10px 0px rgba(208, 208, 208, 0.8);
}

.list-article-title {
  text-align: center;
  background: url(2024-list-side-top-bg.png) no-repeat center;
  background-size: cover;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  padding: 30% 0;
}

.list-article-right {
  width: 84%;
  /* padding-bottom: 5rem; */
}

.list-tab-wrap {
  margin-bottom: 100px;
}

.list-tab-wrap li,
.list-tab-wrap li a {
  position: relative;
  display: block;
  width: 100%;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--text-color-secondary);
}

.list-tab-wrap li a:hover {
  background: linear-gradient(to right, #afcef8, #fff);
}

.list-tab-wrap li a:hover::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: .1875rem;
  height: 100%;
  background-color: #005FFF;
}

.list-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.list-swiper .swiper-wrapper {
  height: 300px !important;
}

.list-swiper .swiper-slide {
  width: 100%;
  height: 100px !important;
}

.list-swiper img {
  width: 100%;
  height: 100px;
}

.list-swiper-button-prev {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotateZ(-90deg);
  width: 20px;
  height: 24px;
  background: url(arrowright.svg) no-repeat top center;
  background-size: 100% 100%;
  z-index: 99;
  filter: invert(1);
}

.list-swiper-button-next {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotateZ(90deg);
  width: 20px;
  height: 24px;
  background: url(arrowright.svg) no-repeat top center;
  background-size: 100% 100%;
  z-index: 99;
  filter: invert(1);
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: inherit;
}

.current-page {
  font-size: .9375rem;
  padding: 1.25rem 0;
}

.current-page img {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .625rem;
}

.current-page p,
.current-page p a {
  color: #999;
}

.current-page a:hover {
  color: var(--active-color);
}

#content {
  min-height: 6.25rem;
}

#content .list-article-item {
  padding: 15px;
  background-color: #fff;
  margin-bottom: .625rem;
  border-radius: .25rem;
  font-size: .875rem;
  color: var(--text-color);
  box-shadow: 0px 1px 10px 0px rgba(208, 208, 208, 0.4);
  cursor: pointer;
}

.list-article-item::before {
  content: '';
  display: block;
  width: .25rem;
  height: .875rem;
  background-color: var(--active-color);
  border-radius: .125rem;
  margin-right: .375rem;
}

.list-article-item>div {
  width: 100%;
}

.list-article-item .acticle-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.list-article-item .acticle-text:hover {
  color: var(--active-color);
}

.list-article-item .time-img {
  width: 1rem;
  margin-right: 5px;
}

.list-article-item .time {
  font-size: .875rem;
  color: #999;
}

#pagination {
  width: 100%;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 3.75rem;
}

#pagination a,
#pagination span {
  flex-shrink: 0;
  display: block;
  padding: 0 .875rem;
  margin: 0 .25rem;
  border: 1px solid #eee;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#pagination .inactive:hover {
  color: var(--active-color);
}

#pagination .navactive {
  background-color: var(--active-color);
  color: #fff;
}

/* detail详情页 */
.detail-container {
  padding: 0 10%;
  background-color: #f5f5f5;
}

#article-container {
  background-color: #fff;
  padding: 3.125rem 5%;
}

.detail-article-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 1.875rem;
}

.detail-article-subtitle {
  font-size: .875rem;
  color: var(--text-color-secondary);
  margin-bottom: 1.875rem;
}

/* 右浮窗 */
.float-box {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
  max-width: 100px;
}

.float-box .float-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  position: relative;
  cursor: pointer;
  background-color: #1A87FFAB;
  font-size: .93rem;
  color: #fff;
}

.float-item>img {
  width: 40px;
  height: auto;
  margin-bottom: 5px;
}
.float-item>p {
  font-size: .87rem;
}

.scale-container {
  position: absolute;
  top: 0;
  right: 100%;
  padding: 10px;
  min-width: 200px;
  display: none;
  background-color: #1a2cff;
  font-size: 16px;
  color: #fff;
}

.scale-container img {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
}

.scale-container p {
  font-size: .87rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}