123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- /* ==================
- 文本
- ==================== */
- .text-xs {
- font-size: 20upx;
- }
- .text-22 {
- font-size: 22rpx;
- }
- .text-sm {
- font-size: 24upx;
- }
- .text-df {
- font-size: 28upx;
- }
- .text-lg {
- font-size: 32upx;
- }
- .text-xl {
- font-size: 36upx;
- }
- .text-xxl {
- font-size: 44upx;
- }
- .text-xxxl {
- font-size: 52upx;
- }
- .text-sl {
- font-size: 80upx;
- }
- .text-xsl {
- font-size: 120upx;
- }
- .text-Abc {
- text-transform: Capitalize;
- }
- .text-ABC {
- text-transform: Uppercase;
- }
- .text-abc {
- text-transform: Lowercase;
- }
- .text-price::before {
- content: '¥';
- font-size: 80%;
- margin-right: 4upx;
- }
- .text-cut {
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .text-bold {
- font-weight: bold;
- }
- .text-center {
- text-align: center;
- }
- .text-content {
- line-height: 1.6;
- }
- .text-left {
- text-align: left;
- }
- .text-right {
- text-align: right;
- }
- .text-red,
- .line-red,
- .lines-red {
- color: #e54d42;
- }
- .text-orange,
- .line-orange,
- .lines-orange {
- color: #f37b1d;
- }
- .text-yellow,
- .line-yellow,
- .lines-yellow {
- color: #fbbd08;
- }
- .text-olive,
- .line-olive,
- .lines-olive {
- color: #8dc63f;
- }
- .text-green,
- .line-green,
- .lines-green {
- color: #39b54a;
- }
- .text-cyan,
- .line-cyan,
- .lines-cyan {
- color: #1cbbb4;
- }
- .text-blue,
- .line-blue,
- .lines-blue {
- color: #0081ff;
- }
- .text-purple,
- .line-purple,
- .lines-purple {
- color: #6739b6;
- }
- .text-mauve,
- .line-mauve,
- .lines-mauve {
- color: #9c26b0;
- }
- .text-pink,
- .line-pink,
- .lines-pink {
- color: #e03997;
- }
- .text-brown,
- .line-brown,
- .lines-brown {
- color: #a5673f;
- }
- .text-grey,
- .line-grey,
- .lines-grey {
- color: #8799a3;
- }
- .text-gray,
- .line-gray,
- .lines-gray {
- color: #aaaaaa;
- }
- .text-black,
- .line-black,
- .lines-black {
- color: #333333;
- }
- .text-white,
- .line-white,
- .lines-white {
- color: #ffffff;
- }
|