index.wxss 671 B

1234567891011121314151617181920212223242526272829303132333435
  1. .box {
  2. display: flex;
  3. justify-content: space-between;
  4. padding: 20rpx 0rpx;
  5. margin: 0 30rpx;
  6. align-items: center;
  7. border-bottom: 1rpx solid #e6e6e6;
  8. }
  9. .box .box-title {
  10. display: flex;
  11. }
  12. .box .box-title .icon-img {
  13. margin-right: 10rpx;
  14. }
  15. .box .box-title .functionname {
  16. font-weight: 600;
  17. }
  18. .myfunction-sudoku {
  19. display: grid;
  20. grid-template-columns: 25% 25% 25% 25%;
  21. }
  22. .myfunction-sudoku .sudoku-box {
  23. margin-top: 40rpx;
  24. display: grid;
  25. justify-items: content;
  26. }
  27. .myfunction-sudoku .sudoku-box .sudoku-img {
  28. width: 70rpx;
  29. height: 70rpx;
  30. margin: 0 auto;
  31. }
  32. .myfunction-sudoku .sudoku-box .sudoku-name {
  33. font-size: 28rpx;
  34. margin: 0 auto;
  35. }