.report {
	padding: 15px;
	font-family: PingFangSC-Regular, PingFang SC;
	&-header {
		background-color: #fff;
		border-radius: 5px;
		padding: 15px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 10px;
		&-left {
			display: flex;
			align-items: center;
			text {
				margin-left: 5px;
				color: #434343;
				font-size: 15px;
			}
		}
		&-right {
			.tab {
				display: flex;
				border: solid 1px #1767F2;
				&-item {
					width: 40px;
					height: 28px;
					line-height: 28px;
					text-align: center;
					border-right: solid 1px #1767F2;
					color: #1767F2;
					font-size: 16px;
					&:last-child {
						border-right: none;
					}
				}
				.active {
					background-color: #1767f2;
					color: #fff;
				}
			}
		}
	}
	&-content {
		// padding: 19px 15px;
		// background-color: #fff;
		// border-radius: 5px;
	}
}