/* 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 {
    margin-bottom: 20rpx;
}

.answer-content .questions {
    width: 100%;
    height: 405rpx;
    border-radius: 20rpx;
}

.answer {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    margin:0 20rpx;
    border-radius: 10rpx;
}

.answer-txt {
    font-size: 28rpx;
    color: #858585;
}

.analysis {
    position: absolute;
    right: 0;
    top: -10rpx;
}

.unfold {
    background: #fff;
}

.analysis .analysis-img {
    width: 103rpx;
    height: 60rpx;
}

.analysis .analysis-img-top {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 99rpx;
    height: 22rpx;
}

.noerr {
    color: #ccc;
    margin-top: 30rpx;
    text-align: center;
}