* {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
.main {
    width: 90%;
    margin: 1rem auto;
}
.mobile-head {
    width: 100%;
    display: flex;
}
.mobile-logo {
    width: 6rem;
    height: 6rem;
}
.mobile-logo img {
    width: 100%;
    height: 100%;
}
.mobile-head-right {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    justify-content: center;
    padding: 0.5rem;
}
.mobile-head-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.head-right-btn {
    display: flex;
    align-items: center;
    height: 1.2rem;
}
.head-right-btn img {
    margin-right: 0.5rem;
    height: 100%;
}
.button {
    width: 100%;
    height: 2.5rem;
    background: #2e7dff;
    color: #fff;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    text-decoration: none;
}
.line {
    width: 100%;
    height: 1px;
    background: #cccccc;
}
.carousel {
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.carousel-item {
    width: 70%;
    margin-right: 1rem;
    flex-shrink: 0;
}
.carousel-item img {
    width: 100%;
}
