@charset 'utf-8';

/* CSS reset */
html {
	font-family: Arial, 'Microsoft YaHei', '宋体';
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td,
strong {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei', Arial, '宋体';
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

a {
	text-decoration: none;
	color: #333333;
	outline: none;
}

/*此处待添加默认链接颜色*/
var,
em,
strong {
	font-style: normal;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
	font-style: inherit;
	font-weight: inherit;
}

del,
ins {
	text-decoration: none;
}

li {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
	font-variant: normal;
}

sup {
	vertical-align: baseline;
}

sub {
	vertical-align: baseline;
}

legend {
	color: #000;
}

input,
button,
textarea,
select,
optgroup,
option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}

input,
button,
textarea,
select {
	*font-size: 100%;
}

body {
	-webkit-user-select: none;
	-webkit-text-size-adjust: none;
}

* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.clearfix:after {
	content: "\200B";
	display: block;
	height: 0;
	clear: both;
}

.clearfix {
	*zoom: 1;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
	border-radius: 0;
}

::-webkit-input-placeholder {
	/*Webkit browsers*/
	color: #fff;
}

:-moz-placeholder {
	/*Mozilla Firefox 4 to 8*/
	color: #fff;
}

::moz-placeholder {
	/*Mozilla Firefox 19+*/
	color: #fff;
}

:-ms-input-placeholder {
	/*Internet Explorer 10+*/
	color: #fff;
}

input {
	border: none;
	outline: none;
}

/*input:-webkit-autofill{ 
  box-shadow: 0 0 0px 1000px transparent inset !important;
}*/
.language-box {
	min-width: 37%;
}

html,
body,
.wrap {
	min-height: 100%;
	margin: 0 auto;
	background-color: rgb(246, 245, 251);
}

html,
body {
	overflow-y: auto;
}

html,
body {
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
	scroll-behavior: smooth;
}

@media only screen and (max-width: 320px) {
	html {
		font-size: 35px;
	}
}

@media only screen and (min-width:321px) and (max-width: 480px) {
	html {
		font-size: 40px;
	}
}

@media only screen and (min-width:481px) and (max-width: 600px) {
	html {
		font-size: 42px;
	}
}

@media only screen and (min-width:601px) and (max-width: 719px) {
	html {
		font-size: 48px;
	}
}

@media only screen and (min-width:720px) and (max-width: 800px) {
	html {
		font-size: 55px;
	}
}

@media only screen and (min-width: 801px) {
	html {
		font-size: 80px;
	}
}

.content {
	position: absolute;
	left: 0;
	top: 1.23rem;
	width: 100%;
}
.header-bg{
	background-color:transparent;
}
/* 1280px 及以下） */
@media only screen and (max-width: 1279px) {
	.app-show {
		display: block;
	}

	.app-hide {
		display: none;
	}
}

/* 1280px 像素及以上） */
@media only screen and (min-width: 1280px) {
	.pc-show {
		display: block;
	}

	.pc-hide {
		display: none;
	}
}

/* 动画效果 */
/* slide-bottom  */
.slide-bottom {
	-webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: .5s;
}

@-webkit-keyframes slide-bottom {
	0% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slide-bottom {
	0% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/* slide-bottom  */
/* slide-right  */
.slide-right {
	-webkit-animation: slide-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: .2s;
}

@-webkit-keyframes slide-right {
	0% {
		-webkit-transform: translateX(-100px);
		transform: translateX(-100px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slide-right {
	0% {
		-webkit-transform: translateX(-100px);
		transform: translateX(-100px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/* slide-right  */

/* slide-left */
.slide-left {
	-webkit-animation: slide-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: .2s;
}

@-webkit-keyframes slide-left {
	0% {
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slide-left {
	0% {
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/* slide-left */
/* rotate-diagonal-1 */
.rotate-diagonal-1 {
	-webkit-animation: rotate-diagonal-1 .8s linear both;
	animation: rotate-diagonal-1 .8s linear both;
	animation-delay: .5s;
}

@-webkit-keyframes rotate-diagonal-1 {
	0% {
		-webkit-transform: rotate3d(1, 1, 0, 0deg);
		transform: rotate3d(1, 1, 0, 0deg);
	}

	50% {
		-webkit-transform: rotate3d(1, 1, 0, -180deg);
		transform: rotate3d(1, 1, 0, -180deg);
	}

	100% {
		-webkit-transform: rotate3d(1, 1, 0, -360deg);
		transform: rotate3d(1, 1, 0, -360deg);
	}
}

@keyframes rotate-diagonal-1 {
	0% {
		-webkit-transform: rotate3d(1, 1, 0, 0deg);
		transform: rotate3d(1, 1, 0, 0deg);
	}

	50% {
		-webkit-transform: rotate3d(1, 1, 0, -180deg);
		transform: rotate3d(1, 1, 0, -180deg);
	}

	100% {
		-webkit-transform: rotate3d(1, 1, 0, -360deg);
		transform: rotate3d(1, 1, 0, -360deg);
	}
}

/* rotate-diagonal-1 */
/* rotate-center */
.rotate-center {
	-webkit-animation: rotate-center 0.6s ease-in-out both;
	animation: rotate-center 0.6s ease-in-out both;
	animation-delay: .5s;
}

@-webkit-keyframes rotate-center {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate-center {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* rotate-center */

/* 应用动画效果到需要的元素上 */
.dynamic-number {
	animation: count-animation 3s infinite alternate;
	/* 指定动画名称、持续时间、无限循环并交替反向运行 */
}

/* 创建一个名为"count-animation"的动画 */
@keyframes count-animation {
	0% {
		/* 初始状态 */
		opacity: 1;
		/* 设置不透明度为完全显示 */
		transform: scale(1);
		/* 将元素大小还原到正常大小 */
	}

	50% {
		/* 过渡状态 */
		opacity: 0.7;
		/* 设置不透明度为部分隐藏 */
		transform: scale(1.2);
		/* 放大元素大小 */
	}

	100% {
		/* 结束状态 */
		opacity: 1;
		/* 重新设置不透明度为完全显示 */
		transform: scale(1);
		/* 再次将元素大小还原到正常大小 */
	}
}

/* 流式布局 */
.flex {
  display: flex;
}

.flex-1 {
  position: relative;
  flex: 1;
}

.flex-2 {
  position: relative;
  flex: 2;
}


.flex-between {
  justify-content: space-between;
}

.flex-ajcenter {
  align-items: center;
  justify-content: center;
}
.ai {
  align-items: center;
}

.jc {
  justify-content: center;
}
.ase {
  align-self: flex-end;
}
.flex-stretch {
  align-items: stretch;
}
.flex-row {
  flex-flow: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-flow: column
}

.align-stretch {
  align-items: stretch;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-baseline {
  align-items: baseline;
}

.align-inherit {
  align-items: inherit;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-inherit {
  justify-content: inherit;
}

.self-align-stretch {
  align-self: stretch;
}

.self-align-center {
  align-self: center;
}

.self-align-start {
  align-self: start;
}

.self-align-end {
  align-self: end;
}

.self-align-inherit {
  align-self: inherit;
}

.self-justify-start {
  justify-self: start;
}

.self-justify-center {
  justify-self: center;
}

.self-justify-end {
  justify-self: end;
}

.self-justify-between {
  justify-self: between;
}

.self-justify-around {
  justify-self: around;
}

.self-justify-inherit {
  justify-self: inherit;
}

.inline-block {
  display: inline-block;
}