| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- @charset "UTF-8";
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- @font-face {
- font-family: "iconfont";
- /* Project id 4837432 */
- src: url("https://at.alicdn.com/t/c/font_4837432_m0jprcc44g.woff?t=1740725521618") format("woff"), url("https://at.alicdn.com/t/c/font_4837432_m0jprcc44g.ttf?t=1740725521618") format("truetype"), url("https://at.alicdn.com/t/c/font_4837432_m0jprcc44g.svg?t=1740725521618#iconfont") format("svg");
- }
- .iconfont {
- font-family: "iconfont" !important;
- font-size: 16px;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .icon-search:before {
- content: "\e652";
- }
- .icon-left:before {
- content: "\e627";
- }
- .icon-yiwen:before {
- content: "\e6f0";
- }
- .icon-mulu:before {
- content: "\e779";
- }
- .icon-Aa:before {
- content: "\e636";
- }
- .icon-liuyan:before {
- content: "\e650";
- }
- .icon-zuotijilu:before {
- content: "\e61a";
- }
- .icon-xiezi:before {
- content: "\e651";
- }
- .icon-bookmark:before {
- content: "\e89c";
- }
- .icon-bookshelf:before {
- content: "\e63d";
- }
- .icon-addbookshelf:before {
- content: "\e62d";
- }
- .icon-schedule:before {
- content: "\e672";
- }
- .icon-xuetang:before {
- content: "\e79c";
- }
- .icon-shezhi:before {
- content: "\e603";
- }
- .icon-xuanxiang:before {
- content: "\f105";
- }
- .icon-jilu:before {
- content: "\e62e";
- }
- .icon-bagua:before {
- content: "\e625";
- }
- page, page {
- margin: 0;
- padding: 0;
- }
- .center_in_sequence {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .center_in {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .space_between {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .same_row_in {
- display: flex;
- align-items: center;
- }
- .up_and_down {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- }
- .frame {
- position: relative;
- }
- .frame::after {
- position: absolute;
- content: '';
- border-bottom: 4rpx solid #e4e7ed;
- width: 200%;
- height: 200%;
- top: 0;
- left: 0;
- -webkit-transform: scale(0.5);
- transform: scale(0.5);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- pointer-events: none;
- /* 使伪元素不会阻止鼠标事件 */
- }
- page {
- background-color: #F8F8F8;
- }
- /*每个页面公共css */
|