65 lines
1.4 KiB
Plaintext
65 lines
1.4 KiB
Plaintext
/* package_A/page/alltask/index.wxss */
|
|
.task_container {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100vh;
|
|
padding-top: 90rpx;
|
|
background-color: rgba(240, 242, 245, 1);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
color: #333333;
|
|
position: relative;
|
|
}
|
|
.select_container {
|
|
width: 100%;
|
|
height: 90rpx;
|
|
background-color: #fff;
|
|
border-bottom: 1rpx solid rgba(192, 188, 188, 0.35);
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 99;
|
|
font-size: 30rpx;
|
|
}
|
|
.picker_box {
|
|
width: 220rpx;
|
|
padding-right: 20rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* 列表样式 */
|
|
.task_list {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0 20rpx 20rpx 20rpx;
|
|
background-color: #fff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
.task_item {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 320rpx;
|
|
border-bottom: 1rpx solid rgba(166, 166, 166, 0.35);
|
|
padding: 20rpx 20rpx;
|
|
border-radius: 10rpx;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
.task_main {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
height: 100%;
|
|
}
|