body,
html {
	font-family: -apple-system, "PingFang SC", "Microsoft YaHei", Arial, sans-serif, "Helvetica Neue", "Open Sans", "Hiragino Sans GB", sans-serif;
	font-size: 14px;
	color: #000;
	min-width: 320px;
	background: #fbf7f4;
	letter-spacing: 0.5px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #000;
}

ol,
ul {
	list-style: none;
}

img {
	width: 100%;
	max-height: 100%;
	vertical-align: top;
	pointer-events: none;
	will-change: transform;
}

::-webkit-scrollbar-track {
	background-color: #eee;
	border-radius: 0;
}

::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-thumb {
	cursor: pointer;
	border-radius: 0;
	background-color: #959eaa;
	transition: color .2s ease;
}

input::-webkit-input-placeholder {
	color: #ccc;
}

/* header */
header {
	background: #386ac0;
}

.dcms-header {
	margin: 0 auto;
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: center;
}

.dcms-header-meta {
	flex: 1;
	min-width: 0;
}

.dcms-logo {
	flex-shrink: 0;
	max-width: 430px;
	transition: max-width 0.3s ease;
}

.dcms-search {
	padding: 0 20px;
	flex: 0 0 200px;
	width: 200px;
	height: 40px;
	background: #fff;
	border-radius: 10px;
}

.dcms-search-input {
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: #666;
	border: none;
	outline: none;
	background: transparent;
}

.dcms-search-button {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
}

.dcms-mobile-nav {
	display: none;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
}

.dcms-mobile-list>li {
	border-bottom: 1px solid #eee;
}

.dcms-mobile-list>li:last-child {
	border: none;
}

.dcms-mobile-list>li>a {
	display: block;
	font-size: 14px;
	color: #666;
	line-height: 40px;
}

.dcms-mobile-list>li.selected>a {
	font-weight: bold;
	color: #000;
}

.dcms-nav {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dcms-nav-list {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
}

.dcms-nav-list>li {
	position: relative;
	padding: 0 15px;
	flex-shrink: 1;
	flex-grow: 0;
	flex-basis: auto;
	min-width: 0;
}

.dcms-nav-list>li a {
	display: block;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	height: 50px;
	line-height: 50px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.dcms-nav-slider {
	position: absolute;
	height: 6px;
	background: #fff;
	top: -3px;
	z-index: 9;
	transition: all 0.3s ease;
}

.dcms-subnav-list {
	position: absolute;
	display: none;
	padding: 5px;
	width: auto;
	min-width: 120px;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	z-index: 9;
}

.dcms-subnav-list>li {
	border-bottom: 1px solid #eee;
}

.dcms-subnav-list>li:last-child {
	border: none;
}

.dcms-subnav-list>li>a {
	padding: 0 10px;
	display: block;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	color: #777;
	text-align: center;
	white-space: nowrap;
}

.dcms-subnav-list>li>a:hover {
	color: #2e5ca8;
	background: #eee;
}

/* Home1 */
.dcms-home-1 {
	width: 100%;
	padding: 30px 0;
	background: url(../img/home_1_bg.jpg) #f6fbff right bottom no-repeat;
}

.dcms-panel-1 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.dcms-topnews {
	position: relative;
	overflow: visible;
}

.dcms-topnews-img {
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
}

.dcms-topnews-img img {
	object-fit: cover;
	transition: transform 0.5s ease;
}

.dcms-topnews-img:hover img {
	transform: scale(1.2);
}

.dcms-topnews-title {
	margin-top: 10px;
	font-size: 0.32rem;
	color: #000;
	line-height: 150%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dcms-topnews-desc {
	padding-top: 10px;
	font-size: 14px;
	color: #999;
	line-height: 140%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dcms-topnews-time {
	display: flex;
	align-items: center;
	width: 100%;
}

.dcms-topnews-num {
	margin-right: 20px;
	flex: 0 0 60px;
	font-size: 0.42rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	width: 60px;
	height: 60px;
	line-height: 60px;
	background: #4280e6;
}

.dcms-topnews-line {
	position: relative;
	flex: 1;
	min-width: 0;
}

.dcms-topnews-date {
	font-size: 0.32rem;
	font-weight: bold;
	color: #e4bb6c;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
}

.dcms-topnews-year {
	font-size: 0.26rem;
	color: #999;
	height: 60px;
	line-height: 60px;
}

.dcms-topnews-line::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #4280e6;
}

.dcms-topnews .swiper-container {
	position: static;
	margin: 0 40px;
}

.dcms-topnews .swiper-button-prev {
	left: -5px;
}

.dcms-topnews .swiper-button-next {
	right: -5px;
}

.dcms-switch {
	display: flex;
	align-items: center;
	width: 100%;
}

.dcms-switch-title {
	position: relative;
	cursor: pointer;
	padding: 0 20px;
	font-size: 0.32rem;
	color: #999;
	font-weight: bold;
	height: 50px;
	line-height: 50px;
}

.dcms-switch-title.selected {
	color: #4280e6;
}

.dcms-switch-title.selected::before {
	position: absolute;
	content: " ";
	width: 100%;
	height: 6px;
	left: 0;
	right: 0;
	background: #4280e6;
	bottom: 0;
	z-index: 1;
}

.dcms-switch-meta {
	flex: 1;
	min-width: 0;
}

.dcms-list1>ul>li {
	padding: 10px 0;
}

.dcms-list1-title {
	font-size: 0.3rem;
	color: #000;
	line-height: 150%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dcms-list1-desc {
	padding-top: 10px;
	font-size: 14px;
	color: #888;
	line-height: 140%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dcms-list1-cover {
	margin-left: 20px;
	flex: 0 0 168px;
	width: 168px;
	height: 126px;
	overflow: hidden;
}

.dcms-list1-cover img {
	transition: all 0.3s ease;
}

.dcms-list1-cover:hover img {
	transform: scale(1.4);
}

.dcms-list1-date {
	font-size: 0.26rem;
	font-weight: bold;
	color: #4280e6;
}

.dcms-list1-year {
	font-size: 0.26rem;
	color: #666;
}

.dcms-list1-year::before {
	padding: 0 5px;
	font-size: 0.16rem;
	color: #ccc;
	content: "\00a0/";
	line-height: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
}

.dcms-topnews-arrow {
	height: 40px;
	background: url(../img/more_1.png) right center no-repeat;
}

.dcms-list1>ul>li a:hover .dcms-list1-title {
	color: #4280e6;
}

/* Home2 */
.dcms-home-2 {
	width: 100%;
	padding: 30px 0;
	background: url(../img/home_2_bg.jpg);
}

.dcms-panel-2 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.dcms-panel2 {
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #fff;
}

.dcms-panel2::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: #4280e6;
	z-index: 1;
}

.dcms-panel2:hover {
	background: url(../img/card_bg.jpg) #fff right bottom no-repeat;
}

.dcms-panel2:hover::after {
	background: #cba04c;
}

.dcms-panel2-time {
	padding-bottom: 20px;
}

.dcms-panel2-date {
	font-size: 0.426667rem;
	font-weight: bold;
	color: #4280e6;
}

.dcms-panel2-year {
	font-size: 0.24rem;
	color: #999;
}

.dcms-panel2-year::before {
	padding: 0 5px;
	color: #ddd;
	content: "\00a0/";
}

.dcms-panel2-more {
	width: 30px;
	flex: 0 0 30px;
}

.dcms-panel2-title {
	font-size: 0.32rem;
	color: #000;
	line-height: 140%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dcms-panel2-desc {
	padding-top: 20px;
	font-size: 14px;
	color: #888;
	line-height: 140%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dcms-panel2-item:hover .dcms-panel2-title {
	color: #4280e6;
}

/* Home3 */
.dcms-home-3 {
	width: 100%;
	padding: 30px 0;
	background: #f5f5f5;
}

.dcms-panel-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

/* Home4 */
.dcms-home-4 {
	width: 100%;
	padding: 30px 0;
}

.dcms-panel-4 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.dcms-panel4 {
	padding: 30px;
	background: url(../img/card_bg.jpg) #fff right bottom no-repeat;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.dcms-panel4::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: #4280e6;
	z-index: 1;
	transform: var(--line-transform, translateX(0));
	transition: var(--line-transition, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1));
}

.dcms-panel4-titlebar {
	width: 100%;
	display: flex;
	align-items: center;
	padding-bottom: 20px;
}

.dcms-panel4-title {
	flex: 1;
	min-width: 0;
	padding-left: 40px;
	font-size: 0.3rem;
	font-weight: bold;
	color: #000;
	height: 30px;
	line-height: 30px;
	background: url(../img/titlebar_02.png) left center no-repeat;
}

.dcms-panel4-more {
	width: 64px;
	flex: 0 0 64px;
}

.dcms-list4>li {
	padding: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.dcms-list4-title {
	font-size: 16px;
	text-align: left;
	color: #444;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-all;
	flex: 1;
}

.dcms-list4-title:hover {
	color: #386ac0;
}

.dcms-list4-time {
	font-size: 16px;
	color: #999;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Home5 */
.dcms-home-5 {
	width: 100%;
	padding: 30px 0;
	background: #fff;
}

.dcms-panel-5 {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 10px;
	transition: grid-template-columns 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	-webkit-font-smoothing: antialiased;
}

.dcms-panel5 {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateZ(0);
	will-change: transform;
	text-decoration: none;
}

.dcms-panel5-cover {
	position: relative;
	height: 412px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateZ(0);
	will-change: transform;
	text-decoration: none;
	background: #eee;
}

.dcms-panel5-cover:hover {
	transform: scale(1.1);
}

/* Home6 */
.dcms-home-6 {
	width: 100%;
	padding: 30px 0;
	background: #fff;
}

.dcms-panel-6 {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 30px;
}

.dcms-panel6 {
	padding: 20px;
	background: #f5f5f5;
	border-radius: 10px;
}

.dcms-panel6-icon {
	margin: 0 auto;
	width: 50px;
	height: 50px;
}

.dcms-panel6-title {
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #000;
	height: 30px;
	line-height: 30px;
	text-align: center;
}

.dcms-panel6:hover {
	background: #4280e6;
}

.dcms-panel6-icon img {
	width: 100%;
	height: auto;
	transition: filter 0.3s ease;
}

.dcms-panel6:hover .dcms-panel6-icon img {
	filter: brightness(0) invert(1);
}

.dcms-panel6:hover .dcms-panel6-title {
	color: #fff;
}

/* footer */
footer {
	background: #2c5bab;
}

.dcms-footer {
	padding: 20px 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: center;
}

.dcms-footer-meta {
	flex: 1;
	min-width: 0;
}

.dcms-footer-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 30px;
}

.dcms-footer-text a {
	color: rgba(255, 255, 255, 0.7);
}

.dcms-footer-code {
	width: 120px;
	flex: 0 0 120px;
}

.dcms-code-img {
	margin: 0 auto;
	width: 100px;
}

.dcms-code-text {
	font-size: 12px;
	text-align: center;
	height: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.7);
}

.dcms-copy {
	padding: 10px 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dcms-copy-icon {
	width: 24px;
	flex: 0 0 24px;
	height: 24px;
}

.dcms-copy-text {
	font-size: 12px;
	height: 24px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.5);
	flex: 1;
	min-width: 0;
}

.dcms-footer-bg {
	height: 80px;
	background: url(../img/footer_bg.jpg);
}

/* common */
.dcms-container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 15px;
}

.dcms-flex {
	display: flex;
	align-items: center;
	width: 100%;
}

.dcms-flex-meta {
	flex: 1;
	min-width: 0;
}

.dcms-banner {
	background: #f5f5f5;
	width: 100%;
}

.dcms-more {
	font-size: 0.24rem;
	color: #000;
	width: 130px;
	height: 50px;
	line-height: 50px;
	background: url(../img/more_2.png) right center no-repeat;
}

.dcms-banner-img {
	display: block;
	width: 100%;
	height: 50vw;
	max-height: 600px;
	min-height: 200px;
	transition: all 0.3s ease;
}

.dcms-banner-img:hover {
	transform: scale(1.1);
}

.dcms-title {
	font-size: 0.36rem;
	font-weight: bold;
	text-align: center;
	color: #000;
	width: 220px;
	height: 90px;
	line-height: 90px;
	background: url(../img/title_bg.png) center center no-repeat;
}

.dcms-float-window {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
	z-index: 1000;
	overflow: hidden;
}

.dcms-float-head {
	display: block;
	width: 80px;
}

.dcms-float-top {
	width: 80px;
	cursor: pointer;
}

.dcms-mask {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
}

.dcms-actionsheet {
	position: fixed;
	width: calc(100% - 10px);
	left: 0;
	bottom: 0;
	-webkit-transform: translate(0, 100%);
	transform: translate(0, 100%);
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	overflow: hidden;
	outline: 0;
	z-index: 1000;
	background: #fff;
	border-radius: 24px 24px 0 0;
}

.dcms-actionsheet-toggle {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.dcms-actionsheet-head {
	padding: 10px;
}

.dcms-actionsheet-close {
	width: 30px;
	height: 30px;
}

.dcms-actionsheet-body {
	padding: 20px;
}

.dcms-actionsheet-search {
	padding: 5px;
	background: #eee;
	border-radius: 25px;
}

.dcms-actionsheet-icon {
	width: 40px;
	height: 40px;
}