| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- :root {
- --default-matchLogo-url: ;
- --default-matchBanner-url: ;
- }
- .body {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .body-radius {
- border-radius: 50rpx;
- overflow: hidden;
- /* 确保边框圆角不会溢出 */
- }
- .uni-row {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .uni-column {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .uni-jct {
- justify-content: flex-start;
- }
- .uni-jcc {
- justify-content: center;
- }
- .uni-jce {
- justify-content: flex-end;
- }
- .uni-jcsa {
- justify-content: space-around;
- }
- .uni-jcsb {
- justify-content: space-between;
- }
- .uni-jcse {
- justify-content: space-evenly;
- }
- .uni-ais {
- align-items: flex-start;
- }
- .uni-aie {
- align-items: flex-end;
- }
- .uni-aibl {
- align-items: baseline;
- }
- .uni-hidden {
- visibility: hidden;
- }
- .uni-nowrap {
- white-space: nowrap;
- }
- .uni-ovf-hidden {
- overflow: hidden;
- }
- .uni-ovf-ellipsis {
- text-overflow: ellipsis;
- }
|