.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 {
    .footerMenu {
        width: 100%;
        height: 355px;
        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: 14px;
        color: #fff;
        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
}

.campsContent {
    width: 100vw;

    .banner {
        background-image: url(/style/img/camps/bannerBg.png);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 174px;
        margin-bottom: 24px;

        .bannerContent {
            width: 1200px;
            height: 174px;
            margin: 0 auto;
            box-sizing: border-box;
            padding-top: 45px;

            .title {
                font-weight: 600;
                font-size: 40px;
                color: #fff
            }

            .subTitle {
                margin-top: 4px;
                font-weight: 400;
                font-size: 14px;
                color: #fff
            }
        }
    }

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

        .citys {
            width: 100%;
            height: 58px;
            background-color: #fff;
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;

            .item {
                width: 240px;
                height: 58px;
                line-height: 58px;
                text-align: center;
                font-weight: 400;
                font-size: 14px;
                color: #606775
            }

            .city {
                position: relative;
                cursor: pointer;

                &:hover {
                    border-bottom: 4px solid #00affe
                }
            }
        }

        .campsInfo {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            .campListContent {
                .campsList {
                    width: 880px;
                    .campItem {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: 880px;
                        height: 208px;
                        padding: 24px;
                        box-sizing: border-box;
                        background-color: #fff;
                        border-radius: 4px;
                        margin-bottom: 24px;
    
                        .campDetail {
                            display: flex;
    
                            .campDetailImg {
                                width: 240px;
                                height: 160px;
                                margin-right: 24px;
                                border-radius: 4px;
                            }
    
                            .campDetailInfo {
                                .title {
                                    font-weight: 600;
                                    font-size: 24px;
                                    color: #2c3040;
                                    cursor: pointer;
                                    margin-bottom: 11px;
    
                                    &:hover {
                                        color: #00affe
                                    }
                                }
    
                                .attention {
                                    display: flex;
                                    justify-content: flex-start;
                                    align-items: center;
                                    margin-bottom: 10px;
    
                                    img {
                                        width: 13px;
                                        height: 11.77px;
                                        margin-right: 2px;
                                    }
    
                                    span {
                                        font-weight: 400;
                                        font-size: 14px;
                                        color: #999;
                                        margin-left: 3px
                                    }
                                }
    
                                .address {
                                    font-weight: 400;
                                    font-size: 14px;
                                    color: #2c3040;
                                    cursor: pointer;
                                    margin-bottom: 20px;
    
                                    &:hover {
                                        color: #00affe
                                    }
                                }
    
                                .line {
                                    width: 421px;
                                    height: 1px;
                                    background-color: #ededed;
                                    margin-bottom: 19px
                                }
    
                                .welfare {
                                    display: flex;
                                    justify-content: flex-start;
                                    align-items: center;
                                    cursor: pointer;
                                    color: #606775;
                                    &:hover {
                                        color: #00affe
                                    }
    
                                    img {
                                        width: 15px;
                                        height: 20px;
                                        margin-right: 4px
                                    }
    
                                    span {
                                        font-weight: 400;
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
    
                        .orderBtn {
                            width: 118px;
                            height: 40px;
                            line-height: 40px;
                            text-align: center;
                            background: #00affe;
                            border-radius: 4px;
                            font-weight: 600;
                            font-size: 18px;
                            color: #fff;
                            cursor: pointer;
                            display: inline-block;
    
                            &:hover {
                                opacity: .7
                            }
                        }
                    }
                }
                .pages {
                    width: 100%;
                    height: 58px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: #FFFFFF;
                    border-radius: 4px;
                    margin-bottom: 60px;
                    .pageItem, .pageNum {
                        cursor: pointer;
                        font-weight: 400;
                        font-size: 14px;
                        margin-right: 16px;
                        color: #666666;
                        &:hover {
                            color: #00AFFE;
                            border-color: #00AFFE;;
                        }
                    }
                    .pageNum {
                        width: 26px;
                        height: 20px;
                        display: block;
                        line-height: 20px;
                        text-align: center;
                        background: #FFFFFF;
                        border-radius: 1px;
                        border: 1px solid #EDEDED;
                        margin-right: 8px;
                        &:last-child {
                            margin-right: 16px;
                        }
                    }
                    .active {
                        border: 1px solid #00AFFE;
                        color: #00AFFE;
                    }
                    
                }
    
            }

           
            .recommend {
                width: 288px;
                height: 730px;
                background-color: #fff;
                border-radius: 4px;

                .header {
                    width: 100%;
                    height: 65px;
                    padding-left: 32px;
                    display: flex;
                    border-bottom: 1px solid #ededed;
                    align-items: center;
                    justify-content: flex-start;
                    box-sizing: border-box;

                    img {
                        width: 15px;
                        height: 20px;
                        margin-right: 3px
                    }

                    span {
                        font-weight: 600;
                        font-size: 18px;
                        color: #2c3040
                    }
                }

                .camps {
                    width: 220px;
                    margin: 0 auto;

                    .camp {
                        height: 214px;
                        width: 100%;
                        box-sizing: border-box;
                        padding: 20px 0;
                        border-bottom: 1px dashed #ededed;

                        &:last-child {
                            border-bottom: none
                        }

                        .campImg {
                            display: block;
                            width: 220px;
                            height: 146px;
                            margin-bottom: 8px;
                            border-radius: 4px;
                        }

                        .campInfo {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;

                            .name {
                                font-weight: 600;
                                font-size: 14px;
                                color: #2c3040
                            }

                            .attention {
                                display: flex;
                                align-items: center;
                                font-weight:400;
                                font-size:12px;
                                color:#999;
                                img {
                                    width: 13px;
                                    height: 12px;
                                    margin-right: 4px;
                                    opacity: 0.6;
                                }

                            }
                        }
                    }
                }
            }
        }
    }
}