user.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* pages/user/user.wxss */
  2. .bodyclass{
  3. display: flex;
  4. flex-direction: column;
  5. height: 100%;
  6. background-color: #F4F6F7;
  7. }
  8. .diyi{
  9. height: 160px;
  10. background-color:#298DF7;
  11. }
  12. .diyi_yi{
  13. padding:15px 0px 0px 10px;
  14. font-size: 30rpx;
  15. color:#fff;
  16. }
  17. .diyi_er{
  18. border-radius: 50%;width: 150rpx;height: 150rpx;
  19. }
  20. .dier{
  21. margin-top:10px;
  22. flex: 100;
  23. }
  24. .diesan{
  25. flex: 15;
  26. }
  27. .btn-class{
  28. background-color: #298DF7;
  29. color:#fff;
  30. text-align: center;
  31. width: 80%;
  32. }
  33. .grids{
  34. display: flex;
  35. flex-wrap: wrap;
  36. border-left: 1rpx solid #eee;
  37. border-bottom: 1rpx solid #eee;
  38. font-size: 30rpx;
  39. }
  40. .grids .item{
  41. background-color: #fff;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. align-items: center;
  46. border-right: 1rpx solid #eee;
  47. border-top: 1rpx solid #eee;
  48. box-sizing: border-box;
  49. width: 33.33333333%;
  50. height: 250rpx;
  51. }
  52. .grids .item image{
  53. width: 70rpx;
  54. height: 70rpx;
  55. }
  56. .grids .item text{
  57. margin-top: 20rpx;
  58. color:#444444;
  59. }
  60. .alert{
  61. position: fixed;
  62. top: 0;
  63. right: 0;
  64. bottom: 0;
  65. left: 0;
  66. overflow: hidden;
  67. outline: 0;
  68. -webkit-overflow-scrolling: touch;
  69. background-color: rgb(0, 0, 0);
  70. filter: alpha(opacity=60);
  71. background-color: rgba(0, 0, 0, 0.6);
  72. z-index: 9999;
  73. }
  74. .auth{
  75. position: absolute;
  76. top: 50%;
  77. left: 50%;
  78. width: 80%;
  79. height: 340rpx;
  80. border-radius: 20rpx;
  81. transform:translate(-50%,-50%);
  82. background: #fff;
  83. display: flex;
  84. flex-direction: column;
  85. }
  86. .apply{
  87. margin: 0rpx auto;
  88. padding: 60rpx 40rpx;
  89. flex:1;
  90. display: flex;
  91. flex-direction: column;
  92. align-items: center;
  93. justify-content: space-between;
  94. font-size: 34rpx;
  95. color:rgb(34,34,34);
  96. }
  97. .confirm{
  98. border-top: 1rpx solid rgb(221,221,221);
  99. text-align: center;
  100. height: 100rpx;
  101. width: 100%;
  102. line-height: 100rpx;
  103. font-size: 34rpx;
  104. color:rgb(255,145,37);
  105. }