You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

1 year ago
  1. /* pages/addperson/addperson.wxss */
  2. .page{position: relative;}
  3. .left{
  4. position: fixed;
  5. left: 0;
  6. width: 160rpx;
  7. height: 100%;
  8. border-right: 2rpx solid rgb(247, 248, 250);
  9. background: rgb(247, 248, 250);
  10. overflow: hidden;
  11. }
  12. .right{
  13. position: absolute;
  14. right: 0;
  15. width: calc(100% - 160rpx);
  16. height: auto;
  17. overflow-y: auto;
  18. }
  19. .add{
  20. font-size: 32rpx;
  21. color: #e54d42;
  22. margin-top: 60rpx;
  23. }
  24. .list{
  25. margin-top: 30rpx;
  26. }
  27. .personli{border-bottom: 2rpx solid #e3e4e5;display: flex;flex-wrap: nowrap;align-items: center;color: #333;font-size: 32rpx;padding: 20rpx 30rpx;justify-content: space-between;}
  28. .red{color: #e54d42;}
  29. .green{color: #07c160;}
  30. .radioGroup{
  31. display: flex;
  32. flex-wrap: wrap;
  33. justify-content: space-around;
  34. }
  35. .weui-cell{display: inline-block;line-height: 70rpx;}
  36. .weui-cell .weui-cell__hd,.weui-cell .weui-cell__bd{display: inline-block;font-size: 32rpx;}
  37. .weui-cell radio{
  38. transform: scale(.8);
  39. margin-left: 15px;
  40. }
  41. .flexbox{
  42. display: flex;
  43. flex-wrap: nowrap;
  44. justify-content: space-between;
  45. margin-top: 20rpx;
  46. }
  47. .flexbox .buttonBox{
  48. width: 48%;
  49. }