/**
 * 拓展样式
 */

// 竖直分隔符
.t-divider {
	&:not(:last-child) {
		&::after {
			content: '｜';
			padding: 0 0 0 5px;
			margin-bottom: 2px;
			color: #dcdfe6;
			text-align: center;
		}
	}
}

// start--iPhoneX底部安全区定义
.safe-area-inset-bottom {
	padding-bottom: 0;
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}

// css滤镜控制黑白底色gif的
.gif-black {
	mix-blend-mode: screen;
}

.gif-white {
	mix-blend-mode: multiply;
}
