manager.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. page {
  2. background: #F3F5F9;
  3. }
  4. .button{
  5. width: 100%;
  6. height: 80rpx;
  7. }
  8. .button view {
  9. box-shadow: 6rpx 6rpx 8rpx rgba(48, 156, 63, 0.2);
  10. float: right;
  11. border-radius: 10rpx;
  12. color: white;
  13. text-align: center;
  14. line-height: 64rpx;
  15. width: 120rpx;
  16. height: 64rpx;
  17. background: #39b54a;
  18. }
  19. .item-box {
  20. margin-top: 10rpx;
  21. position: relative;
  22. overflow: hidden;
  23. padding: 10rpx 0 10rpx 130rpx;
  24. width: 100%;
  25. height: 120rpx;
  26. border-bottom: 2rpx solid #F5F5F5;
  27. box-sizing: border-box;
  28. }
  29. .item-box .phone {
  30. position: absolute;
  31. top: 20rpx;
  32. left: 30rpx;
  33. width: 80rpx;
  34. height: 80rpx;
  35. }
  36. .item-box .default {
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. width: 64rpx;
  41. height: 64rpx;
  42. }
  43. .item-box .more {
  44. position: absolute;
  45. top: 38rpx;
  46. right: 20rpx;
  47. width: 45rpx;
  48. height: 45rpx;
  49. }
  50. .item-box .title text {
  51. line-height: 40rpx;
  52. display: block;
  53. font-size: 30rpx;
  54. }
  55. .item-box .title text:last-child {
  56. color: #666;
  57. margin-top: 10rpx;
  58. font-size: 24rpx;
  59. }
  60. .noData {
  61. width: 100%;
  62. height: 120rpx;
  63. text-align: center;
  64. line-height: 120rpx;
  65. color: #666;
  66. }
  67. .input {
  68. width: 450rpx;
  69. box-sizing: border-box;
  70. border-bottom: 2rpx solid #F1F1F1;
  71. height: 70rpx;
  72. font-size: 32rpx;
  73. margin: 40rpx auto 60rpx;
  74. }