navBar.less 1.51 KB
@charset "UTF-8";

.nav-bar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 44px;
	background-color: transparent;
	.box {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 690px;
		height: 100%;
		margin: 0 auto;
		.left-box {
			.back {
				width: 38px;
				height: 38px;
				.img {
					display: block;
					width: 38px;
					height: 38px;
				}
			}
			&.visibility {
				visibility: hidden;
				width: 38px;
				height: 38px;
			}
		}
		.center-box {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			z-index: 1;
			pointer-events: none;
			.title {
				display: flex;
				justify-content: center;
				align-items: center;
				margin: 0 auto;
				color: #333333;
				font-size: 36px;
				font-weight: 600;
				width: 500px;
				height: 44px;
				white-space: nowrap;
				text-overflow: ellipsis;
				overflow: hidden;
			}
		}
		.right-box {
			display: flex;
			align-items: center;
			.func-box {
				display: flex;
				align-items: center;
				.img {
					display: block;
					width: 38px;
					height: 38px;
					& + .text {
						margin-left: 10px;
					}
				}
				.text {
					color: #999999;
					font-size: 28px;
					font-weight: 400;
					& + .symbol-img {
						margin-left: 10px;
					}
				}
				.symbol-img {
					display: block;
					width: 10px;
					height: 10px;
				}
				& + .func-box {
					margin-left: 20px;
				}
			}
			&.visibility {
				visibility: hidden;
				width: 38px;
				height: 38px;
			}
		}
	}
}