123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /**index.wxss**/
- page {
- height: 100vh;
- display: flex;
- flex-direction: column;
- }
- .user-container{
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 40rpx;
- box-sizing: border-box;
- }
- .scrollarea {
- flex: 1;
- overflow-y: hidden;
- }
- .userinfo {
- display: flex;
- flex-direction: column;
- align-items: center;
- color: #aaa;
- width: 80%;
- }
- .userinfo-avatar {
- overflow: hidden;
- width: 128rpx;
- height: 128rpx;
- margin: 20rpx;
- border-radius: 50%;
- }
- .usermotto {
- margin-top: 200px;
- }
- .avatar-wrapper {
- padding: 0;
- width: 56px !important;
- border-radius: 8px;
- margin-top: 40rpx;
- margin-bottom: 40rpx;
- }
- .avatar {
- display: block;
- width: 56px;
- height: 56px;
- }
- .nickname-wrapper {
- display: flex;
- width: 100%;
- padding: 16px;
- box-sizing: border-box;
- color: black;
- }
- .nickname-label {
- width: 105px;
- }
- .nickname-input {
- text-align: center;
- flex: 1;
- }
- .login-in{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .user-title{
- width: 100%;
- font-weight: bold;
- color: #584735;
- text-align: left;
- font-size: 40rpx;
- margin: 20rpx 0 20rpx 0;
- }
- .user-zhanwei{
- width: 100%;
- height: 14px;
- margin-bottom: 20rpx;
- }
- .zhanwei-img{
- width: 100%;
- height: 14px;
- }
- /* 功能按钮区域 */
- .function-section {
- width: 100%;
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .main-buttons {
- margin-bottom: 20rpx;
- }
- .btn-reserve {
- background: url('https://swkz-1332577016.cos.ap-guangzhou.myqcloud.com/karamay/preview-btn.png');
- width: 100%;
- height: 130rpx;
- border-radius: 10rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background-size: 100% auto;
- color: #fff;
- font-size: 32rpx;
- font-weight: bold;
- }
- .btn-people {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 130rpx;
- background: url('https://swkz-1332577016.cos.ap-guangzhou.myqcloud.com/karamay/btn_02.png');
- background-size: 100% auto;
- border-radius: 10rpx;
- border: 2rpx solid #94765A;
- margin-top: 20rpx;
- color: #fff;
- font-size: 32rpx;
- }
- .btn-feed{
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 130rpx;
- background: #fff;
- border-radius: 5px 5px 5px 5px;
- border: 1px solid #FFFFFF;
- color: #C8583D;
- margin-bottom: 20rpx;
- }
- .btn-out{
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 130rpx;
- border-radius: 5px 5px 5px 5px;
- border: 1px solid #D9D9D9;
- color: #584735;
- }
|