media.scss 571 B

1234567891011121314151617181920212223242526272829
  1. // 兼容笔记本
  2. @media screen and (max-width: 1300px) {
  3. .suggest-modal{
  4. .container{
  5. .introduce{
  6. width: 230px;
  7. }
  8. }
  9. .tips{
  10. .tips-wrap{
  11. width: 400px;
  12. }
  13. }
  14. }
  15. .big-modal {
  16. .left-side{
  17. width: 260px;
  18. }
  19. .right-side {
  20. width: 280px;
  21. .article-text{
  22. margin-bottom: 14px;
  23. }
  24. .article-title{
  25. margin-bottom: 8px;
  26. }
  27. }
  28. }
  29. }