|
|
-
- // 文字益处处理
- .text-ellipsis{
- overflow:hidden; //超出的文本隐藏
- text-overflow:ellipsis; //溢出用省略号显示
- white-space:nowrap; //溢出不换行
- }
- .text-ellipsis-2{
- overflow: hidden;
- text-overflow: ellipsis;
- display:-webkit-box; //作为弹性伸缩盒子模型显示。
- -webkit-box-orient:vertical; //设置伸缩盒子的子元素排列方式--从上到下垂直排列
- -webkit-line-clamp:2; //显示的行
- }
- .text-ellipsis-3{
- overflow: hidden;
- text-overflow: ellipsis;
- display:-webkit-box; //作为弹性伸缩盒子模型显示。
- -webkit-box-orient:vertical; //设置伸缩盒子的子元素排列方式--从上到下垂直排列
- -webkit-line-clamp:3; //显示的行
- }
-
-
- .share{
- padding: 0;
- margin: 0;
- background-color: #fff;
- display: flex !important;
- flex-direction: column !important;
- justify-content: center !important;
- align-items: center !important;
- font-size: 26rpx;
- }
- .share::after{
- border: none;
- padding: 0;
- margin: 0;
- width: 0;
- height: 0;
- }
-
-
- .flex {
- display: flex;
- align-items: center;
- justify-content: center;
- }
-
- .flex-column {
- flex-direction: column;
- }
-
- .page__view {
- width: 100vw;
- min-height: 100vh;
- color: #181818;
- background: linear-gradient(#DAF3FF, #F4F4F4 400rpx, #F4F4F4);
- position: relative;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 1.4;
- }
- .page__view.highlight {
- background: linear-gradient(#DAF3FF, #FBFEFF 400rpx, #FBFEFF);
- }
-
- .btn {
- width: auto;
- height: auto;
- margin: 0;
- padding: 0;
- line-height: 1;
- border: none;
- background: none;
- }
- .btn:after {
- border: none;
- }
-
- /deep/ .uv-modal__content {
- padding: 0 !important;
- }
-
- /deep/ .uv-calendar-month__days__day__select__top-info,
- /deep/ .uv-calendar-month__days__day__select__buttom-info {
- white-space: nowrap;
- }
-
- /deep/ .uv-number-box__minus--disabled {
- background: transparent !important;
- }
-
- /deep/ .uv-number-box__input {
- font-size: 40rpx;
- }
-
- /deep/ .uv-steps-item__wrapper {
- background: transparent !important;
- }
-
- /deep/ .uv-steps-item__line {
- background: #F3F3F3 !important;
- transform: translateY(9px) !important;
- }
-
- /deep/ .tabs .uv-tabs__wrapper__nav__item__text.uv-tabs__wrapper__nav__item__text--disabled {
- color: #191919 !important;
- }
-
- /deep/ .uv-rate__content__item__icon-wrap--half {
- width: 50% !important;
- }
|