index.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @charset "UTF-8";
  2. .search{
  3. background: #F2F2F2;
  4. height: 70px;
  5. line-height: 70px;
  6. margin-top: -5px;
  7. text-align: center;
  8. }
  9. .search input{
  10. width: 80%;
  11. text-align: center;
  12. height: 35px;
  13. font-size: 15px;
  14. border: 2px solid #E6E6E6;
  15. border-radius: 40px;
  16. }
  17. .search input::-webkit-input-placeholder{
  18. outline: none;
  19. background:url("../imgs/icon_search.svg") no-repeat 40%;
  20. background-size: 26px 26px;
  21. }
  22. .search input::-moz-placeholder{
  23. outline: none;
  24. background:url("../imgs/icon_search.svg") no-repeat 40%;
  25. background-size: 26px 26px;
  26. }
  27. .search input:-ms-input-placeholder{
  28. outline: none;
  29. background:url("../imgs/icon_search.svg") no-repeat 40%;
  30. background-size: 26px 26px;
  31. }
  32. .search input:focus{
  33. outline: none;
  34. background:url("../imgs/icon_search.svg") no-repeat 40%;
  35. background-size: 26px 26px;
  36. }
  37. .content{
  38. padding: 0 4%;
  39. color: #8A8A8A;
  40. }
  41. .content p:nth-child(1){
  42. color: #333333;
  43. font-size: 1.1em;
  44. line-height: 1.5em;
  45. letter-spacing: 0.04em;
  46. }
  47. .content p:nth-child(2){
  48. /*font-size: 0.8em;*/
  49. line-height: 1.4em;
  50. letter-spacing: 0.05em;
  51. }
  52. .content .bottom{
  53. height: 60px;
  54. line-height: 60px;
  55. }