100 lines
1.6 KiB
CSS
Raw Normal View History

2023-08-18 18:05:53 +08:00
.w-100 {
width: 100%;
2023-08-17 19:05:27 +08:00
}
2023-08-18 18:05:53 +08:00
.max-w-350 {
2023-08-17 19:05:27 +08:00
max-width: 22rem;
}
2023-08-18 18:05:53 +08:00
.min-w-260 {
2023-08-17 19:05:27 +08:00
min-width: 16.25rem;
}
2023-08-18 18:05:53 +08:00
.list-top-icon {
width: 1rem;
height: 1rem;
2023-08-17 19:05:27 +08:00
background: url('../img/posTop.svg') no-repeat;
background-position: center;
background-size: 1rem 1rem;
}
2023-08-18 18:49:36 +08:00
.list-top-icon-b {
width: 1rem;
height: 1rem;
background: url('../img/posTopB.svg') no-repeat;
background-position: center;
background-size: 1rem 1rem;
}
2023-08-18 18:05:53 +08:00
.add-new-icon {
width: 1rem;
height: 1rem;
2023-08-17 19:05:27 +08:00
background: url('../img/addIcon.svg') no-repeat;
background-position: center;
background-size: 1rem 1rem;
}
2023-08-18 18:05:53 +08:00
.block {
2023-08-17 19:05:27 +08:00
display: block !important;
2023-08-18 18:05:53 +08:00
}
.center-f {
display: flex;
justify-content: center;
align-items: center;
}
.pop {
position: fixed;
top: 0;
left: 0;
background: rgba(33, 33, 33, 0.5);
width: 100vw;
height: 100vh;
z-index: 666;
}
.pop-title{
font-size:1rem;
text-align: center;
word-wrap: break-word;
}
.text-box {
border-radius: 0.625rem;
width: 17.5rem;
height: 11.25rem;
background: #fff;
}
.btn{
border-radius: 0.5rem;
border:1px solid #222;
padding:0.2rem 0.625rem;
font-size:0.8125rem;
cursor: pointer;
height:1.7425rem;
line-height:1.8rem;
}
.btn :hover{
background: rgba(245, 245, 245, 0.5);
}
.btn-box{
display: flex;
align-items: center;
margin-top:1.875rem;
}
.mg-l-80{
margin-left:5rem;
}
.tps-error-box{
position: fixed;
bottom: 0;
left:0;
height:10rem;
background:rgba(246, 246, 246, 1);
width:100%;
2023-08-17 19:05:27 +08:00
}