.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: 310px;
        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 {
                    color: #2196F3;
                }
            }

            .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: 30px
                    }
                }

                .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: #2d2f37;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 400;
        font-size: 13px;
        color: #b5b6b6;
        margin-bottom: 72px;
        text-align: center;
            line-height: 20px;
                padding-bottom: 20px;
    }

    .footerOrder {
        position: fixed;
        bottom: 0;
        width: 100%;
        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
}

.indexContent {
    width: 100vw;
    background: none;

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

        .ch {
            font-weight: 600;
            font-size: 36px;
            color: #2c3040;

            .blue {
                color: #00afff
            }
        }

        .en {
            font-weight: 600;
            font-size: 28px;
            color: #606775;
            position: absolute;
            opacity: .1;
            left: 0;
            bottom: 0
        }

        .more {
            cursor: pointer;
            right: 0
        }

        .intro,
        .more {
            position: absolute;
            font-weight: 400;
            font-size: 16px;
            color: #8b8c9c
        }



 .more a{
	font-size: 16px;
	color: #8b8c9c;           
	font-weight: 400;
}
 .more a:hover{
	font-size: 16px;
	color: #00afff;           
	font-weight: 400;
}
        .intro {
            bottom: -26px
        }
    }
}

.indexContent .noBackground {
    width: 1200px;
    margin: 0 auto
}

.indexContent .topIndexContent {
    margin-top: 32px;
    margin-bottom: 64px;
    height: 376px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}


.indexContent .topIndexContent .menuContent {
    width: 223px;
    height: 376px;
    box-sizing: border-box;
    background: #00affe;
    border-radius: 4px;
    padding-top: 28px
}

.indexContent .topIndexContent .menuContent .menuContentItem {
    position: relative;
    background: none;
    width: 100%;
    box-sizing: border-box;
    height: 46px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px
}

.indexContent .topIndexContent .menuContent .menuContentItem a {
    font-weight: 400;
    font-size: 16px;
    color: #fff
}

.indexContent .topIndexContent .menuContent .menuContentItem:hover {
    background-color: #fff
}

.indexContent .topIndexContent .menuContent .menuContentItem:hover a {
    color: #00afff
}

.indexContent .topIndexContent .menuContent .menuContentItem:hover img {
    fill: #00afff
}

.indexContent .topIndexContent .menuContent .menuContentItem:hover a:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 46px;
    background: #ff9700;
    left: 0;
    top: 0
}

.indexContent .topIndexContent .bannerContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 376px
}

.indexContent .topIndexContent .bannerContent .bannerImg {
    width: 692px;
    height: 316px;
    border-radius: 4px;
    /*border: 1px solid red*/
    cursor: pointer;
}

.indexContent .topIndexContent .bannerContent .bannerItems {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    .bannerItem {
        width: 132px;
        height: 49px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-top: 11px;

        .bannerItemBg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%
        }

        .bannerItemContent {
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            padding-top: 11px;
            width: 100%;
            height: 49px;
            cursor: pointer;

            .bannerItemIcon {
                height: 36px;
                width: 36px;
                margin-right: 4px
            }

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

.indexContent .topIndexContent .matchContent {
    height: 376px;

    .matchContentTime {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        box-sizing: border-box;
        padding: 16px;
        width: 261px;
        height: 108px;
        background: linear-gradient(#80ddff, #02acfd);
        border-radius: 4px 4px 0 0;

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

        .matchContentTimeInfo {
            width: 229px;
            height: 44px;
            background-color: #fff;
            border-radius: 4px;
            border: 1px solid #00afff;
            padding: 10px 17px 10px 12px;
            box-sizing: border-box;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            font-weight: 500;
            font-size: 14px;
            font-family: PingFangSC, PingFang SC;
            line-height: 22px;
            color: #2c3040;

            img {
                width: 24px;
                height: 24px;
                margin-right: 12px
            }
        }
    }

    .matchContentItems {
        padding: 16px 17px 16px 16px;
        height: 268px;
        width: 100%;
        box-sizing: border-box;
        background: #fff;
        border-radius: 0 0 4px 4px;
        border: 1px solid #ededed;
        border-top: none;
        display: grid;
        grid-template-columns: repeat(2, 110px);
        grid-row-gap: 10px;
        grid-column-gap: 8px;

        .matchContentItem {
            width: 110px;
            height: 72px;
            padding: 5px 11px;
            box-sizing: border-box;
            background: #dde2f5;
            border-radius: 4px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;

            img {
                width: 44px;
                height: 63px;
                margin-right: 12px
            }

            div {
                text-align: center;
                font-weight: 600;
                font-size: 16px;
                color: #2c3040
            }
        }
    }
}

.indexContent .topIndexContent .centerContent {
    margin: 0 12px;
    width: 692px
}

.indexContent .topIndexContent .matchContent {
    width: 261px
}

.indexContent .todayRecommend {
    width: 1200px;
    margin: 0 auto 64px;

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

        .card {
            width: 264px;
            height: 164px;
            position: relative;
            cursor: pointer;

            .cardBg {
                width: 100%;
                position: absolute;
                top: 0;
                left: 0
            }

            .title {
                left: 24px;
                top: 48px;
                font-weight: 400;
                font-size: 16px
            }

            .subTitle,
            .title {
                position: absolute;
                color: #fff
            }

            .subTitle {
                left: 38px;
                top: 78px;
                font-weight: 600;
                font-size: 24px;

                &:before {
                    content: "";
                    width: 6px;
                    height: 24px;
                    background: #ffd300;
                    border-radius: 3px;
                    top: 5px;
                    left: -14px
                }
            }
        }
    }
}

.indexContent .matchList {
    width: 1200px;
    margin: 0 auto 40px;

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

        .card {
            width: 280px;
            height: 245px;
            background: #fff;
            border-radius: 16px;

            img {
                width: 100%;
                /*height: 140px;*/
                 height: 166px;
                border-radius: 8px 8px 0 0;
            }

            .info {
                padding: 16px;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #2c3040;
                cursor: pointer;
            }
        }
    }
}

.indexContent .noiAdvantages {
    width: 1200px;
    margin: 0 auto 72px;

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

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

            .card {
                width: 280px;
                height: 180px;
                background: #fff;
                border-radius: 16px;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0 20px;
                box-sizing: border-box;
                margin-bottom: 16px;

                &:nth-child(n+4) {
                    margin-bottom: 0
                }

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

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

                    .detail {
                        font-weight: 400;
                        font-size: 12px;
                        color: #606775;
                        line-height: 20px;
                    }
                }
            }
        }

        .campList {
            width: 310px;
            height: 376px;
            background: #fff;
            border-radius: 16px;
            padding: 16px 20px 24px;
            box-sizing: border-box;

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

                img {
                    width: 24px;
                    height: 28px;
                    margin-left: 4px;
                    margin-right: 12px
                }

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

            .campContent {
                width: 270px;
                height: 230px;
                margin-bottom: 18px;

                .swiper-pagination-bullet-active {
                    background-color: #FFFFFF !important;
                }

                .camp {
                    width: 270px;
                    height: 230px;

                    img {
                        border-radius: 4px;
                    }

                    .name {
                        width: 100%;
                        height: 40px;
                        line-height: 40px;
                        text-align: center;
                        font-weight: 400;
                        font-size: 16px;
                        color: #FFFFFF;
                        background: #000000;
                        opacity: 0.6;
                        position: absolute;
                        top: 0;
                    }
                }

                .item {
                    width: 270px;
                    height: 230px
                }
            }

            .campName {
                height: 46px;
                line-height: 46px;
                width: 270px;
                text-align: center;
                margin-bottom: 18px;
                background: #f3f6f7;
                border-radius: 0 0 4px 4px;
                font-weight: 400;
                font-size: 16px;
                color: #2c3040
            }

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

                .btn {
                    width: 130px;
                    height: 48px;
                    line-height: 48px;
                    display: inline-block;
                    background: #ff5b00;
                    border-radius: 4px;
                    font-weight: 600;
                    font-size: 16px;
                    color: #fff;
                    text-align: center;
                    cursor: pointer
                }
            }
        }
    }
}

.indexContent .courseSystem {
    width: 100vw;
    height: 820px;
    background: #fff;

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

        .courseSystemImg {
            position: relative;

            img {
                width: 100%
            }

            div {
                position: absolute;
                font-weight: 600;
                font-size: 16px;
                color: #2c3040
            }
        }
    }
}

.indexContent .teachers {
    width: 100vw;
    height: 615px;
    background-image: url(/style/img/index/teacherBg.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;

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

        .teachersContentDetail {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;

            .teacherDetail {
                display: flex;
                flex-direction: column-reverse;
                align-items: flex-start;
                justify-content: flex-start;

                .currentTeacherContainer {
                    height: 318px;
                    width: 100%;

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

                        .detail {
                            display: flex;
                            flex-direction: column;
                            margin-right: 23px;
                            width: 426px;

                            .name {
                                font-weight: 600;
                                font-size: 56px;
                                color: #fff;
                                margin-bottom: 40px;

                                span {
                                    font-weight: 600;
                                    font-size: 36px;
                                    color: #fff;
                                    opacity: .28
                                }
                            }

                            .intro {
                                font-weight: 400;
                                font-size: 14px;
                                color: #fff;
                                line-height: 20px
                            }
                        }

                        img {
                            width: 312px;
                            height: 288px
                        }
                    }
                }

                .teacherList {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;

                    &:hover {
                        &+.currentTeacherContainer {
                            visibility: hidden
                        }
                    }

                    .sImg {
                        position: relative;
                        padding-right: 16px;

                        &:last-child {
                            margin-right: 0
                        }

                        .pic {
                            width: 120px;
                            height: 88px;
                            cursor: pointer;

                            &:hover {
                                box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25)
                            }
                        }

                        .currentTeacherContainer {
                            width: 800px;
                            height: 318px;
                            position: absolute;
                            display: block;
                            visibility: hidden
                        }

                        &:hover {
                            &>.currentTeacherContainer {
                                visibility: visible
                            }
                        }
                    }
                }
            }

            .ad {
                width: 352px;
                height: 405px;
                background: #fff;
                border-radius: 16px;
                box-sizing: border-box;
                padding: 32px 16px 38px 18px;
                position: relative;

                .title {
                    font-weight: 600;
                    font-size: 26px;
                    color: #00afff;
                    margin-bottom: 12px
                }

                .subTitle,
                .title {
                    width: 100%;
                    text-align: center
                }

                .subTitle {
                    font-weight: 400;
                    font-size: 14px;
                    color: #606775;
                    margin-bottom: 28px
                }

                .adItems {
                    display: flex;
                    flex-wrap: wrap;
                    align-items: flex-start;
                    justify-content: space-between;
                    margin-bottom: 25px;

                    .adItem {
                        font-size: 14px;
                        color: #2c3040;
                        margin-bottom: 20px;
                        width: 153px;
                        text-align: left;
                        position: relative;
                        padding-left: 5px;

                        .dot {
                            width: 12px;
                            height: 12px;
                            margin-right: 3px
                        }
                    }
                }

                .contactMe {
                    width: 288px;
                    height: 56px;
                    background: linear-gradient(180deg, #2abfff, #56a7ff);
                    border-radius: 4px;
                    font-weight: 600;
                    font-size: 16px;
                    color: #fff;
                    text-align: center;
                    line-height: 56px;
                    cursor: pointer;
                }

                .logo {
                    position: absolute;
                    width: 100px;
                    height: 124px;
                    right: 10px;
                    bottom: 40px
                }
            }
        }
    }
}

.indexContent .classCircle {
    width: 1200px;
    height: 866px;
    margin: 0 auto;

    .bg {
        display: block;
        width: 1140px;
        height: 464px;
        margin: 114px auto
    }
}

.indexContent .courseDesign {
    width: 100vw;
    height: 867px;
    background-image: url(/style/img/index/courseDesignBg.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;

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

        .centerImg {
            display: block;
            margin: 71px 0 104px;
            width: 1200px;
            height: 538px
        }
    }
}

.indexContent .campEnvironment {
    width: 100vw;

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

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

            .campItem {
                width: 220px;
                height: 214px;
                background: #fff;
                border-radius: 16px;
                margin-bottom: 32px;

                &:hover {
                    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25)
                }

                img {
                    width: 100%;
                    height: 160px;
                    display: block;
                    border-radius: 16px 16px 0 0;
                }

                .campTitle {
                    margin: 16px 0 0 16px;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 22px;
                    color: #2c3040
                }
            }
        }
    }
}

.indexContent .acgo {
    width: 100vw;

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

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

            .matchItem {
                width: 584px;
                height: 240px;
                box-sizing: border-box;
                padding: 32px 24px 24px;
                background: linear-gradient(180deg, rgba(42, 191, 255, .15), rgba(86, 167, 255, 0)), #fff;
                border-radius: 12px;
                margin-bottom: 24px;

                &:hover {
                    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25)
                }

                .matchInfo {
                    display: flex;
                    justify-content: flex-start;
                    align-items: flex-start;

                    .matchImg {
                        width: 184px;
                        height: 184px;
                        margin-right: 24px;
                        border-radius: 4px;
                    }

                    .matchInfoDetail {
                        .title {
                            margin-bottom: 16px;

                            .h {
                                font-weight: 600;
                                font-size: 16px;
                                color: #2c3040
                            }

                            .tip {
                                margin-left: 8px;
                                display: inline-block;
                                height: 20px;
                                width: 52px;
                                background: #ff4a54;
                                border-radius: 2px;
                                font-weight: 400;
                                font-size: 12px;
                                color: #fff;
                                text-align: center;
                                line-height: 20px
                            }
                        }

                        .during,
                        .host,
                        .time {
                            line-height: 20px;
                            color: #606775;
                            margin-bottom: 8px
                        }

                        .btn,
                        .during,
                        .host,
                        .time {
                            font-weight: 400;
                            font-size: 14px
                        }

                        .btn {
                            text-decoration: none;
                            display: inline-block;
                            width: 90px;
                            height: 36px;
                            background: linear-gradient(180deg, #2abfff, #56a7ff);
                            border-radius: 4px;
                            cursor: pointer;
                            color: #fff;
                            line-height: 36px;
                            text-align: center;
                            margin-top: 24px
                        }
                    }
                }
            }
        }
    }
}

.indexContent>.info {
    width: 100vw;
    margin-bottom: 60px;

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

        .infos {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;

            .infoDetail {
                box-sizing: border-box;
                padding: 20px;
                width: 640px;
                height: 460px;
                background: #fff;
                border-radius: 16px;

                .infoImg {
                    width: 600px;
                    height: 324px;
                    background: #d8d8d8;
                    border-radius: 12px;
                    margin-bottom: 20px
                }

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

                .content {
                    font-weight: 400;
                    font-size: 14px;
                    color: #606775;
                    display: -webkit-box;
                    line-height: 20px;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    overflow: hidden;
                    text-overflow: ellipsis
                }
            }

            .infoList {
                width: 536px;
                height: 460px;
                box-sizing: border-box;
                padding: 16px 32px;
                background: #fff;
                border-radius: 16px;

                .infoItem {
                    width: 100%;
                    height: 54px;
                    border-bottom: 1px solid #ededed;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

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

                    .title {
                        font-weight: 400;
                        font-size: 16px;
                        color: #2c3040;
                        width: 352px;
                        cursor: pointer;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;

                        &:hover {
                            color: #00afff
                        }
                    }

                    .time {
                        font-weight: 400;
                        font-size: 16px;
                        color: #8b8c9c
                    }
                }
            }
        }
    }
}
.footerCompanyInfo a{
  color: #b5b6b6;
}
.footerCompanyInfo a:hover{
  color: #2196F3;
}
.friendLink a{
    color: #a9aaad;
    font-size: 14px;
}