.header{
    width: 1200px;
    margin: 0 auto;
}
.header .logo{
    /*width: 253px;*/
    width: 1200px;
    height: 56px;
    margin-top: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .logo .logoImg{
    width: 355px;
    display: flex;
    align-items: center;
    float: left;
    margin-top: 10px
}
.header .logo .login{
    display: flex;
    align-items: center;
    float: right
}
.header .logo .login a{
    width: 80px;
    font-size: 16px;
    color: #2C73FE;
}
.header .logo img{
    width: 100%;
    height: 100%;
}
.header  .success{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
}
.header  .success img{
    width: 26px;
    height: 26px;
}
.header  .name {
    margin: 4px 5px 0 0;
    width: 26px;
    height: 26px;
    display: block;
}
.header .nav{
    width: 100%;
}
.header .nav .nav-ul{
    display: flex;
}
.header .nav .nav-ul .nav-li{
    /*padding: 10px 0px;*/
    /*text-align: center;*/
    /*flex:1;*/
    /*white-space: nowrap;*/
    flex-grow: 1; /* 确保所有li具有相同的宽度 */
    text-align: center; /* 文字居中 */
    padding: 10px; /* 添加一些内边距 */
    box-sizing: border-box; /* 防止边框影响实际宽度 */
}
.header .nav .nav-ul .on{
    border-bottom: 3px solid #2C73FE;
}
.header .nav .nav-ul .on a{
    color: #2C73FE !important;
}
.header .nav .nav-ul .nav-li a{
    font-size: 17px;
    font-weight: 400;
    color: #232323;
  display: inline-block;

}
.droplist {
    background-color: #2C73FE;
    /* box-shadow: #eee; */
    /*border: 1px solid aquamarine;*/
    /* clear: both; */
    position: absolute;
    display: none;
    z-index: 99999999;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-left: -10px;
}
.droplist li{
    height: auto !important;
}
.dropitem a{
    margin-top: 10px !important;
    min-width: 120px;
    color:#fff !important;
}

.dropitem:hover {

    color: white;
}
.navitem:hover .droplist{
    display: block;
}