7e47ce238b
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
133 lines
2.8 KiB
CSS
133 lines
2.8 KiB
CSS
/* #pck-wrapper {
|
|
padding: 10px 0;
|
|
background-color: #d0d0d0;
|
|
z-index: 20190408;
|
|
position: fixed;
|
|
width: 100%;
|
|
bottom: 0;
|
|
} */
|
|
.pck-input-wrapper input[disabled] {
|
|
background-color: #ccc;
|
|
}
|
|
.pck-input-wrapper input.-active {
|
|
color: white;
|
|
background-color: gray !important;
|
|
}
|
|
.pck-input-wrapper input.-active.-select-all {
|
|
color: orange;
|
|
}
|
|
#pck-wrapper {
|
|
padding: 10px 0;
|
|
z-index: 20190408;
|
|
position: fixed;
|
|
width: 100%;
|
|
bottom: 0;
|
|
background-color: #404241;
|
|
border-radius: 5px;
|
|
box-shadow: 2px 2px #000;
|
|
}
|
|
#pck-wrapper .-type-a {
|
|
text-align: center;
|
|
width: 80%;
|
|
margin: auto;
|
|
}
|
|
#pck-wrapper .-type-a .-cell {
|
|
display: inline-block;
|
|
width: 24%;
|
|
height: 45px;
|
|
line-height: 45px;
|
|
margin: 0.5%;
|
|
vertical-align: middle;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
border: none;
|
|
border-radius: 5px;
|
|
color: #ebebeb;
|
|
font-size: 18px;
|
|
}
|
|
|
|
#pck-wrapper .-type-a .-cell[pck-option=number] {
|
|
/* background-color: #5b5c5d; */
|
|
background-color: #838588;
|
|
}
|
|
#pck-wrapper .-type-a .-cell:not([pck-option=number]) {
|
|
/* background-color: #838588; */
|
|
background-color: #5b5c5d;
|
|
}
|
|
#pck-wrapper .-type-a .-cell:active {
|
|
color: #5b5c5d;
|
|
background-color: #ebebeb;
|
|
}
|
|
|
|
/* 快速配码 */
|
|
#pck-wrapper .-type-b {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
#pck-wrapper .-type-b .-cypm .-title {
|
|
margin: 10px;
|
|
color: #ebebeb;
|
|
}
|
|
#pck-wrapper .-type-b .-cypm .-option {
|
|
display: inline-block;
|
|
margin: 10px;
|
|
font-weight: bold;
|
|
width: 20%;
|
|
min-width: 60px;
|
|
color: #ebebeb;
|
|
cursor: pointer;
|
|
}
|
|
#pck-wrapper .-type-b .-cypm .-separator {
|
|
color: #ebebeb;
|
|
}
|
|
/* 跳格 */
|
|
#pck-wrapper .-type-b .-jpty .-title {
|
|
margin: 10px;
|
|
color: #ebebeb;
|
|
}
|
|
#pck-wrapper .-type-b .-jpty .-option {
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
margin: 10px;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
padding: 0 9px;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
width: 40px;
|
|
background-color: #ebebeb;
|
|
color: #555;
|
|
}
|
|
#pck-wrapper .-type-b .-jpty .-option.-selected {
|
|
background-color: #1E9FFF;
|
|
color: #ebebeb;
|
|
cursor: auto;
|
|
}
|
|
#pck-wrapper .-type-b .-separator {
|
|
display: inline-block;
|
|
}
|
|
@media screen and (max-device-width: 685px) {
|
|
#pck-wrapper .-type-b .-cypm {
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
#pck-wrapper .-type-b .-jpty {
|
|
display: inline-block;
|
|
padding: 0 5px;
|
|
text-align: right;
|
|
}
|
|
}
|
|
@media screen and (min-device-width: 685px) {
|
|
#pck-wrapper .-type-b .-cypm {
|
|
display: inline-block;
|
|
width: 60%;
|
|
}
|
|
#pck-wrapper .-type-b .-jpty {
|
|
display: inline-block;
|
|
padding: 0 5px;
|
|
text-align: right;
|
|
}
|
|
} |