body {
	font-size: 14px;
}

div {
	box-sizing: border-box;
}

.banner {
	display: block;
	width: 100%;
	height: auto;
}

.title {
	font-size: 19px;
	margin-top: 25px;
	margin-left: 13px;
	display: flex;
	align-items: center;
}

.title::before {
	display: block;
	content: '';
	width: 4.5px;
	height: 22px;
	background: url('../img/title-line.png') no-repeat center / contain;
	margin-right: 10px;
}

.report-item {
	min-height: 45px;
	margin: 0 14px;
	border-bottom: 1px solid #ededed;
	padding: 12px 14px;
}

.check-btn {
	width: 73px;
	height: 25px;
	font-size: 14px;
	color: #0092ff;
	border: 1px dashed #0092ff;
	line-height: 23px;
	text-align: center;
	border-radius: 25px;
	margin-left: 5px;
	flex-shrink: 0;
}

.loading {
	position: relative;
	width: 16px;
	height: 16px;
	margin: 10px;
	/* background: #2D3C50; */
}



.loading span {
	height: 100%;
	width: 100%;
	position: absolute;
	animation: move 3.5s linear infinite;
}

@keyframes move {
	74% {
		transform: rotate(600deg);
	}

	79% {
		transform: rotate(720deg);
		opacity: 1;
	}

	80% {
		transform: rotate(720deg);
		opacity: 0;
	}

	100% {
		transform: rotate(810deg);
		opacity: 0;
	}
}

.loading span:nth-child(1)::before {
	height: 2px;
	width: 2px;
}

.loading span:nth-child(2) {
	animation-delay: 0.1s;
}

.loading span:nth-child(3) {
	animation-delay: 0.2s;
}

.loading span:nth-child(4) {
	animation-delay: 0.3s;
}

.loading span:nth-child(5) {
	animation-delay: 0.4s;
}

.loading span:nth-child(6) {
	animation-delay: 0.5s;
}

.loading span::before {
	content: '';
	position: absolute;
	height: 2px;
	width: 2px;
	background-color: #333;
	border-radius: 50%;
	bottom: 0px;
	left: calc(50% - 5px);
}

.mask {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(1, 1, 1, .3);
	z-index: 99;
	display: none;
}

.download-dialog {
	position: fixed;
	z-index: 100;
	width: 345px;
	min-height: 160px;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
	padding: 48px 27px 28px 27px;
	line-height: 1.5;
	font-size: 17px;
	display: none;
}
.download-btn {
	text-align: right;
	color: #0098fe;
	margin-top: 5px;
}
.close-btn{
	position: absolute;
	top: 7px;
	right: 9px;
	width: 25px;
	height: 25px;
}

.vip-dialog {
	position: fixed;
	z-index: 100;
	width: 345px;
	min-height: 160px;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
	padding: 38px 60px 28px 60px;
	display: none;
}

.confirm-vip-btn {
	width: 155px;
	height: 42px;
	background: linear-gradient(to right, #ec5413, #ef8b01);
	border-radius: 42px;
	color: #fff;
	font-size: 18px;
	margin: 0 auto;
	margin-top: 18px;
	margin-bottom: 11px;
}
.vip-dialog a {
	text-decoration: none;
	color: #249ffd;
}
.tab-wrap {
	width: 100vw;
	height: 21.2vw;
	background: url('../img/tab-bg.png') no-repeat center / contain;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999;
	padding: 0 29px;
	font-size: 13px;
}

.tab-item.active {
	color: #3f8dff;
}

.tab-item {
	margin-top: 24px;
}
.tab-item img {
	width: 21px;
	height: 21px;
	object-fit: contain;
}
.tab-item div {
	margin-top: 6px;
}
.add-btn {
	width: 45px;
	height: 45px;
}


.text-ell1 {overflow: hidden;text-overflow:ellipsis;white-space: nowrap;}
.text-ell2 {overflow: hidden;text-overflow:ellipsis;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}
.text-ell3 {overflow: hidden;text-overflow:ellipsis;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;}

.flex {
	display: flex;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-wrap {
	display: flex;
	flex-wrap: wrap;
}

.flex-nowrap {
	display: flex;
	flex-wrap: nowrap;
}

.flex-shrink0 {
	display: flex;
	flex-shrink: 0;
}

.flex-1 {
	display: flex;
	flex: 1;
}

.flex-start-start {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.flex-start-end {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}

.flex-start-center {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.flex-end-start {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.flex-end-end {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.flex-end-center {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.flex-center-start {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.flex-center-end {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.flex-center-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-between-start {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.flex-between-end {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.flex-between-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-evenly-start {
	display: flex;
	justify-content: space-evenly;
	align-items: flex-start;
}

.flex-evenly-end {
	display: flex;
	justify-content: space-evenly;
	align-items: flex-end;
}

.flex-evenly-center {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.flex-around-start {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.flex-around-end {
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
}

.flex-around-center {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.flex-start {
	display: flex;
	justify-content: flex-start;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
}

.flex-center {
	display: flex;
	justify-content: center;
}

.flex-between {
	display: flex;
	justify-content: space-between;
}

.flex-evenly {
	display: flex;
	justify-content: space-evenly;
}

.flex-around {
	display: flex;
	justify-content: space-around;
}

.flex--start {
	display: flex;
	align-items: flex-start;
}

.flex--end {
	display: flex;
	align-items: flex-end;
}

.flex--center {
	display: flex;
	align-items: center;
}
