From 485fcbbc57cbf7495286359250135c482ec1360a Mon Sep 17 00:00:00 2001 From: litian <C21AF165> Date: 星期五, 30 八月 2024 09:50:00 +0800 Subject: [PATCH] xz --- pages/personalCenter/certificate/index.wxss | 135 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 134 insertions(+), 1 deletions(-) diff --git a/pages/personalCenter/certificate/index.wxss b/pages/personalCenter/certificate/index.wxss index b13f6f1..d3c33a0 100644 --- a/pages/personalCenter/certificate/index.wxss +++ b/pages/personalCenter/certificate/index.wxss @@ -1 +1,134 @@ -/* pages/personalCenter/certificate/index.wxss */ \ No newline at end of file +page { + background-color: #F2F3F8; +} + +.container { + width: 100vw; + height: 100vh; +} + +.pageInfo { + background: #fff; +} + +.content { + height: calc(100vh - env(safe-area-inset-bottom) - 116rpx); + box-sizing: border-box; +} + +.t-tabs__track { + display: none; +} + +.t-tabs { + margin-top: 20rpx; + background: none !important; +} + +.t-tabs__wrapper { + background: none !important; +} + +.t-tabs__nav :nth-child(1) { + border-radius: 30rpx 30rpx 0 0rpx; +} + +.t-tabs__nav :nth-child(2) { + border-radius: 0rpx 30rpx 0 30rpx; +} + +.t-tabs__item { + flex: 1 !important; + background: #E6E8F1; + height: 76rpx !important; + margin-top: 16rpx; + border-radius: 30rpx 0 30rpx 0rpx !important; +} + +.t-tabs__item--active { + color: #333 !important; + background: #fff; + height: 96rpx; + font-size: 32rpx; + margin-top: 0; + height: 96rpx !important; + border-radius: 30rpx 30rpx 0 0rpx !important; +} + +.t-tabs__item--active+.t-tabs__item { + border-radius: 0 30rpx 0 30rpx !important; +} + +.t-tabs__content { + background: #fff !important; + margin-top: -30rpx; + padding-top: 30rpx; +} + +.refresh-container { + margin: 0 auto; +} + +.bottom-loading, +.loading { + padding: 20rpx; + text-align: center; +} + + + + +.listBox { + display: flex; + flex-flow: row wrap; + padding: 30rpx 0; +} + + +.content-item { + width: calc(100%/2 - 40rpx); + margin-bottom: 30rpx; + margin: 0 20rpx; + align-self: stretch; +} + + +.content-item .icon { + height: 470rpx; + width: 100%; + box-shadow: 0px 0px 20rpx 2px rgba(0, 0, 0, 0.16); +} + +.content-item .icon .img, +.class--tem .icon .img { + width: 100%; + height: 100%; + object-fit: contain; +} + +.body-info { + padding: 20rpx 0; +} + +.body-info .name { + font-size: 32rpx; + height: 88rpx; + color: #333333; + font-weight: bold; + line-height: 44rpx; + display: -webkit-box; + margin-bottom: 10rpx; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + overflow: hidden; + text-overflow: ellipsis; +} + +.empyt { + padding: 200rpx 0; +} + +.body-loading { + padding: 200rpx 0; + text-align: center; +} \ No newline at end of file -- Gitblit v1.9.1