/* 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,
.page 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: 16px;
  --text-color: #333;
  --text-color-secondary: #666;
  --active-color: #1A87FF;
  --swiper-navigation-size: 35px !important;
}

.page {
  width: 100%;
  background-color: #eee;
  padding-top: 20px;
  overflow: hidden;
}


.pagebottom {
  width: 100%;
  padding: 10px 0;
  background-color: #302e30;
  color: #fff;
  font-size: .8rem;
  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;
  justify-content: center;
  flex-wrap: wrap;
  height: 2.5rem;
  margin: 0 auto 1rem;
}

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

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

.part-title-more {
  display: block;
  width: 4rem;
  height: 100%;
  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.25rem;
  font-weight: bold;
  color: var(--text-color);
}

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

.work-left {
  margin-bottom: 2rem;
}

.work-left .dynamic-wrap {
  margin-bottom: 1rem;
}

/* logo */
.page .top-title {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

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

/* PC顶部导航 */

.mobile-nav-button {
  display: block;
  position: fixed;
  top: 1.5%;
  right: .625rem;
  width: 1.875rem;
  height: 1.875rem;
  z-index: 10086;
}

.top-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10085;
  width: 100%;
  overflow: scroll;
  background-color: #3796e8;
  color: #fff;
}

.top-nav .nav-item {
  position: relative;
  min-height: 2.5rem;
  line-height: 2.5rem;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.top-nav .nav-item:first-child {
  margin-top: 20px;
}

.sub-nav-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #192b78;
  color: #fff;
}

.sub-nav-wrap .sub-nav a {
  display: block;
}

/* swiper */
.swiper-slide .bg {
  width: 100%;
}

/* 工作动态 */
.work {
  flex-direction: column;
  background: url(bg-work.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 3% 5%;
}

.dynamic-top {
  background-color: #DFEBFF;
  border-radius: 0 10rem 10rem 0;
  margin: 0 0 1rem 0;
  padding-right: 6%;
}

.dynamic-top .dynamic-pic-bg {
  width: 75%;
  background: #75A8FF url(title-1.png) no-repeat bottom .75rem center;
  background-size: 80%;
  flex-shrink: 0;
}

.dynamic-top .dynamic-pic-bg img {
  width: 100%;
  margin-bottom: 20%;
}

.dynamic-top .dynamic-pic {
  width: 100%;
  height: 80%;
  position: relative;
  transform: translate(-1.875rem, -2.5rem);
}

.dynamic-top .dynamic-describe {
  overflow: hidden;
  padding: 3% 0 0 3%;
}

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

.dynamic-describe .dynamic-top-content {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.dynamic-describe .dynamic-top-content,
.dynamic-describe .dynamic-top-time {
  font-size: .9375rem;
  line-height: 1.625rem;
  color: var(--text-color-secondary);
  margin-bottom: 1rem;
}

.dynamic-list {
  position: relative;
  width: 100%;
}

.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 {
  width: 100%;
  /* height: 1.125rem; */
  background: url(label.png) no-repeat left center;
  background-size: .875rem .875rem;
  padding-left: 1.25rem;
  /* overflow: hidden; */
  /* text-overflow: ellipsis; */
  /* white-space: nowrap; */
  margin-bottom: .625rem;
  display: flex;
  align-items: center;
}

.dynamic-list .dynamic-list-item .dynamic-list-item-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
  font-size: .9375rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.work-left .dynamic-list .dynamic-list-item:first-child .dynamic-list-item-title::after {
  flex-shrink: 0;
  content: '';
  display: block;
  width: 25px;
  height: 12px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
  margin-left: 5px;
}
.work-left .dynamic-list .dynamic-list-item .dynamic-list-item-title-new::after {
  flex-shrink: 0;
  content: '';
  display: block;
  width: 25px;
  height: 12px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
  margin-left: 5px;
}

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

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

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

.work .work-right .part-work {
  margin-bottom: 1rem;
}

.work-right .notice-list {
  background-color: #FEFEFF;
  border-radius: .625rem;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 4px 0px, rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
  padding: 1rem 1.875rem 1rem 2.75rem;
  margin-left: 8%;
}
.work-right li:first-child .publicity-item .publicity-content::after {
  content: '';
  display: block;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 12px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
}
.work-right .publicity-item .dynamic-list-item-title-new::after {
  content: '';
  display: block;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 12px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
}

.notice-item {
  height: 4rem;
  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: 4rem;
  height: 4rem;
  background-color: #3879E7;
  border-radius: 1.5rem 0 0;
  box-shadow: 1px 3px 4px 0 #88A4D3;
}

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

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

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

.notice-item .notice-item-title {
  font-size: .9375rem;
  font-weight: bold;
  line-height: 1.5rem;
  color: var(--text-color);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-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);
}

/* 党建群团 */
.publicity-party-left {
  margin-bottom: 1rem;
}

.publicity-party-left .part-title {
  margin-bottom: 2rem;
}

.publicity-party-left .work-party-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.publicity-party-left .dynamic-list .dynamic-list-item:first-child .dynamic-list-item-title::after {
  content: '';
  display: block;
  width: 25px;
  height: 12px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
  margin-left: 5px;
  flex-shrink: 0;
}
.publicity-party-left .dynamic-list .dynamic-list-item .dynamic-list-item-title-new::after {
  content: '';
  display: block;
  width: 25px;
  height: 12px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
  margin-left: 5px;
  flex-shrink: 0;
}

.work-party-wrap .work-party-left {
  width: 90%;
  background-color: #94BBFF;
  /* border-radius: 1.25rem 0 0 1.25rem; */
  margin-bottom: 1.25rem;
  /* padding: 5% 0 5% 5%; */
}

.work-party-left .work-party-pic {
  width: 90%;
  margin-top: -5%;
}

.work-party-left .work-party-pic img {
  width: 100%;
  min-height: 200px;
  /* border-radius: 1.25rem 0 2.5rem 1.25rem; */
}

.work-party-left .work-party-left-top-title {
  /* font-size: 1.1rem; */
  line-height:1.7;
  font-weight: bold;
  color: #fff;
  margin-left: 3%;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
  padding: 0 3% 0 0;
}

.work-party-left .work-party-left-top-time {
  font-size: 0.87rem;
  line-height:1.2;
  font-weight: 500;
  color: #fff;
  margin-left: 3%;
  margin-bottom: 1rem;
}

.work-party-list {
  width: 100%;
}

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

.work-party-list .work-party-item {
  position: relative;
  align-items: center;
  border: 4px solid #3879e7;
  border-radius: 5rem;
}

.work-party-list .work-party-item:hover {
  cursor: pointer;
  border: 4px 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: 3.4375rem;
  height: 3.4375rem;
  background-color: #3879e7;
  border-radius: 5rem;
  position: relative;
  transform: translateX(-1px);
}

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

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

.work-party-list .work-party-item .work-party-content {
  font-size: .9375rem;
  line-height: 1rem;
  color: #3879E7;
  padding: 0 5%;
  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;
}

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

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

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

.part-support .describe {
  font-size: 1rem;
  color: #fff;
}

.feature-support .support-list {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  padding: 0 5%;
}

.support-list li {
  cursor: pointer;
  width: 33%;
  margin-bottom: 1.25rem;
}

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

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

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

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

/* 公示公开 */
.publicity-wrap {
  background: url(bg-publicity.png) no-repeat center center;
  background-size: 100% 100%;
  padding: 5%;
}
.part-publicity {
  margin-bottom: 2rem;
}
.publicity-wrap .mobile-publicity {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.publicity-wrap .publicity-left {
  width: 90%;
  background: linear-gradient(to right, transparent, #94BBFF);
  border-radius: 0 1.25rem 1.25rem 0;
  margin-bottom: 1rem;
}

.publicity-left .publicity-pic {
  width: 75%;
  height: auto;
  min-height: 200px;
  border-radius: 1.25rem 0 0 1.25rem;
  position: relative;
  transform: translateY(-10%);
}

.publicity-list {
  width: 100%;
}

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

.publicity-list .publicity-item {
  position: relative;
  align-items: center;
  border: 2px solid #3879e7;
  border-radius: 5rem;
}

.publicity-list .publicity-item:hover {
  cursor: pointer;
  border: 2px 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: 3.125rem;
  height: 3.125rem;
  background-color: #3879e7;
  border-radius: 5rem;
  position: relative;
  transform: translateX(-1px);
}

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

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

.publicity-list .publicity-item .publicity-content {
  font-size: .9375rem;
  font-weight: bold;
  line-height: 1rem;
  color: #3879E7;
  padding: 0 5%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-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: cover;
  min-height: 450px;
  padding: 4% 0;
  overflow: hidden;
}

.part-employment {
  margin-bottom: 3.5rem;
}

.information-wrap {
  position: relative;
  height: 260px;
}

.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: 12.5rem;
  min-height: 15rem;
  box-sizing: border-box;
  background: url(employment-item-bg.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 12% 10%;
  transition: all .3s;
}

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

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

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

.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-wrap .switch-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
}

.information-links {
  display: flex;
  padding: 0 5%;
}

.info-link-item {
  width: 50%;
  /* justify-content: center; */
  margin-bottom: 1rem;
}

.info-link-item .link-item-label {
  display: block;
  position: relative;
  width: 90%;
  z-index: 9;
  /* min-width: 12rem; */
  min-height: 8rem;
  height: 30px;
  line-height: 8rem;
  text-align: center;
  padding-right: 5px;
  font-size: .9375rem;
  font-weight: bold;
  color: #2e7aff;
  background: url(2024-employee-bridge-bg.png) no-repeat center;
  background-size: 100% 100%;
  margin: 0 auto;
  cursor: pointer;
}

/* .info-link-item .link-item-label::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #2e7aff;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: -1;
} */

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

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

/* 心理健康教育 */
.health-wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 4% 0;
}

.enrollment-box {
  width: 90%;
  margin: 0 auto 2rem;
}

.enrollment-box .rules-tab-list {
  width: 16%;
  border-right: 2px solid var(--active-color);
  margin-right: .625rem;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.rules-tab-list .tab-item {
  font-size: .9375rem;
  font-weight: bold;
  width: 80%;
  color: #fff;
  background-color: #619CFF;
  padding: 15% 0;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

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

.enrollment-box .rules-content-list {
  overflow: visible;
  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 {
  width: 95%;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  justify-content: space-between;
  transition: all 0.3s;
}

.enrollment-box .rules-content-list .rules-content-item:hover {
  width: 100%;
}

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

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

.rules-content-item .title {
  position: relative;
  line-height: 2;
  font-size: .9375rem;
  font-weight: bold;
  color: #333;
  background: linear-gradient(to right, rgba(148, 187, 255, 0.5), #fff);
  border: 1px solid var(--active-color);
  padding: 3% 4%;
  border-radius: 0 30px 30px 0;
  overflow: visible;
}

.rules-content-item:hover .title {
  background: var(--active-color);
  color: #fff;
}
.rules-content-item:hover .rules-content-date {
  background: #fff;
  border: 1px solid var(--active-color);
  color: var(--active-color);
}
.rules-content-item:hover .rules-content-date .month {
  color: var(--active-color);
}

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

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

.rules-content-item .rules-content-date {
  position: absolute;
  top: 0;
  left: 4%;
  transform: translateY(-50%);
  padding: 2px 0;
  text-align: center;
  min-width: 6rem;
  background-color: var(--active-color);
}

.rules-content-date .date {
  font-weight: 700;
  color: var(--active-color);
  margin-right: .5rem;
}

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

.psychology-box {
  padding: 0 5%;
}

.employee-content-list {
  position: relative;
  background-color: #fff;
  padding: 3%;
  background: linear-gradient(to bottom, rgba(67, 118, 255, 0.34), #fff);
}

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

.employee-content-list .employee-content-item a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.employee-content-list .employee-content-item:hover a {
  color: var(--active-color);
}

.health-nav-left {
  width: 45%;
  background: url(health-bg-1.png) no-repeat top center;
  background-size: 100%;
  padding-top: 3%;
}

.health-title {
  line-height: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 5% 15%;
}

.health-nav-left .health-title {
  text-align: right;
  margin: 0 20% 5% 0;
}

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

.health-nav-left .health-title::after {
  width: 100%;
  background: linear-gradient(to right, #5d82f6, #fff);
  float: right;
}
.health-content-list-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.health-content-list-top .health-content-title-img {
  width: 1.5rem;
  vertical-align: sub;
}
.health-content-list-top .health-content-more-img {
  width: 4rem;
  vertical-align: middle;
}
.health-content {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-all;
  margin-bottom: 0.5rem;
}
.health-content p {
  padding-left: 10px;
}

.health-nav-left .health-content {
  text-align: right;
  margin: 0 20% 0 0;
}

.health-content a {
  display: block;
  /* margin-bottom: 0.5rem; */
}

.health-more {
  display: none;
  padding-right: 3.3125rem;
}

.health-more img {
  width: 5.75rem;
  height: 2.3125rem;
  transition: all .3s;
}

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

.health-nav-right {
  width: 45%;
  background: url(health-bg-2.png) no-repeat top center;
  background-size: 100%;
  margin-left: -5%;
  padding-top: 3%;
}

/* xinli */
.xinli-wrap {
  background: linear-gradient(to right, #D4EEFF 100%, #fff 0%);
  padding: 5%;
}
.xinli-box {
  max-width: 1400px;
  min-height: 200px;
  margin: 0 auto;
  /* display: flex; 
  flex-direction: column;
  align-items: center;
  justify-content: center; */
}
.xinli-box-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: url(2024-xinli-xizun-bg.png) no-repeat center;
  background-size: cover;
  border-radius: 1rem;
  padding: 4%;
}
.xinli-box-left>div {
  width: 100%;
}
.xinli-box-left .xinli-content-title {
  position: relative;
  padding-left: 10px;
}
.xinli-box-right {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}
.xinli-box-right .xinli-content-title {
  position: relative;
  padding-left: 10px;
}
.xinli-box-left .xinli-content-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #fff;
}
.xinli-content-title a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xinli-box-right .xinli-content-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background-color: var(--active-color);
}
.xinli-box-right p {
  font-size: 0.87rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 15px;
  border-radius: 50px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xinli-box-right p img {
  width: 1rem;
}
.xinli-box-right p {
  padding-left: 10px;
  line-height: 1.5;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xinli-box-right a,
.xinli-box-right .xinli-content-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xinli-box-right .xinli-content-title {
  margin-bottom: 0.5rem;
}
.xinli-box-right a:hover,
.xinli-box-right .xinli-content-title:hover {
  color: #fff;
}
.xinli-link-kepu {
  width: 40%;
  min-height: 13rem;
  position: relative;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: url(2024-xinli-kepu-bg.png) no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}
.xinli-link-jiankang {
  width: 40%;
  min-height: 10rem;
  position: relative;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: url(2024-xinli-jiangkang-bg.png) no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}
.xinli-box-right>div {
  position: relative;
  padding: 4% 0;
}
.xinli-box-right>div:last-child::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #2172FF, transparent);
}
.xinli-box-left .part-title .describe,
.xinli-box-left .part-title .title {
  color: #fff;
}

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

.mobile-rules-wrap {
  display: flex;
  flex-direction: column;
}

.rules-list-left {
  margin-bottom: 2rem;
}

.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: 3.75rem;
  height: 3.75rem;
  background-color: #3879E7;
  border-radius: 1.5rem 0 0;
  box-shadow: 1px 3px 4px 0 #88A4D3;
}

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

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

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

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

.download-list {
  display: flex;
  flex-direction: column;
}

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

.download-item-bg {
  background: url(download-bg-blue.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 2% 16% 2% 5%;
}

.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: .9375rem;
  font-weight: bold;
  color: #fff;
}

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

.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,
.footer-left .contact {
  margin-bottom: 1.875rem;
}

.footer-wrap .label {
  margin-bottom: 1rem;
  font-size: 1.1875rem;
  font-weight: 500;
  color: #fff;
}

.footer-wrap .label .mobile-contact {
  display: block;
  margin-bottom: .625rem;
}

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

.footer-left .link-list {
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.footer-left .link-list li {
  margin: 0 1rem 0.5rem 0;
}

.footer-left .link-list a {
  font-size: .9375rem;
  color: #fff;
}

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

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

.footer-right .follow-item {
  width: 33%;
  margin-bottom: 1rem;
}

.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: .8rem;
  line-height: 1rem;
  color: #fff;
  text-align: center;
}