base.css 925 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. @charset "UTF-8";
  2. *{
  3. margin: 0;
  4. padding: 0;
  5. }
  6. em{
  7. font-style: normal;
  8. }
  9. input:focus{
  10. outline: none;
  11. background:url("../imgs/icon_search.svg") no-repeat 40%;
  12. background-size: 26px 26px;
  13. }
  14. .wrapper{
  15. width: 100%;
  16. margin-bottom: 80px;
  17. }
  18. .top{
  19. background: #32304A;
  20. height: 50px;
  21. line-height: 50px;
  22. color: #fff;
  23. padding: 0 3%;
  24. font-size: 16px;
  25. }
  26. .top .icon{
  27. font-size: 30px;
  28. }
  29. .top .title{
  30. width: 85%;
  31. }
  32. img{
  33. width: 100%;
  34. height: 100%;
  35. }
  36. .fl{
  37. float: left;
  38. }
  39. .fr{
  40. float: right;
  41. }
  42. .footer{
  43. position: fixed;
  44. bottom: 0;
  45. height: 60px;
  46. font-size: 15px;
  47. width: 100%;
  48. background: #fff;
  49. }
  50. .footer .bottom{
  51. width: 25%;
  52. border-top: 1px solid #ACACB3;
  53. text-align: center;
  54. color: #ACACB3;
  55. }
  56. .footer .bottom .icon{
  57. text-align: center;
  58. margin-top: 5px;
  59. }
  60. .footer .bottom .icon img{
  61. width: 25px;
  62. height: 25px;
  63. }