| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .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;
- }
- .mobile-modal-content {
- background: #fff;
- color: #333;
- padding: .27rem .54rem;
- }
- }
- .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;
- padding: .3rem .47rem;
- img {
- margin: 0 auto;
- display: block;
- }
- span {
- display: block;
- text-align: center;
- margin-top: .1rem;
- }
- }
- }
- }
- }
- .link-url {
- color: #01a44e;
- }
|