12345678910111213141516171819202122232425262728293031323334353637 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .empty-content {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- background: #f8f8f8;
- padding-bottom: 120rpx;
- }
- .empty-content-image {
- width: 200rpx;
- height: 200rpx;
- }
|