/* pages/IDCardWithNFC/index.wxss */ .wellcome { display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 70px; } .wellcome .pass { position: absolute; right: 16px; top: 24px; } .wellcome .sub { width: 320px; height: 100px; padding: 0 32px 0 24px; background-color: #fff; border-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(101, 101, 101, 0.1); box-sizing: border-box; border: 1px solid transparent; margin-bottom: 16px; } .wellcome .sub i { font-size: 40px; color: #999; } .wellcome .sub.active { border-color: #1890ff; color: #1890ff; } .wellcome .sub.active i { color: #1890ff; } .drawerMask { position: fixed; z-index: 1000; top: 0; right: 0; left: 0; bottom: 0; transition: opacity 0.3s, visibility 0.3s; background: rgba(0, 0, 0, 0.6); visibility: hidden; opacity: 0; } .drawerMask.showDrawer { opacity: 1; visibility: visible; } .drawer.showDrawer { /* position: relative; */ border-radius: 8px 8px 0 0; width: 100vw; height: 55vh; /* bottom: -44px; */ /* padding-bottom: 44px; */ } .drawer { position: fixed; left: 0; right: 0; bottom: 0px; z-index: 2000; width: 100vw; background-color: #fff; height: 0; overflow: hidden; transition: all 0.3s; } .InfoContent{ padding: 0 16px; } .sureBtn{ position: absolute; bottom: 54px; left: 50%; transform: translateX(-50%); }