123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- .mine {
- padding: 1px 40px;
- min-height: 100vh;
- position: relative;
- background-color: #041129;
- .banner {
- position: relative;
- border-radius: 20px;
- width: 100%;
- .banner-content {
- position: relative;
- border-radius: 20px;
- left: 50%;
- transform: translateX(-50%);
- width: 100%;
- height: 740px;
- }
- .content-img {
- // background-color: #545353;
- border-radius: 20px;
- width: 100%;
- height: 100%;
- }
- .content-wait {
- border-radius: 20px;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.6);
- .wait-date {
- margin-top: 12px;
- margin-left: 16px;
- font-size: 36px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- .wait-middle {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- font-size: 40px;
- font-family: PingFang SC;
- font-weight: 800;
- color: #FFFFFF;
- }
- .wait-bottom {
- width: 100%;
- position: absolute;
- bottom: 40px;
- left: 0;
- font-size: 40px;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- .wait-num {
- text-align: center;
- }
- .wait-get-num {
- text-align: center;
- margin-top: 16px;
- text-decoration: underline
- }
- }
- }
- }
- .recharge {
- margin-top: 30px;
- width: 100%;
- white-space: nowrap;
- .recharge-info {
- position: relative;
- border-radius: 10px;
- margin-right: 20px;
- display: inline-block;
- .recharge-image {
- width: 130px;
- height: 230px;
- display: block;
- background-color: #545353;
- border-radius: 10px;
- }
- .lock {
- border-radius: 10px;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.6);
- .lock-content {
- position: relative;
- top: 50%;
- transform: translateY(-50%);
- .lock-img {
- position: relative;
- left: 50%;
- transform: translateX(-50%);
- width: 36px;
- display: block;
- height: 36px;
- }
- .lock-title {
- text-align: center;
- margin-top: 10px;
- font-size: 26px;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- }
- }
- }
- }
- .tips {
- margin-top: 30px;
- font-size: 26px;
- font-family: PingFang SC;
- font-weight: 500;
- color: #c7c5c5;
- text-align: center;
- }
- .send {
- width: 100%;
- display: flex;
- justify-content: center;
- }
- .sendTT {
- margin-top: 100px;
- width: 460px;
- height: 80px;
- line-height: 80px;
- text-align: center;
- font-size: 28px;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- background: linear-gradient(90deg, #1cbd67, #13c027);
- border-radius: 14px;
- }
- /* 定义动画 */
- @keyframes shrink {
- 0%,
- 100% {
- transform: translateY(0) scale(1);
- }
- 50% {
- transform: translateY(0px) scale(0.95);
- }
- }
- /* 应用动画 */
- .sendTT {
- animation: shrink 1.2s ease-in-out infinite;
- }
- .control {
- width: 100%;
- margin-top: 100px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28px;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- .download {
- width: 260px;
- height: 80px;
- line-height: 80px;
- text-align: center;
- background: linear-gradient(90deg, #038EFF, #3342FF);
- border-radius: 14px;
- }
- .toIndex {
- width: 260px;
- height: 80px;
- line-height: 80px;
- text-align: center;
- background: linear-gradient(90deg, #038EFF, #3342FF);
- border-radius: 14px;
- }
- }
- }
|