/* 头部 */
.t-active{
    top: 0 !important;
    background-color: #fff;
    box-shadow: 1px 1px 10px #000
}
.pc-nav{
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.pc-nav .area{
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc-nav .fat{
    width: 44.48%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc-nav .icolist{
    width: 10.38%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc-nav .icolist img{
    cursor: pointer;
}
.pc-nav .fat>li{
    padding: 10px 0;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.pc-nav .fat>li::after{
    display: block;
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    background-color: #0b73b9;
    transform: translateX(-50%);
    transition: all .3s linear;
}
.pc-nav .fat>li:hover::after{
    width: 100%;
}
.nav-active::after{
    width: 100% !important;
}
.pc-nav .erji{
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 194px;
    background-color: #ffffff;
	opacity: 0.9;
}
.pc-nav .erji>li{
    /*height: 0;*/
    transition: all .3s;
    color: transparent;
    padding: 0 33px;
}
.pc-nav .fat>li .erji>li{
    height: 45px;
    display: flex;
    align-items: center;
    color: #333333;
    border-bottom: 1px solid #94b4bd;
    font-size: 14px;
    white-space:nowrap;
    position: relative;
}
.pc-nav .erji li:hover{
    color: #2175b7 !important;
}
.pc-nav .sunzi{
    position: absolute;
    left: 100%;
    top: 0;
    padding: unset;
    background-color: #ffffff;
	opacity: 0.9;
}
.pc-nav .sunzi>li{
    height: 45px;
    transition: all .3s;
    color: transparent;
    padding-left: 21px;
    padding-right: 21px;
    display: none;
}
.pc-nav .erji li:hover .sunzi li{
    display: flex;
    align-items: center;
    color: #333333;
    border-bottom: 1px solid #94b4bd;
}
/* 头部结束 */