Staff.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .logo-hover {
  2. opacity: 0.8;
  3. }
  4. .logo-img {
  5. width: 150rpx; /* 设置图片的大小 */
  6. height: 150rpx; /* 设置图片的大小 */
  7. border-radius: 150rpx; /* 圆形边框 */
  8. }
  9. /* Logo标题样式 */
  10. .logo-title {
  11. height: 150rpx;
  12. flex: 1;
  13. align-items: center;
  14. justify-content: space-between;
  15. flex-direction: row;
  16. margin-left: 20rpx;
  17. }
  18. /* 用户名样式 */
  19. .uer-name {
  20. height: 60rpx;
  21. line-height: 60rpx;
  22. font-size: 38rpx;
  23. color: #FFFFFF;
  24. }
  25. .go-login {
  26. height: 40rpx; /* 设置箭头图片的高度 */
  27. width: 40rpx; /* 设置箭头图片的宽度 */
  28. line-height: 90rpx; /* 图片垂直居中 */
  29. margin-left: 10rpx; /* 设置箭头和文本之间的间距 */
  30. object-fit: contain; /* 保证图片不被拉伸 */
  31. }
  32. .login-title {
  33. height: 150rpx;
  34. align-items: self-start;
  35. justify-content: center;
  36. flex-direction: column;
  37. margin-left: 20rpx;
  38. }
  39. /* 中心列表样式 */
  40. .center-list {
  41. background-color: #FFFFFF;
  42. margin-top: 20rpx;
  43. width: 750rpx;
  44. flex-direction: column;
  45. }
  46. /* 列表项样式 */
  47. .center-list-item {
  48. height: 90rpx;
  49. width: 750rpx;
  50. box-sizing: border-box;
  51. flex-direction: row;
  52. padding: 0 20rpx;
  53. display: flex;
  54. justify-content: center; /* 图片和文本水平居中 */
  55. align-items: center; /* 图片和文本垂直居中 */
  56. }
  57. /* 边框样式 */
  58. .border-bottom {
  59. border-bottom-width: 1rpx;
  60. border-color: #c8c7cc;
  61. border-bottom-style: solid;
  62. }
  63. /* 图片图标样式 */
  64. .list-icon {
  65. width: 40rpx; /* 设置图片宽度 */
  66. height: 40rpx; /* 设置图片高度 */
  67. margin-right: 10rpx; /* 图标和文本之间的间距 */
  68. object-fit: contain; /* 保证图片不被拉伸 */
  69. }
  70. /* 列表文字样式 */
  71. .list-text {
  72. height: 90rpx;
  73. line-height: 90rpx;
  74. font-size: 34rpx;
  75. color: #555;
  76. flex: 1;
  77. text-align: left; /* 使文字水平居中 */
  78. }
  79. /* 导航箭头样式 */
  80. .navigat-arrow {
  81. width: 40rpx; /* 设置箭头图片的宽度 */
  82. height: 40rpx; /* 设置箭头图片的高度 */
  83. margin-left: 10rpx; /* 设置箭头和文本之间的间距 */
  84. object-fit: contain; /* 保证图片不被拉伸 */
  85. }