123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- @mixin icon-image($size) {
- min-height: $size;
- min-width: $size;
- height: $size;
- width: $size;
- vertical-align: middle;
- }
- page {
- /* 定义一些主题色及基础样式 */
- font-family: PingFang SC, Arial, Hiragino Sans GB, Microsoft YaHei, sans-serif;
- font-size: 28rpx;
- color: $-color-normal;
- padding-bottom: env(safe-area-inset-bottom);
- background-color: $-color-body;
- }
- .bold {
- font-weight: bold;
- }
- /* 定义字体颜色 */
- .primary {
- color: $-color-primary;
- }
- .black {
- color: $-color-black;
- }
- .white {
- color: $-color-white;
- }
- .normal {
- color: $-color-normal;
- }
- .lighter {
- color: $-color-lighter;
- }
- .muted {
- color: $-color-muted;
- }
- /* 定义背景颜色 */
- .bg-primary {
- background-color: $-color-primary;
- }
- .bg-body {
- background-color: $-color-body;
- }
- .bg-gray {
- background-color: $-color-border;
- }
- /* 定义字体大小 */
- .xxl {
- font-size: 36rpx;
- }
- .xl {
- font-size: 34rpx;
- }
- .lg {
- font-size: 32rpx;
- }
- .md {
- font-size: 30rpx;
- }
- .nr {
- font-size: 28rpx;
- }
- .sm {
- font-size: 26rpx;
- }
- .xs {
- font-size: 24rpx;
- }
- .xxs {
- font-size: 22rpx;
- }
- // 定义内外边距,历遍1-80
- @for $i from 0 through 60 {
- // 只要双数和能被5除尽的数
- @if $i % 2 == 0 or $i % 5 == 0 {
- // 如:m-30
- .m-#{$i} {
- margin: $i + rpx;
- }
- // 如:p-30
- .p-#{$i} {
- padding: $i + rpx;
- }
- @each $short, $long in l left, t top, r right, b bottom {
- //结果如: m-l-30
- // 定义外边距
- .m-#{$short}-#{$i} {
- margin-#{$long}: $i + rpx;
- }
- // 定义内边距
- //结果如: p-l-30
- .p-#{$short}-#{$i} {
- padding-#{$long}: $i + rpx;
- }
- }
- }
- }
- .inline {
- display: inline-block;
- }
- /* 定义常用的弹性布局 */
- .flex {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- }
- .flex-wrap {
- flex-wrap: wrap;
- }
- .flex-nowrap {
- flex-wrap: nowrap;
- }
- .col-baseline {
- align-items: baseline;
- }
- .col-center {
- align-items: center;
- }
- .col-top {
- align-items: flex-start;
- }
- .col-bottom {
- align-items: flex-end;
- }
- .col-stretch {
- align-items: stretch;
- }
- .row-center {
- justify-content: center;
- }
- .row-left {
- justify-content: flex-start;
- }
- .row-right {
- justify-content: flex-end;
- }
- .row-between {
- justify-content: space-between;
- }
- .row-around {
- justify-content: space-around;
- }
- .text-left {
- text-align: left;
- }
- .text-center {
- text-align: center;
- }
- .text-right {
- text-align: right;
- }
- .flex-col {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- }
- // 定义flex等分
- @for $i from 0 through 5 {
- .flex-#{$i} {
- flex: $i;
- }
- }
- .flex-none {
- flex: none;
- }
- // 定义字体大小,38-60的字体
- @for $i from 38 through 60 {
- @if $i % 2 == 0 {
- .font-size-#{$i} {
- font-size: $i + rpx;
- }
- }
- }
- /* 超出隐藏 */
- /* start--文本行数限制--start */
- .line-1 {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .line-2 {
- -webkit-line-clamp: 2;
- }
- .line-3 {
- -webkit-line-clamp: 3;
- }
- .line-2,
- .line-3 {
- overflow: hidden;
- word-break: break-all;
- text-overflow: ellipsis;
- display: -webkit-box; // 弹性伸缩盒
- -webkit-box-orient: vertical; // 设置伸缩盒子元素排列方式
- }
- /* 中划线 */
- .line-through {
- text-decoration: line-through;
- }
- /* br60 */
- .br60 {
- border-radius: 60rpx;
- }
- /* 初始化按钮 */
- page button {
- padding: 0;
- margin: 0;
- background-color: transparent;
- font-weight: normal;
- font-size: 28rpx;
- overflow: unset;
- margin-left: 0;
- margin-right: 0;
- }
- page button::after {
- border: none;
- }
- button[type='primary'] {
- background-color: $-color-primary;
- }
- button[disabled][type='primary'] {
- background-color: $-color-primary;
- opacity: 0.4;
- }
- .button-hover[type='primary'] {
- background-color: $-color-primary;
- }
- /* 按钮大小 */
- button[size='xs'] {
- line-height: 58rpx;
- height: 58rpx;
- font-size: 26rpx;
- padding: 0 30rpx;
- }
- button[size='sm'] {
- line-height: 62rpx;
- height: 62rpx;
- font-size: 28rpx;
- padding: 0 30rpx;
- }
- button[size='md'] {
- line-height: 70rpx;
- height: 70rpx;
- font-size: 30rpx;
- padding: 0 30rpx;
- }
- button[size='lg'] {
- line-height: 80rpx;
- height: 80rpx;
- font-size: 32rpx;
- padding: 0 30rpx;
- }
- //******图标******/
- .icon-xs {
- @include icon-image(28rpx);
- }
- .icon-sm {
- @include icon-image(30rpx);
- }
- .icon {
- @include icon-image(34rpx);
- }
- .icon-md {
- @include icon-image(44rpx);
- }
- .icon-lg {
- @include icon-image(52rpx);
- }
- .icon-xl {
- @include icon-image(64rpx);
- }
- .icon-xxl {
- @include icon-image(120rpx);
- }
- .img-null {
- width: 300rpx;
- height: 300rpx;
- }
- /* 隐藏滚动条 */
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- }
|