html {
	/* 1rem = 10px */
	font-size: 10px;
	/* 禁止iOS微信字体大小调整 */
	-webkit-text-size-adjust: 100% !important;
	text-size-adjust: 100% !important;
	-moz-text-size-adjust: 100% !important;
}

body {
	font-size: 2.6rem;
	text-align: justify;
	text-justify: distribute-all-lines;
	text-justify: inter-ideograph;
}
html,body{
	font-family: Source Han Sans CN, Source Han Sans CN;
}
[class*=cr-ab-] {
	position: absolute;
	z-index: 10;
	background-size: 100% 100%;
}

[class*=cr-fixed-] {
	position: fixed;
	z-index: 1000;
	background-size: 100% 100%;
}

[class*=cr-ab-btn-] {
	display: block;
	cursor: pointer;
	z-index: 200;
}

[class*=cr-btn] {
	cursor: pointer;
}

[class*=cr-page-] {
	display: none;
	position: relative;
	width: 640px;
	min-height: 960px;
	margin: 0 auto;
	overflow: hidden;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-color: white;
	padding-bottom: 100px;
	background: #F9FAFE;
}
@media only screen and (max-width: 640px) {
	html,
	body {
		overflow-x: hidden;
		overflow-y: auto;
	}

	[class*=cr-page-] {
		min-height: 100vh;
		overflow-y: auto;
	}
}

.cr-display-none{
	display: none;
}

.cr-page-loading{
	display: block;
	position: relative;
	width: 640px;
	height: 1040px;
	min-height: 100vh;
	margin: 0 auto;
	overflow: hidden;
	background-size: 100% 100%;
	background-image: url(../../common/img/bg-loading.png);
}
.cr-ab-loading-bg{
	vertical-align: middle;
	width: 100%;
	height: 100%;
	text-align: center;
}

.cr-ab-loading-bg:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.cr-loading-box {
	opacity: .8;
	position: absolute;
	left: 120px;
	top: calc(50% - 25px);
	display: inline-block;
	z-index: 20;
	width: 400px;
	height: 54px;
	padding: 2px;
	background-image: linear-gradient(to right, #FFA556 0%, #FF9E00 100%);
}

.cr-loading-rate {
	float: right;
	position: relative;
	width: 100%;
	height: 50px;
	background: white;
}
.cr-loading-number {
	position: absolute;
	width: 400px;
	top: 60px;
	background-image: linear-gradient(to right,#f9d423 0%, white 20%, #FF9E00 50%,white 80%, #f9d423 100%);
	/* background-image: linear-gradient(to right, #f83600 0%, #f9d423 100%); */
	/* background-image: linear-gradient(to right, #84fab0, #8fd3f4); */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
	font-size: 40px;
	letter-spacing: 4px;
	font-weight: bold;
	/* animation: cr-loading-number 1s infinite linear; */
}


#cr-bg-music {
	position: absolute;
	height: 0;
	width: 0;
	opacity: 0;
	z-index: -1;
}

.cr-fixed-modal {
	display: none;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 4000;
	text-align: center;
}

.cr-fixed-modal:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.cr-overflow-hidden {
	overflow: hidden;
}

.cr-vote-content img {
	width: 100%;
	height: auto;
}

.cr-img {
	width: 100%;
	height: auto;
}

#cr-alert-modal {
	background: none;
}

.cr-modal {
	width: 540px;
	background-color: white;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	animation: cr-modal .3s forwards ease-in-out;
	border-radius: 8px;
}

#cr-alert-modal>.cr-modal {
	max-width: 500px;
	width: auto;
	color: white;
	background-color: rgba(0, 0, 0, .54);
	border-radius: 5px;
	padding: 10px 30px;
}
.cr-modal .cr-btn-box{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}
.cr-modal .cr-btn-box .cr-btn{
	width: 50%;
	padding: 15px;
	text-align: center;
	color: white;
	font-size: 28px;
	background-image: linear-gradient(to right, #f12710 0%, #fc7c02 100%);
}
.cr-modal .cr-btn-box .cr-btn:nth-of-type(1){
	border-radius: 0 0 0 5px;
}
.cr-modal .cr-btn-box .cr-btn:nth-of-type(2){
	border-radius: 0 0 5px 0;
}
.cr-modal-head {
	position: relative;
	padding: 20px;
	text-align: center;
	font-size: 30px;
	font-weight: 600;
}

.cr-modal-body {
	padding: 20px;
}

.cr-modal-content{
	padding: 0 20px 20px 20px;
}

.cr-btn-modal {
	padding: 15px;
	border-radius: 10px;
	margin: 20px;
	text-align: center;
	color: white;
	font-size: 28px;
	background-image: linear-gradient(to right, #f12710 0%, #fc7c02 100%);
}

.cr-text-center {
	text-align: center;
}

.cr-text-left {
	text-align: left;
}

.cr-spin-rotate{
	animation: cr-spin 1s infinite linear;
}

.cr-btn-close-modal{
	position: absolute;
	width: 40px;
	height: 40px;
	top: calc( 50% - 20px);
	right: 30px;
	background-image: url(../img/icon-close.png);
	background-position: center center;
	background-size: 24px 24px;
	background-repeat: no-repeat;
}

.cr-cube-box {
	position: absolute;
	left: 50%;
	top: calc(50% - 300px);
	margin-left: -120px;
	width: 240px;
	height: 240px;
}

.cr-cube-ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	width: 50px;
	height: 50px;
	left: 50%;
	top: 50%;
	margin-left: -25px;
	margin-top: -25px;
	transform-style: preserve-3d;
	transform: rotateX(-35.5deg) rotateY(45deg);
	animation: innerani 2s linear infinite;
}

.cr-cube-li {
	position: absolute;
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	/* background-image: linear-gradient(to right, #FFA556 0%, #FF9E00 100%); */
	/* background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); */
	background-image: linear-gradient(120deg, #f9d423 0%, #ff4e50 100%);
}

.cr-cube-li[data-position="top"] {
	transform: rotateX(90deg) translateZ(25px);
}

.cr-cube-li[data-position="bottom"] {
	transform: rotateX(-90deg) translateZ(25px);
}

.cr-cube-li[data-position="front"] {
	transform: translateZ(25px);
}

.cr-cube-li[data-position="back"] {
	transform: rotateY(180deg) translateZ(25px);
}

.cr-cube-li[data-position="left"] {
	transform: rotateY(-90deg) translateZ(25px);
}

.cr-cube-li[data-position="right"] {
	transform: rotateY(90deg) translateZ(25px);
}

.cr-cube-ul[data-size="middle"] {
	width: 100px;
	height: 100px;
	margin-left: -50px;
	margin-top: -50px;
	animation: outerani 3s linear infinite;
}

.cr-cube-ul[data-size="middle"] .cr-cube-li {
	width: 100px;
	height: 100px;
	/* background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); */
	/* background-image: linear-gradient(120deg, #FFA556 0%, #FF9E00 100%); */
	background-image: linear-gradient(120deg, #f83600 0%, #f9d423 100%);
	opacity: 0.4;
}

.cr-cube-ul[data-size="middle"] .cr-cube-li[data-position="top"] {
	transform: rotateX(90deg) translateZ(50px);
}

.cr-cube-ul[data-size="middle"] .cr-cube-li[data-position="bottom"] {
	transform: rotateX(-90deg) translateZ(50px);
}

.cr-cube-ul[data-size="middle"] .cr-cube-li[data-position="front"] {
	transform: translateZ(50px);
}

.cr-cube-ul[data-size="middle"] .cr-cube-li[data-position="back"] {
	transform: rotateY(180deg) translateZ(50px);
}

.cr-cube-ul[data-size="middle"] .cr-cube-li[data-position="left"] {
	transform: rotateY(-90deg) translateZ(50px);
}

.cr-cube-ul[data-size="middle"] .cr-cube-li[data-position="right"] {
	transform: rotateY(90deg) translateZ(50px);
}

.cr-cube-ul[data-size="big"] {
	width: 150px;
	height: 150px;
	margin-left: -75px;
	margin-top: -75px;
	animation: innerani 4s linear infinite;
}

.cr-cube-ul[data-size="big"] .cr-cube-li {
	width: 150px;
	height: 150px;
	background-image: linear-gradient(120deg, #fa709a 0%, #fee140 100%);
	/* background-image: linear-gradient(120deg, #FFA556 0%, #FF9E00 100%); */
	/* background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); */
	opacity: 0.4;
}

.cr-cube-ul[data-size="big"] .cr-cube-li[data-position="top"] {
	transform: rotateX(90deg) translateZ(75px);
}

.cr-cube-ul[data-size="big"] .cr-cube-li[data-position="bottom"] {
	transform: rotateX(-90deg) translateZ(75px);
}

.cr-cube-ul[data-size="big"] .cr-cube-li[data-position="front"] {
	transform: translateZ(75px);
}

.cr-cube-ul[data-size="big"] .cr-cube-li[data-position="back"] {
	transform: rotateY(180deg) translateZ(75px);
}

.cr-cube-ul[data-size="big"] .cr-cube-li[data-position="left"] {
	transform: rotateY(-90deg) translateZ(75px);
}

.cr-cube-ul[data-size="big"] .cr-cube-li[data-position="right"] {
	transform: rotateY(90deg) translateZ(75px);
}
.cr-fixed-preview{
	display: none;
	position: fixed;
	right: calc(50% - 320px);
	top: 0;
	padding: 5px 10px;
	color: white;
	background-color: rgba(0, 0, 0, .3);
	font-size: 22px;
	border-radius: 0 0 0 5px;
}
.cr-rule img{
	display: block;
	margin: 10px auto;
	width: 100%;
	height: auto;
}
.cr-rule p{
	margin: 0;
}
*:focus{
	outline: none;
}
.cr-auth-box{
	text-align: center;
	padding: 200px 50px;
}

.cr-auth-img{
	width: 300px;
	height: auto;
	margin: 0 auto;
}

.cr-auth-html .cr-auth-content{
	font-size: 30px;
	font-weight: 600;
	margin: 30px 0;
}

.cr-auth-btn{
	padding: 15px;
	border-radius: 10px;
	margin: 0 20px;
	text-align: center;
	color: white;
	font-size: 28px;
	background-image: linear-gradient(to right, #00C800 0%, #6DD94E 100%);
}