123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /* component/profilePatch.wxss */
- .pa-layer-container {
- }
- .pa-layer {
- position: fixed;
- height: calc(682rpx + env(safe-area-inset-bottom));
- background: #FFFFFF;
- border-radius: 8px 8px 0px 0px;
- bottom: 0;
- left: 0;
- width: 100%;
- z-index: 99999999999999;
- padding: 52rpx 36rpx 32rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- padding-bottom: calc(env(safe-area-inset-bottom) + 36rpx);
- }
- .auth-bg {
- width: 100vw;
- height: 100vh;
- background-color: rgba(0, 0, 0, 0.3);
- z-index: 9999999999;
- position: fixed;
- left: 0;
- top: 0;
- overflow: hidden;
- }
- .pa-layer .title {
- font-size: 30rpx;
- color: #111111;
- line-height: 80rpx;
- text-align: center;
- }
- .pa-layer .content {
- height: 406rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- /* .pa-layer .content .text {
- font-size: 26rpx;
- color: #111111;
- padding: 28rpx 0 36rpx;
- } */
- .pa-layer .button {
- line-height: 80rpx;
- font-size: 36rpx;
- color: #fff;
- background: #07C563;
- opacity: 1;
- border-radius: 4px;
- width: 100%;
- text-align: center;
- }
- .pa-layer .button.disable{
- background: #dddddd;
- }
- .pa-layer .content {
- display: flex;
- flex-direction: column;
- /* justify-content: space-between; */
- }
- .pa-layer .col {
- display: flex;
- flex-direction: row;
- align-items: center;
- width: 100%;
- /* height: 180rpx; */
- padding: 30rpx 0;
- border-bottom: 1rpx solid #dddddd;
- height: 150rpx;
- }
- .pa-layer .col .label {
- font-size: 30rpx;
- padding-right: 50rpx;
- }
- .avatar-select {
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .avatar-wrapper {
- display: flex;
- margin: 0;
- background-color: transparent;
- padding: 0 10rpx;
- }
- .update-text {
- font-size: 30rpx;
- color: rgb(0, 131, 253);
- padding: 0 10rpx;
- }
- .ipname {
- height: 60rpx;
- width: 80%;
- }
- .mobile{
- background: #07C563;
- line-height: 60rpx;
- font-size: 28rpx;
- color: white;
- }
- .mobile.txt{
- background: none;
- color: #131D34;
- }
|