123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- .body {
- background-color: #f1f1f1;
- }
- .topBar {
- width: 100%;
- height: 270rpx;
- background-color: #fff;
- }
- .userImg {
- width: 95%;
- height: 200rpx;
- margin: 0rpx auto;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .avatar_nickname {
- width: 70%;
- height: 100%;
- display: flex;
- justify-content: start;
- align-items: center;
- }
- .avatar {
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .avatarImg {
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .nickname {
- margin-left: 20rpx;
- }
- .qiandao {
- width: 90%;
- height: 70rpx;
- padding: 0rpx 30rpx;
- font-size: 32rpx;
- }
- .qianText {
- float: left;
- }
- .icon_ {
- float: right;
- }
- .kefu {
- width: 160rpx;
- height: 50rpx;
- font-size: 25rpx;
- border-radius: 25rpx;
- outline: none;
- text-align: center;
- line-height: 50rpx;
- background-color: #f1f1f1;
- }
- .chioce {
- width: 100%;
- height: auto;
- background-color: #fff;
- margin-top: 10rpx;
- font-size: 32rpx;
- }
- .choiceItem {
- display: flex;
- width: 90%;
- height: 60rpx;
- padding: 20rpx 30rpx;
- justify-content: space-between;
- align-items: center;
- }
- .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;
- }
- .switch-item {
- width: 100%;
- height: 120rpx;
- line-height: 120rpx;
- border-bottom: 1rpx solid #f1f1f1;
- display: flex;
- justify-content: space-between;
- align-items: center;
-
- }
- .close {
- width: 100%;
- height: 100rpx;
- text-align: center;
- line-height: 100rpx;
- }
- .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;
- }
- .active{
- width: 30rpx;
- height: 30rpx;
- background-color: red;
- border-radius: 50%;
- margin-right: 40rpx;
- }
|