123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- .layout-view{
- margin-top:30rem;
- }
- .aiEdit {
- position: relative;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- .aiStyleList {
- width: 100%;
- height: 240rem;
- /* background: #333; */
- flex-shrink: 0;
- white-space: nowrap;
- .scrollViewItem {
- width: 152rem;
- height: 100%;
- display: inline-block;
- margin: 0rem 10rem;
- }
- .scrollViewItem:first-child {
- margin-left: 30rem;
- }
- .scrollViewItem:last-child {
- margin-right: 30rem;
- }
- .styleItem {
- position: absolute;
- width: 144rem;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- /* background: red; */
- .styleIcon {
- width: 144rem;
- height: 144rem;
- background: #5c5c5c;
- border-radius: 12rem;
- border: 2rem solid #fff;
- }
- .styleTitle {
- margin-top: 20rem;
- font-family: "Verdana";
- font-weight: 400;
- font-size: 28rem;
- text-align: center;
- color: #4e4e4e;
- }
- }
- .styleItemSelected {
- .styleIcon {
- border: 2rem solid #ff9c38;
- }
- .styleTitle {
- font-family: "Verdana Bold";
- font-weight: 700;
- color: #ff9f40;
- }
- }
- }
- .aiStyleList ::-webkit-scrollbar {
- width: 0;
- height: 0;
- background-color: transparent;
- }
- .aiTool {
- width: 100%;
- height: 100rem;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- /* background: red; */
- // margin: 0rem 30rem;
- margin-top: 10rem;
- padding: 0rem 30rem;
- box-sizing: border-box;
- .changeBtn {
- width: 320rem;
- height: 100rem;
- border-radius: 50rem;
- background: rgba(255, 156, 56, 0.15);
- margin-right: 30rem;
- line-height: 100rem;
- text-align: center;
- font-family: "DIN Alternate Bold";
- font-weight: 700;
- font-size: 32rem;
- color: #ff9f36;
- }
- .submitBtn {
- width: 460rem;
- border-radius: 50rem;
- background: rgba(255, 156, 56, 0.15);
- text-align: center;
- height: 100%;
- line-height: 100rem;
- font-family: "DIN Alternate Bold";
- font-weight: 700;
- font-size: 28rem;
- color: #fff;
- box-shadow: 0 6rem 20rem rgba(242, 152, 2, 0.2);
- backdrop-filter: blur(40rem);
- background-color: rgba(255, 255, 255, 0.15);
- background-image:linear-gradient(124deg, rgba(245, 201, 82, 1) 0%, rgba(239, 149, 57, 1) 100%);
- }
- .continue{
- width: 330rem;
- background: #fab060;
- }
- .right-icon{
- width: 34rem;
- height: 34rem;
- margin-right:10rem;
- }
- .magic-icon{
- width: 40.6rem;
- height: 40.56rem;
- margin-right:10rem;
- }
- }
- }
|