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