| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- @charset "UTF-8";
- /***
- 全局scss 变量和方法 存放处
- */
- /* 引入minxin */
- /* 颜色变量 */
- /*图片地址*/
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .app-share-mask .share-mask.data-v-173f4a9e {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 998;
- opacity: 0;
- color: #fff;
- }
- .app-share-mask .share-mask .share-content.data-v-173f4a9e {
- width: 100%;
- text-align: right;
- }
- .app-share-mask .share-mask .share-content .share-img.data-v-173f4a9e {
- width: 90rpx;
- margin: 26rpx 128rpx 36rpx auto;
- }
- .app-share-mask .share-mask .share-content .share-text.data-v-173f4a9e {
- width: 210rpx;
- font-size: 34rpx;
- text-align: center;
- margin: 0 80rpx 36rpx auto;
- }
- .app-share-mask .share-mask .share-btn.data-v-173f4a9e {
- display: -webkit-box;
- display: flex;
- display: -webkit-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- margin-top: 200rpx;
- }
- .app-share-mask .share-mask .share-btn .button-com.data-v-173f4a9e {
- width: 340rpx;
- padding-top: 32rpx;
- padding-bottom: 32rpx;
- margin: 0 auto;
- font-size: 32rpx;
- }
- .app-share-mask .share-mask-show.data-v-173f4a9e {
- opacity: 1;
- }
- .app-share-mask .tui-alert-mask.data-v-173f4a9e {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.5);
- z-index: 996;
- -webkit-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- opacity: 0;
- visibility: hidden;
- }
- .app-share-mask .tui-alert-mask-show.data-v-173f4a9e {
- visibility: visible;
- opacity: 1;
- }
|