* { margin: 0; padding: 0; -webkit-box-sizing: border-box; box-sizing: border-box; } body { height: 2800px; } body hr { margin: 20px; } #banner { width: 100vw; height: 500px; } .marquee { margin: 100px auto; height: 100px; width: 1000px; overflow: hidden; position: relative; font-size: 48px; } .marquee #marquee-box { display: block; width: 200%; height: 75px; position: absolute; overflow: hidden; -webkit-animation: marquee 5s linear infinite; animation: marquee 5s linear infinite; } .marquee #marquee-box .span { float: left; width: 50%; } @-webkit-keyframes marquee { 0% { left: 0; } 100% { left: -100%; } } @keyframes marquee { 0% { left: 0; } 100% { left: -100%; } } #tag { width: 100vw; text-align: center; } #tag .btn { padding: 15px; width: 150px; margin: 10px; background-color: #CE0000; border-radius: 10px; font-size: 24px; color: #fff; border: none; } #Search-result .result-box { margin: 50px auto; width: 700px; display: -ms-grid; display: grid; -ms-grid-columns: (1fr)[2]; grid-template-columns: repeat(2, 1fr); grid-gap: 10px; } #Search-result .result-box h1 { margin: 10px; } #Search-result .result-box p { padding: 15px 0; margin: 10px; } #Search-result .result-box span { padding: 0px 10px; } #logo { width: 100vw; text-align: center; } @media screen and (max-width: 1024px) { #logo { width: 80vw; margin: 0 auto; } } #logo .logo { padding: 15px; width: 150px; margin: 10px; background-color: #CE0000; border-radius: 10px; font-size: 24px; color: #fff; border: none; } #news { display: -ms-grid; display: grid; -ms-grid-columns: (1fr)[3]; grid-template-columns: repeat(3, 1fr); margin: 50px; grid-gap: 30px; } #news h1 { margin-bottom: 10px; } #news a { margin-top: 20px; line-height: 1.5; display: inline-block; } #footer { text-align: center; line-height: 2; } /*# sourceMappingURL=style.css.map */