my.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. page{
  2. background: #f8f9fa;
  3. }
  4. .container{
  5. margin: 20rpx 20rpx 0;
  6. }
  7. .userbox{
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. padding: 20rpx;
  12. background-color: #ffffff;
  13. border-radius: 20rpx;
  14. }
  15. .pic{
  16. width: 130rpx;
  17. height: 130rpx;
  18. border-radius: 50%;
  19. }
  20. .usercenter{
  21. flex: 1rpx;
  22. margin-left: 20rpx;
  23. }
  24. .title{
  25. font-size: 35rpx;
  26. font-weight: 600;
  27. color: #333333;
  28. }
  29. .person_text{
  30. padding-top: 10rpx;
  31. font-size: 28rpx;
  32. font-weight: 400;
  33. color: #999999;
  34. }
  35. .menu>.item{
  36. margin-top: 15rpx;
  37. height: 100rpx;
  38. line-height: 100rpx;
  39. border-bottom: 2rpx solid #ccc;
  40. padding: 0 40rpx;
  41. font-size: 33rpx;
  42. display: flex;
  43. background-color: #ffffff;
  44. }
  45. .menu>.item .ge{
  46. flex-basis: 600rpx;
  47. }
  48. .menu>.item .tubiao{
  49. margin-right: 15rpx;
  50. }
  51. .container1 {
  52. padding: 60rpx 50rpx;
  53. background-color: #fff;
  54. min-height: 100vh;
  55. box-sizing: border-box;
  56. }
  57. .main {
  58. display: flex;
  59. flex-direction: column;
  60. align-items: center;
  61. margin: 80rpx 0 100rpx;
  62. }
  63. .app-icon {
  64. width: 180rpx;
  65. height: 180rpx;
  66. border-radius: 32rpx;
  67. margin-bottom: 40rpx;
  68. border: 2rpx solid #f1f1f1;
  69. }
  70. .title {
  71. font-size: 44rpx;
  72. color: #333;
  73. font-weight: 600;
  74. letter-spacing: 1.5rpx;
  75. }
  76. /* 输入框组样式 */
  77. .van-cell-group {
  78. margin-bottom: 50rpx;
  79. border-radius: 16rpx;
  80. overflow: hidden;
  81. box-shadow: 0 6rpx 18rpx rgba(0, 0, 0, 0.04);
  82. }
  83. .van-field {
  84. padding: 28rpx 32rpx;
  85. background-color: #fff;
  86. }
  87. .van-field__label {
  88. width: 140rpx !important;
  89. color: #666;
  90. font-size: 30rpx;
  91. }
  92. .van-field__control {
  93. font-size: 30rpx;
  94. color: #333;
  95. }
  96. /* 验证码按钮样式 */
  97. .van-button--small {
  98. height: 64rpx !important;
  99. padding: 0 24rpx !important;
  100. font-size: 26rpx !important;
  101. border-radius: 10rpx !important;
  102. background-color: #1989fa;
  103. }
  104. /* 登录按钮样式 */
  105. .login-btn {
  106. margin-top: 70rpx;
  107. }
  108. .van-button--info {
  109. height: 96rpx;
  110. line-height: 96rpx;
  111. font-size: 34rpx;
  112. font-weight: 500;
  113. border-radius: 48rpx;
  114. background: linear-gradient(to right, #1989fa, #07c160);
  115. box-shadow: 0 10rpx 20rpx rgba(25, 137, 250, 0.3);
  116. transition: all 0.3s ease;
  117. }
  118. .van-button--info:active {
  119. transform: scale(0.98);
  120. opacity: 0.9;
  121. }
  122. /* 禁用状态样式 */
  123. .van-button--disabled {
  124. opacity: 0.7 !important;
  125. background: #c8c9cc !important;
  126. }
  127. /* 底部装饰元素 */
  128. .login-footer {
  129. margin-top: 80rpx;
  130. text-align: center;
  131. color: #999;
  132. font-size: 26rpx;
  133. }