myinfo.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /* pages/mine/myinfo/myinfo.wxss */
  2. .myinfoBase{
  3. display: flex;
  4. flex-direction: column;
  5. padding-bottom: 100rpx;
  6. color: #333;
  7. }
  8. .tittleTips{
  9. padding: 18rpx 30rpx;
  10. background: #FFEBE0;
  11. color: #333;
  12. font-size: 28rpx;
  13. display: flex;
  14. justify-content: space-between;
  15. }
  16. /* 主要内容 */
  17. .baseContent{
  18. margin: 22rpx 30rpx 0 30rpx;
  19. display: flex;
  20. flex-direction: column;
  21. }
  22. .shadow {
  23. -moz-box-shadow: inset 0 0 4px #CCC;
  24. -webkit-box-shadow: inset 0 0 4px #CCC;
  25. box-shadow: inset 0 0 4px #CCC;
  26. }
  27. /* 头像栏 */
  28. .contentTittle{
  29. background: #FFFFFF;
  30. padding: 20rpx 25rpx 30rpx 25rpx;
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. border: 3rpx solid #CCC;
  35. color: #333;
  36. }
  37. /* 第一排 名字和编辑按钮 */
  38. .contentTittle-first{
  39. display: flex;
  40. flex-direction: row;
  41. }
  42. .contentTittle-first-edit{
  43. color: #f37b1d;
  44. font-size: 28rpx;
  45. position: absolute;
  46. left: 610rpx;
  47. }
  48. .contentTittle-first-edit2{
  49. display: flex;
  50. flex-direction: row;
  51. }
  52. .contentTittle-first-edit-icon{
  53. width: 35rpx;
  54. height: 35rpx;
  55. }
  56. /* 第二排 姓名 */
  57. .contentTittle-second{
  58. font-size: 32rpx;
  59. margin-top: 13rpx;
  60. }
  61. /* 第三排手机号 */
  62. .contentTittle-third{
  63. font-size: 27rpx;
  64. margin-top: 5rpx;
  65. color: #D3D3D3;
  66. }
  67. .contentTittle-third{
  68. font-size: 27rpx;
  69. margin-top: 5rpx;
  70. }
  71. /* 简历其他各项信息 */
  72. .otherInfo{
  73. margin-top: 22rpx;
  74. padding: 25rpx 0;
  75. background: #FFFFFF;
  76. color: #f37b1d;
  77. border: 3rpx solid #CCC;
  78. }
  79. /* 简历其他各项信息 没有填写的样式 */
  80. .otherInfo-none{
  81. display: flex;
  82. flex-direction: column;
  83. align-items: center;
  84. }
  85. /* 简历每项 教育经历 工作经历 模块*/
  86. .otherInfo-item{
  87. display: flex;
  88. flex-direction: column;
  89. padding: 0 25rpx;
  90. }
  91. /* 教育经历 工作经历第一排 */
  92. .otherInfo-item-first{
  93. display: flex;
  94. flex-direction: row;
  95. justify-content: space-between;
  96. font-size: 28rpx;
  97. }
  98. .otherInfo-item-first-left{
  99. display: flex;
  100. flex-direction: row;
  101. }
  102. .otherInfo-item-first-left-icon{
  103. width: 6rpx;
  104. background: #f37b1d;
  105. margin: 7rpx 0 5rpx 0;
  106. }
  107. .otherInfo-item-first-left-word{
  108. margin-left: 10rpx;
  109. }
  110. /* 教育经历 工作经历第二排 */
  111. .otherInfo-item-secord{
  112. width: 100%;
  113. height: 3rpx;
  114. margin-top: 13rpx;
  115. background: gainsboro;
  116. margin-bottom: 20rpx;
  117. }
  118. /* 教育经历 工作经历第三排 */
  119. .otherInfo-item-third{
  120. display: flex;
  121. flex-direction: row;
  122. justify-content: space-between;
  123. }
  124. /* 教育经历 工作经历第三排左边 */
  125. .otherInfo-item-third-left{
  126. display: flex;
  127. flex-direction: row;
  128. }
  129. /* 教育经历 工作经历第三排第一列 */
  130. .otherInfo-item-third-splicedicon{
  131. display: flex;
  132. flex-direction: column;
  133. align-items: center;
  134. }
  135. .otherInfo-item-third-splicedicon-spot{
  136. width: 13rpx;
  137. height: 13rpx;
  138. background: #f37b1d;
  139. border-radius: 50%;
  140. }
  141. .otherInfo-item-third-splicedicon-line{
  142. width: 2rpx;
  143. height: 100%;
  144. background: #D3D3D3;
  145. }
  146. /* 教育经历 工作经历第三排第二列 */
  147. .otherInfo-item-third-message{
  148. display: flex;
  149. flex-direction: column;
  150. font-size: 27rpx;
  151. color: #333;
  152. margin-left: 10rpx;
  153. position: relative;
  154. bottom: 13rpx;
  155. width: 550rpx;
  156. }
  157. .otherInfo-item-third-message-third{
  158. margin-top: 2rpx;
  159. font-size: 26rpx;
  160. color: gainsboro;
  161. }
  162. .otherInfo-item-third-message-fourth{
  163. font-size: 26rpx;
  164. color: gainsboro;
  165. word-break:break-all;
  166. display: -webkit-box;
  167. overflow: hidden;
  168. text-overflow: ellipsis;
  169. word-wrap: break-word;
  170. white-space: normal !important;
  171. -webkit-line-clamp: 3;
  172. -webkit-box-orient: vertical;
  173. }
  174. .otherInfo-item-third-right{
  175. width: 50rpx;
  176. height: 50rpx;
  177. align-self: center;
  178. }
  179. /* 简历每项 工作经历模块 */
  180. .otherInfo-item-work{
  181. display: flex;
  182. flex-direction: column;
  183. padding: 0 25rpx;
  184. }
  185. /* 填写了工作期望 */
  186. .work-expect{
  187. display: flex;
  188. flex-direction: column;
  189. font-size: 27rpx;
  190. }
  191. .work-expect-item{
  192. display: flex;
  193. flex-direction: row;
  194. color: #333 !important;
  195. }
  196. .self-item{
  197. color: #333 !important;
  198. }