setting.css 800 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. html,
  2. body {
  3. height: 100%;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. overflow: hidden;
  7. }
  8. .content {
  9. background: #ffffff;
  10. }
  11. .content > .item {
  12. box-sizing: border-box;
  13. padding: 0 32rpx;
  14. font-size: 32rpx;
  15. }
  16. .content > .item:last-child>.line{
  17. display: none;
  18. }
  19. .content > .item>view:first-child{
  20. display: flex;
  21. justify-content: space-between;
  22. padding: 28rpx 0;
  23. }
  24. .content > .item>view:first-child>view{
  25. color: #808080;
  26. }
  27. .content > .item image{
  28. width: 14rpx;
  29. height: 24rpx;
  30. margin-left: 22rpx;
  31. }
  32. .content .line {
  33. width: 718rpx;
  34. height: 2rpx;
  35. background: #eeeeee;
  36. }
  37. .loginOut{
  38. color: #FF5E5E;
  39. margin-top: 24rpx;
  40. box-sizing: border-box;
  41. padding: 28rpx 32rpx;
  42. background: #ffffff;
  43. text-align: center;
  44. }