You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
1.6 KiB
Plaintext
93 lines
1.6 KiB
Plaintext
|
1 year ago
|
/* pages/memberGroupList/index.wxss */
|
||
|
|
page{
|
||
|
|
padding: 16px 10px 0px;
|
||
|
|
}
|
||
|
|
.container{
|
||
|
|
height: calc(100vh - 110px);
|
||
|
|
border-radius: 8px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.box {
|
||
|
|
overflow: hidden;
|
||
|
|
background-color: #fff;
|
||
|
|
padding: 0 10px;
|
||
|
|
}
|
||
|
|
.subset {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
/* padding: 16px 0px; */
|
||
|
|
height: 52px;
|
||
|
|
line-height: 52px;
|
||
|
|
|
||
|
|
/* border-bottom: 1px solid #0000000f; */
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.subset .left {
|
||
|
|
width: 100%;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.subset .name {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: start;
|
||
|
|
/* width: 222px; */
|
||
|
|
box-sizing: border-box;
|
||
|
|
min-width: 100px;
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
.subset .name .t-icon {
|
||
|
|
width: 66px;
|
||
|
|
height: 16px;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: contain;
|
||
|
|
margin-right: 24px;
|
||
|
|
}
|
||
|
|
.subset .tel {
|
||
|
|
display: flex;
|
||
|
|
/* align-items: center; */
|
||
|
|
color: #666;
|
||
|
|
}
|
||
|
|
.subset .edit,
|
||
|
|
.subset .delete {
|
||
|
|
color: #666;
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
.addMember {
|
||
|
|
position: fixed;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
width: 100%;
|
||
|
|
/* height: 84px; */
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
border-radius: 8px;
|
||
|
|
padding: 14px 16px 34px 16px;
|
||
|
|
background-color: #fff;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
.groupBox {
|
||
|
|
height: 194px;
|
||
|
|
}
|
||
|
|
.creatorBox{
|
||
|
|
height: 215px;
|
||
|
|
}
|
||
|
|
.groupInput {
|
||
|
|
width: 268px;
|
||
|
|
height: 36px;
|
||
|
|
left: 50%;
|
||
|
|
text-align: left;
|
||
|
|
position: relative;
|
||
|
|
transform: translateX(-50%);
|
||
|
|
padding-left: 12px;
|
||
|
|
border-radius: 4px;
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
}
|
||
|
|
.groupBtn {
|
||
|
|
position: absolute;
|
||
|
|
bottom: 0;
|
||
|
|
width: 100%;
|
||
|
|
}
|