123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <script>
- export default {
- onLaunch: function() {
- },
- onShow: function() {
- },
- onHide: function() {
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import "uview-ui/index.scss";
- body::v-deep {
- uni-tabbar .uni-tabbar__bd, uni-tabbar .uni-tabbar__item {
- justify-content: flex-start !important;
- }
- margin: 0;
- padding: 0;
- }
- html {
- margin: 0;
- padding: 0;
- }
- .content {
- background-color: #ffffff;
- width: 100%;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- font-size: 28rpx;
- color: #333;
- box-sizing: border-box;
- }
- .hflex {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- }
- .vflex {
- display: flex;
- flex-direction: column;
- flex-wrap: nowrap;
- }
- .jbetween {
- justify-content: space-between;
- }
- .jaround {
- justify-content: space-around;
- }
- .jend {
- justify-content: flex-end;
- }
- .jcenter {
- justify-content: center;
- }
- .acenter {
- align-items: center;
- }
- .abetween {
- align-content: space-between;
- }
- .astart {
- align-items: flex-start;
- }
- .aend {
- align-items: flex-end;
- }
- .fwrap {
- flex-wrap: wrap;
- }
- .text_hide {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .text_hide2 {
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden; //溢出内容隐藏
- text-overflow: ellipsis; //文本溢出部分用省略号表示
- display: -webkit-box; //特别显示模式
- -webkit-line-clamp: 2; //行数
- line-clamp: 2;
- -webkit-box-orient: vertical; //盒子中内容竖直排列
- }
- </style>
|