43 lines
799 B
CSS
43 lines
799 B
CSS
/*
|
|
* 顶部
|
|
*/
|
|
.coin-title {
|
|
background-size: 100% auto;
|
|
padding-top: 130rpx;
|
|
/* #ifndef H5 */
|
|
padding-top: calc(var(--status-bar-height) + 5px + 130rpx);
|
|
/* #endif */
|
|
border-bottom-left-radius: 60rpx;
|
|
border-bottom-right-radius: 60rpx;
|
|
}
|
|
|
|
.coin-operate-list {
|
|
--size: 96rpx;
|
|
width: var(--size);
|
|
height: var(--size);
|
|
border-radius: 32rpx;
|
|
}
|
|
|
|
/*
|
|
* 内容
|
|
*/
|
|
.coin-content .coin-item {
|
|
max-height: calc(100vh - 688rpx);
|
|
/* #ifndef H5 */
|
|
max-height: calc(100vh - 688rpx - var(--status-bar-height) - 5px);
|
|
/* #endif */
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.coin-content-list-img {
|
|
--size: 80rpx;
|
|
width: var(--size);
|
|
height: var(--size) !important;
|
|
}
|
|
|
|
/*
|
|
* 明细弹窗
|
|
*/
|
|
.popup_user_detail_container .item {
|
|
background: #EFF0F1;
|
|
} |