| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @charset "UTF-8";
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .box-slideLeft {
- position: relative;
- overflow: hidden;
- }
- .box-slideLeft view {
- box-sizing: border-box;
- }
- .box-slideLeft .touch-item {
- position: absolute;
- top: 0;
- padding: 10px 10px 10px;
- background-color: #FFFFFF;
- overflow: hidden;
- }
- .box-slideLeft .touch-slideLeft {
- position: relative;
- width: 100%;
- z-index: 5;
- transition: left 0.2s ease-in-out;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .box-slideLeft .del-box-touch-slideLeft {
- right: 0;
- float: left;
- width: 70px;
- height: 100%;
- line-height: 101px;
- background-color: #FF1E1E;
- border-radius: 0 10px 10px 0;
- color: #fff;
- font-size: 18px;
- font-weight: lighter;
- text-align: center;
- }
- .box-slideLeft .delete {
- font-size: 28rpx;
- }
- .box-slideLeft .icon-shanchu {
- font-size: 44rpx;
- }
- .box-slideLeft .cf-shuCenter {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
|