12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* pages/mistakes/mistakes.wxss */
- .recommend {
- width: 100%;
- padding: 0 15rpx;
- box-sizing: border-box;
- }
- .answer-number {
- width: 100%;
- margin: 20rpx 0;
- border-radius: 25rpx;
- padding: 32rpx 24rpx;
- box-sizing: border-box;
- background: #fff;
- display: flex;
- justify-content: space-around;
- }
- .answer-number view {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- font-size: 32rpx;
- color: #444;
- }
- .gross text:nth-child(2) {
- color: #10A1F0;
- font-size: 36rpx;
- font-weight: 600;
- }
- .error text:nth-child(2) {
- color: #EA3433;
- font-size: 36rpx;
- font-weight: 600;
- }
- .correct text:nth-child(2) {
- color: #444;
- font-size: 36rpx;
- font-weight: 600;
- }
- .course-head {
- display: flex;
- justify-content: center;
- }
- .subject {
- background: #A3E0F3;
- padding: 20rpx 70rpx;
- font-size: 36rpx;
- font-weight: 600;
- border-radius: 30rpx 30rpx 0 0;
- }
- .select {
- background: #fff;
- }
|