/* 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;
  font-family: "PingFang SC", "Microsoft YaHei", Helvetica, "Helvetica Neue", "Arial", Verdana, "sans-serif";
}

/* 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%;
  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;
  justify-content: center;
  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: bold;
  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: 1500px;
  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;
  font-weight: bold;
}

.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: 2% 5%;
  overflow: hidden;
}

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

.work .work-left {
  width: 50%;
  padding-right: 3%;
}

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

/* Ã¥Â·Â¥Ã¤Â½Å“Ã¥Å Â¨Ã¦â‚¬Â */
.dynamic-top {
  display: flex;
  position: relative;
  /* width: 35.625rem; */
  /* height: 16rem; */
  background-color: #dfebff70;
  border-radius: 0 10rem 10rem 0;
  margin: 0 0 1.5rem 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%;
  display: flex;
  align-items: center;
}

.dynamic-describe .dynamic-top-title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.625rem;
  color: var(--text-color);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  -webkit-line-clamp: 3;
  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: 15px;
  font-weight: 500;
  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: .93rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.work-left .dynamic-list .dynamic-list-item:first-child .dynamic-list-item-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 14px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
  margin-left: 5px;
  flex-shrink: 0;
}
.work-left .dynamic-list .dynamic-list-item .dynamic-list-item-title-new::after {
  content: '';
  display: block;
  width: 30px;
  height: 14px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
  margin-left: 5px;
  flex-shrink: 0;
}

.dynamic-list .dynamic-list-item .dynamic-list-item-time {
  min-width: 6rem;
  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: 43%;
  padding-left: 5%;
}
.work-right li:first-child .publicity-item .publicity-content::after {
  content: '';
  display: block;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 14px;
  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: 30px;
  height: 14px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
}

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

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

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

.publicity-party-left .dynamic-list .dynamic-list-item:first-child .dynamic-list-item-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 14px;
  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: 30px;
  height: 14px;
  background: url(2024-new.png) no-repeat center;
  background-size: contain;
  margin-left: 5px;
  flex-shrink: 0;
}

.work-party-left .work-party-pic {
  width: 90%;
  position: relative;
  /* transform: translateY(-10%); */
  margin-top: -5%;
}

.work-party-left .work-party-pic img {
  width: 80%;
  max-height: 210px;
  min-height: 210px;
  /* border-radius: 2.5rem 0 5rem 2.5rem; */
}

.work-party-left .work-party-left-top-title {
  font-size: 1.1rem;
  line-height:1.7;
  font-weight: bold;
  color: #fff;
  margin-left: 3%;
}

.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;
}

.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: 3rem;
  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: 1rem;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 4px 0px, rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
  padding: 0.5rem 1rem 0.5rem 2.75rem;
}

.notice-item {
  min-height: 4.5rem;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #ccc;
}
.notice-item:last-child {
  border: none;
}

.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.47rem;
  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: bold;
  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: 2% 0;
}

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

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

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

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

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

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

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

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

.support-list .support-pic {
  width: 75%;
  margin-bottom: 0.5rem;
  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: 2% 5%;
}

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

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

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

.publicity-right {
  width: 48%;
  padding-left: 3%;
}

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

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

.publicity-left .publicity-pic {
  width: 75%;
  height: auto;
  min-height: 250px;
  border-radius: 2.5rem 0 0 2.5rem;
  /* margin-left: 2.5rem; */
  position: relative;
  transform: translateY(-10%);
}

.publicity-list {
  width: 100%;
  /* 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: 3px 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: 3px 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.2rem;
  height: 3.2rem;
  background-color: #3879e7;
  border-radius: 10rem;
  position: relative;
  transform: translateX(-1px);
}

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

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

.publicity-list .publicity-item .publicity-content {
  font-size: .93rem;
  font-weight: bold;
  line-height: 1.4;
  color: #3879E7;
  padding: 0 3.75rem 0 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -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: 2% 5%;
  overflow: hidden;
}

.employee-wrap .employee-box {
  max-width: 1400px;
  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 {
  display: flex;
  margin: 2rem 0 0 0;
  /* padding: 0 7.5rem; */
}

.info-link-item {
  width: 50%;
  margin-bottom: 1.5rem;
}

.info-link-item .link-item-label {
  display: block;
  position: relative;
  width: 90%;
  /* max-width: 16rem; */
  min-height: 8rem;
  line-height: 8rem;
  text-align: center;
  color: #2e7aff;
  background: url(2024-employee-bridge-bg.png) no-repeat center;
  background-size: 100% 100%;
  margin: 0 auto;
  font-weight: bold;
}

/* .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: 2% 5%;
}

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

/* Ã¥Â¿Æ’Ã§Ââ€ Ã¥ÂÂ¥Ã¥ÂºÂ·Ã¦â€¢â„¢Ã¨â€šÂ²-Ã¥Â·Â¦-Ã¦â€¹â€ºÃ§â€Å¸Ã¤Â¸Å½Ã¥Å¸Â¹Ã¥â€¦Â» */
.enrollment-box {
  width: 50%;
}

.part-enrollment {
  margin-bottom: 2rem;
}

.part-enrollment .title,
.part-enrollment .describe {
  /* color: #fff; */
}

.enrollment-box .rules-tab-list {
  width: 6rem;
  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 {
  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;
  font-weight: bold;
}

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

.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 {
  /* height: 4.5rem; */
  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%;
}

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

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

.rules-content-item .title {
  position: relative;
  font-size: 0.93rem;
  line-height: 1.3;
  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);
}

.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:hover .title {
  color: #fff;
}

.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: 2;
}

.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: 5px 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 {
  width: 50%;
  /* background: url(2024-employee-list-bg.png) no-repeat bottom right; */
  /* background-size: 100% 100%; */
  padding: 0 0 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-title {
  position: absolute;
  top: 0;
  left: 3%;
  transform: translateY(-50%);
  background-color: var(--active-color);
  padding: .5rem;
  color: #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-size: 0.93rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

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

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

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

.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-list-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.health-content-list-top .health-content-title-img {
  width: 1.87rem;
  vertical-align: sub;
}
.health-content-list-top .health-content-more-img {
  width: 4rem;
  vertical-align: middle;
}

.health-content {
  line-height: 1.5rem;
  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;
  margin-bottom: 0.5rem;
}
.health-content p {
  padding-left: 10px;
}

.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%;
  background: url(health-bg-2.png) no-repeat top center;
  background-size: 100%;
  margin-left: -5%;
  padding: 5% 12%;
}

/* xinli */
.xinli-wrap {
  /* background: url(2024-xinli-bg.png) no-repeat center; */
  /* background-size: cover; */
  background: linear-gradient(to right, #D4EEFF 100%, #fff 0%);
  padding: 2% 5%;
}
.xinli-box {
  max-width: 1400px;
  min-height: 200px;
  margin: 0 auto;
}
.part-title-xinli {
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.xinli-box-content {
  width: 100%;
  display: flex;
}
.xinli-box-left {
  width: 55%;
  background: url(2024-xinli-xizun-bg.png) no-repeat center;
  background-size: cover;
  border-radius: 1rem;
  padding: 2%;
  margin-right: 2%;
}
.xinli-box-right {
  width: 35%;
  display: flex;
  justify-content: space-evenly;
}
.xinli-box-left .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 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 a,
.xinli-box-right .xinli-content-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
.xinli-box-right a:hover,
.xinli-box-right .xinli-content-title:hover {
  color: #fff;
}
.xinli-link-kepu {
  width: 45%;
  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: 45%;
  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-left .part-title .describe,
.xinli-box-left .part-title .title {
  color: #fff;
}

/* rules */
.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: 2rem;
}

.rules-list-left,
.rules-list-right {
  width: 48%;
  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: 1.5rem 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 */
.download-wrap {
  background: url(bg-download.png) no-repeat top center;
  background-size: 100% 100%;
  padding: 2% 5%;
}

.download-wrap .download-box {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

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

.download-right {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 5%;
}

.download-item {
  width: 100%;
  height: 3.5rem;
  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: bold;
  color: #fff;
}

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

.footer-wrap .footer-box {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* #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%;
  padding-right: 5%;
}

.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 {
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.link-list li {
  flex-shrink: 0;
  font-size: .87rem;
  margin-right: 5%;
  margin-bottom: 8px;
}

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

/* list-page */
.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: flex-end;
  margin: 3rem 0 2rem;
}

#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 .prev {
  height: 2rem;
  line-height: 2rem;
  border: 1px solid #1A87FF;
  color: #1A87FF;
  border-radius: 2rem;
  margin: 0 0.5rem;
}

#pagination .next {
  height: 2rem;
  line-height: 2rem;
  background-color: #1A87FF;
  color: #FFF;
  border-radius: 2rem;
  margin: 0 0.5rem;
}

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

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

/* detail */
.detail-container {
  padding: 1rem 10%;
  background: url(2024-list-bg.png) no-repeat bottom center;
  background-size: cover;
}

.detail-container-box {
  background-color: #fff;
  padding: 1rem 2rem;
  box-shadow: 0px 1px 10px 0px rgba(208, 208, 208, 0.3);
}

#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;
}

.detail-box img {
  width: auto;
}

.detail-box p {
  line-height: 30px;
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

.detaildown {
  border-top: 1px dashed #cbcbcb;
  padding-top: 0.5rem;
}

.detaildown dl {
  display: flex;
}

.detaildown dl dt {
  width: 37px;
  height: 37px;
  display: block;
  background: url(fujian_qcc.png) center center no-repeat;
}

.detaildown dl dd.down {
  padding-left: 3px;
  line-height: 37px;
}

.detaildown dl dd {
  padding-left: 10px;
  display: block;
}

.detaildown dl dd ul li {
  line-height: 37px;
}

.detaildown dl dd ul li a {
  color: #3c61c2;
}

.detaildown dl dd ul li a:hover {
  text-decoration: underline;
}

/* float-box */
.float-box {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
  max-width: 100px;
  background: linear-gradient(to bottom, #17C4E3, #3879E7);
  border-radius: 10px;
}

.float-box .float-top-ip {
  display: block;
  width: 80%;
  margin: -50% auto 10px;
}

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

.float-box .back-top {
  border-radius: 0 0 10px 10px;
}

.float-box .float-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  border-radius: 2px;
}

.float-item>img {
  width: 20px;
  height: auto;
  margin-bottom: 5px;
}

.float-item>p {
  font-size: .87rem;
  font-weight: bold;
  padding: 8px 0;
}

.scale-container {
  position: absolute;
  top: 0;
  right: 105%;
  padding: 5px 10px;
  min-width: 200px;
  display: none;
  background-color: #2172FF;
  border-radius: 10px;
  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;
}