| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**
- * 汉藏双语与藏文专项(与 ruoyi-ui-app 一致,行情页 text-body / text-title 依赖)
- */
- .lang-zh {
- font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
- letter-spacing: 0;
- line-height: 1.5;
- }
- .lang-bo {
- font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
- letter-spacing: 2rpx;
- line-height: 1.7;
- }
- .lang-bo .text-body {
- font-size: 26rpx;
- line-height: 1.7;
- letter-spacing: 2rpx;
- word-break: break-word;
- overflow-wrap: anywhere;
- white-space: normal;
- }
- .lang-zh .text-body {
- font-size: 30rpx;
- line-height: 1.5;
- word-break: break-word;
- overflow-wrap: anywhere;
- white-space: normal;
- }
- .lang-bo .text-title {
- font-size: 32rpx;
- line-height: 1.7;
- letter-spacing: 2rpx;
- word-break: break-word;
- overflow-wrap: anywhere;
- }
- .lang-zh .text-title {
- font-size: 36rpx;
- line-height: 1.5;
- word-break: break-word;
- overflow-wrap: anywhere;
- }
|