暫無描述

feedback-page.css 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. body{background: #fff;}
  2. .feedback{background: #fff;}
  3. .feedback h4{font-size: 14px; color: #666;background:#efeff4; font-weight: normal; padding:8px 0; text-align: center;}
  4. .feedback p{ padding:10px 15px;}
  5. .feedback input,
  6. .feedback textarea {
  7. border: none !important;
  8. }
  9. .feedback textarea {
  10. height: 60px;
  11. margin-bottom: 0 !important;
  12. padding-bottom: 0 !important;
  13. }
  14. .feedback .row {
  15. width: 100%;
  16. background-color: #fff;
  17. }
  18. .feedback p {
  19. padding: 8px 15px 0;
  20. }
  21. .feedback button#submit {
  22. width: 90%;
  23. height: 46px;
  24. left: 50%;
  25. -webkit-transform: translate(-50%);
  26. }
  27. .feedback .hidden {
  28. display: none;
  29. }
  30. .feedback .image-list {
  31. width: 100%;
  32. background-size: cover;
  33. padding: 10px 15px;
  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: 5px;
  45. margin-bottom: 10px;
  46. }
  47. .feedback .image-item img {
  48. width: 65px;
  49. height: 65px;
  50. border-radius: 5px;
  51. margin-right: 10px;
  52. margin-bottom: 10px;
  53. }
  54. .feedback .image-item input[type="file"] {
  55. position: absolute;
  56. left: 0px;
  57. top: 0px;
  58. width: 100%;
  59. height: 100%;
  60. opacity: 0;
  61. cursor: pointer;
  62. z-index: 0;
  63. }
  64. .feedback .image-item.space {
  65. border: none;
  66. }
  67. .feedback .image-item .image-close {
  68. position: absolute;
  69. display: block;
  70. right: -6px;
  71. top: -6px;
  72. width: 20px;
  73. height: 20px;
  74. text-align: center;
  75. line-height: 20px;
  76. border-radius: 12px;
  77. background-color: #FF5053;
  78. color: #f3f3f3;
  79. border: solid 1px #FF5053;
  80. font-size: 9px;
  81. font-weight: 200;
  82. z-index: 1;
  83. }
  84. .feedback .image-item.space .image-close {
  85. display: none;
  86. }
  87. .del {
  88. position: absolute;
  89. display: block;
  90. right: -6px;
  91. top: -6px;
  92. width: 20px;
  93. height: 20px;
  94. text-align: center;
  95. line-height: 20px;
  96. border-radius: 12px;
  97. background-color: #FF5053;
  98. color: #f3f3f3;
  99. border: solid 1px #FF5053;
  100. font-size: 9px;
  101. font-weight: 200;
  102. z-index: 1;
  103. }