用   /* 定义圆角 @radius 圆角大小 */ .round(@radius:5px){     border-radius:@radius;     -webkit-border-radius: @radius;     -moz-border-radius: @radius; } .round7{    .round(7px); }       定义盒子阴影及调用   /* 盒子阴影 @right_left 右边阴影为正数 左边负数 @bottom_top 下边阴影为正数 上边负数 @box  阴影大小 @box_color 阴影颜色 */ .boxshadow(@right_left:5px,@bottom_top:5px,@box :5px,@box_color:#b6ebf7){     box-shadow:@arguments;    -moz-box-shadow:@arguments;    -webkit-box-shadow:@arguments; } .boxshadow7{   .boxshadow(7px,7px,7px,black); }     定义文字阴影及调用   /* 文字阴影,可以指定多组阴影 @right_left1 右边阴影为正数 左边负数 @bottom_top1 下边阴影为正数 上边负数 @text  阴影大小 @text_color 阴影颜色 */ .textshadow(@right_left1:5px,@bottom_top1:5px,@text :5px,@tetx_color:#b6ebf7){     text-shadow:@arguments; } .r_b_textshadow{   .textshadow(); }     定义透明度及调用   /* 透明度 或渐变 1为不透明 0透明 css3 rgba(110, 142, 185, .4)!important;前三个是颜色值 后一个是透明值 用来兼容所有浏览器 */ .rgba(@rgba_a:.4,@rgb_b:40){     filter: alpha(opacity=@rgb_b);      -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=@{rgb_b})";      opacity:@rgb_a;     } .rgba4{     .rgba(); }       定义列布局及调用   /* 列布局 @c1 列数 @c2 列宽 @c3 列间距 @c4 边框样式 */ .column(@c1:3,@c2:310px,@c3:10px,@c4:1px solid #ccc){     column-count:@c1;     column-width:@c2;     column-gap:@c3;     column-rule:@c4;     -webkit-column-count:@c1;     -webkit-column-width:@c2;   &