12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .popupResult {
- padding: 20px 20px 25px;
- color: #333333;
- font-size: 15px;
- .resultTitle {
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- font-size: 18px;
- font-weight: 600;
- color: #333333;
- .titleImg {
- width: 18px;
- height: 18px;
- margin-right: 6px;
- }
- }
- .result {
- margin-top: 20px;
- padding: 12px;
- background: #f6f6f6;
- border-radius: 4px;
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- .yes {
- color: #4593f4;
- margin-right: 20px;
- }
- .no {
- color: #f44541;
- }
- }
- .resultContent {
- padding: 20px 0 30px;
- font-size: 15px;
- color: #333333;
- // text-align: justify;
- line-height: 23px;
- span {
- font-weight: 600;
- }
- }
- }
|