/* header 头部 start ***************************************************/
.header_mobile,
.header {
    background: linear-gradient(rgba(200, 200, 200, 0.1), rgba(0, 0, 0, 0.3));
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 5px 0 5px 0;
}

.system_name {
    font-size: 30px;
    color: whitesmoke;
    font-weight: bold;
    font-family: 华文楷体 sans-serif;
    text-shadow: 0 0 10px #000;
    letter-spacing: 10px;
}

.img_logo {
    /*margin-left: 40px;*/
    height: 50px;
    width: 50px;
}

.img_logo img {
    width: 100%;
}

.admin_info {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 10px 10px 10px #999999;
    background: radial-gradient(whitesmoke, silver);
    /*background: conic-gradient(blue,red,green,yellow);*/
    border-radius: 10px;
    padding: 5px 10px 5px 10px;
    z-index: 20;
    transform-origin: left;
    -webkit-transform-origin: left;
    transform: rotateZ(15deg);
    -webkit-transform: rotateZ(15deg); /* Safari and Chrome */
}

.admin_info p {
    color: black;
    margin: 0;
    font-size: 14px;
}

.header_mobile .system_name {
    font-size: 17px;
    letter-spacing: 4px;
}

.header_mobile .menu_icon {
    font-size: 14px;
    padding: 2px 6px;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 4px gray;
    color: white;
    border-radius: 3px;
}

.header_mobile .admin_info {
    box-shadow: 2px 2px 2px #2a2a2a;
    padding: 3px;
    /*margin-top: 3px;*/
}

.header_mobile .admin_info p {
    font-size: 10px;
}

/* header 头部 end ***************************************************/
