*{
    -webkit-touch-callout:none;
}

.ui-drag-box,.drag-cell,.box-space,.drag-box {
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
.ui-drag-box{
    position: relative;
	display:flex;
    flex-flow: row wrap;
    background: #fff;
    margin-top: 14px;
	.drag-cell{
		width:25%;
        padding: .06rem 0;
        .box-space {
            width: 70px;
            height: 70px;
            margin: 0 auto;
        }
        .drag-box {
            box-shadow: '0 2px 6px 0 rgba(0,0,0,0)';
        }
        .drag-box,.drag-add {
            background: #fff;
            position: absolute;
            width: 70px;
            height: 70px;
            padding: 0.06rem;
            box-sizing: border-box;
            border: 1px solid rgba(230, 231, 232, 0.5);
        }
        .drag-add {
            margin: 0 auto;
            position: relative;
            span{
                width:.02rem;
                height:.24rem;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%,-50%);
                background-color: #e6eaed;
            }
            .y{
              transform: translate(-50%, -50%) rotate(90deg);
            }
        }
	}
	.drag-icon{
		margin:0 auto;
	    display: flex;
    	justify-content: center;
   		align-items: center;
	}

	.drag-icon-text{
        font-size:12px;
        color:#6b7175;
        line-height:14px;
        text-align:center;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    white-space: nowrap;
        background:transparent;
        margin-top: 0.04rem;
	}
}
