searchHistory.less 1.17 KB
@charset "UTF-8";

.search-history-com {
	background-color: #ffffff;
	width: 100%;
	height: auto;
	min-height: calc(100vh - 104px);
	.title {
		margin: 0 auto;
		padding: 30px 0 20px 0;
		color: #898989;
		font-size: 28px;
		width: 690px;
		height: auto;
	}
	.box {
		margin: 0 auto;
		width: 690px;
		height: auto;
		.list-box {
			.item {
				background-color: #F9F9F9;
				margin-top: 10px;
				margin-right: 30px;
				color: #666666;
				font-size: 26px;
				width: 150px;
				height: 58px;
				border-radius: 10px;
				float: left;
				&:nth-child(4n) {
					margin-right: 0;
				}
				.text {
					display: flex;
					justify-content: center;
					align-items: center;
					margin: 0 auto;
					width: 120px;
					height: 58px;
					white-space: nowrap;
					text-overflow: ellipsis;
					overflow: hidden;
				}
			}
		}
	}
	.line {
		clear: both;
		margin: 0 auto;
		width: 690px;
		height: 30px;
		border-bottom: 1px solid #F2F2F2;
	}
	.buttons-box {
		clear: both;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 30px auto;
		width: 690px;
		height: auto;
		.btn {
			&.btn-primary {
				color: #F5A623;
				font-size: 26px;
				font-weight: 400;
			}
		}
	}
}