Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

80 lignes
1.4 KiB

  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: 85px;
  32. background-size: cover;
  33. padding: 10px 10px;
  34. overflow: hidden;
  35. }
  36. .feedback .image-item {
  37. width: 65px;
  38. height: 65px;
  39. background-image: url(../images/iconfont-tianjia.png);
  40. background-size: 100% 100%;
  41. display: inline-block;
  42. position: relative;
  43. border-radius: 5px;
  44. margin-right: 10px;
  45. margin-bottom: 10px;
  46. border: solid 1px #e8e8e8;
  47. }
  48. .feedback .image-item input[type="file"] {
  49. position: absolute;
  50. left: 0px;
  51. top: 0px;
  52. width: 100%;
  53. height: 100%;
  54. opacity: 0;
  55. cursor: pointer;
  56. z-index: 0;
  57. }
  58. .feedback .image-item.space {
  59. border: none;
  60. }
  61. .feedback .image-item .image-close {
  62. position: absolute;
  63. display: inline-block;
  64. right: -6px;
  65. top: -6px;
  66. width: 20px;
  67. height: 20px;
  68. text-align: center;
  69. line-height: 20px;
  70. border-radius: 12px;
  71. background-color: #FF5053;
  72. color: #f3f3f3;
  73. border: solid 1px #FF5053;
  74. font-size: 9px;
  75. font-weight: 200;
  76. z-index: 1;
  77. }
  78. .feedback .image-item.space .image-close {
  79. display: none;
  80. }