123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- /*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;
- }
- .f-34 {
- font-size: 34rpx;
- }
- .f-32 {
- font-size: 32rpx;
- }
- .f-31 {
- font-size: 31rpx;
- }
- .f-30 {
- font-size: 30rpx;
- }
- .f-29 {
- font-size: 29rpx;
- }
- .f-28 {
- font-size: 28rpx;
- }
- .f-26 {
- font-size: 26rpx;
- }
- .f-24 {
- font-size: 24rpx;
- }
- .f-22 {
- font-size: 22rpx;
- }
- .dis-flex {
- display: flex;
- /* flex-wrap: wrap; */
- }
- .flex-box {
- flex: 1;
- }
- .flex-dir-row {
- flex-direction: row;
- }
- .flex-dir-column {
- flex-direction: column;
- }
- .flex-x-center {
- /* display: flex; */
- justify-content: center;
- }
- .flex-x-between {
- justify-content: space-between;
- }
- .flex-x-around {
- justify-content: space-around;
- }
- .flex-x-end {
- justify-content: flex-end;
- }
- .flex-y-center {
- /* display: flex; */
- align-items: center;
- }
- .flex-five {
- box-sizing: border-box;
- flex: 0 0 50%;
- }
- .flex-three {
- float: left;
- width: 33.3%;
- }
- .flex-four {
- box-sizing: border-box;
- flex: 0 0 25%;
- }
- /* #endif */
|