ProcessFlow.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .ProcessFlow {
  2. margin-top: 100px;
  3. background-color: #fff;
  4. background-image: url('../img/aiBack.png');
  5. h1 {
  6. position: relative;
  7. top: 0;
  8. display: inline-block;
  9. font-size: 64px;
  10. font-weight: 500;
  11. line-height: 92.67px;
  12. padding-left: 100px;
  13. margin-bottom: 90px;
  14. /* background: linear-gradient(to right,#3681FC,#fff); */
  15. z-index: 10;
  16. }
  17. h1::after {
  18. content: '';
  19. width: 100%;
  20. padding: 12px 0;
  21. background: linear-gradient(to right, rgba(54, 129, 252, 1), rgba(54, 129, 252, 0));
  22. position: absolute;
  23. top: 72px;
  24. left: 0;
  25. z-index: -1;
  26. }
  27. .anchor {
  28. /* padding: 0 100px; */
  29. .anchor_flex {
  30. width: 100%;
  31. height: 700px;
  32. background: #11225E;
  33. position: relative;
  34. border-radius: 48px;
  35. .anchor_left {
  36. position: absolute;
  37. color: #fff;
  38. top: 50%;
  39. left: 8%;
  40. transform: translate(0,-50%);
  41. div {
  42. position: relative;
  43. margin: 120px 10px;
  44. text-align: center;
  45. cursor: pointer;
  46. span:nth-child(1) {
  47. font-size: 24px;
  48. font-weight: 400;
  49. line-height: 24px;
  50. text-align: right;
  51. color: #FFFFFFE5;
  52. }
  53. span:nth-child(2) {
  54. font-size: 18px;
  55. font-weight: 400;
  56. line-height: 28px;
  57. text-align: right;
  58. color: #FFFFFF8C;
  59. }
  60. }
  61. .anchor_left_div::after {
  62. content: '';
  63. width: 100%;
  64. padding: 2px 0;
  65. background: linear-gradient(to right, rgba(54, 129, 252, 1), rgba(54, 129, 252, 0));
  66. position: absolute;
  67. top: 45px;
  68. left: 0;
  69. z-index: -1;
  70. }
  71. }
  72. .anchor_right {
  73. height: 100%;
  74. width: 100%;
  75. overflow: auto;
  76. div {
  77. text-align: right;
  78. img {
  79. /* display: block; */
  80. margin: 48px;
  81. /* width: 100%; */
  82. border-radius: 48px;
  83. }
  84. }
  85. }
  86. }
  87. }
  88. }