12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /* pages/checkAttention/checkAttention.wxss */
- .list{
- width: 690rpx;
- height: 180rpx;
- margin: 30rpx;
- border: 2rpx solid rgba(208, 207, 207, 0.5);
- border-radius: 10rpx;
- display: flex;
- flex-direction: row;
- }
- .list_head{
- width: 200rpx;
- height: 180rpx;
- display: flex;
- position: relative;
- }
- .list_head>image:nth-child(1){
- margin: auto;
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .list_head>image:nth-child(2){
- position: absolute;
- bottom: 30rpx;
- right: 0;
- margin: auto;
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- border: 4rpx solid #FFF;
- }
- .list_name{
- width: 350rpx;
- height: 180rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .list_name>view:nth-child(1){
- width: 300rpx;
- height: 60rpx;
- line-height: 60rpx;
- text-align: left;
- font-size: 38rpx;
- font-weight: 700;
- }
- .list_name>view:nth-child(2){
- width: 300rpx;
- height: 60rpx;
- line-height: 60rpx;
- text-align: left;
- font-size: 30rpx;
- }
- .list_attent{
- width: 140rpx;
- height: 60rpx;
- margin: 90rpx auto 30rpx auto;
- display: flex;
- }
- .list_attent image{
- width: 40rpx;
- height: 40rpx;
- margin: auto 0rpx;
- }
- .list_attent text{
- width: 40rpx;
- height: 40rpx;
- font-size: 32rpx;
- font-weight: 700;
- margin: auto 10rpx;
- }
|