| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .mobile-modal {
- width: 100%;
- height: 100%;
- z-index: 999;
- background: rgba(0,0,0,.3);
- position: fixed;
- .mobile-modal-box {
- position: fixed;
- width: 5.92rem;
- font-size: .28rem;
- top: 27%;
- left: 11%;
- z-index: 1000;
- .mobile-modal-header {
- line-height: .96rem;
- background: rgb(65,141,246);
- color: #fff;
- text-align: center;
- font-size: .32rem;
- position: relative;
- i {
- position: absolute;
- right: -.13rem;
- font-size: .4rem;
- bottom: .46rem;
- }
- }
- .mobile-modal-content {
- background: #fff;
- color: #333;
- padding: 0 .54rem;
- div {
- padding: .2rem 0;
- line-height: .4rem;
- border-bottom: .01rem solid rgb(183,213,254);
- text-align: center;
- &:last-child {
- border-bottom: none;
- }
- &:first-child {
- text-align: left;
- }
- }
- }
- }
- .mobile-share-box {
- position: fixed;
- width: 100%;
- font-size: .28rem;
- bottom: 0;
- left: 0;
- z-index: 1000;
- background: #fff;
- color: #333;
- .cancel-share {
- height: .98rem;
- line-height: .98rem;
- font-size: .3rem;
- text-align: center;
- }
- .share-area {
- .share-item {
- display: inline-block;
- width: 1.5rem;
- height: 1.52rem;
- padding-top: .3rem;
- i {
- margin: 0 auto;
- display: block;
- font-size: .55rem;
- width: .54rem;
- }
- span {
- display: block;
- text-align: center;
- margin-top: .1rem;
- }
- }
- }
- }
- }
- .link-url {
- color: #01a44e;
- }
|