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

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

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

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

:root,
html {
	font-size: 16px;
	--text-color: #333;
	--text-color-secondary: #666;
	--active-color: #1A87FF;
	--swiper-navigation-size: 35px !important;
}

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


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

.w-full {
	width: 100%;
}

.h-full {
	height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex-1 {
	flex: 1;
}

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

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

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

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

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

.margin-auto {
	margin: 0 auto;
}

.block {
	display: block;
}

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

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

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

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

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

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

.part-title .describe {
	font-size: .75rem;
	color: var(--text-color-secondary);
}
.work-left {
	margin-bottom: 2rem;
}
.work-left .dynamic-wrap {
	margin-bottom: 1rem;
}

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

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

/* PC顶部导航 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dynamic-list .dynamic-list-item {
	width: 100%;
	/* height: 1.125rem; */
	background: url(label.png) no-repeat left center;
	background-size: .875rem .875rem;
	padding-left: 1.25rem;
	/* overflow: hidden; */
	/* text-overflow: ellipsis; */
	/* white-space: nowrap; */
	margin-bottom: .625rem;
	display: flex;
	align-items: center;
}
.dynamic-list .dynamic-list-item a {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 10px;
	font-size: .9375rem;
	font-weight: 500;
}
.dynamic-list .dynamic-list-item .dynamic-list-item-time {
	flex-shrink: 0;
	font-size: .875rem;
	/* font-weight: 500; */
	color: #999;
}

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

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

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

.work-right .notice-list {
	background-color: #FEFEFF;
	border-radius: .625rem;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 4px 0px, rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
	padding: 1.875rem 1.875rem 1.875rem 2.75rem;
	margin-left: 8%;
}

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

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

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

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

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

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

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

.notice-item .notice-item-time {
	font-size: .875rem;
	line-height: 1rem;
	color: rgba(0, 0, 0, 0.45);
}
/* 党建群团 */
.publicity-party-left {
	margin-bottom: 2rem;
}
.publicity-party-left .part-title {
  margin-bottom: 1rem;
}

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

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

.work-party-left .work-party-pic {
	width: 100%;
}
.work-party-left .work-party-pic img {
  width: 100%;
  border-radius: 1.25rem 0 2.5rem 1.25rem;
}

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

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

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

.work-party-list .work-party-item:hover {
	cursor: pointer;
	border: 4px solid #0b9d8d;
	background-color: #0fbca9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.publicity-wrap .mobile-publicity {
	display: flex;
	flex-direction: column;
	align-items: center;
}

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

.publicity-left .publicity-pic {
	width: 100%;
	border-radius: 1.25rem 0 2.5rem 1.25rem;
}

.publicity-list {
	width: 100%;
}

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

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

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

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

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

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

/* 就业信息 */
.employee-wrap {
	background: url(bg-employment.png) no-repeat top center;
	background-size: cover;
	min-height: 450px;
	padding: 4% 0;
	overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-link-item {
	width: 50%;
	justify-content: center;
}

.info-link-item .link-item-label {
	display: block;
	position: relative;
	z-index: 9;
	min-width: 10rem;
	height: 30px;
	line-height: 20px;
	text-align: center;
	padding-right: 5px;
	font-size: .9375rem;
	color: #2e7aff;
	background-color: #9bbaf0;
}

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

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

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

/* 心理健康教育 */
.health-wrap {
	position: relative;
	width: 100%;
	background: url(health-bg.png) no-repeat top center;
	background-size: cover;
	padding: 4% 0;
}

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

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

.rules-tab-list .tab-item {
	font-size: .9375rem;
	height: 30%;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

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

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

.enrollment-box .rules-content-list .rules-content-item {
	height: 4.375rem;
	margin-bottom: .5rem;
	flex-shrink: 0;
	background-color: #387BFFAD;
	border-radius: 0 2.9375rem 2.9375rem 0;
	padding: 0 .625rem;
}

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

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

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

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

.rules-content-item .title {
	line-height: 1.3;
	font-size: .9375rem;
	font-weight: 500;
	color: #fff;
	flex: 1;
}

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

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

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

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

.rules-content-date .month {
	font-size: .75rem;
	color: #fff;
}
.psychology-box {
	margin-bottom: 2rem;
}

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

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

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

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

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

.health-content {
	font-size: 12px;
	line-height: 14px;
	color: #fff;
	margin: 0 0 2.625rem 20%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-line {
	width: 100%;
	height: .125rem;
	display: flex;
	margin-bottom: 1.25rem;
}

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

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

.footer-left,
.footer-left .contact {
	margin-bottom: 1.875rem;
}

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

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

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

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

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

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

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

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

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

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

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

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