.itdon-notice{
    position: relative;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 25px 5px 20px;
    font-size: 13px;
    text-align: center;
    box-sizing: border-box;
    font-family: sans-serif;
}
.itdon-notice-close{
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    width: 12px;
    height: 12px;
}
.itdon-notice-close::before{
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    transform: translateY(5px) rotate(45deg);
    background-color: #0000009d;
}
.itdon-notice-close::after{
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    transform: translateY(3px) rotate(-45deg);
    background-color: #0000009d;
}
.itdon-notice.hide{
    display: none;
}