﻿* {
    box-sizing: border-box;
    font-size: 14px;
    font-family: "微软雅黑","Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif
}

::before, ::after {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #1e1e1e;
}

    a:hover {
        text-decoration: none;
        cursor: pointer;
    }

input::-ms-clear {
    width: 0;
    height: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.layout {
    width: 1200px;
    margin: 0 auto;
}

.header .flex-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .header .flex-header .logo {
        height: 100px;
    }

    .header .flex-header .flex-right {
        display: flex;
        align-items: center;
    }

        .header .flex-header .flex-right > label {
            color: #196bb4;
        }

        .header .flex-header .flex-right .input-search {
            display: flex;
            width: 143px;
            height: 42px;
            background: rgba(255, 255, 255, 0.55);
            border-radius: 4px;
            border: 1px solid #9dc7dd;
        }

            .header .flex-header .flex-right .input-search > input {
                width: 112px;
                height: 40px;
                background: none;
                border: none;
                font-size: 14px;
                text-indent: 15px;
                outline: none;
            }

            .header .flex-header .flex-right .input-search > button {
                background: url(/img/icon-search.png) center no-repeat;
                border: none;
                outline: none;
                width: 30px;
                height: 40px;
                cursor: pointer;
                padding-right: 5px;
            }

.header .menus {
    position: relative;
    background-color: #2083b7;
}

    .header .menus .menu-list {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .header .menus .menu-list .menu {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 60px;
            font-size: 16px;
            color: #FFFFFF;
            position: relative;
        }

            .header .menus .menu-list .menu:hover > a {
                text-decoration: underline;
                color: #eee;
            }

            .header .menus .menu-list .menu > a {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 55px;
                font-size: 16px;
                color: #FFFFFF;
            }

            .header .menus .menu-list .menu .nav-drawer {
                position: absolute;
                left: 0;
                right: 0;
                top: 100%;
                background: #FFFFFF;
                box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
                z-index: 10;
                display: none;
                transition: all .8s;
            }

            .header .menus .menu-list .menu:hover .nav-drawer {
                display: block;
            }

    .header .menus .nav-drawer .nav-list {
        background-color: #539ec9;
    }

        .header .menus .nav-drawer .nav-list > li {
            display: flex;
            flex-direction: column;
            border-top: 1px solid #fff;
        }

            .header .menus .nav-drawer .nav-list > li > a {
                font-size: 16px;
                color: #fff;
                height: 40px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .header .menus .nav-drawer .nav-list > li > a:hover {
                    background: #2083b7;
                    text-decoration: none;
                }

.header-simple .main {
    background-image: url(/img/simple-bg.png);
    background-size: cover;
}

.header-simple .flex-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .header-simple .flex-header .logo {
        height: 80px;
        width: 80px;
    }

    .header-simple .flex-header .flex-right {
        display: flex;
        align-items: center;
    }

        .header-simple .flex-header .flex-right > label {
            color: #196bb4;
        }

        .header-simple .flex-header .flex-right .input-search {
            display: flex;
            width: 225px;
            height: 42px;
            background: rgba(255, 255, 255, 0.55);
            border-radius: 4px;
            border: 1px solid #9dc7dd;
        }

            .header-simple .flex-header .flex-right .input-search > input {
                flex: 1;
                height: 40px;
                background: none;
                border: none;
                font-size: 14px;
                text-indent: 15px;
                outline: none;
            }

            .header-simple .flex-header .flex-right .input-search > button {
                background: url(/img/icon-search.png) center no-repeat;
                border: none;
                outline: none;
                width: 30px;
                height: 40px;
                cursor: pointer;
                padding-right: 5px;
            }

.header-simple .menus {
    position: relative;
    padding: 20px 0;
    border-top: 1px solid #dfdfdf;
}

    .header-simple .menus .menu-list {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .header-simple .menus .menu-list .menu {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #000;
            position: relative;
            height: 39px;
            background-image: url(/img/menu-bg.png);
            background-position: center top;
            background-repeat: no-repeat;
        }

            .header-simple .menus .menu-list .menu > a {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 39px;
                font-size: 16px;
                color: #000;
            }

                .header-simple .menus .menu-list .menu > a:hover {
                    color: #2083b7;
                }

            .header-simple .menus .menu-list .menu .nav-drawer {
                position: absolute;
                left: 0;
                right: 0;
                top: 100%;
                z-index: 10;
                display: none;
                transition: all .8s;
            }

            .header-simple .menus .menu-list .menu:hover .nav-drawer {
                display: block;
            }

    .header-simple .menus .nav-drawer .nav-list {
        background-color: #fff;
    }

        .header-simple .menus .nav-drawer .nav-list > li {
            display: flex;
            flex-direction: column;
        }

            .header-simple .menus .nav-drawer .nav-list > li > a {
                font-size: 14px;
                color: #000;
                height: 39px;
                display: flex;
                justify-content: center;
                align-items: center;
                background-image: url(/img/menu-bg.png);
                background-position: center top;
                background-repeat: no-repeat;
            }

                .header-simple .menus .nav-drawer .nav-list > li > a:hover {
                    color: #2083b7;
                }

.container {
    min-height: calc(100vh - 368px);
}

.footer {
    background-color: #2083b7;
    height: 180px;
    padding: 30px 0;
}

    .footer .flex-group {
        display: flex;
        justify-content: space-between;
        padding: 0 100px;
    }

        .footer .flex-group .group {
            color: #fff;
        }

            .footer .flex-group .group .item {
                height: 35px;
                line-height: 35px;
            }

                .footer .flex-group .group .item.beian {
                    margin-top: 35px;
                }

            .footer .flex-group .group .beian > a {
                color: #fff;
            }

            .footer .flex-group .group .flex-qrcode {
                display: flex;
                align-items: center;
            }

                .footer .flex-group .group .flex-qrcode .name {
                    font-size: 18px;
                    font-weight: bold;
                    margin-bottom: 10px;
                    text-align: center;
                }

                .footer .flex-group .group .flex-qrcode .tips {
                    text-align: center;
                }

                .footer .flex-group .group .flex-qrcode .qrcode {
                    margin-left: 15px;
                }

                    .footer .flex-group .group .flex-qrcode .qrcode > img {
                        width: 120px;
                        height: 120px;
                    }

.breadcrumb {
    display: flex;
    align-items: center;
}

    .breadcrumb::before {
        content: "";
        width: 22px;
        height: 22px;
        background-image: url(/img/location.png);
        background-size: cover;
        margin-right: 5px;
    }

    .breadcrumb > li {
        font-size: 16px;
        display: flex;
        align-items: center;
    }

        .breadcrumb > li > a {
            font-size: 16px;
        }

            .breadcrumb > li > a:hover {
                color: #2083b7;
            }

        .breadcrumb > li + li::before {
            content: "";
            width: 16px;
            height: 16px;
            background-image: url(/img/right-arrow.png);
            background-size: cover;
            margin: 0 8px;
        }

.pager {
    display: flex;
}

    .pager li {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 3px;
    }

        .pager li a {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            height: 34px;
            padding: 0 18px;
            border-radius: 2px;
            font-size: 14px;
            transition: all .2s ease-in;
            border: 1px solid #eaeaea;
            background-color: #eaeaea;
            color: #4a4a4a;
        }

        .pager li.active a,
        .pager li:hover a {
            background-color: #005389;
            color: #ffffff;
        }

.footer-simple {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid #667389;
}

    .footer-simple .logo {
        display: flex;
        justify-content: center;
    }

        .footer-simple .logo a {
            display: block;
        }

            .footer-simple .logo a img {
                width: 200px;
                height: auto;
            }

    .footer-simple .host {
        text-align: center;
        font-size: 14px;
        color: #171717;
        line-height: 23px;
        margin-top: 15px;
    }

    .footer-simple .icp {
        text-align: center;
        font-size: 14px;
        color: #171717;
        line-height: 23px;
    }
