12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* pages/adminmanage/adminmanage.wxss */
- page{
- background-color: #F7F7F7;
- }
- .content {
- display: flex;
- flex-wrap: wrap;
- }
- .block {
- width: 250rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 50rpx;
- position: relative;
- }
- .block>button{
- width: 86rpx;
- height: 44rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #989898;
- border-radius: 12rpx;
- font-size: 24rpx;
- white-space: nowrap;
- font-weight: 500;
- border: 1px solid #989898;
- margin-top: 18rpx;
- }
- .block>text{
- margin-top: 10rpx;
- }
- .add-button {
- width: 108rpx;
- height: 108rpx;
- background-color: #FFFFFF;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .hide-btn {
- position: absolute;
- top: 0;
- left: 0;
- /* transform: translate(-50%, -50%); */
- /* line-height: 200rpx; */
- opacity: 0;
- }
|