| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- #app {
- font-family: -apple-system, SF UI Text, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
- font-size: 14px;
- font-weight: 400;
- line-height: 1.6;
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- top: 0;
- overflow: hidden;
- width: 100%;
- height: 100%;
- background-color: #00A0E8;
- flex-direction: column;
- display: none;
- }
- #app.err {
- background: black;
- color: white;
- justify-content: center;
- padding: 0 40px;
- box-sizing: border-box;
- }
- .err-msg {
- border: 1px solid rgba(245, 108, 108, 1);
- color: rgba(245, 108, 108, 1);
- background: rgba(245, 108, 108, 0.25);
- border-radius: 4px;
- padding: 10px;
- text-align: center;
- font-size: 14px;
- margin-bottom: 20px;
- }
- .err-back {
- background: rgba(253, 251, 96, 1);
- height: 40px;
- text-align: center;
- border-radius: 4px;
- color: #333230;
- font-weight: bold;
- font-size: 14px;
- line-height: 40px;
- }
- .err-back:active {
- background: rgb(171, 169, 65);
- }
- .back {
- width: 28px;
- height: 28px;
- }
- .van-nav-bar__left {
- display: flex;
- align-items: center;
- height: 100%;
- }
- .van-nav-bar__title {
- color: #000;
- font-weight: bold;
- }
- .container {
- flex-grow: 1;
- box-sizing: border-box;
- overflow-x: hidden;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- padding: 15px;
- }
- .overlay .overlay-img {
- width: 186px;
- height: 210px;
- margin-right: 15px;
- }
- .overlay .overlay-text1 {
- width: 272px;
- font-size: 16px;
- font-weight: bold;
- color: rgba(255, 255, 255, 1);
- line-height: 22px;
- margin: 15px auto 0;
- }
- .overlay .overlay-text2 {
- width: 272px;
- font-size: 13px;
- color: rgba(255, 255, 255, 1);
- line-height: 18px;
- margin: 15px auto 0;
- }
- .icon {
- display: block;
- width: 100px;
- height: 118px;
- margin: 88px auto 0;
- }
- .text {
- width: 176px;
- height: 44px;
- font-size: 16px;
- font-weight: bold;
- color: rgba(255, 255, 255, 1);
- line-height: 22px;
- text-align: center;
- margin: 31px auto;
- }
- .van-button--normal {
- font-size: 16px;
- font-weight: bold;
- color: rgba(0, 160, 232, 1);
- line-height: 22px;
- }
|