123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- @import '../../app.less';
- .answer-list {
- padding-left: 20px;
- .item {
- position: relative;
- margin-bottom: 30px;
- .text {
- color: #303036;
- }
- .icon {
- width: 15px;
- height: 15px;
- position: absolute;
- left: -25px;
- top: 4px;
- background: url('/assets/option_normal.png') no-repeat center;
- }
- .total {
- display: none;
- color: #A7A7B7;
- margin-top: 20px;
- }
- }
- .item.selected {
- .icon {
- background-image: url('/assets/option_select.png');
- }
- }
- .item.show {
- .total {
- display: block;
- }
- }
- .item.show.true {
- .icon {
- background-image: url('/assets/option_right.png');
- }
- }
- item false show
- .item.show.false {
- .text {
- color: #686872;
- }
- }
- .item.show.false.selected {
- .icon {
- background-image: url('/assets/option_wrong.png');
- }
- }
- }
|