12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- @import "bower_components/zanui-weapp/dist/index.wxss";
- @import 'style/weui.wxss';
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 0;
- box-sizing: border-box;
- }
- page{
- background-color: #fff;
- font-size: 16px;
- font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
- }
- .page__hd {
- padding: 40px;
- }
- .page__bd {
- padding-bottom: 40px;
- }
- .page__bd_spacing {
- padding-left: 15px;
- padding-right: 15px;
- }
- .page__ft{
- padding-bottom: 10px;
- text-align: center;
- }
- .page__title {
- text-align: center;
- font-size: 20px;
- font-weight: 400;
- }
- .page__desc {
- margin-top: 10px;
- color: #888888;
- text-align: left;
- font-size: 14px;
- }
- .float-icon {
- position: fixed;
- z-index: 999;
- right: 20rpx;
- bottom: 110rpx;
- }
- .dial {
- width: 114rpx;
- height: 150rpx;
- border-radius: 10rpx;
- display: block;
- margin-bottom: 32rpx;
- }
- .we7-bottom-placeholder { width: 100%; height: 134rpx; position: relative; bottom: 0; z-index: -1 }
- .we7-bottom { display: flex; overflow: hidden; position: fixed; left: 0; right: 0; bottom: 0; padding: 10rpx 0; border-top: 1px solid #eee; background-color: #fff; z-index:99; }
- .we7-bottom.active { background-color: #fff; }
- .we7-bottom.active wx-navigatorurl { background-color: #fff }
- .we7-bottom .we7-bottom-item { flex: 1; padding: 10rpx; text-align: center; position: relative; }
- .we7-bottom .item-img { width: 50rpx; height: 50rpx; display: inline-block }
- .we7-bottom .item-text { display: block; font-size: 12px; line-height:1 }
- .we7-bottom-item wx-button,.we7-bottom-item wx-web-view{ position: absolute; top:5px; left: 30%; background: red; width: 100rpx; height: 100rpx; opacity: 0.0; z-index: 100; }
- .we7-bottom-item wx-navigator{ position: absolute; display: block; top:5px; left: 30%; background: red; width: 100rpx; height: 100rpx; opacity: 0.0; z-index: 100; }
- .we7-bottom-item .aview{ position: absolute; display: block; top:5px; left: 30%; background: red; width: 100rpx; height: 100rpx; opacity: 0.0; z-index: 100; }
|