body, html, div, ul, li, h1, h2, h3, p { margin: 0; padding: 0; } * { box-sizing: border-box; } html, body, #app { width: 100%; height: 100%; overflow: hidden; } @keyframes loading { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .background-pink { background-color: #f8f7f5; background-image: url('@/assets/images/home-bg.png'); background-size: 100% 100%; } .flex { display: flex; } .flex-col { flex-direction: column; } .flex-center { justify-content: center; align-items: center; } .flex-1 { flex: 1; } .align-center { align-items: center; } .justify-center { justify-content: center; } .space-between { justify-content: space-between; }