app.wxss 801 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. @import '/utils/styles/index.wxss';
  2. page{
  3. background: #fff;
  4. }
  5. .oyScroll>view{
  6. flex-shrink: 0;
  7. }
  8. /*隐藏滚动条*/
  9. ::-webkit-scrollbar {
  10. width: 0;
  11. height: 0;
  12. color: transparent;
  13. }
  14. image{
  15. height: auto;
  16. }
  17. .picker_image{
  18. width: 18rpx;
  19. height: 18rpx;
  20. margin: 0 20rpx;
  21. flex-shrink: 0;
  22. }
  23. .mycontainer {
  24. width: 100%;
  25. height: 100%;
  26. display: flex;
  27. flex-direction: column;
  28. align-items: center;
  29. justify-content: space-between;
  30. padding: 0rpx 30rpx;
  31. box-sizing: border-box;
  32. }
  33. .myhover{
  34. opacity: 0.8;
  35. transform: scale(0.95,0.95);
  36. }
  37. .my-column{
  38. flex-direction: column;
  39. display: flex;
  40. }
  41. .my-row{
  42. flex-direction: row;
  43. display: flex;
  44. }
  45. .my-flex-sb{
  46. justify-content: space-between;
  47. }
  48. .my-align-c{
  49. align-items: center;
  50. }
  51. .my-just-c{
  52. justify-content: center;
  53. }