162 lines
2.5 KiB
Plaintext
162 lines
2.5 KiB
Plaintext
/* pages/emergency/suddenly-up/index/index.wxss */
|
|
@import "../../../../colorui/main.wxss";
|
|
@import "../../../../colorui/icon.wxss";
|
|
|
|
page {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
|
|
.v-div {
|
|
display: flex;
|
|
display: -webkit-flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.h-div {
|
|
display: flex;
|
|
display: -webkit-flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.v-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.h-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.flex {
|
|
flex: 1;
|
|
}
|
|
|
|
.space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.cu-item {
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.search {
|
|
background-color: #f5f5f5;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 10;
|
|
}
|
|
|
|
.cu-bar .search-form {
|
|
background: #FFFFFF;
|
|
box-shadow: 0rpx 0rpx 12rpx 2rpx #DDECF3;
|
|
border-radius: 12rpx;
|
|
}
|
|
|
|
.item-bg {
|
|
padding: 0 32rpx 20rpx 32rpx;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.item {
|
|
background-color: #ffffff;
|
|
padding: 32rpx 20rpx 20rpx 20rpx;
|
|
position: relative;
|
|
border-radius: 10rpx;
|
|
z-index: 2;
|
|
}
|
|
|
|
.item .head {
|
|
margin: 0 -20rpx;
|
|
margin-top: -32rpx;
|
|
background-color: #CDE5FC;
|
|
padding: 16rpx;
|
|
border-radius: 10rpx 10rpx 0 0;
|
|
}
|
|
|
|
.item .head .single {
|
|
width: 8rpx;
|
|
height: 36rpx;
|
|
background: #4882EE;
|
|
border-radius: 4rpx;
|
|
}
|
|
|
|
.item .head .title {
|
|
flex: 1;
|
|
margin-left: 16rpx;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #4882EE;
|
|
}
|
|
|
|
.item .head .status {
|
|
font-weight: bold;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.item .tv {
|
|
font-size: 28rpx;
|
|
font-weight: 500;
|
|
color: #222222;
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
.item .bottom {
|
|
font-size: 26rpx;
|
|
font-weight: bold;
|
|
color: #222222;
|
|
}
|
|
|
|
.item .val {
|
|
font-size: 26rpx;
|
|
font-weight: 500;
|
|
color: #222222;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.item .line {
|
|
margin: 20rpx -20rpx;
|
|
border-top: 2rpx dashed #f5f5f5;
|
|
}
|
|
|
|
.item .bottom-img {
|
|
width: calc(100vw - 65rpx);
|
|
max-width: calc(100vw - 65rpx);
|
|
height: 40rpx;
|
|
margin: 0 -20rpx;
|
|
position: absolute;
|
|
bottom: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
.option {
|
|
position: fixed;
|
|
bottom: calc(constant(safe-area-inset-bottom) + 30rpx);
|
|
bottom: calc(env(safe-area-inset-bottom) + 30rpx);
|
|
left: 0;
|
|
right: 0;
|
|
margin-top: 30rpx;
|
|
padding: 16rpx 32rpx;
|
|
background: #FFFFFF;
|
|
box-shadow: 0rpx 0rpx 12rpx 2rpx #DDECF3;
|
|
z-index: 10;
|
|
}
|
|
|
|
.option .btn {
|
|
padding: 14rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #409CFF;
|
|
color: #FFFFFF;
|
|
border-radius: 12rpx;
|
|
}
|
|
|
|
.option .btn:active {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.space {
|
|
height: calc(constant(safe-area-inset-bottom) + 150rpx);
|
|
height: calc(env(safe-area-inset-bottom) + 150rpx);
|
|
} |