123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- .messagebox{
- width: 190PX;
- background: #FFFFFF;
- border: 2px solid #01C1B5;
- color: #000000;
- font-size: 13PX;
- padding: 10PX 16PX;
- border-radius: 8PX;
- position: relative;
- line-height: 1.8;
- margin-bottom: 20PX;
- >h3{
- color: #01C1B5;
- font-size: 17PX;
- margin: 0;
- // margin-bottom: 10PX;
- }
- &::after{
- content: '';
- position: absolute;
- bottom: -17PX;
- right: 10PX;
- background: url('./icon.png') no-repeat center;
- width: 20PX;
- height: 20PX;
- background-size: contain;
- }
- }
- @keyframes changsize {
- 0% {
- transform: scale(.9);
- }
- 50% {
- transform: scale(1);
- }
- 100% {
- transform: scale(.9);
- }
- }
- .cloneParent{
- background-color: rgb(1, 193, 181);
- // padding: 0;
- padding-top: 0!important;
- border-radius: 10PX;
- min-height: 60PX;
- animation-duration: 1.5s;
- animation-name: changsize;
- animation-iteration-count:infinite;
- display: inline-flex!important;
- align-items: center;
- :global{
- .van-button{
- border: none;
- width: calc(20px * var(--screen));
- height: calc(20px * var(--screen));
- background-color: transparent;
- }
- .van-badge__wrapper{
- .van-badge{
- font-size: calc(8px * var(--screen));
- word-break: keep-all;
- background-color: #ECECEC;
- color: #333;
- }
- }
- .van-circle__text{
- font-size: calc(6px * var(--screen));
- color: #fff;
- text-align: center;
- padding: 0;
- }
- }
- &.step-1{
- display: flex;
- min-width: calc(2.66667rem * var(--screen));
- width: 200%;
- max-width: calc(5.33333rem * var(--screen));
- button{
- display: none;
- }
- >div{
- width: 100%;
- >div{
- min-width: calc(2.66667rem * var(--screen));
- width: 200%;
- max-width: calc(5.33333rem * var(--screen));
- // background: rgba(1, 193, 181, 0.1);
- display: flex;
- align-items: center;
- height: calc(0.64rem * var(--screen));
- padding: 0 calc(0.10667rem * var(--screen));
- border-radius: calc(0.4rem * var(--screen));
- :global{
- .van-notice-bar__content{
- transform: translateX(0)!important;
- }
- }
- }
- }
- :global{
- .van-notice-bar{
- background-color: transparent;
- }
- }
- }
- &.step-0{
- padding-left: 10PX;
- padding-right: 10PX;
- min-height: 100PX;
- img{
- position: static;
- margin-top: 0;
- // height: 100PX;
- // width: 54PX;
- }
- // display: inline-block;
- }
- }
- .btn{
- width: 100PX;
- height: 32PX;
- }
- .box{
- position: fixed;
- box-shadow: rgba(33, 33, 33, 0.8) 0px 0px 0px 5000px;
- transition: all .25s;
- transform: scale(1.3);
- border-radius: 8px;
- }
|