| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | @import './static/font-icon.wxss';page {    /* 颜色 */    --primary: #095DE0;    --assist: #3874F6;    --success: #52C41A;    --warning: #FA8C16;    --error: #FF3B30;    --bgColor: #085CDF;    /* 字体 */    --FCN: PingFangSC-Regular-, PingFangSC-Regular;    --FEN: Arial-Regular, Arial;    --Fnumber: HelveticaNeue-, HelveticaNeue;    /* 基础默认样式 */    background-color: #F4F5F7;    /* 适配苹果手机底部安全距离 */    padding-bottom: 0;    padding-bottom: constant(safe-area-inset-bottom);    padding-bottom: env(safe-area-inset-bottom);}navigator {    background: none;}/* 提交按钮 */.submit {    width: 350rpx;    height: 60rpx !important;    background: #3874F6;    border-radius: 60rpx !important;    font-size: 28rpx;    font-family: PingFang SC-Regular, PingFang SC;    color: #FFFFFF;}/* 文本行数限制 */.line-1 {    overflow: hidden;    white-space: nowrap;    text-overflow: ellipsis;}.line-2 {    -webkit-line-clamp: 2;}.line-2 {    overflow: hidden;    word-break: break-all;    text-overflow: ellipsis;    display: -webkit-box;    -webkit-box-orient: vertical;}.multi-line {    word-break: break-all;    white-space: pre-wrap;}
 |