teachAuthentication.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* pages/teachAuthentication/teachAuthentication.wxss */
  2. .input-item{
  3. display: flex;
  4. height: 100rpx;
  5. line-height: 100rpx;
  6. margin-left: 20rpx;
  7. margin-right: 20rpx;
  8. border-bottom: 1rpx solid gray;
  9. }
  10. /* 输入框样式 */
  11. .userInput{
  12. height: 100rpx;
  13. line-height: 100rpx;
  14. padding-left: 20rpx;
  15. }
  16. /* 姓名输入样式 */
  17. .input-name{
  18. display: flex;
  19. flex-direction: column;
  20. margin-left: 20rpx;
  21. margin-right: 20rpx;
  22. border-bottom: 1rpx solid gray;
  23. }
  24. .input-yourName{
  25. display: flex;
  26. height: 100rpx;
  27. line-height: 100rpx;
  28. }
  29. .input-yourName .userInput{
  30. width: 170rpx;
  31. margin-right: 30rpx;
  32. }
  33. .input-yourName .input-ming{
  34. height: 100rpx;
  35. line-height: 100rpx;
  36. width: 300rpx;
  37. }
  38. /* 身份证照片样式 */
  39. .idCard{
  40. position: relative;
  41. }
  42. .idImag-tit{
  43. display: block;
  44. margin-left: 20rpx;
  45. margin-top: 20rpx;
  46. }
  47. .explain{
  48. display: block;
  49. font-size: 22rpx;
  50. color: gray;
  51. margin: 20rpx 0 20rpx 20rpx;
  52. }
  53. .idImagUp{
  54. display: flex;
  55. }
  56. .idImag{
  57. display: flex;
  58. flex-direction: column;
  59. width: 45%;
  60. margin-left: 20rpx;
  61. }
  62. .idImag .iconfont{
  63. display: block;
  64. height: 200rpx;
  65. border: 1rpx solid red;
  66. line-height: 200rpx;
  67. font-size: 100rpx;
  68. color: gray;
  69. margin-bottom: 20rpx;
  70. }
  71. .idImag text{
  72. text-align: center;
  73. }
  74. /* 毕业证/学生证,头像 */
  75. .myCard,
  76. .myHead{
  77. display: flex;
  78. margin: 20rpx;
  79. flex-direction: column;
  80. }
  81. .myCard .iconfont,
  82. .myHead .iconfont{
  83. display: block;
  84. width: 50%;
  85. height: 200rpx;
  86. border: 1rpx solid red;
  87. line-height: 200rpx;
  88. font-size: 100rpx;
  89. color: gray;
  90. margin-top: 20rpx;
  91. text-align: center;
  92. }
  93. /* 籍贯输入样式 */
  94. .input-jiguan{
  95. display: flex;
  96. margin-left: 20rpx;
  97. height: 100rpx;
  98. line-height: 100rpx;
  99. }
  100. .input-jiguan input{
  101. width: 130rpx;
  102. padding-left: 10rpx;
  103. }
  104. /* 提交审核按钮样式 */
  105. .submit{
  106. margin-top: 100rpx;
  107. }