back_box.less 486 Bytes
@charset "UTF-8";

@width_box: 678px;
@width_img: 64px;
@height_img: 64px;

.back-box {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	pointer-events: none;
	> .box {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: @width_box;
		margin: 0 auto;
		pointer-events: none;
		.back {
			pointer-events: all;
		}
		.share {
			pointer-events: all;
		}
		.img {
			width: @width_img;
			height: @height_img;
		}
	}
}