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: #fff;
	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;
	border: none;
}

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

textarea::-webkit-input-placeholder {
	color: #ccc;
}

/* .............................. Common .............................. */
.dcms-container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 15px;
}

/* .............................. Common .............................. */

/* .............................. Header .............................. */

/* .............................. Footer .............................. */
footer {
	margin-top: 30px;
	padding: 30px 0;
	border-top: 4px solid #db945f;
	background: url(../img/footer_bg.jpg);
}

.dcms-footer {
	width: 100%;
	display: flex;
	align-items: center;
}

.dcms-footer-logo {
	margin-right: 30px;
	width: 120px;
	height: 120px;
	flex: 0 0 120px;
}

.dcms-footer-content {
	min-width: 0px;
	flex: 1 1 0%;
}

.dcms-footer-text {
	padding: 4px 0px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 100%;
}

.dcms-footer-text a {
	color: rgba(255, 255, 255, 0.8);
}

.dcms-footer-code {
	width: 120px;
	flex: 0 0 120px;
}

.dcms-code-img {
	width: 100px;
	height: 100px;
	margin: 0px auto;
}

.dcms-code-text {
	font-size: 14px;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	line-height: 100%;
	padding: 10px 0px;
}

/* .............................. Ie Tip .............................. */

.dcms-ie-tip {
	margin: 0 auto;
	padding: 50px;
	width: 1000px;
}

.dcms-tip-card {
	padding: 30px;
	background: #eee;
	border-radius: 16px;
}

.dms-tip-icon {
	margin: 0 auto;
	width: 200px;
	height: 200px;
}

.dcms-tip-text {
	font-size: 14px;
	color: #666;
	text-align: center;
	line-height: 140%;
}

/* .............................. Mask .............................. */
.dcms-mask {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
}

/* .............................. Action sheet .............................. */
.dcms-actionsheet {
	position: fixed;
	width: 100%;
	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 20px;
	display: flex;
	align-items: center;
}

.dcms-actionsheet-meta {
	min-width: 0px;
	flex: 1 1 0%;
}

.dcms-actionsheet-close {
	width: 30px;
	height: 30px;
}

.dcms-actionsheet-search {
	padding: 5px 10px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	border-radius: 12px;
}

.dcms-actionsheet-icon {
	width: 40px;
	height: 40px;
}

.dcms-actionsheet-body {
	padding: 20px;
}

/* .............................. Mobile list .............................. */
.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: 16px;
	color: #666;
	line-height: 46px;
}

.dcms-mobile-list>li.selected>a {
	font-weight: bold;
	color: #000;
}