system-copyright-react/src/route/TrademarkMall/components/EditOne/EditOne.css
2025-06-13 16:43:21 +08:00

74 lines
1.3 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.topLine {
width: 100%;
height: 10px;
background: #F3F3F3;
}
.editFormBox {
/* padding: 10px;
box-sizing: border-box; */
}
.editOneFomrBox {
/* WebKit 浏览器Chrome、Safari 等) */
scrollbar-width: thin;
/* Firefox */
scrollbar-color: #888 #f1f1f1;
/* Firefox */
}
.editOneFomrBox ::-webkit-scrollbar {
width: 8px;
/* 垂直滚动条宽度 */
}
.editOneFomrBox ::-webkit-scrollbar-track {
background: #f1f1f1;
/* 滚动条轨道背景颜色 */
}
.editOneFomrBox ::-webkit-scrollbar-thumb {
background: #888;
/* 滚动条滑块颜色 */
border-radius: 4px;
/* 滚动条滑块圆角 */
}
.editOneFomrBox ::-webkit-scrollbar-thumb:hover {
background: #555;
/* 鼠标悬停时滚动条滑块颜色 */
}
.editFormTitle {
font-size: 18px;
margin-bottom: 20px;
/* height: 46px; */
}
.editFormItem {
display: flex;
/* align-items: center; */
height: 46px;
/* background-color: pink; */
line-height: 46px;
/* width: 200px; */
}
.firstItem {
/* background: skyblue; */
align-items: center;
}
.editFormItemTitle {
font-size: 16px;
/* width: 120px; */
}
.redTitle {
color: red;
}
.pointerBlue {
color: var(--color-blue);
cursor: pointer;
}
.upBox{
background: skyblue;
}