setting.wxss 739 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* pages/setting/setting.wxss */
  2. page{
  3. background-color: #f7f7f7;
  4. }
  5. .cont{
  6. width: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. }
  11. .versions{
  12. width: 710rpx;
  13. height: 104rpx;
  14. background-color: white;
  15. border-radius: 20rpx;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. }
  20. .info{
  21. width: 90%;
  22. font-size: 32rpx;
  23. color: #656565;
  24. display: flex;
  25. justify-content: space-between;
  26. }
  27. .info>p:first-child{
  28. font-weight: 600;
  29. }
  30. .but::after{
  31. border: none;
  32. }
  33. .but{
  34. margin-top: 54rpx;
  35. background-color: white;
  36. width: 622rpx;
  37. height: 74rpx;
  38. border-radius: 37rpx;
  39. color: #FF874E;
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. border: 2px solid #FF874E;
  44. }