myDetail.wxss 873 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @charset "UTF-8";
  2. /* 需要放到文件最上面 */
  3. /* 水平间距 */
  4. /* 水平间距 */
  5. /*
  6. 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
  7. */
  8. /* 水平间距 */
  9. .detail-content {
  10. padding: 30rpx;
  11. }
  12. .detail-content .detail-avatar {
  13. width: 80rpx;
  14. height: 80rpx;
  15. border-radius: 50%;
  16. }
  17. .detail-content .detail-box {
  18. background: #fff;
  19. border-radius: 16rpx;
  20. padding: 30rpx;
  21. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  22. }
  23. .detail-content .detail-label {
  24. color: #8c8c8c;
  25. font-weight: 300;
  26. margin-bottom: 10rpx;
  27. }
  28. .detail-content .detail-value {
  29. font-size: 32rpx;
  30. color: #434343;
  31. }
  32. .detail-content .detail-item {
  33. margin-bottom: 20rpx;
  34. }
  35. .detail-content .logout {
  36. margin-top: 40rpx;
  37. background: #ff4d4f;
  38. color: #fff;
  39. height: 68rpx;
  40. line-height: 68rpx;
  41. border-radius: 68rpx;
  42. text-align: center;
  43. }