/**
|
* 这里是uni-app内置的常用样式变量
|
*
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
*
|
*/
|
/**
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
*
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
*/
|
/* 颜色变量 */
|
/* 行为相关颜色 */
|
/* 文字基本颜色 */
|
/* 背景颜色 */
|
/* 边框颜色 */
|
/* 尺寸变量 */
|
/* 文字尺寸 */
|
/* 图片尺寸 */
|
/* Border Radius */
|
/* 水平间距 */
|
/* 垂直间距 */
|
/* 透明度 */
|
/* 文章场景相关 */
|
.container {
|
width: 100%;
|
height: 100vh;
|
}
|
.container .content {
|
width: 100%;
|
height: calc(100vh - 176rpx - 20rpx);
|
background: linear-gradient(to top, #FFFFFF, #E8EFFF);
|
padding-top: 20rpx;
|
}
|
.container .content .main {
|
width: 686rpx;
|
height: 1162rpx;
|
margin: 0 auto;
|
overflow-y: scroll;
|
}
|
.container .content .main .address-item {
|
width: 100%;
|
height: 254rpx;
|
padding: 20rpx 0 26rpx;
|
box-sizing: border-box;
|
margin-bottom: 20rpx;
|
background: #FFFFFF;
|
display: flex;
|
flex-direction: column;
|
justify-content: space-between;
|
align-items: flex-start;
|
}
|
.container .content .main .address-item .user-info {
|
width: 100%;
|
padding: 0 65rpx;
|
box-sizing: border-box;
|
display: flex;
|
justify-content: space-between;
|
font-weight: 300;
|
font-size: 32rpx;
|
color: #000000;
|
}
|
.container .content .main .address-item .address-info {
|
padding: 0 65rpx;
|
box-sizing: border-box;
|
font-weight: 300;
|
font-size: 28rpx;
|
color: #646464;
|
}
|
.container .content .main .address-item .address-divide {
|
width: 100%;
|
height: 1rpx;
|
border-bottom: 2rpx dashed #D5DDE0;
|
}
|
.container .content .main .address-item .handel {
|
width: 100%;
|
padding: 0 65rpx;
|
box-sizing: border-box;
|
display: flex;
|
justify-content: space-between;
|
align-items: flex-start;
|
}
|
.container .content .main .address-item .handel .handel-left radio {
|
color: #000000;
|
}
|
.container .content .main .address-item .handel .handel-left text {
|
font-weight: 300;
|
font-size: 32rpx;
|
color: #0088FF;
|
line-height: 28rpx;
|
}
|
.container .content .main .address-item .handel .handel-right {
|
width: 35%;
|
height: 48rpx;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
}
|
.container .content .main .address-item .handel .handel-right view {
|
display: flex;
|
align-items: center;
|
}
|
.container .content .main .address-item .handel .handel-right view image {
|
width: 28rpx;
|
height: 28rpx;
|
margin-right: 10rpx;
|
}
|
.container .content .main .address-item .handel .handel-right view text {
|
font-weight: 300;
|
font-size: 24rpx;
|
color: #373737;
|
}
|
.container .content .subBtn {
|
width: 686rpx;
|
height: 98rpx;
|
padding: 0 26rpx;
|
box-sizing: border-box;
|
background-color: #5EA1FA;
|
border-radius: 50rpx;
|
font-weight: 300;
|
font-size: 36rpx;
|
color: #FFFFFF;
|
line-height: 98rpx;
|
text-align: center;
|
letter-spacing: 2rpx;
|
margin: 100rpx auto 0;
|
}
|