123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /**app.wxss**/
- .container {
- font-family:"Microsoft Yahei",Tahoma,Arial,Helvetica,STHeiti;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- box-sizing: border-box;
- }
- page {
- background-color: #e2e2e2;
- }
- .no_border{
- border:0px none;
- }
- .clearfix{
- clear:both;
- zoom: 1;
- }
- .clearfix:after {
- content: "";
- height: 0;
- display: block;
- overflow: hidden;
- clear: both;
- }
- .navigator-hover{
- background-color: transparent;
- opacity: 1;
- }
- /* button - share */
- button[plain] {
- color:#353535;
- border:0px none;
- background-color:transparent;
- }
- /* 提示弹窗 */
- .modal_wrap{
- position: fixed;
- top:0;
- left:0;
- z-index: 999999;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .modal{
- max-width: 600rpx;
- font-size: 28rpx;
- color:#fff;
- padding:15rpx 20rpx;
- background-color: rgba(0,0,0,0.6);
- }
- .hidden{
- display: none;
- }
- .modal_bg{
- width: 100%;
- height: 100%;
- position: fixed;
- top:0;
- left:0;
- z-index: 11;
- background-color: rgba(0,0,0,0.5);
- }
- .loading{
- text-align: center;
- font-size: 30rpx;
- line-height: 60rpx;
- color: #c8c8c8;
- }
- /* 返回首页 */
- .back_btn{
- position: fixed;
- right: 22rpx;
- bottom:118rpx ;
- z-index: 20;
- }
- .back_btn_hidden{
- display: none;
- }
- .back_btn_icon{
- display: block;
- width: 80rpx;
- height: 80rpx;
- }
- button.form_button{
- background-color: transparent;
- padding: 0;
- margin: 0;
- display: inline;
- position: static;
- border: 0;
- font-size:0;
- color:transparent;
- }
- button.form_button::after{
- content:'';
- width:0;
- height: 0;
- -webkit-transform:scale(1);
- transform:scale(1);
- display:none;
- background-color:transparent;
- }
- /* 定制的公共样式 */
- @import './style/customized.wxss'
|