| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @charset "UTF-8";
- /***
- 全局scss 变量和方法 存放处
- */
- /* 引入minxin */
- /* 颜色变量 */
- /*图片地址*/
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .tui-timeaxis-item.data-v-0cd57f2d {
- position: relative;
- width: 100%;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- /* margin-bottom: 50upx; */
- }
- .tui-node.data-v-0cd57f2d {
- position: absolute;
- top: 0;
- left: -20rpx;
- /* padding: 3upx 0; */
- -webkit-transform-origin: 0;
- transform-origin: 0;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- z-index: 99;
- background: #D8D8D8;
- font-size: 24rpx;
- }
- .tui-node-small.data-v-0cd57f2d {
- width: 16rpx !important;
- height: 16rpx !important;
- border-radius: 50%;
- }
|