| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/personalInfo/index.wxss */ .uni-page{
- width: 100%;
- height: 100%;
- }
- .container {
- height: 100%;
- background: linear-gradient(to bottom, #0F80DC -40%, #f0f5f5 40%, #f0f5f5 100%);
- box-sizing: border-box;
- }
- .account_number{
- width: 100%;
- padding: 20rpx;
- display: flex;
- justify-content: center;
- box-sizing: border-box;
- }
- .account_to1{
- width: 200rpx;
- height: 200rpx;
- border-radius: 100rpx;
- border: 1rpx solid #ffffff;
- }
-
- .toptabbar {
- width: 100%;
- padding: 10rpx 20rpx;
- box-sizing: border-box;
- }
- .toptabbar_{
- border-radius: 10rpx;
- overflow: hidden;
- padding:0rpx 20rpx 20rpx 20rpx;
- background-color: #ffffff;
- }
- .toptabbar_box{
- width: 100%;
- height: 120rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1rpx #f5f5f5 solid;
- }
- .toptabbar_left{
- font-size: 28rpx;
- }
- .account_to{
- width: 100%;
- height: 300rpx;
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 10rpx;
- border: #f5f5f5 1rpx solid;
- box-sizing: border-box;
- }
- .user_to{
- width: 100%;
- height: 360rpx;
- border-radius: 10rpx;
- }
- .uni-mt-5{
- text-align: right;
- }
|