12345678910111213141516171819202122232425262728 |
- /* 初始化样式 */
- page,view,text,swiper,swiper-item,image,navigator{
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- }
- /* 定义主题颜色 */
- page{
- --themeColor:#191B26;
- --nodateColor:#eeeeee;
- }
- .flex_column{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .flex_row{
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .one-line-text {
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
|