You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
2.3 KiB
136 lines
2.3 KiB
.height100{
|
|
height: 100%;
|
|
}
|
|
.width25{
|
|
width: 25%;
|
|
}
|
|
.width30{
|
|
width: 30%;
|
|
}
|
|
.width45{
|
|
width: 45%;
|
|
}
|
|
.width46{
|
|
width: 46%;
|
|
}
|
|
.width47{
|
|
width: 47%;
|
|
}
|
|
.width48{
|
|
width: 48%;
|
|
}
|
|
.width49{
|
|
width: 49%;
|
|
}
|
|
.width50{
|
|
width: 50%;
|
|
}
|
|
.width80{
|
|
width: 80%;
|
|
}
|
|
.width90{
|
|
width: 90%;
|
|
}
|
|
.width100{
|
|
width: 100%;
|
|
}
|
|
|
|
.test{ border: 3rpx solid red}
|
|
.test-red{ border: 3rpx solid red}
|
|
.test-blue{ border: 3rpx solid blue}
|
|
.test-green{ border: 3rpx solid green}
|
|
.test-white{ border: 3rpx solid white}
|
|
.test-box{ box-sizing: border-box; border: 3rpx solid red}
|
|
.test-box-red{ box-sizing: border-box; border: 3rpx solid red}
|
|
.test-box-blue{ box-sizing: border-box; border: 3rpx solid blue}
|
|
.test-box-green{ box-sizing: border-box; border: 3rpx solid green}
|
|
.test-box-white{ box-sizing: border-box; border: 3rpx solid white}
|
|
|
|
.float{ float: left; }
|
|
.float-left{ float: left; }
|
|
.float-right{ float: right; }
|
|
|
|
// 允许文本复制
|
|
.nine-user-select {
|
|
cursor: auto;
|
|
-webkit-user-select: text;
|
|
user-select: text;
|
|
}
|
|
|
|
.display-flex-row{
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.display-flex-column{
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.display-flex-column-center{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
.display-flex-row-between{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.display-flex-row-center{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.display-flex-row-around{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
.display-flex-column-between{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.display-flex-column-around{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
.justify-content-center{
|
|
justify-content: center
|
|
}
|
|
.flex1{
|
|
flex: 1
|
|
}
|
|
|
|
|
|
.text-nowrap{
|
|
white-space:nowrap;
|
|
}
|
|
.text-ellipsis{
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
// 放大缩小比例
|
|
.transform-scale05{
|
|
transform: scale(0.5);
|
|
}
|
|
.transform-scale06{
|
|
transform: scale(0.6);
|
|
}
|
|
.transform-scale07{
|
|
transform: scale(0.7);
|
|
}
|
|
.transform-scale08{
|
|
transform: scale(0.8);
|
|
}
|
|
.transform-scale09{
|
|
transform: scale(0.9);
|
|
}
|