.dotcard {
    font-size: 12px;
    position: relative !important;
    text-align: initial;
    border: 1px solid rgba(192, 192, 192, 0.6) !important;
    overflow: hidden;
}

.dotcard,
.dotcard * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
}

/* body下一个要有 position:relative;1像素高度 否则会有抖动*/
.dotcard .dt-clear {
    position: relative;
    clear: both;
}

.dotcard .dt-place {
    margin: 0;
    padding: 0;
    border: 0 !important;
}

.dotcard .dt-space {
    position: relative;
    height: 1px;
}

.dotcard .dt-body {
    font-size: 0 !important;
    overflow: auto;
}


.dotcard .v-line {
    background-color: transparent;
    position: absolute;
    z-index: 120;
    border: dashed 1px #808080;
}

.dotcard .dt-chk {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    opacity: 0.6;
}

.dotcard .dt-checkall {
    font-size: 20px;
    line-height: 20px;
    border: solid 1px #808080;
}

.dotcard .dt-status {
    position: relative;
    font-size: 12px;
    background: rgba(192, 192, 192, 0.5);
    padding: 0px 10px;
    line-height: 30px;
}

.dotcard .dt-status button,
.dotcard .dt-status select {
    text-align: center;
    line-height: initial;
    height: 24px;
    padding: 0 8px;
    border: 1px solid rgba(192, 192, 192, 0.6);
    border-radius: 3px;
}

.dotcard .dt-status .paging-status {
    padding: 0 6px;
}

.dotcard .dt-status .paging-select {
    text-align: left;
    width: 80px;
}

/*css设置点击穿透 影响DIV内input选中及button*/
.dotcard .col-card div-bak {
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    -ms-pointer-events: none;
    -o-pointer-events: none;
    pointer-events: none;
}


.dotcard .dt-sort {
    position: absolute;
    top: 0px;
    left: 2px;
    width: 8px;
    cursor: pointer;
    opacity: 0.7;
    /*
    background-image: url('data:image/gif;base64,R0lGODlhCQAJAIAAAKurq////yH5BAEAAAEALAAAAAAJAAkAAAIQjAOnwIrcDJwrymmxg06qAgA7');
    background-repeat: no-repeat;
    background-position: right center;
    */
}

.dotcard .dt-sort-desc {
    background-image: url('data:image/gif;base64,R0lGODlhCQAJAIAAAP8AAP///yH5BAEAAAEALAAAAAAJAAkAAAIRjIGmgbCXXnsswmaxW5NuUwAAOw==');
    background-repeat: no-repeat;
    background-position: right center;
}

.dotcard .dt-sort-asc {
    background-image: url('data:image/gif;base64,R0lGODlhCQAJAIAAAC65Qv///yH5BAEAAAEALAAAAAAJAAkAAAIQjAOnwIrcDJwr1uSge/ieAgA7');
    background-repeat: no-repeat;
    background-position: right center;
}

.dotcard .shadow-hover:hover {
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .15) !important
}

/* 竖屏 */
@media screen and (orientation: portrait) and (max-width: 720px) {
    /*对应样式*/
}

/* 横屏 */
@media screen and (orientation: landscape) {
    /*对应样式*/
}

@media screen and (max-width: 576px) {
    .dotcard.dt-media .dt-chk {
        position: relative;
        left: 0;
    }

    .dotcard.dt-media .dt-place {
        height: 0;
    }
}