| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /**app.wxss**/
- @import "./weui.wxss";
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- /* padding: 200rpx 0; */
- box-sizing: border-box;
- }
- @font-face {
- font-family: "iconfont"; /* Project id 4004256 */
- src: url('//at.alicdn.com/t/c/font_4004256_d8n86l3uql.woff2?t=1681015728820') format('woff2'),
- url('//at.alicdn.com/t/c/font_4004256_d8n86l3uql.woff?t=1681015728820') format('woff'),
- url('//at.alicdn.com/t/c/font_4004256_d8n86l3uql.ttf?t=1681015728820') format('truetype');
- }
- .iconfont {
- font-family: "iconfont" !important;
- font-size: 16px;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .icon-jingbao:before {
- content: "\e711";
- }
- .icon-fengshan:before {
- content: "\e623";
- }
- .icon-chuanglian-:before {
- content: "\e61f";
- }
- .icon-kaimen-05:before {
- content: "\e62e";
- }
|