deepSeekHome.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .deekSeek {
  2. width: 100%;
  3. height: 100vh;
  4. background: linear-gradient(90.52deg, rgba(24, 126, 255, 1) 1.54%, rgba(23, 66, 255, 1) 99.26%);
  5. &-header {
  6. width: 100%;
  7. height: 60px;
  8. border: 1px solid rgba(24, 126, 255, 1);
  9. display: flex;
  10. color: #FFFFFF;
  11. justify-content: center;
  12. align-items: center;
  13. overflow-x: auto;
  14. overflow-y: hidden;
  15. box-sizing: border-box;
  16. }
  17. &-content {
  18. width: 100%;
  19. height: calc(100% - 80px);
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. flex-direction: column;
  24. &-title {
  25. display: flex;
  26. justify-content: center;
  27. margin-bottom: 5px;
  28. img {
  29. width: 200px;
  30. }
  31. }
  32. &-title-sm {
  33. font-size: 20px;
  34. color: #FFFFFF;
  35. @media (max-width: 768px) {
  36. font-size: 16px;
  37. }
  38. @media (max-width: 480px) {
  39. font-size: 14px;
  40. }
  41. }
  42. &-pc {
  43. width: 36%;
  44. min-width: 400px;
  45. height: 78%;
  46. background: #FFFFFF;
  47. border-radius: 12px;
  48. overflow: hidden;
  49. }
  50. &-mobile {
  51. width: 90%;
  52. height: 82%;
  53. background: #FFFFFF;
  54. border-radius: 12px;
  55. overflow: hidden;
  56. }
  57. }
  58. }