﻿/*通用类*/
* {
	margin: 0;
	padding: 0;
}
body {
	margin: 0 auto;
	font-size: 0.24rem;
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	text-align: justify;
	color: #010000;
	position: relative;
	max-width: 750px;
	height: 100%;
	background: #ED5672;
	padding-bottom: 0rem;
}
h1, h2, h3 {
	font-weight: 500;
}
img {
	border: none;
}
a {
	cursor: pointer;
	color: #333;
	text-decoration: none;
	outline: none;
}
a:hover {
	color: #006bb7;
}
ul {
	list-style-type: none;
}
em {
	font-style: normal;
}
.lt {
	float: left;
}
.rt {
	float: right;
}
input.sub, label {
	border: none;
	cursor: pointer;
}
input, textarea {
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	outline: none;
}
table {
	border-collapse: collapse;
}
table td, table th {
	padding: 0;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
 color:#ccc;
}
input::-moz-placeholder, textarea::-moz-placeholder {   /* Mozilla Firefox 19+ */
 color:#ccc;
}
input:-moz-placeholder, textarea:-moz-placeholder {    /* Mozilla Firefox 4 to 18 */
 color:#ccc;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {  /* Internet Explorer 10-11 */
 color:#ccc;
}
div.clear {
	font: 0px Arial;
	line-height: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
/*兼容老设备的rem-px基准*/
html {
	font-size: 42.6667px;
}
@media screen and (max-width: 320px) {
html {
	font-size: 42.6667px;
}
}
@media screen and (min-width: 321px) and (max-width: 360px) {
html {
	font-size: 48px;
}
}
@media screen and (min-width: 361px) and (max-width: 375px) {
html {
	font-size: 50px;
}
}
@media screen and (min-width: 376px) and (max-width: 414px) {
html {
	font-size: 55px;
}
}
@media screen and (min-width: 415px) and (max-width: 484px) {
html {
	font-size: 64px;
}
}
@media screen and (min-width: 485px) and (max-width: 720px) {
html {
	font-size: 96px;
}
}
@media screen and (min-width: 721px) and (max-width: 768px) {
html {
	font-size: 102px;
}
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
html {
	font-size: 144px;
}
}
@media screen and (min-width: 1080px) {
html {
	font-size: 144px;
}
}

.wrapin {
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 26.5%;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 0.3rem;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.2rem 0.5rem;
}

.wrapin a {
	position: relative;
	width: 4rem;
	height: 1.4rem;
	margin: 0;
	flex: 0 0 calc(55% - 1rem);
	display: flex;
	justify-content: center;
	align-items: center;
}

.wrapin a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.bg {
	background-color: rgba(0, 0, 0, .4);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
}

.bg .img {
	width: 100%;
	height: 56vw;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-44%);
	transform: translateX(-44%);
	z-index: 100;
	padding-right: 6.4vw
}

.bg .img>img {
	display: block;
	width: 90%;
	height: 90%
}