| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* pages/about/invite.wxss */
- .invite{
- padding: 10px;
- }
- .invite_introduce{
- color: darkgray;
- font-size: 24rpx;
- height: 72rpx;
- }
- .empty{
- text-align: center;
- line-height: 150px;
- color: darkgray;
- }
- .shadow{
- box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 6px 0px;
- border-radius: 5px;
- }
- .invite_list{
- margin-top: 20px;
- min-height: 200px;
- }
- .head{
- width: fit-content;
- padding: 5px 15px;
- border-radius: 5px;
- color: white;
- font-size: 24rpx;
- background: var(--themeColor)
- }
- .invite_list_content{
- margin-top: 10px;
- padding: 8px;
- height: calc(100vh - 200px - 70rpx);
- overflow-y: auto;
- }
- .invite_list_item{
- background-color: var(--themeColor);
- padding: 8px;
- border-radius: 10px;
- color: white;
- margin-bottom: 10px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .invite_list_item_left{
- display: flex;
- align-items: center;
- }
- .invite_list_item_right{
- font-size: 28rpx;
- }
- .message{
- margin-left: 15px;
- }
- .name{
- font-size: 34rpx;
- }
- .phone{
- color: darkgray;
- font-size: 26rpx;
- }
- .invite_btn{
- margin-top: 20px;
- /* width: calc(100vw - 40px); */
- /* position: fixed;
- bottom: 50px;
- margin: 10px; */
- }
- .btn{
- width: 70%;
- height: 40px;
- text-align: center;
- line-height: 40px;
- margin: auto;
- color: white;
- border-radius: 40px;
- background-color: var(--themeColor);
- }
|