addressModal.less 4.92 KB
@charset "UTF-8";

.address-modal {
    .layer-box {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 150;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.7);
        width: 100%;
        height: 100%;
        .box {
            background-color: #FFFFFF;
            width: 560px;
            border-radius: 16px;
            .title {
                color: #333333;
                font-size: 32px;
                font-weight: 600;
                text-align: center;
                padding-top: 30px;
            }
            .message {
				background-color: #F9F9F9;
                margin: 30px auto 0 auto;
                color: #999999;
                font-size: 28px;
                font-weight: 500;
                line-height: 40px;
				width: 500px;
                border-radius: 16px;
				.message-item {
					margin: 0 auto;
					padding: 24px 0;
					width: 452px;
					.top {
						display: flex;
						justify-content: flex-start;
						align-items: center;
						.name {
							& + .phone {
								margin-left: 30px;
							}
						}
						& + .bottom {
							margin-top: 10px;
						}
					}
					.bottom {
						
					}
				}
				&.no-data {
					display: flex;
					justify-content: center;
					align-items: center;
					padding: 69px 0;
					.text {
						font-weight: 400;
						& + .text-a-link {
							margin-left: 30px;
						}
					}
					.text-a-link {
						color: #F5A623;
					}
				}
            }
			.bottom-slot {
				margin: 0 auto;
				width: 500px;
				/deep/ .address-bottom-tips {
					margin-top: 20px;
					color: #F5A623;
					font-size: 24px;
					font-weight: 400;
					text-align: justify;
				}
			}
            .buttons-box {
				margin-top: 20px;
				.buttons {
					display: flex;
					justify-content: space-between;
					align-items: center;
					margin: 0 auto;
					padding: 30px 0;
					width: 500px;
					border-top: 1px solid #E6E6E6;
					.btn {
						display: flex;
						justify-content: center;
						align-items: center;
						width: 236px;
						height: 78px;
						border-radius: 16px;
						&.btn-confirm {
							background: linear-gradient(180deg, #FE5B28 0%, #FF1C40 100%);
							color: #FFFFFF;
							font-size: 30px;
							font-weight: 600;
							&.big {
								width: 500px;
							}
						}
						&.btn-cancel {
							background-color: #F9F9F9;
							color: #B4B4B4;
							font-size: 30px;
							font-weight: 500;
							&.big {
								width: 500px;
							}
						}
						&.btn-yellow {
							background: linear-gradient(180deg, #F1CD3B 0%, #FE9B02 100%);
							color: #FFFFFF;
						}
					}
				}
            }
        }
        .bottomClose {
            margin-top: 99px;
            .close-img {
                display: block;
                width: 62px;
                height: 62px;
            }
        }
        &.douyin-url {
            background-color: rgba(0, 0, 0, 0.6);
            .box {
                background-color: #FFFFFF;
                width: 580px;
                border-radius: 24px;
                .message {
                    background-color: #F9F9F9;
                    color: #666666;
                    font-size: 26px;
                    width: 520px;
                    margin: 30px auto 40px auto;
                    padding: 0;
                    border-radius: 16px;
                    .message-content {
                        width: 468px;
                        margin: 0 auto;
                        padding: 26px 0;
                        text-align: left;
                    }
                }
                .buttons-box {
                    justify-content: space-between;
                    align-items: center;
                    width: 520px;
                    margin: 0 auto 40px auto;
                    .btn {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        border-radius:39px;
                        & + .btn {
                            margin-left: 48px;
                        }
                        &.btn-confirm {
                            background:linear-gradient(270deg,rgba(207,146,117,1) 0%,rgba(238,185,143,1) 100%);
                            width: 236px;
                            height: 78px;
                            color: #FFFFFF;
                            font-size: 30px;
                            letter-spacing: 1px;
                        }
                        &.btn-cancel {
                            width: 234px;
                            height: 76px;
                            color: #D69B7B;
                            font-size: 30px;
                            letter-spacing: 1px;
                            border:1px solid rgba(214,155,123,1);
                        }
                    }
                }
            }
        }
    }
}