integral.wxss 625 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* pages/integral/integral.wxss */
  2. page{
  3. background: #f5f5f5;
  4. display:flex;
  5. flex-flow: column nowrap;
  6. justify-content: left;
  7. align-items: center;
  8. box-sizing: border-box;
  9. }
  10. /* 垂直方向布局,水平居中 **/
  11. .flex-column{
  12. display: flex;
  13. flex-flow: column nowrap;
  14. align-items: center;
  15. justify-content: left;
  16. }
  17. /* 水平方向布局,垂直居中 **/
  18. .flex-row{
  19. display: flex;
  20. flex-flow: row nowrap;
  21. align-items: center;
  22. justify-content: center;
  23. }
  24. .integral-banner{
  25. width: 750rpx;
  26. height: 256rpx;
  27. border-radius: 8px;
  28. overflow: hidden;
  29. }
  30. .head-follow{
  31. width: 100%;
  32. height: 100%;
  33. }