searchBar.less 1.3 KB
@charset "UTF-8";

.search-bar {
	.box {
		width: 100%;
		height: 66px;
		margin: 0 auto;
		.search-form {
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 100%;
			height: 66px;
			background-color: #EAEAEA;
			border-radius: 32px;
			.left {
				display: flex;
				align-items: center;
				width: calc(100% - 50px);
				height: 100%;
				.icon {
					display: flex;
					justify-content: center;
					align-items: center;
					margin-left: 50px;
					width: 34px;
					height: 34px;
					.img {
						display: block;
						width: 34px;
						height: 34px;
					}
				}
				.input-box {
					display: flex;
					justify-content: space-between;
					align-items: center;
					width: 80%;
					height: 100%;
					font-size: 34px;
					padding-left: 18px;
					.search-input-view {
						color: #B2B2B2;
						width: 100%;
					}
					.search-input {
						color: #000000;
						width: 100%;
						&::-webkit-search-results-decoration
						&::-webkit-search-cancel-button {
							display: none;
						}
					}
				}
			}
			.right {
				display: flex;
				align-items: center;
				width: 50px;
				height: 100%;
				.clear-input {
					margin-right: 14px;
					width: 36px;
					height: 36px;
					.img {
						display: block;
						width: 36px;
						height: 36px;
					}
				}
			}
		}
	}
}