123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /*app.wxss*/
- /* #ifndef APP-NVUE */
- page {
- background-color: #fafafa;
- font-size: 32rpx;
- }
- ::-webkit-scrollbar {
- width: 0 !important;
- height: 0 !important;
- color: transparent !important;
- display: none;
- }
- button::after {
- border: none;
- }
- .container {
- display: flex;
- box-sizing: border-box;
- flex-direction: column;
- }
- .tui-phcolor {
- color: #ccc;
- font-size: 32rpx;
- overflow: visible;
- }
- .tui-opcity {
- opacity: 0.5;
- }
- .tui-hover {
- background-color: #f7f7f9 !important;
- }
- .tui-ellipsis {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- /*按钮样式*/
- /*列表统一样式 */
- .tui-list-item {
- position: relative;
- }
- .tui-list-item::after {
- content: '';
- position: absolute;
- border-bottom: 1rpx solid #eaeef1;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- bottom: 0;
- right: 0;
- left: 30rpx;
- }
- .tui-last::after {
- border-bottom: 0 !important;
- }
- .tui-button-primary {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- background: linear-gradient(-90deg, #5677fc, #5c8dff);
- border-radius: 45rpx;
- color: #fff;
- font-size: 36rpx;
- }
- .tui-button-hover {
- color: #d5d4d9;
- background: linear-gradient(-90deg, #4a67d6, #4e77d9);
- }
- .tui-button-gray {
- background: #ededed;
- color: #999 !important;
- }
- .tui-button-gray_hover {
- background: #d5d5d5 !important;
- color: #898989;
- }
- .tui-button-white {
- background: #fff;
- color: #333 !important;
- }
- .tui-button-white_hover {
- background: #e5e5e5 !important;
- color: #2e2e2e !important;
- }
- /* #endif */
|