84 lines
1.1 KiB
CSS
84 lines
1.1 KiB
CSS
.row {
|
|
background: white;
|
|
width: 100%;
|
|
height: 140px;
|
|
border-bottom: 1px solid #ebebeb;
|
|
position: relative;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.block{
|
|
margin-top: 36px;
|
|
padding: 0 2%;
|
|
}
|
|
|
|
.z{
|
|
width: 100%;
|
|
height: 50px;
|
|
}
|
|
|
|
.name {
|
|
font-size: 1.2rem;
|
|
color: black;
|
|
line-height: 36px;
|
|
height: 36px;
|
|
overflow: hidden;
|
|
padding-left: 5px;
|
|
font-weight: bolder;
|
|
display: flex;
|
|
}
|
|
|
|
.loc_range {
|
|
font-size: 1.1rem;
|
|
color: black;
|
|
line-height: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.loc_range .between::before {
|
|
content: '';
|
|
height: 1px;
|
|
background-color: black;
|
|
width: calc(50vw - 100px);
|
|
position: absolute;
|
|
display: block;
|
|
top: 60%;
|
|
}
|
|
|
|
.loc_range .between {
|
|
display: inline-block;
|
|
width: calc(50vw - 100px);
|
|
text-align: center;
|
|
line-height: 22px;
|
|
position: relative;
|
|
}
|
|
|
|
.loc_range .with_img {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.loc_range .with_img img {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.name ._text {
|
|
width: calc( 100vw - 50px );
|
|
}
|
|
|
|
.name ._img {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
|
|
.name ._img > img {
|
|
width: 90%;
|
|
height: 90%;
|
|
}
|
|
|
|
[v-cloak] {
|
|
display: none;
|
|
}
|