permission.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* pages/permisission/permission.wxss */
  2. .entery-container {
  3. width: 100%;
  4. height: 100%;
  5. background-color: #F7F7F7;
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: flex-start;
  9. align-items: center;
  10. }
  11. .permission-btn {
  12. background-color: var(--maincolor);
  13. color: #fff;
  14. margin-top: 10rpx;
  15. }
  16. .form-box{
  17. width: 100%;
  18. margin-top: 80rpx;
  19. }
  20. .avatar {
  21. width: 100%;
  22. display: flex;
  23. justify-content: center;
  24. }
  25. .img-item {
  26. width: 160rpx;
  27. height: 160rpx;
  28. background-color: var(--maincolor);
  29. border-radius: 50%;
  30. }
  31. .form {
  32. width: 100%;
  33. margin-top: 80rpx;
  34. }
  35. .form-item {
  36. width: 690rpx;
  37. height: 99rpx;
  38. margin: 0 auto;
  39. position: relative;
  40. border-bottom:1px solid #E4E4E4;
  41. display: flex;
  42. justify-content: flex-start;
  43. align-items: center;
  44. }
  45. .chose-date-picker {
  46. position: absolute;
  47. right: 20rpx;
  48. }
  49. .form-item .title {
  50. font-size: 26rpx;
  51. font-family: PingFangSC-Regular, PingFang SC;
  52. font-weight: 400;
  53. color: #333333;
  54. }
  55. .weui-input {
  56. font-size: 26rpx;
  57. font-family: PingFangSC-Regular, PingFang SC;
  58. font-weight: 400;
  59. color: #333333;
  60. }
  61. .picker {
  62. font-size: 26rpx;
  63. font-family: PingFangSC-Regular, PingFang SC;
  64. font-weight: 400;
  65. font-weight: 400;
  66. color: #999999;
  67. }
  68. .form-item .chose-date {
  69. width: 400rpx;
  70. height: 100%;
  71. display: flex;
  72. justify-content: flex-start;
  73. align-items: center;
  74. font-size: 26rpx;
  75. font-family: PingFangSC-Regular, PingFang SC;
  76. font-weight: 400;
  77. color: #333333;
  78. margin-left: 26rpx;
  79. }
  80. .radio {
  81. display: flex;
  82. justify-content: flex-start;
  83. align-items: center;
  84. }
  85. .radio-item {
  86. display: flex;
  87. justify-content: flex-start;
  88. align-items: center;
  89. margin-left: 20rpx;
  90. margin-right: 98rpx;
  91. }
  92. .radio-cricle {
  93. width: 34rpx;
  94. height: 34rpx;
  95. border-radius: 50%;
  96. border: 1rpx solid #D9D9D9;
  97. margin-right: 14rpx;
  98. display: flex;
  99. justify-content: center;
  100. align-items: center;
  101. }
  102. .radio-cricle .inner-cricle {
  103. width: 16rpx;
  104. height: 16rpx;
  105. border-radius: 50%;
  106. }
  107. .radio-cricle-active {
  108. border: 1rpx solid #1890FF;
  109. }
  110. .radio-cricle-active .inner-cricle{
  111. background-color: #1890FF;
  112. }
  113. .radio-text {
  114. font-size: 28rpx;
  115. font-family: PingFangSC-Regular, PingFang SC;
  116. font-weight: 400;
  117. color: rgba(0,0,0,0.85);
  118. }
  119. .submit-btn {
  120. width: 690rpx;
  121. height: 80rpx;
  122. background: #45A6B5;
  123. border-radius: 10rpx;
  124. margin: 80rpx auto 0;
  125. color: #fff;
  126. display: flex;
  127. justify-content: center;
  128. align-items: center;
  129. font-size: 26rpx;
  130. font-weight: 400;
  131. }