backBox.less 984 Bytes
@charset "UTF-8";

.back-box {
	background-color: transparent;
	width: 100%;
	height: 93px;
	.box {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: auto;
		height: 100%;
		padding: 0 30px;
		.buttons-box {
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 100%;
			height: 100%;
			.back {
				display: block;
				width: 38px;
				height: 38px;
			}
		}
		.title {
			position: absolute;
			top: 0;
			left: 20%;
			display: flex;
			justify-content: center;
			align-items: center;
			background-color: transparent;
			color: #333333;
			width: 60vw;
			font-size: 34px;
			height: 93px;
			white-space: nowrap;
			text-overflow: ellipsis;
			overflow: hidden;
			pointer-events: none;
		}
		.func-box {
			display: flex;
			justify-content: flex-end;
			align-items: center;
			width: 100%;
			height: 100%;
			.func {
				display: block;
				width: 38px;
				height: 38px;
			}
		}
	}
}