109 lines
1.8 KiB
Plaintext
109 lines
1.8 KiB
Plaintext
/* pages/mine/setting/columnsetting.wxss */
|
|
|
|
.scroll-content {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0rpx 15rpx 15rpx 15rpx;
|
|
}
|
|
|
|
|
|
.item-box {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
align-items: center;
|
|
height: 128rpx;
|
|
background-color: #ffffff;
|
|
padding: 15rpx;
|
|
border-bottom: 1rpx solid #f2f2f2;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.item-box-move {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin: 0rpx 15rpx;
|
|
width: 100%;
|
|
align-items: center;
|
|
background-color: #ffffff;
|
|
padding: 15rpx;
|
|
border-bottom: 1rpx solid #f2f2f2;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.item-img {
|
|
width: 96rpx;
|
|
height: 96rpx;
|
|
}
|
|
|
|
.item-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
min-height: 128rpx;
|
|
padding: 15rpx;
|
|
width: 70%;
|
|
}
|
|
|
|
.group-box {
|
|
margin-top: 15rpx;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.ver-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.ver-box-title {
|
|
font-size: 32rpx;
|
|
color: black;
|
|
padding: 15rpx 15rpx 0rpx 15rpx;
|
|
}
|
|
|
|
.ver-box-list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding-left: 15rpx;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ver-box-items {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 15rpx 15rpx 15rpx 30rpx;
|
|
}
|
|
|
|
.ver-box-items:nth-child(1) {
|
|
margin: 15rpx 15rpx 15rpx 0rpx;
|
|
}
|
|
|
|
.ver-box-items image {
|
|
/* align-self: flex-start; */
|
|
height: 96rpx;
|
|
width: 96rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.ver-box-items text {
|
|
margin-top: 15rpx;
|
|
max-width: 96rpx;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.movable-area {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 10;
|
|
width: 96%;
|
|
}
|
|
|
|
.movable-row {
|
|
box-shadow: #D9D9D9 0px 0px 20px;
|
|
} |