82 lines
1.2 KiB
Plaintext
82 lines
1.2 KiB
Plaintext
|
|
/**
|
|
* Web唐明明
|
|
* 匆匆数载恍如梦,岁月迢迢华发增。
|
|
* 碌碌无为枉半生,一朝惊醒万事空。
|
|
*/
|
|
|
|
page{
|
|
background-color: #f8f8f8;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.tabBarContent{
|
|
border-bottom: solid calc(48px + env(safe-area-inset-bottom)) transparent;
|
|
}
|
|
|
|
/*
|
|
* 文字截取
|
|
*/
|
|
|
|
.nowrap {
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.nowrap-multi {
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
/*
|
|
* 水平居中
|
|
*/
|
|
|
|
.pack-center {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-pack: center;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
/*
|
|
* 页面信息提醒
|
|
*/
|
|
|
|
.pages-hint,
|
|
.pages-loding{
|
|
text-align: center;
|
|
color: #afafaf;
|
|
font-size: 28rpx;
|
|
background: white;
|
|
}
|
|
|
|
.pages-hint image {
|
|
width: 188rpx;
|
|
height: 188rpx;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.pages-loding image {
|
|
width: 38rpx;
|
|
height: 38rpx;
|
|
}
|
|
|
|
/*
|
|
* iphoneX footer
|
|
*/
|
|
|
|
.iphoneX{
|
|
padding-bottom: 68rpx;
|
|
}
|