From b7ed8541113f8fa116b19d13e34a70a929310077 Mon Sep 17 00:00:00 2001 From: litian <C21AF165> Date: 星期二, 12 三月 2024 14:38:22 +0800 Subject: [PATCH] 样书申请 --- pages/personalCenter/sampleBooks/index.wxss | 179 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 178 insertions(+), 1 deletions(-) diff --git a/pages/personalCenter/sampleBooks/index.wxss b/pages/personalCenter/sampleBooks/index.wxss index 73a1729..49d188b 100644 --- a/pages/personalCenter/sampleBooks/index.wxss +++ b/pages/personalCenter/sampleBooks/index.wxss @@ -1 +1,178 @@ -/* pages/personalCenter/sampleBooks/index.wxss */ \ No newline at end of file +/* pages/personalCenter/sampleBooks/index.wxss */ +page { + background-color: #F2F3F8; + box-sizing: border-box; +} + +.page-header { + background-color: #F2F3F8; + width: 100%; + position: fixed; + top: 0; + left: 0; + z-index: 1 +} + +.tabOne .t-tabs__track { + display: none; + +} + +.tabOne .t-tabs { + margin-top: 20rpx; + background: none !important; +} + +.tabOne .t-tabs__wrapper { + background: none !important; +} + +.tabOne .t-tabs__nav :nth-child(1) { + border-radius: 30rpx 30rpx 0 0rpx; +} + +.tabOne .t-tabs__nav :nth-child(2) { + border-radius: 0rpx 30rpx 0 30rpx; +} + +.tabOne .t-tabs__item { + flex: 1 !important; + background: #E6E8F1; + height: 76rpx !important; + margin-top: 16rpx; + border-radius: 30rpx 0 30rpx 0rpx !important; +} + +.tabOne .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; +} + +.tabOne .t-tabs__item--active+.t-tabs__item { + border-radius: 0 30rpx 0 30rpx !important; +} + +.tabTwo { + background: #fff; + padding-top: 50rpx; + margin-top: -30rpx; + +} + +.tabTwo .t-tabs__item { + flex: 1 !important; +} + +.tabTwo .t-tabs__track { + background-color: #FF6C00 !important; + width: 80rpx !important; +} + +.tabTwo .t-tabs__item--active { + font-size: 30rpx; + color: #FF6C00 !important; +} + +.refresh-container { + margin: 0 auto; +} + +.bottom-loading, +.loading { + padding: 20rpx; + text-align: center; +} + +.empyt { + padding: 100rpx 0; +} + +.pageInfo { + margin-top: 230rpx; +} + +.content-item { + margin-bottom: 30rpx; + padding: 30rpx; + background: #fff; + border-radius: 10rpx; +} + +.codeInfoBox { + border: 2rpx solid #EDECEC; + border-radius: 10rpx; + background: #f3f3f3; + padding: 20rpx; + font-size: 28rpx; + line-height: 56rpx; +} + +.top, +.mailInfo { + display: flex; + justify-content: space-between; +} + +.mailNum { + display: inline-block; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + max-width: 440rpx; +} + +.success { + color: #1FBC1F +} + +.wait { + color: #FF6C00; +} + +.reject { + color: #F03939; + font-weight: bold; +} + + +.order-centent { + display: flex; +} + +.bookBox { + padding: 30rpx 40rpx 0 20rpx; + width: 200rpx; +} + +.bookBox .leftCon { + width: 180rpx; + height: 240rpx; + box-shadow: 0px 0px 20rpx 2px #f1f1f1; +} + +.bookBox .leftCon .purchasedIcon { + width: 100%; + height: 100%; + object-fit: contain; +} + +.rightCon { + margin-top: 10rpx; +} + +.productTitle { + font-size: 28rpx; + height: 88rpx; + color: #333333; + line-height: 44rpx; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + overflow: hidden; + text-overflow: ellipsis; +} \ No newline at end of file -- Gitblit v1.9.1