index.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .content-title {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. background: transparent;
  6. box-sizing: border-box;
  7. padding-bottom: 160rpx;
  8. }
  9. .content-name {
  10. font-size: 36rpx;
  11. font-family: PingFangSC-Regular;
  12. font-weight: 400;
  13. color: rgba(69, 82, 107, 1);
  14. line-height: 50rpx;
  15. margin-top: 22rpx;
  16. }
  17. .content-line {
  18. width: 28rpx;
  19. height: 6rpx;
  20. background: rgba(69, 82, 107, 1);
  21. border-radius: 2px;
  22. }
  23. .content-describe {
  24. font-size: 24rpx;
  25. font-family: PingFangSC-Regular;
  26. font-weight: 400;
  27. color: rgba(140, 152, 174, 1);
  28. line-height: 24rpx;
  29. margin-top: 6rpx;
  30. margin-bottom: 22rpx
  31. }
  32. .doc-container{
  33. position: fixed;
  34. right: 40rpx;
  35. bottom: 60rpx;
  36. z-index: 2;
  37. width: 100rpx;
  38. height: 100rpx;
  39. border-radius: 50%;
  40. box-shadow:0px 3px 8px 0px rgba(155,193,185,0.5);
  41. display: flex;
  42. justify-content: center;
  43. background-color: #fff;
  44. align-items: center;
  45. }
  46. .doc-img{
  47. width: 50rpx;
  48. height:50rpx;
  49. }
  50. .doc-txt{
  51. font-size: 28rpx;
  52. color: #3963BC;
  53. margin-top: 15rpx;
  54. }