@charset "UTF-8";

html {
    width: 100%;
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    transition: all .5s;
}

ul > li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

img {
    vertical-align: middle;
}

.page{
    .header-container {
        /* 屏幕 > 1100px 显示 */
        .header {
            height: 115px;
            display: flex;
            justify-content: center;
            .container {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin: 0 4vw;
                .logo {
                    width: 420px;
                    /*margin-left: 30px;*/
                    .img {
                        width: 100%;
                    }
                }
                .menu {
                    /*margin-right: 30px;*/
                    display: flex;
                    align-items: center;
                    cursor: pointer;
                    .menu-item {
                        line-height: 115px;
                        padding: 0 20px;
                        position: relative;
                        a {
                            font-size: 16px;
                        }
                        a::before {
                            display: none;
                            content: '';
                            width: 100%;
                            height: 3px;
                            background-color: #136BED;
                            position: absolute;
                            left: 0;
                            bottom: 2px;
                        }
                    }
                    .menu-active a{ color: #136BED; font-weight: bold; }
                    .menu-active a::before { display: inline-block; }
                    .menu-item:hover{
                        a{
                            color: #136BED;
                            font-weight: bold;
                        }
                        a::before {
                            display: inline-block;
                        }
                    }
                }
            }
        }
                    /* 700 < 屏幕 < 1099 显示 */
        .header1 {
            height: 115px;
            display: flex;
            justify-content: center;
            .container {
                width: 100%;
                margin: 0 48px;
                .logo {
                    width: 100%;
                    margin-top: 16px;
                    display: flex;
                    justify-content: center;
                    .img {
                        width: 330px;
                    }
                }
                .menu {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: space-around;
                    cursor: pointer;
                    .menu-item {
                        flex: 1;
                        line-height: 64px;
                        display: flex;
                        justify-content: center;
                        position: relative;
                        a {
                            font-size: 16px;
                        }
                        a::before {
                            display: none;
                            content: '';
                            width: 100%;
                            height: 3px;
                            background-color: #136BED;
                            position: absolute;
                            left: 0;
                            bottom: 2px;
                        }
                        .menu-active {
                            color: #136BED;
                            font-weight: bold;
                        }
                        .menu-active::before {
                            display: inline-block;
                        }
                    }
.menu-active a { color: #136BED; font-weight: bold; }
.menu-active a::before { display: inline-block; }
                    .menu-item:hover{
                        a{
                            color: #136BED;
                            font-weight: bold;
                        }
                        a::before {
                            display: inline-block;
                        }
                    }
                }
            }
        }
                /* 屏幕 < 699 显示 */
        .header2 {
            height: 60px;
            .container {
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin: 0 20px;
                .logo {
                    width: 20rem;
                    .img {
                        width: 100%;
                    }
                }
                .menu {
                    width: 30px;
                    height: 30px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    .img {
                        width: 70%;
                    }
                }
                .menu-list-container {
                    position: fixed;
                    left: 700px;
                    top: 0;
                    width: 100vw;
                    height: 100vh;
                    background-color: rgba(0,0,0,0);
                    z-index: 99999;
                    transition: all .5s;
                    .menu-list {
                        width: 40vw;
                        height: 100%;
                        background-color: #136BED;
                        position: absolute;
                        right: 0;
                        top: 0;
                        padding: 20px 0;
                        .menu {
                            width: 100%;
                            display: flex;
                            flex-wrap: wrap;
                            .menu-item {
                                width: 100%;
                                padding: 0 20px;
                                a {
                                    line-height: 40px;
                                    font-size: 14px;
                                    color: white;
                                    display: block;
                                    width: 100%;
                                    height: 100%;
                                }
                            }
.menu-active a { color: #136BED; font-weight: bold; }
.menu-active a::before { display: inline-block; }
                            .menu-item:hover {
                                background-color: rgb(58, 138, 255);
                            }
                            .menu-active {
                                background-color: rgb(58, 138, 255);
                            }
                        }
                    }
                }
            }
        }
    }
    .footer-container {
        background-color: #F2F4F7;
        .footer1 {
            width: 80vw;
            height: 270px;
            padding-top: 56px;
            margin: auto;
            .container {
                width: 100%;
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                .left {
                    .phone {
                        display: flex;
                        align-items: center;
                        margin-bottom: 16px;
                        .phone-img {
                            width: 60px;
                            height: 60px;
                            margin-right: 16px;
                            .img {
                                width: 100%;
                                height: 100%;
                            }
                        }
                        .phone-box {
                            .fwrx {
                                font-size: 26px;
                                color: #2D344D;
                                font-weight: bold;
                            }
                            .number {
                                font-size: 26px;
                                font-weight: bold;
                                color: #2D344D;
                            }
                        }
                    }
                    .text {
                        font-size: 14px;
                        color: #000000;
                        line-height: 24px;
                    }
                }
                .right {
                    background-color: white;
                }
            }
            .copyright{
                text-align: center;
            }
        }
        .footer2 {
            width: 90vw;
            padding-top: 5vw;
            margin: auto;
            padding-bottom: 5vw;
            .container {
                width: 100%;
                display: flex;
                flex-direction: column;
                .left {
                    margin-bottom: 2rem;
                    .phone {
                        display: flex;
                        align-items: center;
                        margin-bottom: 2rem;
                        .phone-img {
                            width: 4rem;
                            height: 4rem;
                            margin-right: 1rem;
                            .img {
                                width: 100%;
                                height: 100%;
                            }
                        }
                        .phone-box {
                            .fwrx {
                                font-size: 1.8rem;
                                color: #2D344D;
                                font-weight: bold;
                            }
                            .number {
                                font-size: 1.6rem;
                                font-weight: bold;
                                color: #2D344D;
                            }
                        }
                    }
                    .text {
                        font-size: 1rem;
                        color: #000000;
                        line-height: 1.6rem;
                    }
                }
                .right {
                    width: 100%;
                    height: 160px;
                    margin-bottom: 5vw;
                    text-align:center;
                    .img {
                    }
                }
            }
            .copyright{text-align:center}
        }
    }
}

@media (max-width: 375px) {  html {font-size: 10px;}  }
@media (min-width: 375px) and (max-width: 400px) {  html {font-size: 11px;}  }
@media (min-width: 400px) and (max-width: 500px) {  html {font-size: 12px;}  }
@media (min-width: 500px) and (max-width: 600px) {  html {font-size: 13px;}  }
@media (min-width: 600px) and (max-width: 700px) {  html {font-size: 14px;}  }
@media (min-width: 700px) and (max-width: 800px) {  html {font-size: 15px;}  }
@media (min-width: 800px) and (max-width: 900px) {  html {font-size: 16px;}  }
@media (min-width: 900px) and (max-width: 1000px) {  html {font-size: 18px;}  }
@media (min-width: 1000px) and (max-width: 1100px) {  html {font-size: 20px;}  }
@media (min-width: 1100px) and (max-width: 1200px) { html {font-size: 22px;}  }
@media (min-width: 1200px) and (max-width: 1300px) {  html {font-size: 24px;}  }
@media (min-width: 1300px) and (max-width: 1400px) {  html {font-size: 28px;}  }
@media (min-width: 1400px) and (max-width: 1500px) {  html {font-size: 32px;}  }
@media (min-width: 1500px) and (max-width: 1600px) {  html {font-size: 36px;}  }
@media (min-width: 1600px) and (max-width: 1700px) {  html {font-size: 40px;}  }
@media (min-width: 1700px) and (max-width: 1800px) {  html {font-size: 42px;}  }
@media (min-width: 1810px) {  html {font-size: 44px;}  }