index.wxss 1.0 KB

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