123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .unitSubject {
- padding: 15px;
- margin: 0 13px;
- background-color: #fff;
- overflow: hidden;
- border-radius: 10px;
- & + .unitSubject {
- margin-top: 12px;
- }
- }
- .unitAnswers {
- // padding-bottom: 30px;
- .unitAnswer {
- margin-top: 15px;
- background: #f6f6f6;
- border-radius: 8px;
- padding: 15px 12px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- .option {
- margin-right: 10px;
- }
- .value {
- word-break: break-all;
- :global {
- .van-image {
- height: 38px;
- }
- }
- }
- .valueAudio {
- width: 170px;
- }
- }
- .active {
- background-color: #ffebdd;
- color: #f67146;
- }
- .answerContent {
- display: flex;
- align-items: center;
- }
- .answerChoice {
- font-size: 16px;
- font-weight: 500;
- line-height: 26px;
- }
- }
|