*{
    padding: 0;
    margin: 0;
    border: 0;
}
html{
    background-color: #f7f7f7
}
.title{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0 40px;
}
.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: flex-start;
}

.container .box{
    margin-bottom: 16px;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.container .box .name{
    font-size: 20px;
    line-height: 20px;
    padding: 8px;
    text-align: center;
    position: relative;
}
.container .box .name::after{
    content: ' ';
    background-color: red;
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 8px;
    top: 5px;
}
.container .box .name.no-dot::after{
    display: none;
}
.container .box .image{
    font-size: 0;
    width: 300px;
    height: 185px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}
.container .box .image img{
    width: 100%;
    height: auto;
}

.title-bridge {
    font-size: 24px;
    text-align: center;
    padding-bottom: 16px;
}

.title-bridge .sound{
    cursor: pointer;
}

.info{
    position: relative;
    z-index: 2;
}

.info-content {
    z-index: 2;
    position: fixed;
    width: 100%;
    max-width: 800px;
    height: auto;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 1px 6px rgb(0 0 0 / 20%);
    padding: 16px;
    box-sizing: border-box;
    max-height: calc(100% - 112px);
    overflow: hidden;
}

.info-content .dec{
    font-size: 18px;
    line-height: 36px;
}
.info-content .info-image{
    width: 100%;
    height: auto;
}
.info-content .s{
    overflow: auto;
    max-height: calc(100vh - 191px);
}

.close{
    font-size: 40px;
    position: fixed;
    left: calc(50% + 387px);
    top: 67px;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 840px) {
    .close{
        left: auto;
        right: 0;
        top: 56px;
    }
}

.info-mark {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .3;
    filter: alpha(opacity=.3);
}

.v-enter-active,
.v-leave-active {
    transition: opacity 0.5s ease;
}

.v-enter-from,
.v-leave-to {
    opacity: 0;
}

.lqbg-top{
    background-image: url(lqbg-top.png);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    filter: alpha(opacity=.2);
    z-index: -1;
}

.lqbg{
    background-image: url(lqbg.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    filter: alpha(opacity=.2);
    z-index: -1;
}

.couplet{
    color: rgba(0, 0, 0, 0.2);
    text-shadow: 0px 0px 0px #f7f7f7;
}

.couplet .left{
    position: fixed;
    top: 50%;
    left: 8px;
    width: 24px;
    font-size: 24px;
    word-break: break-all;
    transform: translateY(-50%);
    z-index: 1;
}

.couplet .right{
    position: fixed;
    top: 50%;
    right: 8px;
    width: 24px;
    font-size: 24px;
    word-break: break-all;
    transform: translateY(-50%);
    z-index: 1;
}

.link{
    text-align: center;
    margin-bottom: 8px;
    margin-top: 32px;
}

.tel{
    text-align: center;
    margin-bottom: 16px;
    /*margin-top: 32px;*/
}
