index.wxss 842 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. @import "/css/form.wxss";
  2. /* 滑动区域 */
  3. scroll-view {
  4. height: 330rpx;
  5. }
  6. /* 盒子 */
  7. .input_text_box {
  8. width: 510rpx;
  9. height: 100rpx;
  10. border-radius: 70px;
  11. opacity: 0.7;
  12. }
  13. /* 头像 */
  14. .input_text_img {
  15. width: 76rpx;
  16. height: 76rpx;
  17. border-radius: 50rpx;
  18. margin-left: -6rpx;
  19. }
  20. .text_box {
  21. flex: 1;
  22. display: flex;
  23. align-items: center;
  24. height: 100%;
  25. }
  26. /* 用户名 */
  27. .user_name {
  28. width: 230rpx;
  29. font-size: 28rpx;
  30. height: 40rpx;
  31. line-height: 40rpx;
  32. color: #333333;
  33. margin-left: 14rpx;
  34. }
  35. /* 职位 */
  36. .user_identity {
  37. width: 100rpx;
  38. height: 40rpx;
  39. line-height: 40rpx;
  40. font-size: 28rpx;
  41. color: #000000;
  42. text-align: right;
  43. }
  44. /* 选中后样式 */
  45. .optfor {
  46. background-color: #4BBECF;
  47. }
  48. .optfor .user_identity {
  49. color: #ffffff;
  50. }