index.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .navbar {
  2. width: 100vw;
  3. background-color: #f6f5fa;
  4. position: fixed;
  5. top: 0px;
  6. z-index: 991;
  7. }
  8. .title-container {
  9. height: 44px;
  10. display: flex;
  11. align-items: center;
  12. position: relative;
  13. }
  14. .capsule {
  15. margin-left: 10px;
  16. width: auto;
  17. height: 32px;
  18. overflow: hidden;
  19. }
  20. .capsule .icon-image {
  21. width: 18rpx;
  22. height: 33rpx;
  23. margin: 0rpx auto;
  24. }
  25. .flex-center {
  26. display: flex;
  27. align-items: center;
  28. }
  29. .title {
  30. color: #222222;
  31. position: absolute;
  32. left: 100px;
  33. right: 100px;
  34. font-size: 15px;
  35. text-align: center;
  36. overflow: hidden;
  37. text-overflow: ellipsis;
  38. white-space: nowrap;
  39. }
  40. .navBar-home {
  41. width: 180rpx;
  42. height: 64rpx;
  43. background: white;
  44. border-radius: 32rpx;
  45. font-size: 24rpx;
  46. color: #222222;
  47. border: 1rpx solid #dcdcdc;
  48. font-weight: bold;
  49. line-height: 1;
  50. }
  51. .home-img {
  52. width: 29rpx;
  53. height: 29rpx;
  54. margin: 0rpx 12rpx 6rpx 22rpx;
  55. }
  56. .wrap {
  57. width: 100%;
  58. background-color: #fff;
  59. margin-top: 10rpx;
  60. padding: 30rpx;
  61. padding-top: 15rpx ;
  62. }
  63. .wrap .item {
  64. display: flex;
  65. width: 100%;
  66. align-items: center;
  67. justify-content: space-between;
  68. border-bottom: 1px solid #fafafa;
  69. padding: 20rpx 0;
  70. font-size: 28rpx;
  71. }
  72. .wrap .item .value {
  73. color: #969799;
  74. }
  75. .button {
  76. width: 50%;
  77. height: 80rpx;
  78. border-radius: 80rpx;
  79. background-color: #ffd744;
  80. margin: 80rpx auto 0 auto;
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. color: #fff;
  85. }