viewStyle.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .layout-view{
  2. margin-top:30rem;
  3. }
  4. .aiEdit {
  5. position: relative;
  6. width: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. .aiStyleList {
  11. width: 100%;
  12. height: 240rem;
  13. /* background: #333; */
  14. flex-shrink: 0;
  15. white-space: nowrap;
  16. .scrollViewItem {
  17. width: 152rem;
  18. height: 100%;
  19. display: inline-block;
  20. margin: 0rem 10rem;
  21. }
  22. .scrollViewItem:first-child {
  23. margin-left: 30rem;
  24. }
  25. .scrollViewItem:last-child {
  26. margin-right: 30rem;
  27. }
  28. .styleItem {
  29. position: absolute;
  30. width: 144rem;
  31. height: 100%;
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: center;
  35. align-items: center;
  36. /* background: red; */
  37. .styleIcon {
  38. width: 144rem;
  39. height: 144rem;
  40. background: #5c5c5c;
  41. border-radius: 12rem;
  42. border: 2rem solid #fff;
  43. }
  44. .styleTitle {
  45. margin-top: 20rem;
  46. font-family: "Verdana";
  47. font-weight: 400;
  48. font-size: 28rem;
  49. text-align: center;
  50. color: #4e4e4e;
  51. }
  52. }
  53. .styleItemSelected {
  54. .styleIcon {
  55. border: 2rem solid #ff9c38;
  56. }
  57. .styleTitle {
  58. font-family: "Verdana Bold";
  59. font-weight: 700;
  60. color: #ff9f40;
  61. }
  62. }
  63. }
  64. .aiStyleList ::-webkit-scrollbar {
  65. width: 0;
  66. height: 0;
  67. background-color: transparent;
  68. }
  69. .aiTool {
  70. width: 100%;
  71. height: 100rem;
  72. display: flex;
  73. flex-direction: row;
  74. align-items: center;
  75. justify-content: center;
  76. /* background: red; */
  77. // margin: 0rem 30rem;
  78. margin-top: 10rem;
  79. padding: 0rem 30rem;
  80. box-sizing: border-box;
  81. .changeBtn {
  82. width: 320rem;
  83. height: 100rem;
  84. border-radius: 50rem;
  85. background: rgba(255, 156, 56, 0.15);
  86. margin-right: 30rem;
  87. line-height: 100rem;
  88. text-align: center;
  89. font-family: "DIN Alternate Bold";
  90. font-weight: 700;
  91. font-size: 32rem;
  92. color: #ff9f36;
  93. }
  94. .submitBtn {
  95. width: 460rem;
  96. border-radius: 50rem;
  97. background: rgba(255, 156, 56, 0.15);
  98. text-align: center;
  99. height: 100%;
  100. line-height: 100rem;
  101. font-family: "DIN Alternate Bold";
  102. font-weight: 700;
  103. font-size: 28rem;
  104. color: #fff;
  105. box-shadow: 0 6rem 20rem rgba(242, 152, 2, 0.2);
  106. backdrop-filter: blur(40rem);
  107. background-color: rgba(255, 255, 255, 0.15);
  108. background-image:linear-gradient(124deg, rgba(245, 201, 82, 1) 0%, rgba(239, 149, 57, 1) 100%);
  109. }
  110. .continue{
  111. width: 330rem;
  112. background: #fab060;
  113. }
  114. .right-icon{
  115. width: 34rem;
  116. height: 34rem;
  117. margin-right:10rem;
  118. }
  119. .magic-icon{
  120. width: 40.6rem;
  121. height: 40.56rem;
  122. margin-right:10rem;
  123. }
  124. }
  125. }