暫無描述

feedback-page.css 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .feedback body {
  2. background-color: #EFEFF4;
  3. }
  4. .feedback input,
  5. .feedback textarea {
  6. border: none !important;
  7. }
  8. .feedback textarea {
  9. height: 100px;
  10. margin-bottom: 0 !important;
  11. padding-bottom: 0 !important;
  12. }
  13. .feedback .row {
  14. width: 100%;
  15. background-color: #fff;
  16. }
  17. .feedback p {
  18. padding: 10px 15px 0;
  19. }
  20. .feedback button#submit {
  21. width: 90%;
  22. height: 46px;
  23. left: 50%;
  24. -webkit-transform: translate(-50%);
  25. }
  26. .feedback .hidden {
  27. display: none;
  28. }
  29. .feedback .image-list {
  30. width: 100%;
  31. /*height: 90px;*/
  32. background-size: cover;
  33. padding: 10px 10px;
  34. overflow: hidden;
  35. }
  36. .feedback .image-item {
  37. width: 70px;
  38. height: 70px;
  39. /*background-image: url(../img/iconfont-tianjia.png);*/
  40. background-size: 100% 100%;
  41. display: inline-block;
  42. position: relative;
  43. border-radius: 5px;
  44. border: solid 1px #e8e8e8;
  45. }
  46. .feedback .image-item input[type="file"] {
  47. position: absolute;
  48. left: 0px;
  49. top: 0px;
  50. width: 100%;
  51. height: 100%;
  52. opacity: 0;
  53. cursor: pointer;
  54. z-index: 0;
  55. }
  56. .feedback .image-item.space {
  57. border: none;
  58. }
  59. .feedback .image-item .image-close {
  60. position: absolute;
  61. display: none;
  62. right: -6px;
  63. top: -6px;
  64. width: 20px;
  65. height: 20px;
  66. text-align: center;
  67. line-height: 20px;
  68. border-radius: 12px;
  69. background-color: #FF5053;
  70. color: #f3f3f3;
  71. border: solid 1px #FF5053;
  72. font-size: 9px;
  73. font-weight: 200;
  74. z-index: 1;
  75. }
  76. .feedback .image-item.space .image-close {
  77. display: none;
  78. }