*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f6fb;
    display:flex;
    justify-content:center;
}

.app{
    width:100%;
    max-width:390px;
    min-height:100vh;
    background:#f5f6fb;
}

/* TOPBAR */

.topbar{
    height:40px;
    background:#ffffff;
    border-bottom:1px solid #ececec;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.top-title{
    font-size:13px;
    color:#222;
    font-weight:500;
}

/* HOME BUTTON */

.home-btn{
    position:absolute;
    left:12px;
    width:22px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

/* ROOF */

.home-roof{
    position:absolute;
    width:14px;
    height:14px;
    border-top:2.5px solid #444;
    border-left:2.5px solid #444;
    transform:rotate(45deg);
    top:1px;
}

/* BODY */

.home-body{
    position:absolute;
    width:13px;
    height:10px;
    border:2.5px solid #444;
    border-top:none;
    bottom:1px;
    background:#fff;
}

/* LANGUAGE */

.lang{
    position:absolute;
    right:10px;
    display:flex;
    align-items:center;
    gap:4px;
    font-size:12px;
    color:#444;
}

.lang img{
    width:18px;
    height:18px;
    border-radius:50%;
}

/* BANNER */

.banner{
    width:100%;
    height:117px;
    object-fit:cover;
    display:block;
}

/* SECTION TITLE */

.section-title{
    padding:12px 14px 7px;
    font-size:13px;
    color:#444;
    font-weight:500;
}

/* OPTION LIST */

.option-list{
    margin:0 10px;
    background:#ffffff;
    border-radius:4px;
    overflow:hidden;
}

.option{
    min-height:54px;
    display:flex;
    align-items:center;
    padding:0 14px;
    text-decoration:none;
    border-bottom:1px solid #f0f0f0;
    background:#fff;
}

.option:last-child{
    border-bottom:none;
}

/* OPTION ICON */

.option-icon{
    width:34px;
    height:34px;
    object-fit:contain;
    margin-right:14px;
    flex-shrink:0;
}

/* OPTION TEXT */

.option-title{
    flex:1;
    font-size:12px;
    color:#444;
    line-height:1.2;
}

/* ARROW */

.arrow{
    font-size:22px;
    color:#bcbcbc;
    margin-left:10px;
}

/* ONLINE SERVICE ICON */

.online-icon{
    width:34px;
    height:34px;
    margin-right:14px;
    border-radius:50%;
    background:#24c66b;
    position:relative;
    display:inline-block;
    flex-shrink:0;
}

.online-icon:before{
    content:"";
    position:absolute;
    width:14px;
    height:10px;
    left:9px;
    top:12px;
    border:2px solid #fff;
    border-top:none;
    border-radius:0 0 10px 10px;
}

.online-icon:after{
    content:"";
    position:absolute;
    width:18px;
    height:8px;
    left:7px;
    top:8px;
    border-top:2px solid #fff;
    border-radius:50% 50% 0 0;
}

/* KIND TIPS */

.kind-tips{
    margin:14px 12px 10px;
}

.kind-tips h3{
    font-size:13px;
    color:#555;
    margin-bottom:6px;
    font-weight:600;
}

.kind-tips p{
    font-size:10px;
    line-height:1.4;
    color:#7a7a7a;
}

.tip-two{
    margin-top:6px;
}

/* BUTTON */

.progress-btn{
    display:block;
    width:calc(100% - 24px);
    height:44px;
    line-height:44px;
    margin:18px auto 25px;
    background:#061b55;
    color:#ffffff;
    text-decoration:none;
    text-align:center;
    border-radius:24px;
    font-size:14px;
    font-weight:400;
}