合同小程序前端代码仓库
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.

55 lines
880 B

  1. @import "../../uvue.wxss";
  2. :host{display:flex;flex-direction:column}
  3. .container {
  4. display: flex;
  5. flex-direction: column;
  6. height: 300vh;
  7. background-color: #f5f5f5;
  8. }
  9. .user-info {
  10. padding: 20px;
  11. height: 200px;
  12. background-color: #007aff;
  13. color: #fff;
  14. text-align: center;
  15. }
  16. .username {
  17. font-size: 20px;
  18. font-weight: bold;
  19. margin: 0 auto;
  20. line-height: 200px;
  21. }
  22. .menu {
  23. flex: 1;
  24. padding: 20px;
  25. background-color: #fff;
  26. }
  27. .menu-item {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. padding: 15px 0;
  32. border-bottom: 1px solid #eee;
  33. }
  34. .menu-item text {
  35. font-size: 16px;
  36. }
  37. .arrow {
  38. width: 20px;
  39. height: 20px;
  40. }
  41. .footer {
  42. display: flex;
  43. justify-content: space-around;
  44. padding: 10px;
  45. background-color: #fff;
  46. border-top: 1px solid #ccc;
  47. }
  48. .nav-item {
  49. text-align: center;
  50. }
  51. .nav-item text {
  52. font-size: 14px;
  53. }