123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* @import '/style/weui.wxss'; */
- .page {
- line-height: 1.6;
- font-family: -apple-system-font, Helvetica Neue, sans-serif;
- }
- .hd {
- padding: 10px 15px 0;
- }
- .page_title {
- text-align: center;
- font-size: 34px;
- color: #3CC51F;
- font-weight: 400;
- margin: 10% 25% 0% 25%;
- }
- .bd {
- margin: 10% 25% 0% 25%;
- padding-left: 20px;
- }
- .weui_btn_primary {
- background-color: #04be02;
- }
- .weui_btn {
- position: relative;
- display: block;
- margin-left: auto;
- margin-right: auto;
- padding-left: 14px;
- padding-right: 14px;
- box-sizing: border-box;
- font-size: 18px;
- text-align: center;
- text-decoration: none;
- color: #FFFFFF;
- line-height: 2.33333333;
- border-radius: 5px;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- overflow: hidden;
- }
- .weui_btn:after {
- content: " ";
- width: 200%;
- height: 200%;
- position: absolute;
- top: 0;
- left: 0;
- border: 1px solid rgba(0, 0, 0, 0.2);
- -webkit-transform: scale(0.5);
- -ms-transform: scale(0.5);
- transform: scale(0.5);
- -webkit-transform-origin: 0 0;
- -ms-transform-origin: 0 0;
- transform-origin: 0 0;
- box-sizing: border-box;
- border-radius: 10px;
- }
|