12345678910111213141516171819202122232425262728293031323334353637 |
- .box {
- display: flex;
- justify-content: space-between;
- padding: 20rpx 0rpx;
- margin: 0 30rpx;
- align-items: center;
- border-bottom: 1rpx solid #e6e6e6;
- .box-title {
- display: flex;
- .icon-img {
- margin-right: 10rpx;
- }
- .functionname {
- font-weight: 600;
- }
- }
- }
- .myfunction-sudoku {
- display: grid;
- grid-template-columns: 25% 25% 25% 25%;
- .sudoku-box {
- margin-top: 40rpx;
- display: grid;
- justify-items: content;
- .sudoku-img {
- width: 70rpx;
- height: 70rpx;
- margin: 0 auto;
- }
- .sudoku-name {
- font-size: 28rpx;
- margin: 0 auto;
- }
- }
- }
|