@import './reset.css';
.main {
  width: 100%;
  height: 100%;
}
.main-container {
    max-width: 767px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}
.main-bg {
    background-image: url(../images/background.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .main-bg {
        padding: 0;
        height: 100vh;
    }
}
.main-img {
    width: 110%;
    object-fit: contain;
    margin-bottom: 10px;
}
.main-title {
    width: 100%;
    margin-bottom: 40px;
}
.main-block {
    padding: 0 40px;
    box-sizing: border-box;
}
.main-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-flex {
    display: flex;
    align-items: center;
}
.main-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.main-icon-ms {
    width: 35px;
    height: 35px;
    margin-right: 15px;
}
.main-txt {
    font-size: 16px;
    font-weight: 700;
}
.main-txt > a {
    color: #000000;
}
.main-btn {
    width: 70px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
