133 lines
1.7 KiB
CSS
133 lines
1.7 KiB
CSS
.row {
|
|
background: white;
|
|
width: 100%;
|
|
height: 150px;
|
|
border-bottom: 1px solid #ebebeb;
|
|
position: relative;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.block{
|
|
margin-top: 36px;
|
|
padding: 0 2%;
|
|
}
|
|
|
|
.z{
|
|
width: 100%;
|
|
height: 50px;
|
|
}
|
|
|
|
.name {
|
|
font-size: 1.2rem;
|
|
color: black;
|
|
line-height: 32px;
|
|
height: 32px;
|
|
overflow: hidden;
|
|
padding-left: 5px;
|
|
font-weight: bolder;
|
|
display: flex;
|
|
}
|
|
|
|
.row_foot {
|
|
line-height: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
}
|
|
|
|
.row_header {
|
|
line-height: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
}
|
|
|
|
.price_tag {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.price_tag > .price {
|
|
font-size: 1.2em;
|
|
color: red;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.loc_range {
|
|
font-size: 1.1rem;
|
|
color: black;
|
|
line-height: 28px;
|
|
height: 28px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.loc_range .between {
|
|
width: calc(50vw - 100px);
|
|
text-align: center;
|
|
height: 18px;
|
|
line-height: 16px;
|
|
position: relative;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
.loc_range .with_img {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.loc_range .with_img img {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.name ._text {
|
|
width: calc( 100vw - 50px );
|
|
}
|
|
|
|
.name ._img {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.name ._img > img {
|
|
width: 90%;
|
|
height: 90%;
|
|
}
|
|
|
|
#app {
|
|
position: relative;
|
|
height: calc(100vh - 75px);
|
|
}
|
|
|
|
[v-cloak] {
|
|
display: none;
|
|
}
|
|
|
|
.float_center {
|
|
position: fixed;
|
|
top: 40vh;
|
|
width: 90%;
|
|
background: white;
|
|
z-index: 5;
|
|
box-shadow: 0px 0px 15px 5px #ddd;
|
|
left: 5%;
|
|
padding: 10px;
|
|
}
|
|
|
|
.float_center .text {
|
|
font-size: 1.4rem;
|
|
line-height: 1.8rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.float_center .operation {
|
|
display: flex;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.operation .op {
|
|
display: inline-block;
|
|
width: 100%;
|
|
box-shadow: 0px 0px 2px 2px #eee;
|
|
height: 28px;
|
|
line-height: 28px;
|
|
text-align: center;
|
|
}
|