/*css*/
.p55 .list .submit{
float: left;font-size: 14px;color: #333333;line-height: 30px;font-weight: bold;border: 1px solid #ccc;
padding: 0px 5px;
background: #ccc;
cursor: pointer;
}
.clear:after {
    content: "";
    display: block;
    height: 0;
    *zoom: 1;
    clear: both;
}
/*Æ¯¸¡´°¿ÚCSS*/
#floating-notification, #MoveImagesWindowDiv {
    position: absolute;
    top: 50px;
    left: 50px;
    min-width: 300px;
    max-width: 500px;
    padding: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    text-align: center;
    transition: transform 0.2s ease;
}

#floating-notification:hover,#MoveImagesWindowDiv:hover {
    transform: scale(1.05);
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
}

.close-btn:hover {
    background: rgba(0,0,0,0.4);
}

.notification-content {
    margin: 0;
    font-size: 15px;
}
.notification-image{
    border-radius:15px;
}
.notification-a:hover{
    color:#73d8ff !important;
}