123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /* pages/user/user.wxss */
- .hmly-body {
- background-color: #f1f1f1;
- }
- .hmly-top-bar {
- width: 100%;
- height: 270rpx;
- background-color: #fff;
- }
- .hmly-user-img {
- width: 95%;
- height: 200rpx;
- margin: 0rpx auto;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .hmly-avatar-nickname {
- width: 70%;
- height: 100%;
- display: flex;
- justify-content: start;
- align-items: center;
- }
- .hmly-avatar {
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .hmly-avatar-img {
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .hmly-nickname {
- margin-left: 20rpx;
- }
- .hmly-qian-dao {
- width: 90%;
- height: 70rpx;
- padding: 0rpx 30rpx;
- font-size: 32rpx;
- }
- .hmly-qian-text {
- float: left;
- }
- .hmly-icon_ {
- float: right;
- }
- .hmly-kefu {
- width: 160rpx;
- height: 50rpx;
- font-size: 25rpx;
- border-radius: 25rpx;
- outline: none;
- text-align: center;
- line-height: 50rpx;
- background-color: #f1f1f1;
- }
- /* 选项卡 */
- .hmly-chioce {
- width: 100%;
- height: auto;
- background-color: #fff;
- margin-top: 10rpx;
- font-size: 32rpx;
- }
- .hmly-choice-item {
- display: flex;
- width: 90%;
- height: 60rpx;
- padding: 20rpx 30rpx;
- justify-content: space-between;
- align-items: center;
- }
- /* 定时关闭 */
- .hmly-switch {
- width: 100%;
- height: 500rpx;
- position: fixed;
- bottom: 0rpx;
- z-index: 9999;
- display: flex;
- justify-content: space-around;
- align-items: center;
- flex-wrap: wrap;
- background: #fff;
- border-top-left-radius: 15rpx;
- border-top-right-radius: 15rpx;
- padding-top: 20rpx;
- }
- .hmly-switch-item {
- width: 100%;
- height: 120rpx;
- line-height: 120rpx;
- border-bottom: 1rpx solid #f1f1f1;
- display: flex;
- justify-content: space-between;
- align-items: center;
- /* padding: 0rpx 30rpx; */
- }
- .hmly-close {
- width: 100%;
- height: 100rpx;
- text-align: center;
- line-height: 100rpx;
- }
- .hmly-scroll-wrapper {
- white-space: nowrap;
- -webkit-overflow-scrolling: touch;
- background: #FFF;
- padding-left: 20rpx;
- width: 100%;
- height: 400rpx;
- box-sizing: border-box;
- }
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- }
- .hmly-active {
- width: 30rpx;
- height: 30rpx;
- background-color: red;
- border-radius: 50%;
- margin-right: 40rpx;
- }
|