browser.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. .container{
  24. width: 100%;
  25. height: 100vh;
  26. background: linear-gradient(180deg, #F4F9FF 0%, #FFFFFF 100%);
  27. }
  28. .logo-row{
  29. width: 100%;
  30. display: flex;
  31. justify-content: center;
  32. padding-top: 3rem;
  33. }
  34. .logo{
  35. width: 2.4rem;
  36. height: 0.72rem;
  37. }
  38. .search-wrap{
  39. display: flex;
  40. align-items: center;
  41. margin: auto;
  42. margin-top: 0.4rem;
  43. width: 6.9rem;
  44. height: 0.9rem;
  45. background: #FFFFFF;
  46. border-radius: 0.2rem;
  47. border: 0.03rem solid #696969;
  48. }
  49. .search-icon{
  50. width: 0.52rem;
  51. height: 0.52rem;
  52. margin-left: 0.24rem;
  53. }
  54. .ipt{
  55. margin-left: 0.1rem;
  56. font-size: 0.3rem;
  57. font-weight: 500;
  58. color: #333333;
  59. }
  60. .tag-wrap{
  61. padding-top: 0.24rem;
  62. display: flex;
  63. flex-wrap: wrap;
  64. margin-left: 0.2rem;
  65. }
  66. .tag-item{
  67. width: 1.6rem;
  68. /* height: 2.16rem; */
  69. background: #F4F9FF;
  70. border-radius: 0.2rem;
  71. display: flex;
  72. flex-direction: column;
  73. /* justify-content: space-around; */
  74. padding-left: 0.1rem;
  75. padding-top: 0.24rem;
  76. margin-top: 0.3rem;
  77. position: relative;
  78. }
  79. .tag-item:not(:nth-child(4n)) {
  80. margin-right: calc(4% / 3);
  81. }
  82. .icon-row{
  83. width: 0.68rem;
  84. height: 0.64rem;
  85. display: inline-block;
  86. }
  87. .icon-title{
  88. margin-top: 0.1rem;
  89. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  90. font-size: 0.28rem;
  91. font-weight: 500;
  92. color: #333333;
  93. }
  94. .right-arrow{
  95. position: absolute;
  96. bottom: 0.16rem;
  97. width: 0.32rem;
  98. height: 0.32rem;
  99. display: inline-block;
  100. }
  101. .right-arrow-heght{
  102. height: 0.52rem;
  103. }
  104. #toast-container>.toast-error {
  105. background-image: none !important;
  106. border-radius: 0.2rem;
  107. }
  108. .toast-error {
  109. background-color: rgba(0, 0, 0, 0.8);
  110. border-radius: 0.2rem;
  111. }
  112. #toast-container>div {
  113. font-size: 14px;
  114. min-width: 80px !important;
  115. padding: 12px !important;
  116. box-shadow: none;
  117. border-radius: 0.2rem;
  118. }
  119. .toast-center-center {
  120. position: fixed;
  121. width: 220px;
  122. top: 50%;
  123. left: 50%;
  124. text-align: center;
  125. transform: translate(-50%, -50%);
  126. color: #FFFFFF;
  127. border-radius: 0.2rem;
  128. }
  129. @media (max-width: 480px) and (min-width: 241px) {
  130. #toast-container>div {
  131. min-width: 88px !important;
  132. width: auto;
  133. }
  134. }