From c96612e8a63ecef9590be0f8b5199277ec94e5b9 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期三, 18 九月 2024 18:43:12 +0800 Subject: [PATCH] 云学习购买目录,修改bug --- packagePersonal/pages/userSetting/index.wxss | 222 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 221 insertions(+), 1 deletions(-) diff --git a/packagePersonal/pages/userSetting/index.wxss b/packagePersonal/pages/userSetting/index.wxss index 42e75dd..6b80c15 100644 --- a/packagePersonal/pages/userSetting/index.wxss +++ b/packagePersonal/pages/userSetting/index.wxss @@ -1 +1,221 @@ -/* packagePersonal/pages/userSetting/index.wxss */ \ No newline at end of file +.container { + padding: 20rpx 0; +} + +.itemList { + border-bottom: 2rpx solid #E9E9E9; + padding: 30rpx; + display: flex; + /* height: 120rpx; */ + align-items: center; + justify-content: space-between !important; +} + +.itemList:nth-child(1) { + padding: 16rpx 30rpx !important; +} + +.itemList .label { + font-weight: bold; + width: 180rpx; + font-size: 29rpx; + color: #333333; +} + +.contentImg { + height: 120rpx; + width: 120rpx; + /* flex: 1; */ + margin-right: 15rpx; + margin-left: auto; +} + +.t-image { + height: 120rpx; + width: 120rpx; + border-radius: 50% !important; + overflow: hidden !important; +} + + +.iconEdit { + padding: 40rpx 0; +} + +.content { + flex: 1; + color: #5C5C5C; + font-size: 29rpx; +} + +.block { + width: 100vw; + background: #fff; + border-top-left-radius: 16rpx; + border-top-right-radius: 16rpx; +} + +.row-info .body { + padding: 40rpx; +} + +.row-info .body .from-item { + margin-bottom: 20rpx; + align-items: center; +} + +.row-info .body .from-item .label { + min-width: 100rpx; + height: 60rpx; + line-height: 60rpx; + font-size: 32rpx; +} + +.row-info .body .from-item .item-content { + flex: 1; + display: flex; + +} + +.inputBox1 { + border: 2rpx solid #D9D9D9; + flex: 1; + width: 100%; + +} + +.outsideInputBox1 { + display: flex; + flex-direction: column; + width: 100%; +} + + +.block { + position: relative; + width: 600rpx; + min-height: 500rpx; + padding: 20rpx 0; + background: #fff; + border-radius: 16rpx; +} + + +.row-info .body { + min-height: 200rpx; +} + +.row-info .body .inputBox { + width: 300rpx; + border: 2rpx solid #D9D9D9; +} + +.t-input { + padding: 10rpx !important; +} + +.t-input__placeholder { + font-size: 28rpx !important; +} + +.imgCode { + height: 72rpx; + width: 190rpx; +} + +.code { + width: 190rpx; + height: 72rpx; + margin-left: 20rpx; +} + +.btn { + width: 190rpx; + height: 76rpx; + padding: 0 10rpx !important; + background: #ff6c00; + /* border: 2rpx solid #ff6c00; */ + /* padding: 0 2rpx; */ + color: #fff; + font-size: 28rpx; +} + +.disabled { + width: 190rpx; + height: 76rpx; + background: #ccc; + color: #000; + cursor: not-allowed; + font-size: 28rpx; + padding: 0 10rpx !important; +} + +.footer { + width: 80%; + margin: 10rpx auto; +} + +.submit { + background: #ff6c00; + color: #fff; + border-radius: 50rpx; +} + +.close-btn { + position: absolute; + left: 50%; + margin-left: -32rpx; + bottom: calc(-1 * (48rpx + 64rpx)); +} + +.popup-box { + position: absolute; + z-index: 99; + top: 0; + background-color: rgba(0, 0, 0, 0.5); + width: 100%; + height: 100%; +} + +.info-center { + position: fixed; + z-index: 999; + background-color: white; + align-items: center; + justify-content: center; + border-radius: 10rpx; + width: 80%; + margin-left: 10%; + margin-right: 10%; +} + +.row-btn { + width: 100%; + display: flex; + flex-direction: row; + align-items: center; + border-top: 1rpx solid #f1f1f1; +} + +.row-btn view { + flex: 1; + text-align: center; + margin: 20rpx 10%; + padding: 12rpx 0; + font-size: 32rpx; + border-radius: 10rpx; +} + +.left-btn { + background-color: #f1f1f1; + color: #5C5C5C; +} + +.right-btn { + background-color: #ff6c00; + color: white; +} + +.t-input--default+.t-input__tips { + color: var(--td-input-default-tips-color, var(--td-font-gray-3, rgba(229, 62, 48))) !important; +} \ No newline at end of file -- Gitblit v1.9.1