12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- * {
- padding: 0;
- margin: 0;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .article {
- padding: 0 0.15rem 0.38rem 0.15rem;
- }
- .article_title {
- padding-top: 0.2rem;
- font-size: 0.2rem;
- color: #333333;
- font-weight: 600;
- }
- .article_time {
- margin-top: 0.06rem;
- font-size: 0.14rem;
- padding-bottom: 0.18rem;
- color: #999999;
- }
- .article_body img {
- max-width: 100% !important;
- }
- .article_prompt {
- border: 2px solid #B1B5FB;
- -webkit-box-shadow: 0px 0.05rem 0.2rem #bbb;
- -moz-box-shadow: 0px 0.05rem 0.2rem #bbb;
- box-shadow: 0px 0.05rem 0.2rem #bbb;
- width: 3.4rem;
- padding: 0.2rem;
- font-size: 0.15rem;
- color: #333333;
- border-radius: 0.2rem;
- margin-bottom: 0.2rem;
- }
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 0.5rem;
- background: #FFFFFF;
- box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .footer a {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 3.46rem;
- height: 0.38rem;
- font-size: 0.16rem;
- color: #FFFFFF;
- background: #23B0CB;
- text-decoration: none;
- border-radius: 0.04rem;
- }
|