微信小店联盟带货小程序

index.wxss 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .container {
  2. background-color: #f5f5f5;
  3. min-height: 100vh;
  4. padding: 20rpx;
  5. }
  6. .user-info {
  7. background-color: #fff;
  8. display: flex;
  9. align-items: center;
  10. padding: 30rpx;
  11. border-radius: 10rpx;
  12. margin-bottom: 20rpx;
  13. box-shadow: 0 4rpx 8rpx rgba(0, 0, 0, 0.06);
  14. }
  15. .avatar {
  16. width: 100rpx;
  17. height: 100rpx;
  18. border-radius: 50%;
  19. margin-right: 20rpx;
  20. }
  21. .user-details {
  22. display: flex;
  23. flex-direction: column;
  24. }
  25. .nickname {
  26. font-size: 32rpx;
  27. font-weight: bold;
  28. color: #333;
  29. }
  30. .user-tip {
  31. font-size: 24rpx;
  32. color: #999;
  33. margin-top: 10rpx;
  34. }
  35. .settings-section {
  36. background-color: #fff;
  37. border-radius: 10rpx;
  38. margin-bottom: 20rpx;
  39. padding: 20rpx;
  40. box-shadow: 0 4rpx 8rpx rgba(0, 0, 0, 0.06);
  41. }
  42. .section-title {
  43. font-size: 32rpx;
  44. font-weight: bold;
  45. color: #333;
  46. margin-bottom: 20rpx;
  47. padding-bottom: 15rpx;
  48. border-bottom: 1rpx solid #f0f0f0;
  49. }
  50. .settings-item {
  51. display: flex;
  52. justify-content: space-between;
  53. align-items: center;
  54. padding: 20rpx 0;
  55. border-bottom: 1rpx solid #f0f0f0;
  56. }
  57. .settings-item:last-child {
  58. border-bottom: none;
  59. }
  60. .item-label {
  61. font-size: 28rpx;
  62. color: #333;
  63. }
  64. .item-extra {
  65. font-size: 24rpx;
  66. color: #999;
  67. }
  68. .logout-btn {
  69. width: 100%;
  70. background-color: #ff4d4f;
  71. color: #fff;
  72. margin-top: 40rpx;
  73. border-radius: 50rpx;
  74. padding: 20rpx;
  75. font-size: 32rpx;
  76. box-shadow: 0 4rpx 12rpx rgba(255, 77, 79, 0.2);
  77. transition: all 0.3s ease;
  78. }
  79. .logout-btn:hover {
  80. background-color: #ff7875;
  81. box-shadow: 0 6rpx 16rpx rgba(255, 77, 79, 0.3);
  82. }