index.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .coder-content {
  2. position: relative;
  3. height: 650rpx;
  4. width: 630rpx;
  5. background: #fff;
  6. border-radius: 20rpx;
  7. text-align: center;
  8. font-family: PingFangSC-Medium;
  9. }
  10. .coder-content .t1 {
  11. font-size: 36rpx;
  12. font-weight: 500;
  13. color: #444;
  14. line-height: 36rpx;
  15. margin-bottom: 60rpx;
  16. margin-top: 60rpx;
  17. }
  18. .coder-content .t2 {
  19. font-size: 24rpx;
  20. font-weight: 400;
  21. color: #bababa;
  22. line-height: 24rpx;
  23. margin-top: 40rpx;
  24. }
  25. .coder-content .item {
  26. display: inline-block;
  27. margin-left: 20rpx;
  28. width: 68rpx;
  29. height: 68rpx;
  30. line-height: 68rpx;
  31. text-align: center;
  32. border-radius: 10rpx;
  33. border: 2rpx solid #444;
  34. font-size: 40rpx;
  35. font-family: PingFangSC-Regular;
  36. font-weight: 400;
  37. color: #444;
  38. }
  39. .coder-content .item:first-of-type {
  40. margin-left: 0;
  41. }
  42. .coder-content .icon-wrap {
  43. height: 60rpx;
  44. width: 60rpx;
  45. position: absolute;
  46. right: 10rpx;
  47. top: 10rpx;
  48. display: flex;
  49. align-items: center;
  50. justify-content: center;
  51. }
  52. .coder-content .icon-close {
  53. height: 24rpx;
  54. width: 24rpx;
  55. }
  56. .coder-content .code-img .img {
  57. width: 60%;
  58. }