about.wxss 685 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* about.wxss */
  2. page{
  3. height: 100%;
  4. background-color: #F2f2f2;
  5. }
  6. .page-view{
  7. height: 100%;
  8. }
  9. .banner-image{
  10. width: 100%;
  11. height: 350rpx;
  12. background: #ee1;
  13. margin-bottom: 30rpx;
  14. border-bottom: solid #f2f2f2 0.5dp;
  15. }
  16. .about-item{
  17. background: white;
  18. border-top: solid #f2f2f2 0.5rpx;
  19. border-bottom: solid #f2f2f2 0.5rpx;
  20. width: 100%;
  21. height: 100rpx;
  22. display: flex;
  23. flex-direction: row;
  24. justify-content: space-between;
  25. }
  26. .item-left{
  27. font-size: 32rpx;
  28. margin-left: 15rpx;
  29. margin-top: auto;
  30. margin-bottom: auto;
  31. }
  32. .item-right{
  33. margin-right: 15rpx;
  34. margin-top: auto;
  35. margin-bottom: auto;
  36. }
  37. .right-icon{
  38. width: 40rpx;
  39. height: 40rpx;
  40. }