|
- /* pages/mine/mine.wxss */
- @import '../../iconfont.ttss';
-
- .mine {
- width: 100%;
- height: 100%;
- position: absolute;
- background: #f8f8fa;
- }
- .version{
- width: 600rpx;
- line-height: 160rpx;
- text-align: center;
- font-size: 30rpx;
- color: #999;
- margin: 0 auto;
- }
- .header {
- position: relative;
- width: 710rpx;
- height: 200rpx;
- display: flex;
- background: #fff;
- border-radius: 16rpx;
- margin: -100rpx auto 0;
- box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
- }
-
- .header>view:nth-child(1) {
- width: 132rpx;
- height: 132rpx;
- margin-top: 4%;
- border-radius: 50%;
- overflow: hidden;
- margin-left: 40rpx;
- }
-
- .header>view:nth-child(1) image {
- width: 100%;
- height: 100%;
- }
-
- .header>view:nth-child(2) {
- display: flex;
- width: 400rpx;
- flex-direction: column;
- margin-top: 53rpx;
- margin-left: 20rpx;
- position: relative;
- }
-
- .header>view:nth-child(2) text {
- font-size: 30rpx;
- }
-
- .header>view:nth-child(2) text:nth-child(2) {
- font-size: 30rpx;
- color: #b8b8b8;
- padding-top: 1.5%;
- }
-
- .header>view:nth-child(2) text:nth-child(2) {
- display: inline-block;
- width: 400rpx;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
-
- .header>view:nth-child(3) {
- line-height: 186rpx;
- position: absolute;
- right: 4%;
- }
-
- .imgs {
- position: absolute;
- right: 30rpx;
- top: 0;
- bottom: 0;
- margin: auto;
- width: 40rpx;
- height: 40rpx;
- }
-
- .section {
- width: 100%;
- /* height: 176rpx; */
- margin-top: 8%;
- background: #fff;
- display: flex;
- flex-direction: column;
- }
-
- .img {
- display: block;
- width: 100%;
- }
-
- .section view {
- position: relative;
- width: 92%;
- height: 88rpx;
- line-height: 88rpx;
- display: flex;
- justify-content: space-between;
- padding: 0 4%;
- /* border-bottom: 1px solid #f5f5f5; */
- }
-
- .section view text {
- font-size: 30rpx;
- color: #000;
- letter-spacing: 1.16rpx;
- }
-
- .section view text:nth-child(2) {
- font-size: 28rpx;
- color: #888;
- letter-spacing: 1.16rpx;
- text-align: right;
- margin-right: 40rpx;
- }
-
- .exit {
- width: 670rpx;
- height: 94rpx;
- font-size: 30rpx;
- margin: 6% auto 0;
- background: #fff;
- line-height: 94rpx;
- bottom: 44rpx;
- color: #333;
- }
-
- .active {
- opacity: 0.6;
- }
- .withdrawBox{
- width: 710rpx;
- /* height: 200rpx; */
- background: #fff;
- border-radius: 16rpx;
- margin:60rpx auto 0 auto;
- /* box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15); */
-
- }
- .textBox{
- overflow: hidden;
- }
- .balanceTitle{
- margin-left:20rpx;
- font-weight: 700;
- font-size: 36rpx;
- padding: 10rpx;
- float: left;
- }
- .hint{
- float: left;
- padding-top: 12rpx;
- }
- .balanceNum{
- color: red;
- margin-left: 20rpx;
- font-weight: 700;
- padding: 20rpx;
- font-size: 36rpx;
- }
- .operationNum{
- margin-left: 50rpx;
- font-size: 28rpx;
- padding-bottom:40rpx;
- }
- .operationBut{
- width: 80%;
- margin: auto;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- color: #fff;
- background-color: rgba(22, 155, 213, 1);
- font-size: 30rpx;
- font-weight: 700;
- }
- .noOperationBut{
- width: 80%;
- margin: auto;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- color: #fff;
- background-color: rgba(0, 0, 0, 0.5);
- font-size: 30rpx;
- font-weight: 700;
- }
|