index.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. body {
  2. min-width: 320px;
  3. max-width: 750px;
  4. /* flexible划分了10等分 */
  5. width: 10rem;
  6. margin: 0 auto;
  7. line-height: 1.5;
  8. font-family: Arial, Helvetica, sans-serif;
  9. background-color: #f2f2f2;
  10. }
  11. a {
  12. text-decoration: none;
  13. font-size: .333333rem;
  14. }
  15. /* 如果屏幕超过了750px,那就按照750设计稿来走 */
  16. @media screen and (min-width: 750px){
  17. html {
  18. font-size: 75px !important;
  19. }
  20. }
  21. /* search-content */
  22. .search-content {
  23. display: flex;
  24. position: fixed;
  25. top: 0;
  26. left: 50%;
  27. transform: translateX(-50%);
  28. width: 10rem;
  29. height: 1.173333rem;
  30. background-color: #ffc001;
  31. }
  32. .classify {
  33. width: .586667rem;
  34. height: .933333rem;
  35. margin: .146667rem .333333rem .133333rem;
  36. background: url(../images/classify.png) no-repeat;
  37. background-size: .586667rem .933333rem;
  38. }
  39. .search {
  40. flex: 1;
  41. }
  42. .search input {
  43. width: 100%;
  44. height: .88rem;
  45. outline: none;
  46. border: 0;
  47. margin-top: .133333rem;
  48. background-color: #fff2cc;
  49. border-radius: .44rem;
  50. color: #757575;
  51. padding-left: .733333rem
  52. }
  53. .login {
  54. width: 1rem;
  55. height: .933333rem;
  56. margin: .133333rem;
  57. color: #fff;
  58. line-height: .933333rem;
  59. text-align: center;
  60. font-size: .333333rem;
  61. }