browser.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. @media screen and (max-width: 750px) {
  2. html {
  3. font-size: calc(100vw / 7.5);
  4. }
  5. }
  6. @media screen and (min-width: 750px) {
  7. html {
  8. font-size: calc(450px / 7.5);
  9. }
  10. }
  11. html, body, div, ul, li, p {
  12. padding: 0;
  13. margin: 0;
  14. }
  15. ul, li {
  16. list-style: none;
  17. }
  18. input{
  19. background:none;
  20. outline:none;
  21. border:0px;
  22. }
  23. .logo-row{
  24. width: 100%;
  25. display: flex;
  26. justify-content: center;
  27. padding-top: 3rem;
  28. }
  29. .logo{
  30. width: 2.4rem;
  31. height: 0.72rem;
  32. }
  33. .search-wrap{
  34. display: flex;
  35. align-items: center;
  36. margin: auto;
  37. margin-top: 0.4rem;
  38. width: 6.9rem;
  39. height: 0.9rem;
  40. background: #FFFFFF;
  41. border-radius: 0.2rem;
  42. border: 0.03rem solid #696969;
  43. }
  44. .search-icon{
  45. width: 0.52rem;
  46. height: 0.52rem;
  47. margin-left: 0.24rem;
  48. }
  49. .ipt{
  50. margin-left: 0.1rem;
  51. font-size: 0.3rem;
  52. font-weight: 500;
  53. color: #333333;
  54. }
  55. .tag-wrap{
  56. padding-top: 0.24rem;
  57. display: flex;
  58. flex-wrap: wrap;
  59. justify-content: space-around;
  60. }
  61. .tag-item{
  62. width: 1.6rem;
  63. height: 1.96rem;
  64. background: #FFF9F1;
  65. border-radius: 0.2rem;
  66. display: flex;
  67. flex-direction: column;
  68. justify-content: space-around;
  69. padding-left: 0.1rem;
  70. margin-top: 0.3rem;
  71. }
  72. .icon-row{
  73. width: 0.68rem;
  74. height: 0.64rem;
  75. display: inline-block;
  76. }
  77. .icon-title{
  78. font-size: 0.28rem;
  79. font-weight: 500;
  80. color: #333333;
  81. }
  82. .right-arrow{
  83. width: 0.32rem;
  84. height: 0.32rem;
  85. display: inline-block;
  86. }
  87. #toast-container>.toast-error {
  88. background-image: none !important;
  89. }
  90. .toast-error {
  91. background-color: rgba(0, 0, 0, 0.8);
  92. }
  93. #toast-container>div {
  94. font-size: 14px;
  95. min-width: 80px !important;
  96. padding: 12px !important;
  97. box-shadow: none;
  98. }
  99. .toast-center-center {
  100. min-width: 100px;
  101. top: 50%;
  102. left: 50%;
  103. text-align: center;
  104. transform: translateX(-50%);
  105. }
  106. @media (max-width: 480px) and (min-width: 241px) {
  107. #toast-container>div {
  108. min-width: 80px !important;
  109. width: auto;
  110. }
  111. }