//黑白样式
.gray{
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
}
/*重写代金券滚动条,适配移动端*/
.div_content::-webkit-scrollbar {
-webkit-appearance: none;
}
.div_content::-webkit-scrollbar:vertical {
width: 0.15rem;
}
.div_content::-webkit-scrollbar:horizontal {
height: 12px;
}
.div_content::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, .5);
border-radius: 10px;
border: 2px solid #ffffff;
}
.div_content::-webkit-scrollbar-track {
border-radius: 10px;
background-color: #ffffff;
}