123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- .container {
- position: relative;
- min-height: 100vh;
- background-color: #3609B8;
- overflow: hidden;
- .headerBg {
- position: absolute;
- width: 100%;
- height: 598rpx;
- }
- .body {
- position: relative;
- z-index: 2;
- margin: 206rpx auto 36rpx;
- width: 700rpx;
- .uploadBox {
- position: relative;
- width: 100%;
- height: 790rpx;
- .uploadBg {
- width: 100%;
- height: 100%;
- }
- .loading {
- position: absolute;
- width: 100%;
- top: 300rpx;
- text-align: center;
- z-index: 3;
- color: white;
- .loadingImg {
- width: 110rpx;
- height: 110rpx;
- animation: identifier 2.6s infinite linear;
- }
- .tips1 {
- margin: 42rpx 0rpx 42rpx;
- font-size: 34rpx;
- }
- .tips2 {
- font-size: 26rpx;
- }
- }
- .fillImg {
- position: absolute;
- width: 660rpx;
- height: 642rpx;
- left: 22rpx;
- top: 118rpx;
- border-radius: 20rpx;
- object-fit: cover;
- }
- .imgMask::before {
- position: absolute;
- content: "";
- width: 660rpx;
- height: 642rpx;
- background-color: rgba(0, 0, 0, 0.4);
- }
- }
- .templateBox {
- margin-top: 30rpx;
- .tHeaderBg {
- width: 700rpx;
- height: 48rpx;
- }
- .templates {
- position: relative;
- width: 100%;
- // height: 236rpx;
- border-radius: 20rpx;
- .tbg {
- position: absolute;
- z-index: -1;
- width: 100%;
- height: 100%;
- }
- .templateScroll {
- width: 100%;
- padding: 36rpx 0 6rpx 16rpx;
- white-space: nowrap;
- box-sizing: border-box;
- .template {
- margin-right: 10rpx;
- display: inline-block;
- .cover {
- width: 140rpx;
- height: 140rpx;
- margin-right: 20rpx;
- background-color: white;
- border-radius: 10rpx;
- }
- .name {
- margin-top: 12rpx;
- width: 140rpx;
- color: white;
- text-align: center;
- font-size: 26rpx;
- }
- .active {
- border: 4rpx solid #FDD841;
- box-sizing: border-box;
- }
- }
- }
- }
- }
- }
- .btns {
- width: 700rpx;
- margin: 0 auto 40rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .btn {
- width: 285rpx;
- height: 82rpx;
- }
- }
- }
|