123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- page {
- background: #F3F3F3;
- color: #333;
- padding:24rpx 0 40rpx;
- /* padding:0 24rpx; */
- }
- view,text{
- box-sizing: border-box;
- color:#333;
- font-size: 29rpx;
- }
- .whole-page{
- min-height: 1000rpx;
- }
- view.van-radio__icon-wrap .van-icon{
- color:#fff;
- font-size: 32rpx;
- }
- .logout{
- font-weight: 600;
- color: #716F6F;
- line-height: 42rpx;
- text-decoration: underline;
- margin:34rpx 0 80rpx;
- font-size: 30rpx;
- text-align: center;
- }
- .user-wrapper{
- margin:0 24rpx 24rpx;
- background: #FFFFFF;
- border-radius: 18rpx;
- padding:28rpx 18rpx 32rpx 24rpx;
- width:702rpx;
- }
- .user-info{
- display: flex;
- align-items: center;
- height:160rpx;
- }
- .user-img{
- width:148rpx;
- height: 148rpx;
- border-radius:148rpx;
- margin-right:16rpx;
- background: #eee;
- /* margin-top:-100rpx; */
- }
- .user-right{
- /* height: 150rpx; */
- display: flex;
- flex-direction: column;
- /* justify-content: space-between; */
- flex:1;
- line-height:32rpx;
- }
- .user-name{
- display: flex;
- height: 32rpx;
- justify-content: space-between;
- margin-bottom:24rpx;
- }
- .user-name text{
- font-size: 38rpx;
- font-weight: bold;
- }
- .city-station{
- line-height: 40rpx;
- }
- .job-year{
- color: #096DD9;
- }
- .user-bottom{
- margin-top:16rpx;
- }
- .user-tag{
- display: flex;
- }
- .user-tag view{
- background: #E6F7FF;
- border-radius: 4rpx;
- border: 1rpx solid #91D5FF;
- width:74rpx;
- height: 34rpx;
- color: #096DD9;
- font-size: 22rpx;
- text-align: center;
- margin-right:10rpx;
- }
- .health{
- display: flex;
- }
- .health image{
- width:36rpx;
- height: 34rpx;
- /* margin-right:6rpx; */
- }
- .health text{
- color: #096DD9;
- font-size: 26rpx;
- line-height: 26rpx;
- }
- .company{
- color: #666;
- margin:0 0 16rpx 10rpx;
- }
- .recommend{
- display: flex;
- height: 68rpx;
- align-items: center;
- }
- .recommend view{
- font-size: 32rpx;
- margin-left:10rpx;
-
- }
- .recommend view text{
- font-weight: bold;
- color:#064952;
- font-size: 36rpx;
- }
- .recommend .copy-img{
- width:40rpx;
- height:40rpx;
- margin:4rpx 0 0 8rpx;
- }
- .logout-text{
- color: #09AFFF;
- font-size: 28rpx;
- text-decoration: underline;
- font-weight: normal;
- }
- .dashboard{
- padding:0 0 0 24rpx;
- display: flex;
- flex-wrap: wrap;
- }
- .module-item{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- width: 220rpx;
- height: 324rpx;
- background: #FFFFFF;
- border-radius: 18rpx;
- padding:30rpx 24rpx;
- margin:0 20rpx 20rpx 0;
- }
- .module-item .title{
- height: 46rpx;
- line-height: 46rpx;
- font-size: 32rpx;
- font-weight: bold;
- align-self: flex-start;
- }
- .module-item image{
- width:88rpx;
- height:88rpx;
- }
- .module-item .board-num{
- color: #666666;
- font-size: 28rpx;
- height:32rpx;
- line-height: 32rpx;
- }
- .popup-content{
- display: flex;
- justify-content: space-between;
- font-size: 25rpx;
- /*display: inline-block;*/
- padding: 5rpx;
- }
- .popup-text-right {
- text-align: right;
- color: #80c0eb;
- }
- .popup-text-lft {
- text-align: left;
- color: #666666;
- }
- .popup {
- position: fixed;
- bottom: 5rpx;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 100%;
- background-color: rgb(200,233,254);
- padding: 5rpx;
- z-index: 1000;
- }
- .popup-mask {
- position: fixed;
- top: 0;
- left: 0;
- width: 80%;
- height: 100%;
- /*background-color: rgba(0, 0, 0, 0.5);*/
- z-index: 999;
- }
|