123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- .mine {
- padding: 48px 20px;
- // min-height: 100vh;
- background-color: #041129;
- .before-painting {
- padding: 0 20px;
- }
- .title {
- width: 100%;
- display: flex;
- justify-content: center;
- .title-img {
- width: 500px;
- height: 120px;
- }
- }
- .banner {
- position: relative;
- margin-top: 60px;
- .banner-content {
- position: relative;
- left: 50%;
- transform: translateX(-50%);
- width: 100%;
- height: 730px;
- .content-img {
- width: 100%;
- height: 100%;
- }
- .album_swiper_video{
- width: 100%;
- height: 100%;
- }
- .delete {
- position: absolute;
- right: -20px;
- top: -20px;
- width: 40px;
- height: 40px;
- }
- }
- .banner-tips {
- margin-top: 20px;
- text-align: center;
- font-size: 28px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FDFDFD;
- line-height: 40px;
- }
- }
- .step {
- margin-top: 60px;
- width: 100%;
- display: flex;
- justify-content: center;
- .step-img {
- width: 536px;
- height: 76px;
- }
- }
- .update {
- margin-top: 40px;
- width: 100%;
- display: flex;
- justify-content: space-between;
- .update-button-more{
- width: 206px;
- height: 94px;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #2C2C2C;
- border-radius: 46px;
- font-size: 32px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FDFDFD;
- }
- .update-button {
- width: 418px;
- height: 94px;
- background: linear-gradient(90deg, #0F83FE, #01FBCD);
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 32px;
- border-radius: 46px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FDFDFD;
- }
- .update-button:active {
- opacity: 0.5;
- }
- }
- .tip-img {
- margin-top: 54px;
- width: 100%;
- display: flex;
- justify-content: center;
- .ps-image {
- width: 566px;
- height: 194px;
- }
- }
- .after-painting {
- padding: 0 60px;
- .result-banner {
- position: relative;
- margin-top: 20px;
- .result-banner-content {
- position: relative;
- left: 50%;
- transform: translateX(-50%);
- width: 440px;
- .result-content-img {
- width: 100%;
- min-height: 440px;
- }
- .delete {
- position: absolute;
- right: -20px;
- top: -20px;
- width: 40px;
- height: 40px;
- }
- }
- .banner-tips {
- margin-top: 20px;
- text-align: center;
- font-size: 28px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FDFDFD;
- line-height: 40px;
- }
- }
- .after-tips {
- margin-top: 60px;
- text-align: center;
- font-size: 36px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- .result-update {
- margin-top: 40px;
- .result-recharge-button {
- background: linear-gradient(90deg, #C367DE, #3342FF);
- border-radius: 46px;
- width: 100%;
- height: 94px;
- display: flex;
- align-items: center;
- justify-content: center;
- .result-recharge-button-content {
- .result-recharge-button-top {
- font-size: 32px;
- font-family: PingFang SC;
- font-weight: bold;
- text-align: center;
- color: #FFFFFF;
- line-height: 40px;
- }
- .result-recharge-button-bottom {
- font-size: 24px;
- font-family: PingFang SC;
- font-weight: bold;
- text-align: center;
- color: rgba(255, 255, 255, .7);
- line-height: 40px;
- }
- }
- }
- .result-update-button {
- margin-top: 38px;
- border-radius: 46px;
- width: 100%;
- height: 94px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FDFDFD;
- border: 2px solid #FFFFFF;
- .result-update-img {
- width: 52px;
- height: 52px;
- display: block;
- margin-right: 10px;
- }
- }
- .result-update-button:active {
- opacity: 0.5;
- }
- }
- }
- /* 定义动画 */
- @keyframes shrink {
- 0%,
- 100% {
- transform: translateY(0) scale(1);
- }
- 50% {
- transform: translateY(0px) scale(0.95);
- }
- }
- /* 应用动画 */
- .update-active {
- animation: shrink 1.2s ease-in-out infinite;
- }
- }
|