checkAttention.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* pages/checkAttention/checkAttention.wxss */
  2. .list{
  3. width: 690rpx;
  4. height: 180rpx;
  5. margin: 30rpx;
  6. border: 2rpx solid rgba(208, 207, 207, 0.5);
  7. border-radius: 10rpx;
  8. display: flex;
  9. flex-direction: row;
  10. }
  11. .list_head{
  12. width: 200rpx;
  13. height: 180rpx;
  14. display: flex;
  15. position: relative;
  16. }
  17. .list_head>image:nth-child(1){
  18. margin: auto;
  19. width: 120rpx;
  20. height: 120rpx;
  21. border-radius: 50%;
  22. }
  23. .list_head>image:nth-child(2){
  24. position: absolute;
  25. bottom: 30rpx;
  26. right: 0;
  27. margin: auto;
  28. width: 60rpx;
  29. height: 60rpx;
  30. border-radius: 50%;
  31. border: 4rpx solid #FFF;
  32. }
  33. .list_name{
  34. width: 350rpx;
  35. height: 180rpx;
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: center;
  39. align-items: center;
  40. }
  41. .list_name>view:nth-child(1){
  42. width: 300rpx;
  43. height: 60rpx;
  44. line-height: 60rpx;
  45. text-align: left;
  46. font-size: 38rpx;
  47. font-weight: 700;
  48. }
  49. .list_name>view:nth-child(2){
  50. width: 300rpx;
  51. height: 60rpx;
  52. line-height: 60rpx;
  53. text-align: left;
  54. font-size: 30rpx;
  55. }
  56. .list_attent{
  57. width: 140rpx;
  58. height: 60rpx;
  59. margin: 90rpx auto 30rpx auto;
  60. display: flex;
  61. }
  62. .list_attent image{
  63. width: 40rpx;
  64. height: 40rpx;
  65. margin: auto 0rpx;
  66. }
  67. .list_attent text{
  68. width: 40rpx;
  69. height: 40rpx;
  70. font-size: 32rpx;
  71. font-weight: 700;
  72. margin: auto 10rpx;
  73. }