123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- .container {
- background: #EEF0F3;
- background-repeat: no-repeat;
- background-size: cover;
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- box-sizing: border-box;
- }
- .item {
- display: flex;
- width: 100%;
- justify-content: left;
- align-items: center;
- }
- .avatar {
- background: #FFFFFF;
- position: relative;
- width: 100%;
- height: 56px;
- padding-left: 20px;
- border-bottom: 1px solid #EEF0F3;
- border-top: 8px solid #FFFFFF;
- }
- .nickname {
- position: relative;
- background: #FFFFFF;
- width: 100%;
- height: 56px;
- padding-left: 20px;
- border-bottom: 1px solid #EEF0F3;
- border-top: 10px solid #FFFFFF;
- }
- .aside-left {
- display: flex;
- align-items: center;
- float: left;
- font-family: PingFangSC-Regular;
- font-size: 16px;
- color: #333333;
- letter-spacing: 0;
- line-height: 56px;
- }
- .image_radius {
- float: right;
- width: 40px;
- height: 40px;
- padding-right: 48px;
- padding-top: 8px;
- }
- .aside-right {
- float: right;
- font-family: PingFangSC-Regular;
- font-size: 16px;
- color: #999999;
- letter-spacing: 0;
- text-align: right;
- line-height: 56px;
- padding-right: 48px;
- z-index: 999;
- }
- .listimage {
- width: 16px;
- height: 16px;
- position: absolute;
- top: 20px;
- right: 10px;
- }
- .popup-mask {
- width: 100vw;
- height: 100vh;
- position: fixed;
- z-index: 10;
- top: 0;
- /* #ifdef H5 */
- top: calc(88rpx + constant(safe-area-inset-top));
- top: calc(88rpx + env(safe-area-inset-top));
- /* #endif */
- right: 0;
- background: rgba(0, 0, 0, 0.60);
- display: flex;
- align-items: flex-end;
- }
- .popup-main {
- width: 100vw;
- background: #FFFFFF;
- padding: 32px 20px;
- }
- .popup-main-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 24px;
- color: #000000;
- letter-spacing: 0;
- line-height: 36px;
- }
- .popup-main-header button {
- font-size: 16px;
- color: #006EFF;
- letter-spacing: 0;
- line-height: 28px;
- width: auto !important;
- background: transparent;
- margin: 0 !important;
- }
- .popup-main-input {
- background: #F4F5F9;
- padding: 14px 20px;
- margin: 20px 0;
- border-radius: 20px;
- border-radius: 20px;
- }
- .text {
- font-family: PingFangSC-Regular;
- font-size: 12px;
- color: #999999;
- letter-spacing: 0;
- }
- .popup-mask-avatar {
- width: 100vw;
- height: 100vh;
- position: fixed;
- z-index: 10;
- top: 0;
- /* #ifdef H5 */
- top: calc(88rpx + constant(safe-area-inset-top));
- top: calc(88rpx + env(safe-area-inset-top));
- /* #endif */
- right: 0;
- background: rgba(0, 0, 0, 0.60);
- display: flex;
- align-items: flex-end;
- }
- .popup-main-avatar {
- width: 100vw;
- height: 70%;
- background: #FFFFFF;
- padding: 32px 20px;
- }
- .popup-main-header-avatar {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 24px;
- color: #000000;
- letter-spacing: 0;
- line-height: 36px;
- height: 510px;
- }
- .popup-main-header-title-avatar {
- margin-bottom: 24px;
- padding-left: 10px;
- width: 104px;
- height: 25px;
- }
- .button-avatar {
- /* width: 32px;
- height: 24px; */
- float: right;
- /* padding-top: 5px; */
- font-size: 16px;
- color: #006EFF;
- letter-spacing: 0;
- line-height: 25px;
- width: auto !important;
- background: transparent;
- /* margin-top:-5px; */
- margin-right: 28px;
- }
- .image-list {
- padding-top: 16px;
- width: 100%;
- height: 800px;
- overflow: hidden;
- padding-left: 10px;
- }
- .image-avatar {
- width: 68px;
- height: 68px;
- float: left;
- margin: 10px 10px;
- border-radius: 4px;
- border: 1px solid #FFFFFF;
- }
- .image-avatar-active {
- border: 1px solid #006EFF;
- border-radius: 4px;
- border-radius: 4px;
- }
|