123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- .mine {
- padding: 48px 20px;
- min-height: 100vh;
- background-color: #041129;
- .banner {
- position: relative;
- margin-top: 20px;
- .banner-content {
- position: relative;
- left: 50%;
- transform: translateX(-50%);
- width: 312px;
- height: 312px;
- .content-img {
- 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;
- }
- }
- .model-list {
- margin-top: 20px;
- display: flex;
- flex-wrap: wrap;
- .model-info {
- position: relative;
- background-size: 100% 100%;
- margin-bottom: 16px;
- width: 220px;
- margin-left: 14px;
- height: 220px;
- display: block;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- background-color: rgba(255, 255, 255, .05);
- border-radius: 16px;
- .model-info-bottom {
- position: absolute;
- z-index: 1;
- bottom: 0;
- left: 0;
- width: 100%;
- font-size: 32px;
- background-color: rgba(0, 0, 0, 0.4);
- ;
- color: #FFFFFF;
- text-align: center;
- }
- .moonlight {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 2;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.6);
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 28px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- }
- }
- .isOpen {
- display: flex;
- justify-content: center;
- .open-content {
- width: 174px;
- height: 80px;
- background-color: rgba(255, 255, 255, .05);
- border-radius: 16px;
- display: flex;
- justify-content: center;
- align-items: center;
- .open-title {
- font-family: PingFangSC-Regular;
- font-size: 32px;
- color: #0F84EC;
- letter-spacing: 0;
- text-align: center;
- }
- .open-img {
- width: 40px;
- height: 40px;
- margin-left: 5px;
- display: block;
- }
- }
- }
- .update {
- margin-top: 40px;
- /* 定义动画 */
- @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;
- }
- .update-button {
- background: linear-gradient(90deg, #038EFF, #3342FF);
- 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;
- .update-img {
- width: 52px;
- height: 52px;
- display: block;
- }
- }
- }
- .tip-img {
- margin-top: 54px;
- width: 100%;
- display: flex;
- justify-content: center;
- .ps-image {
- width: 566px;
- height: 194px;
- }
- }
- }
|