web.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .evaluate {
  2. display: inline-block;
  3. position: relative;
  4. cursor: pointer;
  5. .icon-evaluate {
  6. margin: 12Px 10Px 0;
  7. }
  8. &-main {
  9. position: absolute;
  10. z-index: 5;
  11. width: 315Px;
  12. top: -275Px;
  13. padding: 12Px;
  14. display: flex;
  15. flex-direction: column;
  16. header {
  17. h1 {
  18. font-size: 12Px;
  19. text-align: center;
  20. }
  21. }
  22. footer {
  23. font-size: 12Px;
  24. text-align: center;
  25. }
  26. }
  27. &-content {
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. padding: 12Px 0;
  32. background: url('https://web.sdk.qcloud.com/im/assets/images/login-background.png') no-repeat;
  33. background-size: cover;
  34. background-position-x: 128Px;
  35. background-position-y: 77Px;
  36. textarea {
  37. box-sizing: border-box;
  38. width: 288Px;
  39. height: 90Px;
  40. margin: 12Px 0;
  41. padding: 12Px;
  42. border-radius: 2Px;
  43. resize: none;
  44. }
  45. .btn {
  46. border: none;
  47. border-radius: 5Px;
  48. font-size: 12Px;
  49. text-align: center;
  50. line-height: 24Px;
  51. padding: 2Px 46Px;
  52. cursor: pointer;
  53. }
  54. }
  55. &-list {
  56. flex: 1;
  57. display: flex;
  58. &-item {
  59. width: 24Px;
  60. height: 24Px;
  61. text-align: center;
  62. cursor: pointer;
  63. padding: 4Px 0;
  64. font-size: 12Px;
  65. padding-right: 15Px;
  66. &:last-child {
  67. padding-right: 0 !important;
  68. }
  69. }
  70. }
  71. }