h5.scss 932 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .evaluate-h5 {
  2. position: static;
  3. width: 100%;
  4. height: fit-content;
  5. border-radius: 0;
  6. background: #fff;
  7. padding: 23px !important;
  8. box-sizing: border-box;
  9. &-header {
  10. display: flex;
  11. justify-content: space-between;
  12. &-content {
  13. font-size: 18px;
  14. }
  15. &-close {
  16. font-size: 18px;
  17. line-height: 27px;
  18. font-weight: 400;
  19. color: #3370ff;
  20. }
  21. }
  22. &-content {
  23. order: 1;
  24. &-list {
  25. &-item {
  26. width: 40px;
  27. height: 24px;
  28. text-align: center;
  29. cursor: auto;
  30. font-size: 12px;
  31. }
  32. }
  33. &-text {
  34. font-size: 16px;
  35. width: 100%;
  36. }
  37. &-button {
  38. width: 100%;
  39. display: flex;
  40. .btn {
  41. flex: 1;
  42. padding: 14px 0;
  43. font-size: 18px;
  44. cursor: auto;
  45. }
  46. }
  47. }
  48. &-adv {
  49. font-size: 14px;
  50. font-weight: normal;
  51. text-align: left;
  52. color: #000;
  53. }
  54. }