/******************************************************************************************************************************************************************************************************/
.navItem>div {
    top: 100%;
    position: absolute;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
/* left: -0.16rem !important; */
    /* right: -0.16rem !important; */
    width: 100%;}

.navItem::before {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    width: 0rem;
    height: .03rem;
    background: #e1b658;
    content: "";
    transition: width 0.5s ease 0s;}

.navItem::after {
    position: absolute;
    bottom: 0rem;
    right: 50%;
    width: 0rem;
    height: .03rem;
    background: #e1b658;
    content: "";
    transition: width 0.5s ease 0s;}

.navItem:hover::before,
.navItem:hover::after {
    width: 50%;}

.navItem:hover div {
    opacity: 1;
    visibility: inherit;}

.navItem>div>ul {
    background: rgb(255, 255, 255);}

.navItem>div>ul>li {
    height: .45rem;
    line-height: .45rem;
    text-align: center;
    border-bottom: .01rem solid rgb(243, 240, 240);}

.navItem>div>ul>li>a {
    font-size: .16rem;
    color: rgb(34, 34, 34);}

.navItem>div>ul>li:last-child {
    border-bottom: 0rem;}

.navItem:nth-last-child(2)>div {}

.navItem>div>ul>li:hover a {
    color: #275ebc;}

