addressSelectLayer.less 2.21 KB
@charset "UTF-8";

.address-select-layer {
	.layer-box {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 110;
		background-color: rgba(0, 0, 0, 0.26);
		width: 100%;
		height: 100%;
		.box {
			position: absolute;
			left: 0;
			bottom: 0;
			background-color: #ffffff;
			z-index: 111px;
			width: 100%;
			height: 800px;
			.bar-box {
				width: 100%;
				height: 100px;
				border: 1px solid #EBE9EA;
				.bar-box-center {
					display: flex;
					flex-direction: row;
					align-items: center;
					text-align: center;
					color: #999999;
					font-size: 26px;
					width: 690px;
					height: 100%;
					margin: 0 auto;
					.now-city {
						display: flex;
						flex-direction: row;
						align-items: center;
						flex: 3;
						height: 100%;
						.now-item {
							display: flex;
							flex-direction: row;
							justify-content: center;
							align-items: center;
							flex: 1;
							width: 100%;
							height: 100%;
							&.selected {
								color: #333333;
							}
							&.active {
								border-top: 4px solid transparent;
								border-bottom: 4px solid #FF725C;
							}
						}
					}
					.buttons-box {
						display: flex;
						flex-direction: row;
						align-items: center;
						flex: 1;
						position: unset;
						height: 100%;
						.func-button {
							position: relative;
							display: flex;
							justify-content: center;
							align-items: center;
							margin: 0;
							padding: 0;
							width: 100%;
							height: 100%;
							color: #333333;
							font-size: 26px;
							box-sizing: border-box;
							text-align: center;
							text-decoration: none;
							line-height: normal;
							border-radius: none;
							overflow: hidden;
							background-color: transparent;
							&.active {
								border-top: 4px solid transparent;
								border-bottom: 4px solid #FF725C;
								border-radius: 0;
							}
							&[disabled] {
								color: #999999;
								pointer-events: none;
							}
							&::after {
								content: none;
							}
						}
					}
				}
			}
			.select-view-box {
				width: 100%;
				height: 700px;
				color: #666666;
				font-size: 28px;
				.item {
					display: flex;
					align-items: center;
					width: 690px;
					height: 80px;
					margin: 0 auto;
				}
			}
		}
	}
}