/**
 * ******************************************************************
 * 首页
 * ******************************************************************
 */

/* 首页头部导航 */
.m-header-home {
  width: 100%;
  min-width: var(--size-main);
  height: 140px;
  background-color: var(--color-main);
}

.m-header-home section {
  width: var(--size-main);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.m-header-home section > h1 > img {
  width: 500px;
}

.m-header-home section > ul {
  width: 100%;
  height: 50%;
  /* background-color: darkcyan; */
  display: flex;
  /* height: 50%; */
  /* margin: 0 24px; */
}

.m-header-home section > ul > li {
  flex: 1;
  position: relative;
  /* margin: 0 24px; */
  display: flex;
  align-items: center;
  /* background-color: salmon; */
  height: 100%;
}

.m-header-home section > ul > li > a {
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  /* background-color: darkcyan; */
  text-align: center;
}

.m-header-home section > ul > li > a:hover {
  color: sandybrown;
}

.m-header-home section > ul > li > section {
  position: absolute;
  width: 100px;
  height: auto;
  padding: 8px 0;
  background-color: #fff;
  display: flex;
  border-radius: 3px;
  left: 50%;
  top: 60px;
  opacity: 0;
  transform-origin: center top;
  transform: translateX(-50%) translateY(0px) scaleY(0);
  flex-direction: column;
  transition: all 0.35s ease;
  /* background-color: darkcyan; */
  z-index: -9999;
}

.m-header-home section > ul > li > section > a {
  width: 100%;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  text-decoration: none;
  text-align: center;
  color: var(--color-main);
}

.m-header-home section > ul > li:hover > section {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scaleY(1);
  transition: all 0.25s ease;
  z-index: 9999;
}

.m-header-home section > ul > li > section::before {
  position: absolute;
  top: -10px;
  content: '';
  border: 5px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

.m-header-home section > ul > li:hover > section > a {
  width: 100%;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  text-decoration: none;
  text-align: center;
  color: var(--color-main);
}

.m-header-home section > ul > li:hover > section > a:hover {
  background-color: var(--color-grey-5);
  color: var(--color-warning);
}

/* Swiper Container */
.m-swiper-container {
  width: var(--size-main);
  height: 480px;
  margin: 0 auto;
}

.swiper {
  width: 100%;
  height: 100%;
  background-color: salmon;
}

/* Swiper Ele */

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.swiper-slide section {
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 0 0 24px;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.65);
}

.swiper {
  --swiper-theme-color: #ff6600; /* 设置Swiper风格 */
  --swiper-navigation-color: #fff; /* 单独设置按钮颜色 */
  --swiper-navigation-size: 30px; /* 设置按钮大小 */
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 30px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 30px;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  width: 50px;
  height: 50px;
  content: '';
  border: 2px solid #fff;
  border-radius: 50%;
}

.swiper-pagination {
  text-align: right;
  padding-right: 30px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 23px;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 20px;
  background-color: #fff;
}

.swiper-pagination-bullet-active {
  background-color: #fbbe33;
}

/* Quick Link */
.m-quickLink-container {
  display: flex;
  /* justify-content: space-around; */
  justify-content: center;
  align-items: center;
  width: var(--size-main);
  height: 280px;
  margin: 0 auto;
  background-color: var(--color-main);
  background-image: url('../image/home-types-bg.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}

.m-quickLink-container li {
  width: 18%;
  /* margin: 0 24px; */
  display: flex;
  justify-content: center;
}

.m-quickLink-container a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  border: 3px solid #fff;
  border-radius: 3px;
}

.m-quickLink-container img {
  display: block;
  width: 100px;
  object-fit: cover;
}

.m-quickLink-container p {
  font-size: 12px;
  color: #fff;
  text-align: center;
}

/* Footer */
.m-footer-container {
  width: 100%;
  min-width: var(--size-main);
  background-color: var(--color-main);
  padding: 16px 0;
}

.m-footer-main {
  width: var(--size-main);
  margin: 0 auto;
  display: flex;
}

.m-footer-left,
.m-footer-right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  /* background-color: salmon; */
}

.m-footer-left img {
  width: 380px;
}

.m-footer-left span {
  font-size: 12px;
  color: #fff;
  margin-top: 16px;
}

.m-footer-right li {
  font-size: 12px;
  color: #fff;
  text-align: right;
  margin: 4px 0;
}

.m-footer-right a {
  color: #fff;
  text-decoration: none;
}

.m-footer-center {
  flex: 1;
  /* background-color: darkcyan; */
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.m-footer-center li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-footer-center img {
  width: 70px;
  height: 70px;
}

.m-footer-center span {
  font-size: 12px;
  color: #fff;
  margin-top: 4px;
}

/**
 * ******************************************************************
 * 就业招聘
 * ******************************************************************
 */

/* Header */

.m-header-sub {
  width: 100%;
  min-width: var(--size-main);
  height: 140px;
  background-color: var(--color-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.m-header-sub > section {
  width: var(--size-main);
  margin: 0 auto;
  /* background-color: darkcyan; */
}

.m-header-sub > section > div {
  display: flex;
  align-items: center;
  color: #fff;
}

.m-header-sub > section > div img {
  width: 500px;
}

.m-header-sub > section > div h3 {
  margin-left: 24px;
  font-weight: 400;
}

.m-header-sub > section > ul {
  display: flex;
  /* background-color: salmon; */
  justify-content: center;
}

.m-header-sub > section > ul > li {
  position: relative;
  font-size: 14px;
  margin: 0 16px;
}

.m-header-sub > section > ul > li > a {
  position: relative;
  color: #fff;
  text-decoration: none;
  /* background-color: darkcyan; */
}

.m-header-sub > section > ul > li > a:hover {
  color: var(--color-warning);
}

.m-header-sub > section > ul > li > a.f-menu-active {
  color: var(--color-warning);
}

.m-header-sub > section > ul > li > a.f-menu-active::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: var(--color-warning);
  left: 0;
  bottom: -10px;
}


.m-header-sub > section > ul > li > section {
  position: absolute;
  width: 140px;
  height: auto;
  padding: 8px 0;
  background-color: #fff;
  display: flex;
  border-radius: 3px;
  left:50%;
  top: 32px;
  opacity: 0;
  transform-origin: center top;
  transform: translateX(-50%) translateY(0px) scaleY(0);
  flex-direction: column;
  transition: all 0.35s ease;
  /* background-color: darkcyan; */
  z-index: -9999;
}

.m-header-sub > section > ul > li > section > a {
  width: 100%;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  text-decoration: none;
  text-align: center;
  color: var(--color-main);
}

.m-header-sub > section > ul > li:hover > section {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scaleY(1);
  transition: all 0.25s ease;
  z-index: 9999;
}

.m-header-sub > section > ul > li > section::before {
  position: absolute;
  top: -10px;
  left: 47%;
  content: '';
  border: 5px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

.m-header-sub > section > ul > li:hover > section > a {
  width: 100%;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  text-decoration: none;
  text-align: center;
  color: var(--color-main);
}

.m-header-sub > section > ul > li:hover > section > a:hover {
  background-color: var(--color-grey-5);
  color: var(--color-warning);
}


/* 顶部信息 */
.m-top-content {
  width: var(--size-main);
  margin: 0 auto;
  background-color: var(--color-sub-bg);
  height: 340px;
  display: flex;
}

.m-notice-container {
  position: relative;
  width: 50%;
  padding: 24px;
  /* background-color: darkcyan; */
}

.m-notice-container::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 90%;
  border-left: 1px dashed var(--color-grey-4);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.m-cal-container {
  width: 50%;
  padding: 24px;
  /* background-color: sandybrown; */
}

/* Tabs */

.m-tabs-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-tabs-title > a {
  color: var(--color-grey-1);
  font-weight: 500;
  text-decoration: none;
}

.m-tabs-title > a:hover {
  color: var(--color-primary);
}

.m-tabs-container {
  flex: 1;
  display: flex;
  align-items: center;
  /* background-color: darkblue; */
}

.m-tabs-container li {
  position: relative;
  font-size: 14px;
  color: var(--color-grey-2);
  font-weight: 500;
  cursor: pointer;
}

.m-tabs-container li:not(:last-child) {
  margin-right: 24px;
}

.m-tabs-container li::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  border-radius: 5px;
  left: 0;
  bottom: 0;
}

/* 自定义字号 */
.m-tabs-big li {
  font-size: 20px;
  font-weight: 700;
}

/* 自定义颜色 */
.m-tabs-container li.m-tabs-active {
  color: var(--color-primary);
}

.m-tabs-container li.m-tabs-active::after {
  background-color: var(--color-primary);
}

/* 公告列表 */
.m-notice-list {
  margin-top: 24px;
}

.m-notice-list > li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  padding: 0 0 0 16px;
}

.m-notice-list > li::before {
  position: absolute;
  font-family: 'iconfont';
  content: '\e611';
  font-size: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-grey-3);
}

.m-notice-list > li:not(:last-child)::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: transparent;
  /* border-bottom: 1px dashed var(--color-grey-5); */
  left: 0;
  bottom: 0;
}

.m-notice-list > li > a {
  flex: 6;
  color: var(--color-grey-1);
  text-decoration: none;
  /* background-color: salmon; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-notice-list > li > a:hover {
  text-decoration: underline;
}

.m-notice-list > li > span {
  flex: 1;
  font-size: 12px;
  color: var(--color-grey-3);
  text-align: right;
  text-decoration: none;
  /* background-color: seagreen; */
}

#publicity {
  display: none;
}

/* 校园招聘 */

.m-common-container {
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  padding: 24px;
}

.m-common-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-common-title {
  display: flex;
  align-items: center;
  width: 25%;
  /* background-color: salmon; */
}

.m-common-title > h4 {
  font-size: 20px;
  color: var(--color-primary);
}

.m-common-title > span {
  font-size: 14px;
  color: var(--color-grey-3);
  font-weight: 400;
  margin-left: 8px;
}

.s-xyzp-title {
  color: var(--color-primary);
}

.s-zpkx-title {
  /* color: #48d0aa; */
  color: var(--color-primary);
}

.s-kzxj-title {
  /* color: #6480eb; */
  color: var(--color-primary);
}

.s-sxsj-title {
  /* color: #e25a75; */
  color: var(--color-primary);
}

.m-xyzp-tabs {
  flex: 1;
  /* background-color: darkgoldenrod; */
}

/* .m-tabs-container > li {
  color: var(--color-grey-1);
  font-size: 14px;
} */

/* 自定义颜色 */
.m-xyzp-tabs > li.m-tabs-active {
  color: #f0810a;
}

.m-xyzp-tabs > li.m-tabs-active::after {
  background-color: #f0810a;
}

/* 自定义颜色 */
.m-zpkx-tabs > li.m-tabs-active {
  color: #48d0aa;
}

.m-zpkx-tabs > li.m-tabs-active::after {
  background-color: #48d0aa;
}

.m-public-more {
  width: 10%;
  /* background-color: darkcyan; */
  text-align: right;
}

.m-public-more > a {
  color: var(--color-grey-1);
  font-weight: 500;
  text-decoration: none;
}

.m-public-more > a:hover {
  color: var(--color-primary);
}

.m-jyzp-list {
  margin-top: 16px;
}

.m-jyzp-list > li {
  position: relative;
  height: 50px;
  line-height: 50px;
  display: flex;
  padding: 0 0 0 16px;
}

.m-jyzp-list > li::before {
  position: absolute;
  font-family: 'iconfont';
  content: '\e611';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.m-jyzp-list > li:not(:last-child):after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--color-grey-4);
  bottom: 0;
}

.m-jyzp-list > li > a {
  color: var(--color-grey-1);
  text-decoration: none;
  width: 70%;
  font-size: 14px;
  /* background-color: darkcyan; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-jyzp-list > li > a:hover {
  color: var(--color-warning);
}

.m-jyzp-list > li > span {
  flex: 1;
  /* background-color: darkgoldenrod; */
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-grey-3);
}

/* 展示 */

.m-adshow-container {
  display: flex;
  justify-content: space-between;
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  padding: 24px;
}

.m-adshow-container > li {
  width: 370px;
}

.m-adshow-container > li > h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-grey-1);
}

.m-adshow-container > li img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 3px;
  margin-top: 8px;
}

/* 24365 */
.m-24365-container {
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  padding: 24px;
}

.m-24365-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 90px;
  background-image: linear-gradient(180deg, #ffffff 0%, #b7e3ff 100%);
  border: 1px solid #caeaff;
  border-radius: 3px;
}

.m-24365-wrapper > img {
  width: 450px;
  height: 47px;
  object-fit: cover;
}

.m-24365-wrapper > ul {
  display: flex;
}

.m-24365-wrapper > ul > li {
  display: flex;
  width: 145px;
  height: 40px;
  background-image: linear-gradient(180deg, #7dd7f9 0%, #0985ef 100%);
  border-radius: 3px;
}

.m-24365-wrapper > ul > li:not(:last-child) {
  margin-right: 24px;
}

.m-24365-wrapper > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

/*
 * ******************************************************************
 * 国际组织名录
 * ******************************************************************
 */

.s-gwxx-bg {
  background-color: var(--color-sub-bg);
}

.m-gjzzml-container {
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  padding: 24px;
}

.m-gjzzml-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 32px 0;
}

.m-gjzzml-list > li {
  flex: 1;
  flex: 0 0 33.3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.m-gjzzml-list > li:nth-child(4),
.m-gjzzml-list > li:nth-child(5),
.m-gjzzml-list > li:nth-child(6)  {
  margin-top: 24px;
}

.m-gjzzml-list > li > a > img {
  width: 160px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 24px;
}

.m-gjzzml-list > li > h3 {
  font-size: 20px;
}

.m-gjzzml-list > li > h3 > a {
  font-size: 20px;
  color: var(--color-grey-1);
  text-decoration: none;
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-gjzzml-list > li > h3 > a:hover {
  color: var(--color-warning);
}
.m-gjzzml-list > li > span {
  color: var(--color-grey-3);
  font-weight: 300;
  font-size: 14px;
}

.m-gjzzml-list > li > p {
  font-size: 14px;
  margin: 4px 0 0 0;
}

.m-gjzzml-list > li > p > a {
  color: var(--color-primary);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-gjzzml-list > li > p > a:hover {
  text-decoration: underline;
}

.m-gjzzml-other {
  width: var(--size-main);
  background-color: var(--color-sub-bg);
  margin: 0 auto;
  padding: 24px;
  display: flex;
}

.m-gjzzml-other_message,
.m-gjzzml-other_problem,
.m-gjzzml-other_report {
  position: relative;
  width: 33.333%;
}

.m-gjzzml-other_message {
}

.m-gjzzml-other_problem {
  padding: 0 16px;
}

.m-gjzzml-other_report {
  padding: 0 0 0 16px;
}

.m-gjzzml-other_message::after,
.m-gjzzml-other_problem::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  border-right: 1px dashed var(--color-grey-4);
  top: 0;
  right: 0;
}

.m-other-message_list {
}

.m-other-message_list > li {
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 0 0 16px;
  display: flex;
  justify-content: space-between;
}

.m-other-message_list > li::before {
  position: absolute;
  font-family: 'iconfont';
  content: '\e611';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.m-other-message_list > li > a {
  flex: 1;
  font-size: 14px;
  color: var(--color-grey-1);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-other-message_list > li > a:hover {
  text-decoration: underline;
}

.m-other-message_list > li > span {
  width: 25%;
  text-align: center;
  font-size: 12px;
  color: var(--color-grey-3);
}

.m-other-problem_list > li {
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 0 0 16px;
  display: flex;
  justify-content: space-between;
}

.m-other-problem_list > li::before {
  position: absolute;
  font-family: 'iconfont';
  content: '\e611';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.m-other-problem_list > li > a {
  flex: 1;
  font-size: 14px;
  color: var(--color-grey-1);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-other-problem_list > li > a:hover {
  text-decoration: underline;
}

.m-other-report_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
}

.m-other-report_wrapper > a > img {
  width: 300px;
  height: 160px;
}

.m-other-report_wrapper > a {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: var(--color-grey-1);
  text-decoration: none;
  padding: 0 16px;
  margin-top: 8px;
}

.m-other-report_wrapper > a:hover {
  text-decoration: underline;
}

/* 友情链接 */
.m-gjzzml-link {
  width: var(--size-main);
  background-color: #fff;
  margin: 0 auto;
  padding: 24px;
}

.m-gjzzml-link_list {
  display: flex;
  flex-wrap: wrap;
}

.m-gjzzml-link_list > li {
  width: 20%;
  height: 100px;
  padding: 8px;
}

.m-gjzzml-link_list > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-grey-5);
  font-size: 12px;
  color: var(--color-grey-3);
  text-decoration: none;
  border-radius: 3px;
}

/*
 * ******************************************************************
 * 选调生工作
 * ******************************************************************
 */

.m-xdsgz-zpxx {
  width: var(--size-main);
  background-color: var(--color-sub-bg);
  margin: 0 auto;
  padding: 24px;
}

.m-xdsgz-zpxx-list {
}

.m-xdsgz-zpxx-list > li {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
}

.m-xdsgz-zpxx-list > li:not(:last-child):after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--color-grey-4);
  bottom: 0;
}

.m-xdsgz-zpxx-list > li > a {
  color: var(--color-grey-1);
  text-decoration: none;
  width: 70%;
  font-size: 14px;
  /* background-color: darkcyan; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-xdsgz-zpxx-list > li > a:hover {
  color: var(--color-warning);
}

.m-xdsgz-zpxx-list > li > span {
  flex: 1;
  /* background-color: darkgoldenrod; */
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-grey-3);
}

.m-xdsgz-zpxx-list > li > strong {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  padding: 4px;
  border-radius: 3px;
  margin-right: 8px;
}

.m-xdsgz-zpxx-list > li > strong.s-outline {
  background-color: #48d0aa;
}

.m-xdsgz-zpxx-list > li > strong.s-inline {
  background-color: #e25a75;
}

/* 公告&招录 */

.m-xdsgz-info {
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

.m-xdsgz-info_notice,
.m-xdsgz-info_recruitment {
  width: 50%;
  padding: 24px;
}

.m-xdsgz-info_notice {
  position: relative;
}

.m-xdsgz-info_notice::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  border-right: 1px dashed var(--color-grey-4);
  top: 0;
  right: 0;
}

.m-xdsgz-info_recruitment {
}

.m-xdsgz-info_list {
}

.m-xdsgz-info_list > li {
  position: relative;
  display: flex;
  height: 40px;
  align-items: center;
  padding: 0 0 0 16px;
}

.m-xdsgz-info_list > li::before {
  position: absolute;
  font-family: 'iconfont';
  content: '\e611';
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.m-xdsgz-info_list > li:not(:last-child)::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--color-grey-4);
  left: 0;
  bottom: 0;
}

.m-xdsgz-info_list > li > a {
  flex: 1;
  font-size: 14px;
  color: var(--color-grey-1);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-xdsgz-info_list > li > a:hover {
  text-decoration: underline;
}

.m-xdsgz-info_list > li > span {
  width: 20%;
  /* background: darkcyan; */
  font-size: 12px;
  text-align: right;
  color: var(--color-grey-3);
}

/* 典型人物 */
.m-xdsgz-character {
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  padding: 24px;
  border-top: 1px dashed var(--color-grey-4);
}

.m-xdsgz-character_list {
  display: flex;
}

.m-xdsgz-character_list li {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-xdsgz-character_list li > a {
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
}

.m-xdsgz-character_list li > a > img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.m-xdsgz-character_list li > h4 > a {
  font-size: 16px;
  color: var(--color-grey-1);
  margin: 8px 0;
  text-decoration: none;
}

.m-xdsgz-character_list li > h4 > a:hover {
  color: var(--color-warning);
}

.m-xdsgz-character_list li > span {
  font-size: 14px;
  color: var(--color-grey-3);
  margin-top: 8px;
}

/*
 * ******************************************************************
 * 就业指导
 * ******************************************************************
 */

.s-jyzd-bg {
  background-color: var(--color-sub-bg);
}

.m-jyzd-micro_container {
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  padding: 24px;
}

.m-jyzd-micro_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 16px 0;
}

.m-jyzd-micro_list > li {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  margin: 0 0 24px 0;
}

.m-jyzd-micro_list > li >  a {
  position: relative;
  width: 240px;
  height: 140px;
  border: 1px solid var(--color-grey-5);
  border-radius: 3px;
}

.m-jyzd-micro_list > li > a > img {
  width: 100%;
  height: 100%;
  
  object-fit: cover;
}

.m-jyzd-micro_list > li > h3 {
  font-size: 14px;
  text-align: center;
  margin: 8px 0;
}

.m-jyzd-micro_list > li > h3 > a {
  color: var(--color-grey-1);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-jyzd-micro_list > li > h3 > a:hover {
  /* text-decoration: underline; */
  color: var(--color-warning);
}

.m-jyzd-micro_list > li > div {
  display: flex;
  justify-content: center;
}

.m-jyzd-micro_list > li > div > span {
  text-align: center;
  color: var(--color-grey-3);
  font-size: 12px;
  margin: 0 8px;
}

.m-jyzd-mooc_container {
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  padding: 24px;
}

.m-jyzd-mooc_list {
  display: flex;
  flex-wrap: wrap;
}

.m-jyzd-mooc_list > li {
  width: 33.333%;
  height: 76px;
  display: flex;
  margin: 16px 0 32px 0;
}

.m-jyzd-mooc_list > li > a {
  position: relative;
  width: 135px;
  height: 96px;
  border: 1px solid var(--color-grey-5);
  border-radius: 3px;
  overflow: hidden;
}

.m-jyzd-mooc_list > li > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-jyzd-mooc_list > li > section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 16px;
}

.m-jyzd-mooc_list > li > section > h5 {
  font-size: 14px;
  color: var(--color-grey-1);
}

.m-jyzd-mooc_list > li > section > h5 > a {
  color: var(--color-grey-1);
  text-decoration: none;
}

.m-jyzd-mooc_list > li > section > h5 > a:hover {
  color: var(--color-warning);
}

.m-jyzd-mooc_list > li > section > span {
  font-size: 12px;
  color: var(--color-grey-3);
}

/* 风采展示 */

.m-jyzd-show_container {
  width: var(--size-main);
  background-color: var(--color-sub-bg);
  margin: 0 auto;
  padding: 24px;
}

.m-jyzd-show_list {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
}

.m-jyzd-show_list > section {
  width: 48%;
  height: 340px;
}

/*
 * ******************************************************************
 * 就业流程
 * ******************************************************************
 */

.m-jylc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--size-main);
  margin: 0 auto;
  padding: 0 0 64px 0;
  background-color: #fff;
}

.m-jylc-container > h3 {
  margin: 64px 0;
}

.m-jylc-container > img {
  width: 70%;
  margin: 64px;
}

/*
 * ******************************************************************
 * 常见问题及下载
 * ******************************************************************
 */

.m-cjwtjxz-container {
  width: var(--size-main);
  margin: 0 auto;
  background-color: var(--color-sub-bg);
  padding: 24px;
}

.m-cjwtjxz-search {
  flex: 1;
  display: flex;
  align-items: center;
}

.m-cjwtjxz-search input {
  flex: 1;
  height: 40px;
  border: 1px solid var(--color-grey-4);
  border-right: none;
  outline: none;
  padding: 0 16px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.m-cjwtjxz-search button {
  width: 100px;
  height: 40px;
  border: none;
  outline: none;
  background-color: var(--color-primary);
  color: #fff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

.m-cjwtjxz-list {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 0 0 0;
}

.m-cjwtjxz-list > li {
  position: relative;
  width: 50%;
  padding: 0 16px;
  margin: 24px 0;
}

.m-cjwtjxz-list > li:nth-child(odd):after {
  position: absolute;
  content: '';
  width: 1px;
  height: 60%;
  border-right: 1px dashed var(--color-grey-4);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.m-cjwtjxz-list_q {
  display: flex;
  align-items: center;
}

.m-cjwtjxz-list_q > span {
  width: 26px;
  height: 26px;
  background-color: #f44336;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
}

.m-cjwtjxz-list_q > a {
  flex: 1;
  padding: 0 8px;
  font-size: 14px;
  color: var(--color-grey-1);
  text-decoration: none;
}

.m-cjwtjxz-list_q > a:hover {
  text-decoration: underline;
}

.m-cjwtjxz-list_a {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
}

.m-cjwtjxz-list_a > span {
  width: 26px;
  height: 26px;
  background-color: #24b07d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
}

.m-cjwtjxz-list_a > p {
  flex: 1;
  margin: 0;
  padding: 2px 8px 0 8px;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-grey-3);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.m-cjwtjxz-other {
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  padding: 24px;
  display: flex;
  justify-content: space-between;
}

.m-cjwtjxz-other > section {
  width: 100%;
}

.m-cjwtjxz-other_download {
}

.m-cjwtjxz-other_link {
}

.m-cjwtjxz-other_download_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}

.m-cjwtjxz-other_download_list > li {
  width: 25%;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.m-cjwtjxz-other_download_list > li > img {
  width: 24px;
  height: 24px;
}

.m-cjwtjxz-other_download_list > li > a {
  flex: 1;
  font-size: 14px;
  color: var(--color-grey-1);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-cjwtjxz-other_download_list > li > a:hover {
  text-decoration: underline;
}

.m-cjwtjxz-other_link_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 16px;
}

.m-cjwtjxz-other_link_list > li {
  width: 31%;
  margin-top: 16px;
}

.m-cjwtjxz-other_link_list > li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-grey-5);
  font-size: 12px;
  color: var(--color-grey-3);
  text-decoration: none;
  border-radius: 3px;
}

.m-cjwtjxz-other_link_list > li img {
  width: 60%;
  object-fit: cover;
}

/*
 * ******************************************************************
 * 列表-普通
 * ******************************************************************
 */

.m-content-container {
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  padding: 0 24px 24px 24px;
  display: flex;
  flex-direction:column;
}

.m-sub-nav_container {
  width: 260px;
  margin-right: 32px;
  /* border-radius: 3px; */
  overflow: hidden;
}

.m-sub-nav_container > ul > li {
  height: 40px;
  line-height: 40px;
  background-color: var(--color-sub-bg);
  padding: 0 24px;
  cursor: pointer;
}

.m-sub-nav_container > ul > li.m-sub-nav_active {
  background-color: var(--color-primary);
}

.m-sub-nav_container > ul > li.m-sub-nav_active > a {
  color: #fff;
}

.m-sub-nav_container > ul > li:hover {
  background-color: var(--color-grey-4);
}

.m-sub-nav_container > ul > li > a {
  font-size: 14px;
  color: var(--color-grey-1);
  text-decoration: none;
}

.m-list-line {
  flex: 1;
  overflow: hidden;
}

.m-list-line > li {
  position: relative;
  display: flex;
  padding: 24px 0;
  border-bottom: 1px dashed var(--color-grey-4);
}

.m-list-line_date {
  width: 70px;
  height: 90px;
  border: 1px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 30%;
  border-bottom-right-radius: 30%;
}

.m-list-line_date > span {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.m-list-line_date > span:nth-child(2) {
  width: 50%;
  height: 2px;
  border-radius: 2px;
  margin: 4px 0;
  background-color: var(--color-grey-3);
}

.m-list-line_content {
  flex: 1;
  padding: 0 0 0 16px;
  overflow: hidden;
}

.m-list-line_content > h3 > a {
  display: block;
  width: 100%;
  color: var(--color-grey-1);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-list-line_content > h3 > a:hover {
  color: var(--color-warning);
}

.m-list-line_content > p {
  margin: 0;
  font-size: 14px;
  margin: 8px 0 4px 0;
  color: var(--color-grey-3);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.m-list-line_content > span {
  font-size: 12px;
  color: var(--color-grey-4);
}

/* 校园招聘列表 */

.m-list-xyzp_item {
}

.m-list-xyzp_item_top {
  line-height: 30px;
  font-size: 14px;
  color: var(--color-grey-3);
}

.m-list-xyzp_item_top > span {
  margin-right: 24px;
}

.m-list-xyzp_item_bottom {
  display: flex;
}

.m-list-xyzp_item_bottom > li {
  position: relative;
}

.m-list-xyzp_item_bottom > li:not(:last-child) {
  margin-right: 24px;
  padding-right: 24px;
}

.m-list-xyzp_item_bottom > li:not(:last-child)::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 70%;
  border-right: 1px solid var(--color-grey-5);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.m-list-xyzp_item_bottom > li > span {
  font-size: 12px;
  color: var(--color-grey-4);
}

.m-list-xyzp_item_bottom > li > h6 {
  font-size: 14px;
  color: var(--color-grey-2);
}

/* 面包屑 */

.m-category-breadcrumb {
  width: var(--size-main);
  margin: 0 auto;
  background-color: var(--color-sub-bg);
  color: var(--color-grey-1);
  font-size: 14px;
  padding: 16px 24px;
}

.m-category-breadcrumb > a {
  color: var(--color-primary);
  text-decoration: none;
}

.m-category-breadcrumb > a:hover {
  text-decoration: underline;
}

.m-category-breadcrumb > strong {
  color: var(--color-grey-2);
}

/* 查询 */

.m-search-form {
  width: var(--size-main);
  margin:  0 auto;
  background-color: #fff;
  font-size: 14px;
  padding: 16px 24px;
}

.m-search-form  label {
  font-size: 14px;
}

.m-search-form  select {
  height: 32px;
}

.m-search-form  .form-control {
  flex: 1;
  outline: none;
  border: 1px solid var(--color-grey-3);
  border-radius: 3px;
  height: 32px;
  padding: 4px;
  margin: 0;
  font-size: 14px;
}

.m-search-form .f-search-form__btn {
  display: inline-block;
  height: 32px;
  outline: none;
  border: none;
  border-radius: 3px;
  padding: 0 48px;
  background-color: var(--color-primary);
  color: #fff;
  margin: 0 0 0 4px;
  cursor: pointer;
}

.m-search-form input.f-search-form__reset {
  display: inline-block;
  height: 32px;
  outline: none;
  border: none;
  border-radius: 3px;
  padding: 0 48px;
  background-color: var(--color-grey-5);
  color: var(--color-grey-3);
  margin: 0 0 0 4px;
  cursor: pointer;
}

#searchForm {
  width: 100%;
  display: flex;
  align-items: center;
}

/* 分页 */

#s-portal__pagination {
  width: 100%;
  padding: 16px;
}

#s-portal__pagination > .pagination {
  display: flex;
  align-items: center;
  justify-content: center;

}

#s-portal__pagination > .pagination a {
  text-decoration: none;
}

#s-portal__pagination > .pagination > li {
  font-size: 14px;
}

#s-portal__pagination > .pagination > li.page-item{
  margin: 0 4px;
}

#s-portal__pagination > .pagination > li.page-item > a {
  padding: 4px 8px;
  border: 1px solid var(--color-grey-4);
  background-color: #fff;
  color: var(--color-grey-3);
  border-radius: 2px;
}

#s-portal__pagination > .pagination > li.page-item > a:hover {
  background-color: var(--color-grey-5);
  color: var(--color-grey-2);
}

#s-portal__pagination > .pagination > li.active > a {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

#s-portal__pagination > .pagination > li.active > a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* 服务指南侧栏 */

.m-side-fwzn-container {}

.m-side-fwzn-container > h3  {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background-image: linear-gradient(180deg,#27466a 0%,#122b55 96%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 16px;
  color: #fff;
  font-size: 16px;
}

.m-side-fwzn-container > h3 > span {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fabc55;
}

.m-side-fwzn-container > section {
  border: 1px dashed var(--color-grey-4);
  border-top: none;
  padding: 16px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.m-side-fwzn-container > section dl {
  margin: 0;
}

.m-side-fwzn-container > section dl:not(:first-child) {
  margin-top: 24px;
}

.m-side-fwzn-container > section dt {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-grey-2);
}

.m-side-fwzn-container > section dd {
  margin: 0;
  font-size: 12px;
}

.m-side-fwzn-container > section dd p {
  color: var(--color-grey-3);
  margin: 8px 0;
}

.m-side-fwzn-container > section dd p span:nth-child(2) {
  color: #48d0aa;
  font-weight: 600;
}

/* List banner */

.m-list-banner {
  width: var(--size-main);
  margin: 0 auto;
  height: 120px;
  background-color: saddlebrown;
}

.m-list-banner > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 文章详情 */

.m-detail-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0 40px 0;
  border-bottom: 1px dashed var(--color-grey-4);
}

.m-detail-container__title{
  font-size: 32px;
  font-weight: 600;
  color: #24b07d;
}

.m-detail-container__info{
  display: flex;
  justify-content: center;
}

.m-detail-container__info > span {
  font-size: 12px;
  color: var(--color-grey-3);
  margin: 8px 4px 0 4px;
}

.m-detail-container__file {}

.m-detail-container__file > li {
  line-height: 32px;
  font-size: 14px;
}

.m-detail-container__file > li > a {
  text-decoration: none;
  color: var(--color-primary);
}

.m-detail-container__file > li > a:hover {
  text-decoration: underline;
}

.m-detail-content__card {
  width: 100%;
  /* margin: 24px 0 0 0; */
  padding: 24px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
}

.m-detail-content__card > h2 {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background-image: linear-gradient(180deg,#27466a 0%,#122b55 96%);
  color: #fff;
  padding: 12px 24px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.m-detail-content__card > h2 > span {
  color: #fabc55;
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
}



.m-detail-table-1 {
  width: 100%;
  background-color: #fbf9f2;
  border: 1px dashed #f0ede4;
  border-top: none;
  /* border-bottom: none; */
}

.m-detail-table-1 > tbody > tr > th {
  width: 12%;
  padding: 16px 0 16px 20px;
  /* background-color: darkblue; */
  text-align: left;
  color: var(--color-grey-2);
}

.m-detail-table-1 > tbody > tr > td {
  width: 38%;
  color: var(--color-grey-3);
}

.m-detail-table-1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.m-detail-table-1 a:hover {
  text-decoration: underline;
}

.m-detail-content__card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #fbf9f2;
  border: 1px dashed #f0ede4;
  border-top: none;
  padding: 24px 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;

}

.m-detail-content__card__btn > a {
  display: block;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  background-image: linear-gradient(180deg,#f3d064 0%,#f3ac5a 100%);
  color: #fff;
}

.m-detail-content__card__btn > a:hover {
  background-image: linear-gradient(180deg,#27466a 0%,#122b55 96%);
}

.s-border-bottom {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px dashed #f0ede4;
}

.m-detail-table-2 {
  width: 100%;
  border: 1px dashed #f0ede4;
  background-color: #fbf9f2;
}

.m-detail-table-2 > tbody > tr > th {
  color: var(--color-grey-1);
  padding: 16px 0 16px 20px;
  width: 25%;
  text-align: left;
  background-color: #f7f2e3;
}

.m-detail-table-2 > tbody > tr > td {
  padding: 16px 0 16px 20px;
  font-size: 14px;
  font-weight: 700;
}

.m-detail-table-3 {
  width: 100%;
  border: 1px dashed #f0ede4;
  background-color: #fbf9f2;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.m-detail-table-3 > thead > tr > th {
  padding: 16px 0 16px 20px;
  width: 25%;
  text-align: left;
  color: var(--color-grey-1);
  background-color: #f7f2e3;
}

.m-detail-table-3 > tbody > tr {
  transition: background-color .35s ease;
}

.m-detail-table-3 > tbody > tr:hover {
  background-color: #e8f0ed;
}

.m-detail-table-3 > tbody > tr > td {
  padding: 8px 0 8px 20px;
  color: var(--color-grey-2);
  font-size: 14px;
  border-top: 1px dashed #f0ede4;
}

.m-detail-content__card__file {
  width: 100%;
  border: 1px dashed #f0ede4;
  background-color: #fbf9f2;
  padding: 24px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.m-detail-content__card__file > li {
  font-size: 14px;
}

.m-detail-content__card__file > li:not(:first-child) {
  margin-top: 8px;
}

.m-detail-content__card__file > li > a {
  color: var(--color-primary);
  text-decoration: none;
}

.m-detail-content__card__file > li > a:hover {
  text-decoration: underline;
}

/* 公司详情 */
.m-component-content__list__container {
  width: 100%;
  padding: 24px;
  background-color: #fbf9f2;
  border: 1px dashed #f0ede4;
}

.m-component-content__list__container > li {
  position: relative;
  padding: 0 0 0 8px;
}

.m-component-content__list__container > li:not(:first-child) {
  margin-top: 8px;
}

.m-component-content__list__container > li > a {
  position: relative;
  font-size: 14px;
  text-decoration: none;
  color: var(--color-primary);
}

.m-component-content__list__container > li::before {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--color-grey-3);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.m-component-content__list__container > li > a:hover {
  text-decoration: underline;
}

/* 内容详情控制 */

.m-detail-content__container {
  width: 100%;
  padding: 24px;
}

.m-detail-content__container table {
  width: 100% !important;
  font-size: 14px !important;
}

.m-detail-content__container table tr th,
.m-detail-content__container table tr td {
  border: 1px solid var(--color-grey-4) !important;
  
}

.m-detail-content__container img {
  /* display: block; */
  max-width: 100%;
  object-fit: cover;
}

/* 多选模块 */

.select-box {
  /* background-color: darkblue; */
}

.select-box > section {
  display: flex;
  border-top: 1px solid var(--color-grey-5);
}

.select-box > section:last-child {
  border-bottom: 1px solid var(--color-grey-5);
}

.select-box > section > h3 {
  width: 200px;
  padding: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-grey-2);
  background-color: #f4f6f7;
}

.select-box > section > ul {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 0 24px;
}

.select-box > section > ul > li {
  width: 160px;
  font-size: 12px;
  margin: 8px 0;
  cursor: pointer;
}

.select-box > section > ul > li > span {
  padding: 4px 8px;
  border-radius: 3px;
}

.select-box > section > ul > li > span:hover {
  color: #e25a75;
}

.select-box > section > ul > li.on span {
  color: #fff;
  background-color: #e25a75;
  
}

/*
 * ******************************************************************
 * 登录
 * ******************************************************************
 */

.m-login-container{
  width: var(--size-main);
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
}

.m-login-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-login-body > h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0985ef;
  margin-bottom: 24px;
}

#messageBox {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  min-height: 40px;
  border-radius: 3px;
  background-color: #fef0f0;
  color: #f56c6c;
  font-size: 14px;
  margin: 0 0 24px 0;
  padding: 8px 16px;
  border: 1px solid #f56c6c;
}

#messageBox > button {
  outline: none;
  border: none;
  background-color: #f56c6c;
  color: #fff;
  width: 16px;
  height: 16px;
  margin-right: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.form-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  padding: 24px;
  background-color: var(--color-sub-bg);
  border-radius: 3px;
}

.form-login > ul {
  width: 50%;
  /* background-color: salmon; C9BD9B */
}

.form-login > ul > li {
  display: flex;
  flex-direction: column;
}

.form-login > ul > li:not(:first-child) {
  margin-top: 24px;
}

.form-login > ul > li label {
  font-size: 14px;
  margin: 4px 0 4px 4px;
}

.form-login > ul > li label span {
  color: var(--color-danger);
}

.form-login input.form-input {
  width: 100%;
  padding: 8px;
  outline: none;
  border: 1px solid #C9BD9B;
  border-radius: 3px;
  font-size: 14px;
}

.form-login select {
  width: 100%;
  padding: 8px;
  outline: none;
  border: 1px solid #C9BD9B;
  border-radius: 3px;
  font-size: 14px;
}

.form-login textarea {
  width: 100%;
  padding: 8px;
  outline: none;
  border: 1px solid #C9BD9B;
  border-radius: 3px;
  font-size: 14px;
}

.form-login > ul > li > section {
  display: flex;
}

.form-login > ul > li > section > input {
  flex: 1;
}

.form-login > ul > li > section > a {
  height: 39px;
  margin-left: 8px;
}

.form-login > ul > li > section > a > img {
  height: 100%;
}

.form-login > ul > li > button {
  outline: none;
  height: 40px;
  border: none;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
}

.form-login table {
  width: 100%;
}

.form-login  table tbody tr th,
.form-login  table tbody tr td {
  padding: 8px;
}

.form-login  table tbody tr th {
  width: 15%;
  text-align:right;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-grey-2);
}

.form-login  table tbody tr td {
  width: 35%;
}

.form-login  table tbody tr th span {
  color: var(--color-danger);
}

.form-login input[type='submit'] {
  outline: none;
  height: 40px;
  border: none;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  padding: 0 16px;
  cursor: pointer;
}

.m-reg-sub-title {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--color-grey-2);
  padding: 0 0 24px 0;
  margin: 0 0 16px 0;
  border-bottom: 1px dashed var(--color-grey-4);
}

.s-upload-btn {
  outline: none;
  border: none;
  padding: 8px 16px;
  background-color: #24b07d;
  font-size: 14px;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
}

.layui-upload-list {
  display: flex;
}

.layui-upload-img {
  width: 30%;
  height: 180px;
  border: 1px solid var(--color-grey-4);
  padding: 8px;
  border-radius: 3px;
}

.layui-upload-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-upload-tips {
  color: var(--color-danger);
  font-size: 14px;
  margin: 0 0 0 8px;
}

.m-upload-btn__wrapper {
  display: flex;
  align-items: center;
}

.m-logi-success__warpper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-logi-success__warpper > h1 {
  color: #24b07d;
  margin: 80px 0 40px 0;
}

.m-logi-success__warpper > section {
  display: flex;
  justify-content: center;
}

.m-logi-success__warpper > section > a {
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 14px;
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
}

.m-logi-success__warpper > section > a:nth-child(1) {
  background-color: #0985ef;
}

.m-logi-success__warpper > section > a:nth-child(2) {
  background-color: var(--color-grey-5);
  color: var(--color-grey-3);
}

.m-btn-normal {
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 14px;
  margin: 0 8px;
  text-decoration: none;
  background-color: var(--color-grey-5);
  color: var(--color-grey-3)
}


.m-createuser-info {
  display: flex;
  justify-content: center;
  font-size: 14px;
  padding: 0 0 24px 0;
}

.m-createuser-info a {
  color: var(--color-primary);
  margin: 0 4px;
}


/*
 * ******************************************************************
 * 步骤
 * ******************************************************************
 */

.m-reg-step{
  display: flex;
  width: 80%;
  margin: 24px auto 0 auto;
}

.m-reg-step > li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-reg-step > li.m-active > span {
  background-color: var(--color-primary);
  color: #fff;
}

.m-reg-step > li > span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-grey-5);
  color: var(--color-grey-3);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
}

.m-reg-step > li::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--color-grey-5);
  top: 20px;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}

.m-reg-step > li:first-child::after,
.m-reg-step > li:last-child::after {
  width: 50%;
}

.m-reg-step > li:first-child::after {
  right: 0;
  left: auto;
}

.m-reg-step > li > h6 {
  font-size: 14px;
  color: var(--color-grey-3);
  font-weight: 400;
  margin-top: 8px;
}


/*
 * ******************************************************************
 * 组织机构
 * ******************************************************************
 */

.m-zzjg-side__wrapper{

}

.m-zzjg-side__wrapper > ul{
  border: 1px dashed var(--color-grey-4);
  border-top: none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.m-zzjg-side__wrapper > ul > li{
  padding: 8px 16px;
  /* background-color: var(--color-sub-bg); */
}

.m-zzjg-side__wrapper > ul > li:hover {
  background-color: var(--color-sub-bg);
}

.m-zzjg-side__wrapper > ul > li.active {
  background-color: var(--color-sub-bg);
}

.m-zzjg-side__wrapper > ul > li.active > a {
  color: var(--color-grey-1);
}

.m-zzjg-side__wrapper > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  font-variation-settings: 14px;
  text-decoration: none;
  color: var(--color-grey-3);
}

.m-zzjg-bmzn__container {}

.m-zzjg-content-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-bottom: 1px dashed var(--color-grey-4);
  font-size: 24px;
  color: #24b07d;
}

.m-zzjg-bmzn__container > section > dl {
  display: flex;
  align-items: center;
  margin: 32px 0;
}

.m-zzjg-bmzn__container > section > dl > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-warning);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.m-zzjg-bmzn__container > section > dl > dd {
  flex: 1;
  font-size: 14px;
  color: var(--color-grey-1);
  margin: 0 0 0 24px;
  line-height: 24px;
}

.m-zzjg-ldfg__container {}

.m-zzjg-ldfg__container > ul {
  margin-top: 32px;
}

.m-zzjg-ldfg__container > ul > li {
  display: flex;
}

.m-zzjg-ldfg__container > ul > li:not(:last-child) {
  border-bottom: 1px dashed var(--color-grey-5);
  padding-bottom: 64px;
  margin-bottom: 64px;
}

.m-zzjg-ldfg__container > ul > li > img {
  width: 140px;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 4px 4px var(--color-sub-bg);
  margin: 0 16px 0 0 ;
}

.m-zzjg-ldfg__container > ul > li > div {
  flex: 1;
}

.m-zzjg-ldfg__container > ul > li > div > section {
  line-height: 24px;
  display: flex;
  align-items: flex-start;
}

.m-zzjg-ldfg__container > ul > li > div > section:first-child {
  margin-top: 8px;
}

.m-zzjg-ldfg__container > ul > li > div > section:not(:last-child) {
  margin-bottom: 16px;
}

.m-zzjg-ldfg__container > ul > li > div > section > h6 {
  font-size: 14px;
  color: var(--color-grey-1);
}

.m-zzjg-ldfg__container > ul > li > div > section > span {
  font-size: 14px;
  color: var(--color-grey-2);
}

.m-zzjg-ldfg__container > ul > li > div > section  li {
  display: flex;
  line-height: 24px;
  font-size: 14px;
  color: var(--color-grey-2);
}

.m-zzjg-ldfg__container > ul > li > div > section  li:not(:last-child) {
  margin-bottom: 8px;
}

.m-zzjg-ldfg__container > ul > li > div > section li span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-sub-bg);
  color: var(--color-grey-3);
  margin-right: 8px;
}











