trialActivities.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. .containers{
  19. width: 7.5rem;
  20. margin: auto;
  21. background-image: url('../img/yunActivity/bgc0.png');
  22. background-size: 100% 100%;
  23. }
  24. .banner-wrap{
  25. width: 7.5rem;
  26. height: 25.67rem;
  27. position: relative;
  28. }
  29. .banner-img {
  30. position: fixed;
  31. width: 7.5rem;
  32. height: 1.28rem;
  33. top: 0;
  34. z-index: 1;
  35. }
  36. .downlond-img {
  37. position: fixed;
  38. top: 0.3rem;
  39. right: 0.3rem;
  40. width: 2.2rem;
  41. height: 0.7rem;
  42. z-index: 1;
  43. }
  44. .downlond-midimg {
  45. position: absolute;
  46. top: 10.8rem;
  47. left: 50%;
  48. margin-left: -2.15rem;
  49. width: 4.3rem;
  50. height: 1.12rem;
  51. }
  52. #toast-container>.toast-error {
  53. background-image: none !important;
  54. border-radius: 0.2rem;
  55. }
  56. .toast-error {
  57. background-color: rgba(0, 0, 0, 0.8);
  58. border-radius: 0.2rem;
  59. }
  60. #toast-container>div {
  61. font-size: 14px;
  62. min-width: 80px !important;
  63. padding: 12px !important;
  64. box-shadow: none;
  65. border-radius: 0.2rem;
  66. }
  67. .toast-center-center {
  68. position: fixed;
  69. min-width: 220px;
  70. top: 50%;
  71. left: 50%;
  72. text-align: center;
  73. transform: translateX(-50%);
  74. color: #FFFFFF;
  75. border-radius: 0.2rem;
  76. }
  77. @media (max-width: 480px) and (min-width: 241px) {
  78. #toast-container>div {
  79. min-width: 80px !important;
  80. width: auto;
  81. }
  82. }