permission.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. border-radius: 50%;
  29. }
  30. .logo-img {
  31. width: 160rpx;
  32. height: 160rpx;
  33. border-radius: 50%;
  34. }
  35. .form {
  36. width: 100%;
  37. margin-top: 80rpx;
  38. }
  39. .form-item {
  40. width: 690rpx;
  41. height: 99rpx;
  42. margin: 0 auto;
  43. position: relative;
  44. border-bottom:1px solid #E4E4E4;
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. }
  49. .title {
  50. width: 320rpx;
  51. font-size: 26rpx;
  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. text-align: right;
  61. padding-right: 20rpx;
  62. }
  63. .my-picker {
  64. width: 100%;
  65. height: 100%;
  66. display: flex;
  67. align-items: center;
  68. justify-content: flex-end;
  69. }
  70. .my-picker .picker-item {
  71. width: 300rpx;
  72. height: 90rpx;
  73. line-height: 90rpx;
  74. text-align: right;
  75. font-size: 26rpx;
  76. font-weight: 400;
  77. color: #999999;
  78. justify-content: flex-end;
  79. }
  80. .picker-text {
  81. margin-right: 14rpx;
  82. font-size: 26rpx;
  83. font-weight: 400;
  84. color: #999999;
  85. }
  86. .radio {
  87. display: flex;
  88. justify-content: flex-start;
  89. align-items: center;
  90. }
  91. .radio-item {
  92. display: flex;
  93. justify-content: flex-start;
  94. align-items: center;
  95. margin-left: 20rpx;
  96. margin-right: 98rpx;
  97. }
  98. .radio-cricle {
  99. width: 34rpx;
  100. height: 34rpx;
  101. border-radius: 50%;
  102. border: 1rpx solid #D9D9D9;
  103. margin-right: 14rpx;
  104. display: flex;
  105. justify-content: center;
  106. align-items: center;
  107. }
  108. .radio-cricle .inner-cricle {
  109. width: 16rpx;
  110. height: 16rpx;
  111. border-radius: 50%;
  112. }
  113. .radio-cricle-active {
  114. border: 1rpx solid #1890FF;
  115. }
  116. .radio-cricle-active .inner-cricle{
  117. background-color: #1890FF;
  118. }
  119. .radio-text {
  120. font-size: 28rpx;
  121. font-family: PingFangSC-Regular, PingFang SC;
  122. font-weight: 400;
  123. color: rgba(0,0,0,0.85);
  124. }
  125. .submit-btn {
  126. width: 690rpx;
  127. height: 80rpx;
  128. background: #45A6B5;
  129. border-radius: 10rpx;
  130. margin: 80rpx auto 0;
  131. color: #fff;
  132. display: flex;
  133. justify-content: center;
  134. align-items: center;
  135. font-size: 26rpx;
  136. font-weight: 400;
  137. }