header {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    margin: 0 auto;
    background-color: #fffbfa;
    z-index: 10;
}

.header-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.header-box .logo{
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.header-box .logo img:first-child {
    flex: 1;
    margin-right: 8px;
    width: 44px;
    border-radius: 16px;
}

.header-box nav {
    display: flex;
    flex-direction: row-reverse;
    flex: 1;
    margin-right: 24px;
}

.header-box nav a {
    font-size: 16px;
    color: #212121;
    transition: all .2s;
}

.header-box nav a:hover {
    color: #FF8B46;
}

.bg {
    height: 1000px;
    background-color: #fffbfa;
}

.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner .slogan{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -960px;
}

.banner .slogan span {
    font-size: 48px;
    font-weight: 600;
    color: #212121;
}

.banner .slogan .hint {
    margin-top: 8px;
    font-size: 18px;
    color: #212121;
}

.banner .qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
}

.banner .qrcode img {
    width: 180px;
    height: auto;
}

.banner .qrcode .cta {
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding: 0 40px;
    height: 56px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #FF8B46;
    border-radius: 28px;
}

.banner .hero-image {
    position: relative;
    margin-top: 32px;

}

.banner .hero-image .float {
    position: absolute;
    width: 300px;
    filter:drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.banner .hero-image .float-1 {
    top: 110px;
    left: -220px;
}

.banner .hero-image .float-2 {
    top: 260px;
    left: -250px;
}

.banner .hero-image .float-3 {
    top: 410px;
    left: -140px;
}

.banner .hero-image .float-4 {
    top: 150px;
    left: 250px;
}

.banner .hero-image .float-5 {
    top: 330px;
    left: 220px;
}

.banner .hero-image .phone {
    width: 320px;
    height: auto;
    filter:drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
    /*gap: 96px;*/
}

.content .content-cell {
    display: flex;
    margin-bottom: 96px;
    /*gap: 56px;*/
}

.content .content-cell .text {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin-bottom: 40px;
}

.content .content-cell .text:nth-child(2n+1) {
    margin-right: 56px;
}

.content .content-cell .text:nth-child(2n) {
    margin-left: 56px;
}

.content .content-cell .text .title {
    position: relative;
    margin-top: 32px;
    font-size: 28px;
    font-weight: 500;
    color: #212121;
    width: fit-content;
}

.content .content-cell .text .title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 16px;
    width: 100%;
    background-color: #ffcb90;
    z-index: -1;
}

.content .content-cell .text .body {
    margin-top: 12px;
    font-size: 18px;
    color: #888888;
}

.content .content-cell .thumb-image {
    overflow: hidden;
    border-radius: 20px;
}

.content .content-cell .thumb-image img {
    width: 500px;
    height: 400px;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 160px 0 40px 0;
    width: 100%;
    font-size: 14px;
    color: #888888;
}

footer .copyright {
    margin-bottom: 8px;
}

footer a {
    color: #888888;
    transition: all .2s;
}

footer a:hover {
    color: #FF8B46;
}