@import './toast.css';
@import './swiper.min.css';
@import './theme.css';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #f5f5f5;
    margin: 0 auto;
    overflow-x: hidden;
}

div {
    box-sizing: border-box;
}

#app {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#app.loaded {
    visibility: visible;
    opacity: 1;
}

#space {
    display: none;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 去除a 标签默认样式 */
a {
    /* 去除下划线 */
    text-decoration: none;
}

input {
    outline: none;
}

.bg-gradient {
    background: linear-gradient(to right, #b18e51, #dcbb7b);
}

.py-30rem {
    padding-top: 30rem;
    padding-bottom: 30rem;
    padding-left: 100rem;
}
