<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
    width: 100%;
    /* overflow: hidden; */
    padding: 0;
    margin: 0;
}

a {
    color: #C2C5CB;
    text-decoration-line: none
}

.nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 80px;
    border: none;
    background-color: #fff;
    left: 0;
    top: 0;
    text-align: center;
    line-height: 80px;
    padding: 0px 10%;
    box-sizing: border-box;
}

.text-center {
    text-align: center;
}

.container {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
}

.titleIcon {
    width: 50px;
    margin-right: 20px;
}

.title {
    font-size: 28px;
    margin-right: 50px;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
}

.tabs {
    /* padding: 0px 50px; */
    color: #807F82;
}

.tabs a {
    color: #807F82;
}

.selectTabs {
    color: #333335;
    font-weight: 600;
    position: relative;
}

.selectTabs::after {
    width: 50%;
    height: 3px;
    background-color: #333335;
    border-radius: 10px;
    content: ' ';
    position: absolute;
    top: 70%;
    left: 25%;
}

.tabs:hover {
    cursor: pointer;
}

.banner {
    background: url('./img/bg.png') no-repeat top left;
    background-size: 100% 100%;
    width: 100%;
    height: 500px;
    margin-top: 80px;
    padding: 50px 20%;
    color: #fff;
    box-sizing: border-box;
}

.bannerTitle {
    font-size: 30px;
}

.bannerText {
    font-size: 45px;
    margin-top: 20px;
}

.imgBox {
    margin-top: 40px;
    text-align: center;
    width: 100px;
}

.imgCode {
    width: 100%;
    background-color: red;
}

.iconBox {
    width: 100%;
    padding: 0px 10%;
    box-sizing: border-box;
}

.iconBox .titleBox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marginBottom30 {
    margin-bottom: 30px;
}

.marginBottom5 {
    margin-bottom: 5px;
}

.marginBottom20 {
    margin-bottom: 20px;
}

.marginTop10 {
    margin-top: 10px;
}

.marginTop30 {
    margin-top: 30px;
}

.marginTop50 {
    margin-top: 50px;
}

.underLine {
    color: #333335;
    font-weight: 600;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

.underLine::after {
    width: 40%;
    height: 3px;
    background-color: #333335;
    border-radius: 10px;
    content: ' ';
    position: absolute;
    top: 120%;
    left: 30%;
}

.columnFlex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 22%;
}

.columnFlexStart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.columnFlexSpace {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.rowFlex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.rowFlexStart {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.rowFlexSpace {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.alignItemsStart {
    align-items: flex-start;
}

.imgIcon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
}

.blueBox {
    background-color: #277CDA;
}

.app-step {
    max-height: 460px;
    overflow: hidden;
}

.padd {
    padding: 0px 10%;
    box-sizing: border-box;
}

.font28 {
    font-size: 28px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.whiteColor {
    color: #fff;
}

.lightBlueColor {
    color: #58A9FA;
}

.aColor {
    color: #2D7DDD;
}

.grayColor {
    color: #B6B3B6;
}

.blackColor {
    color: #302D30;
}

.purColor {
    color: #DCD9DD;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: #64AAFC;
}

.grayDivider {
    width: 100%;
    height: 2px;
    /* background-color: #A9A6AA; */
    border-top: 1px dashed #A9A6AA;
}

.phoneImg {
    width: 200px;
    margin-top: 30px;

}

.blueRound {
    width: 26px;
    height: 26px;
    background-color: #277CDA;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-top: -16px;
    margin-bottom: 20px;
}

.span100 {
    width: 100%;
}

.span40 {
    width: 40%;
}

.span60 {
    width: 59%;
}

.inlineFlex {
    display: inline-flex;
}

.width80 {
    width: 80px;
    height: 80px;
    background-color: red;
}

.height80 {
    height: 80px;
}

.marginLeft20 {
    margin-left: 20px;
}

.lineColor {
    color: #4289DD;
}

.grayBox {
    background-color: #40444C;
    padding: 30px 20% 50px 20%;
    box-sizing: border-box;
    color: #C2C5CB;
}

.font14 {
    font-size: 14px;
}

.borderDown {
    border: 1px solid #C2C5CB;
    padding: 5px 15px;
    border-radius: 10px;
}

.bottom-content {
    justify-content: flex-start;
}</pre></body></html>