| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- .group-item {
- height: 124rpx;
- width: 100vw;
- background-color: #ffffff;
- padding-left: 30rpx;
- box-sizing: border-box;
- .main {
- display: flex;
- width: 100%;
- height: 100%;
- border-bottom: 1px solid #ddd;
- padding: 20rpx 0rpx;
- box-sizing: border-box;
- .portrait {
- position: relative;
- width: 80rpx;
- height: 80rpx;
- font-size: 0;
- flex-shrink: 0;
- margin-right: 30rpx;
- .iconfont {
- position: absolute;
- color: #F5D400;
- bottom: 0;
- right: 0;
- font-size: 26rpx;
- }
- image,
- .alt {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- .alt {
- line-height: 80rpx;
- text-align: center;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- background: #3874F6;
- }
- }
- .content {
- flex: 1;
- width: 0;
- .title {
- width: 100%;
- height: 42rpx;
- line-height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .role {
- width: 100%;
- height: 34rpx;
- line-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 8rpx;
- }
- }
- .delete-box {
- flex-shrink: 0;
- color: #999999;
- font-size: 32rpx;
- padding: 0 30rpx;
- }
- }
- }
- .van-swipe-cell__right {
- width: 400rpx;
- display: flex;
- flex: 1;
- navigator {
- height: 124rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC;
- color: #FFFFFF;
- }
- .edit {
- flex: 1;
- background-color: #F29C37;
- }
- .delete {
- width: 160rpx;
- background-color: #FF3B30;
- }
- }
- .popup-title {
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC;
- color: #333333;
- text-align: center;
- width: 100%;
- font-weight: bold;
- padding: 30rpx 0;
- }
- .popup-explain {
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC, PingFang SC;
- color: #888888;
- margin-left: 30rpx;
- }
- .popup-item {
- width: 100%;
- box-sizing: border-box;
- padding: 30rpx;
- .label {
- display: flex;
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC;
- color: #333333;
- font-weight: bold;
- }
- .value {
- font-size: 24rpx;
- font-family: PingFang SC, PingFang SC;
- color: #888888;
- margin-top: 10rpx;
- margin-left: 50rpx;
- }
- }
- .button-box {
- display: flex;
- justify-content: space-between;
- width: 690rpx;
- margin: 30rpx auto 30rpx;
- .but {
- width: 328rpx;
- height: 90rpx;
- border-radius: 8rpx;
- font-size: 28rpx;
- }
- .cancel {
- background: #FFFFFF;
- border: 1rpx solid #CCCCCC;
- color: #666666;
- }
- .confirm {
- background: #3874F6;
- color: #fff;
- border: 0;
- }
- }
|