| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /**app.wxss**/
- @import "component/toast/toast.wxss";
- page {
- font-family: "微软雅黑", "Microsoft Yahei";
- height: 100%;
- }
- .app-bg {
- width: 100%;
- min-height: 100%;
- background-color: #f2f4f6;
- }
- .fl {
- float: left;
- }
- .fr {
- float: right;
- }
- .clean {
- clear: both;
- }
- .clear {
- clear: both;
- }
- .container {
- width: 100%;
- height: 100%;
- }
- .ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- word-wrap: normal;
- }
- .ellipsisLn {
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- /*-webkit-line-clamp: @line;*/
- }
- button::after {
- border: 0;
- }
- button {
- border-radius: 0;
- border: 0;
- margin: 0;
- padding: 0;
- background: none;
- }
|