56 lines
1.0 KiB
CSS
56 lines
1.0 KiB
CSS
/*
|
|
* 顶部
|
|
*/
|
|
.coin-title {
|
|
background: radial-gradient(60% 70% at 90% 79%, rgba(33, 125, 239, 0.41) 0%, rgba(222, 237, 255, 0.56) 100%);
|
|
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-oprate-list {
|
|
--size: 76rpx;
|
|
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_coin_status_container .scroll-y {
|
|
height: 40vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.coin-list-img {
|
|
--size: 40rpx;
|
|
width: var(--size);
|
|
height: var(--size) !important;
|
|
}
|
|
|
|
/*
|
|
* 明细弹窗
|
|
*/
|
|
.popup_user_detail_container .item {
|
|
background: #EFF0F1;
|
|
} |