﻿.DragFrame {
    box-sizing: border-box;
    cursor: pointer;
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    user-select: none;
}

.DragItemMoving {
    box-sizing: border-box;
    display: block;
    position: absolute;
    z-index: 1;
}

.DragItemSelected {
    opacity: 0.4 !important;
}

/*.DragItemMoveOver {*/
.DragItem:hover {
    -webkit-transition: all 0.4s linear !important;
    -moz-transition: all 0.4s linear !important;
    -o-transition: all 0.4s linear !important;
    -ms-transition: all 0.4s linear !important;
    transition: all 0.4s linear !important;
    opacity: 0.9 !important;
}

.DragItem {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    opacity: 1;
    text-align: center;
}
