backSearchBox.less 1.05 KB
@charset "UTF-8";

.back-search-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;
			}
		}
		.search-container {
			background-color: #F6F6F6;
			border-radius: 28.5px;
			width: 642px;
			height: 58px;
			.search-box {
				display: flex;
				justify-content: flex-start;
				align-items: center;
				margin: 0 auto;
				width: 602px;
				height: 100%;
				.icon-box {
					width: 32px;
					height: 32px;
					.icon-search {
						display: block;
						width: 32px;
						height: 32px;
					}
				}
				.line {
					background-color: #999999;
					margin: 0 20px;
					width: 1px;
					height: 22px;
				}
				.text {
					color: #B4B4B4;
					font-size: 26px;
					font-weight: 400;
				}
			}
		}
	}
}