@import url("global.css")
@import url("common.css")

.dialog, .pop {
    color: $color;
    font-size: $size;
}

.show {
    font-color: $color;
}
$xxxx=12px
.warning {
    font-size: $xxxx;
}
$nima=7deg
.movie {
    // nihao
    /**/
    transform:rotate($nima, 9deg);
    -ms-transform:rotate(7deg, 9deg);     /* IE 9 */
    -moz-transform:rotate(7deg, 9deg);    /* Firefox */
}
@define-mixin test $size: 12, $color:blue {
    color: $color;
    font-size: $size;
}

@define-mixin test2 $size: 12, $color:blue {
    .dialog2 {
        color: $color;
        font-size: $size;
    }
}
.mixin {
    @test $size blue
}
@test2