teachAuthentication.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* pages/teachAuthentication/teachAuthentication.wxss */
  2. .teachContainer{
  3. margin-left: 20rpx;
  4. }
  5. .input-item{
  6. display: flex;
  7. height: 100rpx;
  8. line-height: 100rpx;
  9. margin-right: 20rpx;
  10. border-bottom: 1rpx solid gray;
  11. }
  12. /* 输入框样式 */
  13. .userInput{
  14. height: 100rpx;
  15. line-height: 100rpx;
  16. padding-left: 20rpx;
  17. }
  18. /* 姓名输入样式 */
  19. .input-name{
  20. display: flex;
  21. flex-direction: column;
  22. margin-right: 20rpx;
  23. margin-top: 20rpx;
  24. border-bottom: 1rpx solid gray;
  25. }
  26. .input-yourName{
  27. display: flex;
  28. height: 100rpx;
  29. line-height: 100rpx;
  30. }
  31. .input-yourName .userInput{
  32. width: 170rpx;
  33. margin-right: 30rpx;
  34. }
  35. .input-yourName .input-ming{
  36. height: 100rpx;
  37. line-height: 100rpx;
  38. width: 300rpx;
  39. }
  40. /* 身份证照片样式 */
  41. .idCard{
  42. position: relative;
  43. }
  44. .idImag-tit{
  45. display: block;
  46. margin-top: 20rpx;
  47. }
  48. .explain{
  49. display: block;
  50. font-size: 22rpx;
  51. color: gray;
  52. margin: 20rpx 0 20rpx 20rpx;
  53. }
  54. .idImagUp{
  55. display: flex;
  56. }
  57. .idImag{
  58. display: flex;
  59. flex-direction: column;
  60. width: 45%;
  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 0;
  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. .teachAttribute{
  95. padding-left: 20rpx;
  96. }
  97. /* 籍贯输入样式 */
  98. .input-jiguan{
  99. display: flex;
  100. height: 100rpx;
  101. line-height: 100rpx;
  102. }
  103. .input-jiguan input{
  104. width: 130rpx;
  105. padding-left: 10rpx;
  106. }
  107. /* 提交审核按钮样式 */
  108. .submit{
  109. margin-top: 100rpx;
  110. }