.headerBody {
    width: 100vw;
    background-color: #f6f6f6;
    z-index: 99;
    position: sticky;
    top: 0;
}

.topHeader {
    margin: 0 auto;
    height: 39px;
    width: 1200px;
    justify-content: space-between
}

.topHeader,
.topHeader .welcome {
    display: flex;
    align-items: center
}

.topHeader .welcome {
    font-size: 14px;
    font-weight: 400;
    color: #606775;
    justify-content: flex-start
}

.topHeader .welcome div {
    width: 4px;
    height: 12px;
    background: #54a8ff;
    border-radius: 2px;
    margin-right: 4px
}

.customerService {
    width: 266px;
    height: 34px;
    background: #00afff;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center
}

.customerService img {
    width: 38px;
    height: 36px;
    margin-right: 12px
}

.customerService .phoneNumber {
    font-weight: 600;
    font-size: 16px;
    color: #fff
}

.menuHeader {
    width: 100vw;
    height: 64px;
    background: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center
}

.menuHeader .menuHeaderContent {
    width: 1200px;
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.menuHeader .menuHeaderContent .logo {
    width: 167px;
    height: 32px;
    margin-right: 60px
}

.menuHeader .menuHeaderContent .pageMenu {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.menuHeader .menuHeaderContent .pageMenu .pageItem {
    display: block;
    position: relative;
    margin-right: 48px;
    font-size: 16px;
    line-height: 64px;
    height: 64px;
    font-weight: 400;
    color: #2c3040;
    cursor: pointer
}

.menuHeader .menuHeaderContent .pageMenu .active {
    font-weight: 600
}

.menuHeader .menuHeaderContent .pageMenu .active:after {
    position: absolute;
    content: "";
    height: 5px;
    width: 100%;
    background: #ff9700;
    border-radius: 3px;
    left: 0;
    bottom: 0
}

.footer {
    padding-bottom: 60px;
}
    .footerMenu {
        width: 100%;
        height: 285px;
        background: #2d2f37;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        .footerMenuContent {
            width: 1200px;

            .titleText {
                color: #fff
            }

            .contentText,
            .titleText {
                font-weight: 400;
                font-size: 14px
            }

            .contentText {
                color: rgba(255,255,255,0.6);
                cursor: pointer;
                &:hover {
                    opacity: 0.7;
                }
            }

            .baseLink {
                margin-top: 48px;
                margin-bottom: 24px;
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;

                .contract {
                    margin-right: 75px;

                    .xmwLogo {
                        width: 103px;
                        height: 32px;
                        margin-bottom: 41px
                    }
                }

                .links {
                    display: flex;

                    .linksItem {
                        margin-right: 60px
                    }

                    a {
                        display: block;
                        margin-bottom: 8px
                    }

                    .titleText {
                        margin-bottom: 20px
                    }
                }

                .qrCodes .qrCode {
                    margin-top: 20px;
                    width: 75px;
                    height: 75px
                }
            }

            .line {
                width: 100%;
                height: 1px;
                background: rgba(96, 103, 117, .35);
                margin-bottom: 21px
            }

            .friendLink {
                width: 100%;
                display: flex;
                justify-content: flex-start;
                align-items: center;

                a {
                    display: block;
                    margin-left: 32px
                }
            }
        }
    }

    .footerCompanyInfo {
        width: 100%;
        height: 60px;
        /*background: #22242a;*/
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 400;
        font-size: 12px;
        color: #999;
        margin-bottom: 72px
    }
    
    .footerOrder {
        position: fixed;
        z-index: 99;
        bottom: 0;
        width:100vw;
        height: 72px;
        background-image: url(/style/img/footerOrderBg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;

        .footerOrderContent {
            width: 1200px;
            height: 72px;
            margin: 0 auto;
            position: relative;
            display: flex;
            justify-content: flex-start;
            align-items: center;

            .nameInput,
            .phoneInput {
                width: 240px;
                border: none;
                height: 48px;
                padding-left: 24px;
                border-radius: 28px;
                box-sizing: border-box;

                &::placeholder {
                    font-weight: 400;
                    font-size: 16px;
                    color: rgba(96, 103, 117, 0.3) 
                }
            }

            .nameInput {
                width: 164px;
                margin-right: 16px
            }

            .footerOrderLogo {
                position: absolute;
                bottom: 0;
                width: 156px;
                height: 148px
            }

            .footerOrderTip {
                margin-left: 148px;
                margin-right: 88px;
                font-size: 24px
            }

            .btn,
            .footerOrderTip {
                font-weight: 600;
                color: #fff
            }

            .btn {
                display: inline-block;
                width: 188px;
                height: 48px;
                background: linear-gradient(133deg, #ffaf00, #ff5b00);
                border-radius: 28px;
                text-align: center;
                font-size: 20px;
                line-height: 48px;
                margin-left: 16px;
                cursor: pointer
            }
        }
    }
}

* {
    scroll-behavior: smooth
}

body {
    font-family: HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin: 0;
    padding: 0
}

a {
    text-decoration: none;
    color: #108db8;
    font-weight: 700
}

img {
    max-width: 100%
}

nav {
    width: 100%;
    background: #108db8
}

nav a {
    color: #fff;
    padding: 1rem;
    display: inline-block
}

.main {
    width: 100%;
    background-color: #f6f6f6
}

.aboutContent {
    background-color: #fff;

    .banner {
        width: 100vw;
        height: 416px;
        background-image: url(/style/img/about/banner.png);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover
    }

    .aboutUs {
        width: 100vw;
        height: 694px;
        position: relative;

        .bg {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 760px;
            height: 694px
        }

        .aboutUsContent {
            width: 1200px;
            margin: 0 auto;

            .title {
                width: 1200px;
                text-align: center;
                font-weight: 600;
                font-size: 36px;
                color: #2c3040;
                margin-bottom: 4px
            }

            .detail {
                display: flex;
                justify-content: space-between;
                align-items: center;
                position: absolute;
                .mainImg {
                    width: 442px;
                    height: 442px;
                    margin-right: 31px
                }

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

                    .intro {
                        font-weight: 400;
                        font-size: 14px;
                        color: #2c3040;
                        line-height: 20px;
                        letter-spacing: 1px;
                        margin-bottom: 28px
                    }

                    .companyImgs {
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        margin-bottom: 40px;

                        img {
                            width: 148px;
                            height: 104px;
                            margin-right: 32px
                        }
                    }

                    .detailItem {
                        display: flex;
                        align-items: center;
                        justify-content: flex-start;
                        font-weight: 400;
                        font-size: 14px;
                        color: #606775;
                        margin-bottom: 12px;

                        img {
                            width: 16px;
                            height: 16px;
                            margin-right: 8px
                        }
                    }
                }
            }
        }
    }

    .aboutUs,
    .ad {
        box-sizing: border-box;
        padding-top: 72px
    }

    .ad {
        width: 100%;
        height: 640px;
        background-image: url(/style/img/about/banner2.png);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;

        .adContent {
            width: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 auto;

            .title {
                font-weight: 600;
                font-size: 36px;
                color: #fff;
                margin-bottom: 146px
            }

            .ads {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: flex-start;

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

                    img {
                        margin-bottom: 25px
                    }

                    .text1 {
                        font-size: 24px;
                        margin-bottom: 12px
                    }

                    .text1,
                    .text2 {
                        font-weight: 600;
                        color: #fff
                    }

                    .text2 {
                        font-size: 16px;
                        margin-bottom: 40px
                    }

                    .text3 {
                        font-weight: 600;
                        font-size: 14px;
                        color: #fff;
                        line-height: 20px;
                        letter-spacing: 1px;
                        width: 225px
                    }
                }
            }
        }
    }

    .values {
        width: 1200px;
        margin: 0 auto;
        height: 640px;
        padding-top: 72px;
        box-sizing: border-box;

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

            .title {
                font-weight: 600;
                font-size: 36px;
                color: #2c3040;
                margin-bottom: 16px
            }

            .subTitle {
                font-weight: 400;
                font-size: 16px;
                color: #8b8c9c;
                margin-bottom: 72px
            }

            .centerImg {
                width: 1200px;
                height: 247px;
                background-image: url(/style/img/about/values.png);
                background-position: 50%;
                background-repeat: no-repeat;
                background-size: cover;
                position: relative;

                .text1 {
                    font-size: 24px;
                    color: #2c3040
                }

                .text1,
                .text2 {
                    font-weight: 400;
                    position: absolute
                }

                .text2 {
                    font-size: 16px;
                    color: #8b8c9c;
                    text-align: center
                }
            }
        }
    }

    .honor {
        width: 100%;
        height: 822px;
        background: #f6f6f6;
        padding-top: 72px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        .title {
            font-weight: 600;
            font-size: 36px;
            color: #2c3040;
            margin-bottom: 72px
        }

        .list {
            display: flex;
            width: 1200px;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;

            .item {
                width: 220px;
                margin-bottom: 48px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;

                img {
                    width: 220px;
                    height: 164px;
                    margin-bottom: 20px
                }

                .time {
                    font-weight: 400;
                    font-size: 16px;
                    color: #8b8c9c;
                    margin-bottom: 8px
                }

                .name {
                    width: 182px;
                    text-align: center;
                    font-weight: 600;
                    font-size: 14px;
                    color: #2c3040;
                    line-height: 20px
                }
            }
        }
    }

    .environment {
        width: 1200px;
        height: 813px;
        margin: 0 auto;
        background: #fff;
        padding-top: 72px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        .title {
            font-weight: 600;
            font-size: 36px;
            color: #2c3040;
            margin-bottom: 72px
        }

        .imgs {
            width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;

            img {
                display: block
            }
        }
    }

    .history {
        width: 100%;
        height: 604px;
        padding-top: 72px;
        box-sizing: border-box;
        background-image: url(/style/img/about/bg2.png);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        .title {
            font-weight: 600;
            font-size: 36px;
            color: #2c3040;
            margin-bottom: 86px
        }

        .historyContainer {
            width: 1200px;
            height: 334px;
            display: flex;
            overflow: hidden;
            background: url(/style/img/about/line.png) no-repeat;
            background-size: 100%;
            background-position: top 90px center;
            position: relative;
            -webkit-mask-image: linear-gradient(90deg, rgba(247, 250, 254, 0), #f7fafe, rgba(247, 250, 254, 0));
            mask-image: linear-gradient(90deg, rgba(247, 250, 254, 0), #f7fafe, rgba(247, 250, 254, 0));

            .progressContainer {
                position: relative;
                padding: 0 20px;
                display: flex;
                animation: loop 40s linear infinite normal;

                &:hover {
                    animation-play-state: paused
                }

                .item {
                    width: 344px;
                    text-align: left;
                    padding-top: 128px;
                    flex-shrink: 0;
                    margin-right: 70px;

                    .year-marked {
                        color: #fff;
                        background: url(/style/img/about/blue-earth.png) no-repeat 50%;
                        background-size: cover;
                        width: 68px;
                        height: 68px;
                        position: absolute;
                        top: -10px;
                        text-align: center;
                        line-height: 68px;
                        font-size: 24px
                    }

                    .orange-point {
                        width: 20px;
                        position: absolute;
                        top: 67px
                    }

                    .event-point {
                        margin-bottom: 24px;
                        position: relative;
                        font-size: 14px;
                        font-weight: 400;
                        color: #2c3040;
                        line-height: 22px;

                        &:before {
                            position: absolute;
                            display: block;
                            content: "";
                            width: 8px;
                            height: 8px;
                            background: #007aff;
                            border-radius: 100%;
                            left: -16px;
                            top: 7px
                        }
                    }
                }
            }
        }
    }
}

@keyframes loop {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-6210px)
    }
}