1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* pages/tabBar/myself/myself.wxss */
- page {
- background: #f5f5f5;
- /* padding-bottom: 160rpx; */
- }
- .top {
- width: 100%;
- height: 240rpx;
- /* background: linear-gradient(90deg, rgba(236, 58, 78, 1) 0%, rgba(255, 115, 115, 1) 100%); */
- /* background-image: url(https://app.schoolwisdoms.com/static/wx/images/bg0603.png); */
- background: linear-gradient(90deg, #005033 0%, #11774e 100%);
- background-size: 100%;
- display: flex;
- align-items: center;
- font-size: 32rpx;
- font-weight: 400;
- color: rgba(255, 255, 255, 1);
- }
- .avatar {
- margin-left: 40rpx;
- margin-right: 32rpx;
- width: 112rpx;
- height: 112rpx;
- border-radius: 50%;
- overflow: hidden;
- }
- .list-item {
- width: 100%;
- height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 40rpx;
- box-sizing: border-box;
- background: #fff;
- border-bottom: 2rpx solid #f5f5f5;
- line-height: 48rpx;
- }
- .li-icon {
- margin-right: 30rpx;
- width: 48rpx;
- height: 48rpx;
- }
- .li-left {
- display: flex;
- align-items: center;
- }
- .li-arrow {
- width: 14rpx;
- height: 24rpx;
- }
- .line {
- width: 100%;
- height: 10rpx;
- }
- .footer {
- width: 100%;
- position: fixed;
- bottom: 0;
- }
- button {
- font-weight: 400 !important;
- height: 90rpx !important;
- line-height: 90rpx !important;
- width: 580rpx !important;
- background: #FFF;
- padding: 0 !important;
- margin: 0 !important;
- text-align: left;
- font-size: 32rpx;
-
- }
- .button-hover{
- background: none !important;
- color: #000 !important;
- }
|