*,
*::after,
*::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html,
body,
div,
a,
p,
ul,
li {
	margin: 0;
	padding: 0;
}
body,
button,
input,
select,
textarea {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: "liga", "kern";
}
a,
button,
input,
select,
textarea {
	outline: 0;
}
textarea {
	min-height: 100px;
}
label {
	display: inline-block;
	max-width: 100%;
	font-weight: 400;
}
small {
	font-size: 12px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	line-height: 1.4;
	font-size: 14px;
}
a {
	color: #333;
}
a:hover {
	color: #c01e2c;
}
a,
a:hover,
a:link,
a:visited,
a:active {
	text-decoration: none;
}
li {
	list-style: none;
}
ul::after,
li::after {
	clear: both;
}
ul::after,
ul::before,
li::after,
li::before {
	display: table;
	content: " ";
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
html {
	font-size: 10px;
	font-family: sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	line-height: 1.4;
	background-color: #fff;
	color: #666;
	font-size: 14px;
	font-family: "Helvetica Neue",Helvetica,Tahoma,Arial,"Microsoft Yahei","Hiragino Sans GB","WenQuanYi Micro Hei",sans-serif;
}

.clearfix::after {
	clear: both;
}
.clearfix::after,
.clearfix::before {
	display: table;
	content: " ";
}

.dialog-block {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1001;
}
.dialog-block.show {
	opacity: 0;
	animation: ani-dialog-show .3s forwards;
}
.dialog-block.hide {
	opacity: 1;
	animation: ani-dialog-hide .3s forwards;
}

@keyframes ani-dialog-show {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes ani-dialog-hide {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.dialog-shade,
.dialog-box {
	position: absolute;
}
.dialog-shade {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .6);
}
.dialog-box {
    top: 50%;
    left: 50%;
	width: 85%;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
    transform: translate(-50%, -50%);
	z-index: 1;
}
.dialog-title {
    display: flex;
	color: #333;
	font-size: 18px;
	font-weight: 700;
    justify-content: center;
}
.dialog-content {
	padding: 20px 0;
}
.dialog-content .content {
	max-height: 350px;
	text-align: justify;
	overflow-x: hidden;
	overflow-y: auto;
}
.dialog-content .content p {
	line-height: 23px;
	color: #454545;
	font-size: 16px;
}
.dialog-content .content img {
	max-width: 100%;
}
.dialog-action {
	display: flex;
}
.dialog-action a {
    display: flex;
    height: 45px;
    background-color: #5acc3e;
    border-radius: 45px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.dialog-action a.confirm {
	margin-left: 20px;
}