deepSeek.scss 874 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. }
  14. &-content {
  15. width: 100%;
  16. height: calc(100vh - 60px);
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. flex-direction: column;
  21. &-title {
  22. display: flex;
  23. justify-content: center;
  24. margin-bottom: 5px;
  25. img {
  26. width: 40%;
  27. }
  28. }
  29. &-title2 {
  30. font-size: 20px;
  31. color: #FFFFFF;
  32. margin-bottom: 35px;
  33. }
  34. &-outer {
  35. width: 32%;
  36. height: 78%;
  37. background: #FFFFFF;
  38. border-radius: 12px;
  39. overflow: hidden;
  40. }
  41. }
  42. }