.main {
	background-color: #418ffd;
	height: 100vh;
}
.item {
	background: rgba(255, 255, 255, 0.1);
	cursor:pointer;
}
.click-down {
	color: #418ffd;
}
.w-92 {
    width: 92px;
}
.h-92 {
    height: 92px;
}
.mb-24 {
    margin-bottom: 24px;
}
.font-46 {
    font-size: 46px;
}
.mt-56 {
    margin-top: 56px;
}
.w-136 {
    width: 136px;
}
.h-136 {
    height: 136px;
}
.radius-18 {
    border-radius: 18px;
}
.w100 {
    width: 100%;
}
.h100 {
    height: 100%;
}
.w-68 {
    width: 68px;
}
.w-45 {
    width: 45px;
}
.top-0 {
    top: 0;
}
.right-0 {
    right: 0;
}
.font-16 {
    font-size: 16px;
}
.mt-2 {
    margin-top: 2px;
}
.w-336 {
    width: 336px;
}
.h-50 {
    height: 50px;
}
.radius-8 {
    border-radius: 8px;
}
.w-28 {
    width: 28px;
}
.bottom-0 {
    bottom: 0;
}
.left-0 {
    left: 0;
}
.index-10 {
    z-index: 10;
}
.mt-24 {
    margin-top: 24px;
}


/* 移动设备样式 */
@media (max-width: 767px) {
    .qrcode-mobile {
        display: block;
    }
    .qrcode-tablet {
        display: none;
    }
    .qrcode-desktop {
        display: none;
    }
    .title {
        font-size: 26px !important;
    }
    .btn-desktop {
        display: none;
    }
    .btn-mobile {
        display: inline-flex;
    }
}

/* 平板设备样式 */
@media (min-width: 768px) and (max-width: 1024px) {
    .qrcode-tablet {
        display: block;
    }
    .qrcode-mobile {
        display: none;
    }
    .qrcode-desktop {
        display: none;
    }
    .title {
        font-size: 32px !important;
    }
    .btn-desktop {
        display: flex;
    }
    .btn-mobile {
        display: none;
    }
}

/* 桌面设备样式 */
@media (min-width: 1025px) {
    .qrcode-desktop {
        display: block;
    }
    .qrcode-mobile {
        display: none;
    }
    .qrcode-tablet {
        display: none;
    }
    .title {
        font-size: 46px !important;
    }
    .btn-desktop {
        display: flex;
    }
    .btn-mobile {
        display: none;
    }
}