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

87 lines
1.3 KiB

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
  1. @import "../../uvue.wxss";
  2. :host{display:flex;flex-direction:column}
  3. .container {
  4. display: flex;
  5. flex-direction: column;
  6. height: 100vh;
  7. background-color: #f5f5f5;
  8. }
  9. .user-info {
  10. padding: 1rem;
  11. height: 30%;
  12. background-color: #044f7a;
  13. color: #fff;
  14. display: flex;
  15. flex-direction: column;
  16. /* justify-content: space-between; */
  17. align-items: center;
  18. }
  19. .user-info-content{
  20. width: 40%;
  21. height: 70%;
  22. display: flex;
  23. align-items: center;
  24. margin-top: auto;
  25. }
  26. .user-info-content image{
  27. width: 70%;
  28. height: 70%;
  29. border-radius: 10%;
  30. }
  31. .user-info text{
  32. position: absolute;
  33. font-size: 1rem;
  34. bottom: 5%;
  35. }
  36. .menu {
  37. flex: 1;
  38. padding: 20px;
  39. background-color: #fff;
  40. }
  41. .menu-item {
  42. display: flex;
  43. flex-direction: row;
  44. justify-content: center;
  45. align-items: center;
  46. padding: 15px 0;
  47. border-bottom: 1px solid #eee;
  48. }
  49. .menu-item-left {
  50. display: flex;
  51. flex-direction: row;
  52. margin-right: auto;
  53. }
  54. .menu-item text {
  55. margin-left: 1rem;
  56. font-size: 16px;
  57. }
  58. .arrow {
  59. width: 20px;
  60. height: 20px;
  61. }
  62. .footer {
  63. display: flex;
  64. justify-content: space-around;
  65. padding: 10px;
  66. background-color: #fff;
  67. border-top: 1px solid #ccc;
  68. }
  69. .nav-item {
  70. text-align: center;
  71. }
  72. .nav-item text {
  73. font-size: 14px;
  74. }
  75. .mini_container{
  76. display: flex;
  77. flex-direction: row;
  78. align-items: center;
  79. }
  80. /* 按钮 */
  81. .mini-btn{
  82. width: 30%;
  83. margin-left: 15%;
  84. }