/*
    卡片
*/

@import "../../less/config/main";
.shadow(@x-offset, @y-offset, @weight, @color){
    box-shadow: @x-offset @y-offset @weight @color;
    -ms-box-shadow: @x-offset @y-offset @weight @color;
    /* IE 9 */
    -moz-box-shadow: @x-offset @y-offset @weight @color;
    /* Firefox */
    -webkit-box-shadow: @x-offset @y-offset @weight @color;
    /* Safari 和 Chrome */
    -o-box-shadow: @x-offset @y-offset @weight @color;
    /* Opera */
}

.cui-cardContainer{
    background-color: @c-common-white;
    padding: 1px;
    border: none;
    border-bottom: 3px solid @c-light-b;
}
