160 lines
2.5 KiB
Plaintext
160 lines
2.5 KiB
Plaintext
|
|
view,
|
|
label,
|
|
swiper-item,
|
|
scroll-view {
|
|
display:flex;
|
|
flex-direction:column;
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
flex-basis: auto;
|
|
align-items: stretch;
|
|
align-content: flex-start;
|
|
}
|
|
view,
|
|
image,
|
|
input,
|
|
scroll-view,
|
|
swiper,
|
|
swiper-item,
|
|
text,
|
|
textarea,
|
|
video {
|
|
position: relative;
|
|
border: 0px solid #000000;
|
|
box-sizing: border-box;
|
|
}
|
|
swiper-item {
|
|
position: absolute;
|
|
}
|
|
button {
|
|
margin: 0;
|
|
}
|
|
|
|
.map-container {
|
|
width: 750rpx;
|
|
height: 500rpx;
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
/* 清除默认内边距 */
|
|
margin: 0;
|
|
/* 清除默认外边距 */
|
|
position: relative;
|
|
}
|
|
.map-container .map {
|
|
width: 750rpx;
|
|
height: 500rpx;
|
|
}
|
|
.map-container .center-marker {
|
|
position: absolute;
|
|
left: 375rpx;
|
|
-webkit-transform: translate(-50%);
|
|
transform: translate(-50%);
|
|
width: 42rpx;
|
|
height: 69rpx;
|
|
}
|
|
.center-marker-img {
|
|
width: 42rpx;
|
|
}
|
|
.distance {
|
|
color: #FFFFFF;
|
|
font-size: 24rpx;
|
|
}
|
|
.address-form {
|
|
background-color: #FFFFFF;
|
|
padding: 80rpx 24rpx 48rpx;
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
.address-form-cont {
|
|
position: relative;
|
|
}
|
|
.biao {
|
|
position: absolute;
|
|
width: 80rpx;
|
|
height: 8rpx;
|
|
border-radius: 4rpx;
|
|
background-color: #EEF4FA;
|
|
top: -48rpx;
|
|
left: 50%;
|
|
-webkit-transform: translateX(-50%);
|
|
transform: translateX(-50%);
|
|
}
|
|
.form-item {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.form-item:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
.label {
|
|
font-size: 28rpx;
|
|
color: #3D3D3D;
|
|
font-weight: 500;
|
|
padding: 24rpx 0;
|
|
}
|
|
.value {
|
|
flex: 1;
|
|
font-size: 28rpx;
|
|
color: #333333;
|
|
}
|
|
.copy-icon {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
margin-left: 16rpx;
|
|
}
|
|
.input {
|
|
height: 100rpx;
|
|
width: 568rpx;
|
|
font-size: 24rpx;
|
|
color: #3D3D3D;
|
|
font-weight: 500;
|
|
border-bottom: 1rpx solid #EEEEEE;
|
|
}
|
|
.textarea {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
}
|
|
.textarea-text {
|
|
font-size: 24rpx;
|
|
color: #3D3D3D;
|
|
}
|
|
.placeholder {
|
|
color: #666666;
|
|
font-weight: 500;
|
|
}
|
|
.switch-item {
|
|
justify-content: space-between;
|
|
margin-top: 12rpx;
|
|
}
|
|
.save-btn {
|
|
width: 630rpx;
|
|
height: 96rpx;
|
|
background-color: #E8101E;
|
|
border-radius: 44rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 100rpx 36rpx 0;
|
|
}
|
|
.save-btn .save-text {
|
|
color: #FFFFFF;
|
|
font-size: 40rpx;
|
|
font-weight: 400;
|
|
}
|
|
.save-btn.disabled {
|
|
background-color: #EEF4FA;
|
|
}
|
|
/* 平台特定样式 */
|
|
.map-container {
|
|
/* 微信小程序地图容器样式调整 */
|
|
overflow: hidden;
|
|
}
|
|
|