* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

:root {
    --zhu-color: #002D79;
}

body {
    font-size: 16px;
    font-family: 'Microsoft YaHei';
    min-width: 1310px;
}

a {
    text-decoration: none;
    color: #333;
    transition: all ease 0.4s;
}

    a:hover {
        color: var(--zhu-color);
    }

.wl {
    width: 1280px;
    margin: 0 auto;
}

.page-header {
    background: #002D79 url(../imgs/bg-top.png) no-repeat center top;
    width: 100%;
    border-top: 12px solid #0C2566;
}

    .page-header .content {
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
 .page-header .content .logo1{
     margin-left:15px;
     margin-top:8px
 }

    .page-header .search .link {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 15px;
        opacity: 0.7;
    }

        .page-header .search .link a {
            color: #fff;
            margin-left: 25px;
            display: flex;
            align-items: center;
        }

            .page-header .search .link a img {
                margin-right: 5px;
            }

    .page-header .search form {
        background: #ffffff90;
        height: 36px;
        border-radius: 4px;
        display: flex;
        width: 270px;
    }

    .page-header .search input {
        background-color: transparent;
        border: 0;
        height: 100%;
        padding: 0 15px;
        outline: none;
        font-size: 14px;
        color: #fff;
        flex: 1;
    }

        .page-header .search input::placeholder {
            color: #fff;
        }

    .page-header .search button {
        font-size: 0;
        outline: none;
        border: 0;
        background: url(../imgs/btn-ss.png) no-repeat center;
        height: 100%;
        width: 40px;
    }

.nav {
    background: #fff;
    height: 50px;
}

    .nav ul {
        display: flex;
        line-height: 50px;
        justify-content: center;
        font-size: 18px;
    }

        .nav ul li {
            position: relative;
            font-weight: bold;
            flex: AUTO;
            text-align: center;
        }

            .nav ul li > a {
                display: block;
            }

            .nav ul li:hover > a, .nav ul li.on > a {
                background: #EA9312;
                color: #fff;
            }

            .nav ul li:after {
                content: "";
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                height: 24px;
                width: 1px;
                background: #013793;
            }

            .nav ul li:last-child::after {
                display: none;
            }


            .nav ul li .sub {
                position: absolute;
                top: 100%;
                background: rgb(255, 255, 255);
                width: 100%;
                left: 50%;
                z-index: 10000;
                transform: translateX(-50%) scaleY(0);
                visibility: hidden;
                opacity: 0;
                transition: all 0.5s ease 0s;
                transform-origin: center top;
                /* box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px; /* border-radius: 0px 0px 0.08rem 0.08rem; */ */
            }

                .nav ul li .sub::after {
                    content: "";
                    height: 3px;
                    width: 100%;
                    position: absolute;
                    left: 0px;
                    top: 0px;
                    background: var(--zhu-color);
                }

                .nav ul li .sub .box {
                    padding: 15px 0px;
                    text-align: center;
                }

                .nav ul li .sub a {
                    padding: 8px 30px;
                    line-height: 35px;
                    transition: all 0.6s ease 0s;
                    font-size: 16px;
                    color: rgb(51, 51, 51);
                    text-align: center;
                    white-space: nowrap;
                    min-width: 160px;
                    display: block;
                }

                    .nav ul li .sub a:hover {
                        color: var(--zhu-color);
                        background: #e5e5e5;
                    }

            .nav ul li:hover .sub {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) scaleY(1);
            }

.page-content {
    background: #fff;
}

.page-footer {
    background: var(--zhu-color) url(../imgs/bg-foot.png) no-repeat center top;
    padding-top: 45px;
}

    .page-footer .content {
        display: flex;
        color: #fff;
        justify-content: space-between;
    }
.page-footer .content .text .logo{
    display:flex;
    align-items:center;
}
        .page-footer .content .text .logo1 {
            margin-top:8px;
            margin-left:15px;
        }

        .page-footer .content .text p {
            padding-bottom: 10px;
            display: flex;
            align-items: center;
        }

            .page-footer .content .text p img {
                margin-right: 10px;
                width: 18px;
                height: 18px;
                object-fit: contain;
            }

        .page-footer .content .text .qit {
            display: flex;
            margin-top: 15px;
            margin-bottom: 15px;
        }

            .page-footer .content .text .qit .item {
                margin-right: 15px;
                position: relative;
            }

                .page-footer .content .text .qit .item .img {
                    position: absolute;
                    bottom: 60px;
                    background: #fff;
                    color: #333;
                    padding: 10px;
                    border-radius: 10px;
                    left: 50%;
                    transform: translateX(-50%);
                    transition: all 0.3s;
                    z-index: 99;
                    background: #fff;
                    visibility: hidden;
                    opacity: 0;
                }

                    .page-footer .content .text .qit .item .img img {
                        width: 120px;
                        height: 120px;
                    }

                .page-footer .content .text .qit .item:hover .img {
                    opacity: 1;
                    bottom: 80px;
                    visibility: visible;
                }

        .page-footer .content .link {
            width: 490px;
        }

            .page-footer .content .link h2 {
                margin-top: 10px;
                font-size: 22px;
                margin-bottom: 20px;
            }

            .page-footer .content .link .bd {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
            }

                .page-footer .content .link .bd a {
                    width: 45%;
                    color: #fff;
                    margin-bottom: 10px;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

    .page-footer .copy {
        text-align: center;
        background: #112662;
        line-height: 60px;
        color: #fff;
        margin-top: 20px;
    }

        .page-footer .copy a {
            color: #fff;
            margin: 0 10px;
        }
