You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .header {
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. margin: 20rpx;
  6. padding: 20rpx;
  7. border-radius: 20rpx;
  8. background-image: linear-gradient(to right, #f2f4f7, #e0f2f4);
  9. }
  10. .unlogin-box {
  11. padding: 30rpx;
  12. }
  13. .unlogin-title {
  14. font-weight: bold;
  15. font-size: 38rpx;
  16. }
  17. .unlogin-sub-title {
  18. margin-bottom: 30rpx;
  19. padding: 20rpx 0;
  20. font-size: 26rpx;
  21. color: gray;
  22. }
  23. .unlogin-button {
  24. padding: 16rpx 32rpx;
  25. font-size: 26rpx;
  26. border-radius: 50rpx;
  27. color: #ffffff;
  28. }
  29. .info-box {
  30. display: flex;
  31. align-items: center;
  32. }
  33. .avatar-box {
  34. width: 124rpx;
  35. height: 124rpx;
  36. padding: 0;
  37. margin: 0;
  38. border-radius: 50%;
  39. margin-right: 32rpx;
  40. }
  41. .menu-box {
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. padding: 20rpx;
  46. }
  47. .menu-item {
  48. width: 48%;
  49. display: flex;
  50. justify-content: center;
  51. align-items: center;
  52. padding: 28rpx 0;
  53. border-radius: 20rpx;
  54. box-shadow: 4rpx 4rpx 10rpx 0 rgba(0, 0, 0, 0.1);
  55. font-size: 28rpx;
  56. }
  57. .item-title {
  58. margin-left: 20rpx;
  59. }