.navArea {
    width: 100%;
    height: 41px;
    border-bottom: 1px solid #1e9fffdb;
    box-sizing: border-box;
}

.navAreaUl {
    width: 1100px;
    height: 40px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    border-bottom: 1px solid #1e9fffdb;
}

    .navAreaUl li {
        width: 142px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        position: relative;
        box-sizing: border-box;
        margin-right: 43px;
    }

        .navAreaUl li:nth-last-child(1) {
            margin-right: 0;
        }

    .navAreaUl .navAreaLi {
        transition: all .3s;
    }
        .navAreaUl .navAreaLi:hover p a {
            color: #ffffff
        }
        .navAreaUl .navAreaLi .navChildMenu {
            width: 142px;
            position: absolute;
            top: 43px;
            z-index: 10;
            left: 0;
            box-sizing: border-box;
            display: none;
        }

            .navAreaUl .navAreaLi .navChildMenu .navChildMenuList {
                width: 100%;
                height: 43px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                font-family: '宋体';
                color: #333333;
                border-left: 1px solid #D0CECE;
                border-right: 1px solid #D0CECE;
                cursor: pointer;
                box-sizing: border-box;
                background: #FFFFFF;
            }

                .navAreaUl .navAreaLi .navChildMenu .navChildMenuList:nth-last-child(1) {
                    border-bottom: 1px solid #D0CECE;
                }

                .navAreaUl .navAreaLi .navChildMenu .navChildMenuList:nth-child(1) {
                    background: #1e9fffdb;
                    border-top: 1px solid #D0CECE;
                    border-left: 1px solid #1e9fffdb;
                    border-right: 1px solid #1e9fffdb;
                }
             .navAreaUl .navAreaLi .navChildMenu .navChildMenuList:hover{
    background: #1e9fffdb;
    color: white;
    border-left: 1px solid #1e9fffdb;
    border-right: 1px solid #1e9fffdb;
} 
                    .navAreaUl .navAreaLi .navChildMenu .navChildMenuList:nth-child(1) a {
                        color: #ffffff
                    }
                .navAreaUl .navAreaLi .navChildMenu .navChildMenuList:hover a {
                    background: #1e9fffdb;
                    color: #ffffff
                }
            .navAreaUl .navAreaLi .navChildMenu .navChildMenuListActive {
                background: #1e9fffdb;
                border-left: 1px solid #1e9fffdb;
                border-right: 1px solid #1e9fffdb;
                color: white;
                transition: all .3s;
            }

        .navAreaUl .navAreaLi p {
            font-size: 18px;
            font-family: '宋体';
            color: #333333;
        }
    /* .navAreaUl .navAreaLi:hover{
    background: #1e9fffdb;

}
.navAreaUl .navAreaLi:hover p{
    color: #FEFEFE;
} */
    .navAreaUl .navAreaLiActive {
        background: #1e9fffdb;
        transition: all .3s;
    }

        .navAreaUl .navAreaLiActive p {
            color: #FEFEFE;
        }

        .navAreaUl .navAreaLiActive .navChildMenu {
            display: block;
        }

    .navAreaUl .navAreaLiActiveOnlyStatic {
        background: #1e9fffdb;
    }

        .navAreaUl .navAreaLiActiveOnlyStatic p {
            color: #FEFEFE;
        }

            .navAreaUl .navAreaLiActiveOnlyStatic p a {
                color: #FEFEFE;
            }

                .navAreaUl .navAreaLiActiveOnlyStatic p a:hover {
                    color: #FEFEFE;
                }
