web.scss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .evaluate {
  2. position: absolute;
  3. z-index: 5;
  4. width: 315px;
  5. top: -255px;
  6. padding: 12px;
  7. display: flex;
  8. flex-direction: column;
  9. border-radius: 8px;
  10. background: url("https://web.sdk.qcloud.com/im/assets/images/login-background.png") no-repeat;
  11. background-color: #fff;
  12. background-size: cover;
  13. background-position-x: 128px;
  14. background-position-y: 77px;
  15. user-select: none;
  16. &-header {
  17. &-content {
  18. font-style: normal;
  19. font-size: 12px;
  20. line-height: 17px;
  21. text-align: center;
  22. }
  23. }
  24. &-content {
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. padding: 12px 0;
  29. &-list {
  30. flex: 1;
  31. display: flex;
  32. &-item {
  33. width: 24px;
  34. height: 24px;
  35. text-align: center;
  36. cursor: pointer;
  37. padding: 4px 0;
  38. font-size: 12px;
  39. padding-right: 15px;
  40. &:last-child {
  41. padding-right: 0 !important;
  42. }
  43. }
  44. }
  45. &-text {
  46. box-sizing: border-box;
  47. width: 288px;
  48. height: 90px;
  49. margin: 12px 0;
  50. padding: 12px;
  51. border-radius: 2px;
  52. resize: none;
  53. }
  54. &-button {
  55. .btn {
  56. border: none;
  57. border-radius: 5px;
  58. font-size: 12px;
  59. text-align: center;
  60. line-height: 24px;
  61. padding: 2px 46px;
  62. font-weight: 400;
  63. color: #fff;
  64. }
  65. .btn-valid {
  66. background-color: #3370ff;
  67. cursor: pointer;
  68. }
  69. .btn-invalid{
  70. background-color: rgb(160, 207, 255);
  71. cursor: not-allowed;
  72. }
  73. }
  74. }
  75. &-adv {
  76. font-size: 12px;
  77. text-align: center;
  78. a {
  79. display: inline-block;
  80. }
  81. }
  82. }