123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /* 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 {
- padding: 20rpx 70rpx;
- font-size: 36rpx;
- font-weight: 600;
- border-radius: 30rpx 30rpx 0 0;
- color: #767676;
- }
- .select {
- background: #fff;
- color: #000;
- }
- .answer-content {
- position: relative;
- padding-bottom: 100rpx;
- }
- .answer-content .questions {
- width: 100%;
- border-radius: 20rpx;
- }
- .answer {
- position: relative;
- margin: -10rpx 20rpx;
- border-radius: 10rpx;
- }
- .analysis-box {
- margin-left: 2%;
- }
- .answer-txt {
- position: absolute;
- left: 20%;
- top: 20rpx;
- z-index: 2;
- font-size: 28rpx;
- color: #858585;
- }
- .unfold {
- background: #fff;
- }
- .analysis .analysis-img {
- position: absolute;
- right: 0;
- top: 0;
- width: 103rpx;
- height: 60rpx;
- }
- .analysis .analysis-img-top {
- position: absolute;
- bottom: 10rpx;
- left: 50%;
- transform: translate(-50%, 0);
- width: 99rpx;
- height: 22rpx;
- }
- .noerr {
- color: #ccc;
- margin-top: 30rpx;
- text-align: center;
- }
- .mistakes-dialog {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, .4);
- z-index:100;
- }
- .mistakes-dialog-scroll {
- position: absolute;
- left: 5%;
- top: 478rpx;
- height: 50%;
- }
- .error-questions {
- width: 96%;
- height: 405rpx;
- border-radius: 20rpx;
- position: absolute;
- left: 2%;
- top: 80rpx;
- z-index: 2;
- }
- .error-analysis {
- border-radius: 0 0 20rpx 20rpx;
- }
- .close {
- width: 88rpx;
- height: 88rpx;
- position: absolute;
- bottom: 8rpx;
- left: 50%;
- transform: translate(-44rpx)
- }
|