.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


@media screen and (max-width: 767px) {
    .page-head .head-top {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 54px;
        z-index: 101;
        background-color: #ffffff;
        -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
}

.page-head .head-top .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0 40px;
    height: 100%;
    align-items:center;
}

@media screen and (max-width: 1200px) {
    .page-head .head-top .container {
        padding: 24px 15px;
    }
}

@media screen and (max-width: 767px) {
    .page-head .head-top .container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 15px;
    }
}

.page-head .head-top .head-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

    .page-head .head-top .head-left .head-logo a {
        display: block;
    }

    .page-head .head-top .head-left .head-logo img {
        width: 140px;
        height: auto;
    }

        .page-head .head-top .head-left .head-logo img:last-child {
            display: none;
        }

@media screen and (max-width: 1200px) {
    .page-head .head-top .head-left .head-logo img {
        width: 140px;
    }
}

@media screen and (max-width: 991px) {
    .page-head .head-top .head-left .head-logo img {
        width: 120px;
    }
}

@media screen and (max-width: 767px) {
    .page-head .head-top .head-left .head-logo img {
        width: 80px;
    }

        .page-head .head-top .head-left .head-logo img:first-child {
            display: none;
        }

        .page-head .head-top .head-left .head-logo img:last-child {
            display: block;
        }
}

.page-head .head-top .head-left .head-info {
    margin-left: 22px;
    padding-left: 22px;
    border-left: 2px solid #009ad6;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

@media screen and (max-width: 991px) {
    .page-head .head-top .head-left .head-info {
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 767px) {
    .page-head .head-top .head-left .head-info {
        display: none;
    }
}

.page-head .head-top .head-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

    .page-head .head-top .head-time > p {
        font-size: 16px;
    }

    .page-head .head-top .head-time .time-show {
        position: relative;
        padding: 14px 8px 4px;
        margin-left: 12px;
        border: 2px solid #47beed;
        border-radius: 5px;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#009ad6), to(#0a86b6));
        background-image: linear-gradient(#009ad6, #0a86b6);
        font-size: 24px;
        color: #ffffff;
    }

        .page-head .head-top .head-time .time-show::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 100%;
            height: 2px;
            /*background-color: #2faddf;*/
        }

        .page-head .head-top .head-time .time-show strong {
            position: relative;
            font-size: 44px;
        }

@media screen and (max-width: 991px) {
    .page-head .head-top .head-time > p {
        font-size: 14px;
    }

    .page-head .head-top .head-time .time-show {
        font-size: 16px;
    }

        .page-head .head-top .head-time .time-show strong {
            font-size: 32px;
        }
}

@media screen and (max-width: 767px) {
    .page-head .head-top .head-time {
        display: none;
    }
}

.page-head .head-top .head-fold {
    display: none;
}

@media screen and (max-width: 767px) {
    .page-head .head-top .head-fold {
        display: block;
    }
}

.page-head .head-top .head-fold > span {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    background-color: #009ad6;
    -webkit-transition: all .3s;
    transition: all .3s;
}

    .page-head .head-top .head-fold > span + span {
        margin-top: 6px;
    }

.page-head .head-top .head-fold.open > span:first-child {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.page-head .head-top .head-fold.open > span:nth-child(2) {
    opacity: 0;
}

.page-head .head-top .head-fold.open > span:last-child {
    bottom: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
    .page-head .head-nav {
        display: none;
    }
}

.page-head .head-nav .container {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.page-head .head-nav .nav-items {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    background-color: #fff;
    text-align: center;
}

    .page-head .head-nav .nav-items > .nav-item:hover::before {
        opacity: 1;
    }

    .page-head .head-nav .nav-items > .nav-item:hover a {
        background-color: #00ABEB;
        color: #fff;
    }

    .page-head .head-nav .nav-items > .nav-item:hover .nav-sub-items {
        display: block;
    }

    .page-head .head-nav .nav-items > .nav-item::before {
        content: "";
        position: absolute;
        display: block;
        top: -10px;
        width: 100%;
        z-index: -1;
        height: calc(100% + 10px);
        background-color: #00ABEB;
        opacity: 0;
    }

    .page-head .head-nav .nav-items .nav-item {
        position: relative;
    }

        .page-head .head-nav .nav-items .nav-item a {
            display: block;
            min-width: 120px;
            /*width: 140px;*/
            height: 52px;
            /*padding: 0 32px;*/
            font-size: 18px;
            line-height: 52px;
            color: black;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            letter-spacing: 2px;
        }

@media screen and (max-width: 1200px) {
    .page-head .head-nav .nav-items .nav-item a {
        min-width: auto;
        font-size: 14px;
        height: 40px;
        line-height: 40px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 991px) {
    .page-head .head-nav .nav-items .nav-item a {
        padding: 0 10px;
    }
}

.page-head .head-nav .nav-items .nav-sub-items {
    position: absolute;
    display: none;
    border-top: none;
    z-index: 99;
    background-color: #008fc6;
}

    .page-head .head-nav .nav-items .nav-sub-items .nav-item a {
        font-size: 16px;
    }

        .page-head .head-nav .nav-items .nav-sub-items .nav-item a:hover {
            background-color: #47beed;
        }

.page-head .head-nav-mb {
    position: fixed;
    top: 54px;
    width: 100%;
    z-index: 99;
    height: calc(100vh - 54px);
    background-color: #fff;
    display: none;
    overflow-x: hidden;
    overflow-y: scroll;
}

    .page-head .head-nav-mb .nav-items .nav-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        font-size: 14px;
        line-height: 50px;
        color: #000;
        padding: 0 15px;
        border-bottom: 1px solid #eee;
    }

        .page-head .head-nav-mb .nav-items .nav-item > a {
            display: block;
            color: #000;
        }

        .page-head .head-nav-mb .nav-items .nav-item .nav-sub-items {
            display: none;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
        }

    .page-head .head-nav-mb .nav-arrow {
        display: block;
        width: 20px;
        height: 20px;
        background: url(/new_img/arrow.svg) center no-repeat;
        background-size: 20px;
    }

@media screen and (max-width: 767px) {
    .page-main {
        margin-top: 54px;
    }

    .page-fixed {
        display: none;
    }
}

.page-foot {
    background-color: #f2f2f2;
}

    .page-foot .container {
        padding: 82px 0 58px;
    }

@media screen and (max-width: 1200px) {
    .page-foot .container {
        padding: 42px 15px;
    }
}

.page-foot .foot-grids {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .page-foot .foot-grids .foot-grid h3 {
        font-size: 14px;
        line-height: 24px;
        color: #000;
        letter-spacing: 1px;
    }

    .page-foot .foot-grids .foot-grid .foot-links .foot-link a {
        font-size: 14px;
        line-height: 24px;
        color: #7f7e7e;
        -webkit-transition: all ease-out 0.3s;
        transition: all ease-out 0.3s;
    }

        .page-foot .foot-grids .foot-grid .foot-links .foot-link a:hover {
            color: #009ad6;
        }

.page-foot .foot-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 42px;
    border-bottom: 1px solid #ddd;
}

    .page-foot .foot-top .foot-grids {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 138px;
    }

@media screen and (max-width: 1200px) {
    .page-foot .foot-top .foot-grids {
        margin-right: 50px;
    }
}

@media screen and (max-width: 767px) {
    .page-foot .foot-top .foot-grids {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-right: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        .page-foot .foot-top .foot-grids .foot-grid {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            margin-bottom: 20px;
        }
}

.page-foot .foot-top .foot-code {
    text-align: center;
}

    .page-foot .foot-top .foot-code img {
        display: block;
        width: 100px;
        height: 100px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .page-foot .foot-top .foot-code p {
        margin-top: 10px;
    }

.page-foot .foot-center {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

    .page-foot .foot-center .foot-grids {
        padding-right: 134px;
    }

@media screen and (max-width: 767px) {
    .page-foot .foot-center .foot-grids {
        display: block;
        padding-right: 0px;
    }

        .page-foot .foot-center .foot-grids .foot-grid:not(:last-child) {
            margin-bottom: 20px;
        }
}

.page-foot .foot-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 40px;
}

    .page-foot .foot-bottom .foot-grids {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 170px;
    }

@media screen and (max-width: 767px) {
    .page-foot .foot-bottom {
        display: block;
    }

        .page-foot .foot-bottom .foot-grids {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            margin-right: 0;
            display: block;
        }

            .page-foot .foot-bottom .foot-grids .foot-grid:not(:last-child) {
                margin-bottom: 20px;
            }

        .page-foot .foot-bottom .foot-logo {
            margin-top: 20px;
        }
}

.page-fixed {
    position: fixed;
    top: 185px;
    z-index: 999;
    width: 66px;
}

    .page-fixed .fixed-grid {
        width: inherit;
    }

        .page-fixed .fixed-grid .grid-item {
            width: inherit;
            margin-bottom: 2px;
            padding: 16px 8px;
            font-size: 14px;
            text-align: center;
            background: #00ABEB;
            color: #ffffff;
            letter-spacing: 1px;
            cursor: pointer;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

@media screen and (max-width: 1200px) {
    .page-fixed {
        top: 240px;
        right: 15px;
        left: auto !important;
        width: 56px;
    }

        .page-fixed .fixed-grid .grid-item {
            font-size: 12px;
        }

            .page-fixed .fixed-grid .grid-item img {
                width: 50%;
            }
}
