/*
common
*/
ul, li {
    padding: 0 0;
    margin: 0;
    list-style: none;
}

ul > li > .detail {
    flex-direction: row;
    line-height: 200%;
    -moz-box-shadow:0 0 10px #d4d4d4;
    -webkit-box-shadow:0 0 10px #d4d4d4;
    box-shadow:0 0 10px #d4d4d4;
}

#booth {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#booth > .banner {
    width: 100vw;
    /*height: 80vh;*/
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.banner > img {
    -webkit-user-drag: none;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    width: 100%;
    height: 100%;
    z-index: 500;
    overflow: hidden;
    cursor: pointer;
}
.mask img {
    height: 100%;
    max-width: 100%;
}

#booth > .banner > .title {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #8bc244;
    transform: translate(-50%,-50%);
}

#booth > .banner > .title > .one {
    display: inline-block;
    border: 1px solid #8bc244;
    padding: 5px;
    font-size: 40px;
    font-weight: bold;
}

#booth > .banner > .title > .two {
    font-size: 22px;
    display: inline-block;
}

#booth > .container {
    width: 100vw;
    padding: 5vh 0;
}

.container > li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
}

.container > li .detail {
    width: 60vw;
}

/**
customize
 */
.booth-info .main {
    width: 60vw;
}

.booth-info .main img {
    cursor: pointer;
}

.booth-list > .detail {
    padding: 2vh 2vw;
}

.booth-list > .detail > ul {
    border: 1px solid #dadada;
    font-size: 14px;
    line-height: 150%;
}

.booth-list > .detail > ul > li {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #dadada;
}

.booth-list > .detail > ul > li:last-child {
    border-bottom: none;
}

.booth-list > .detail > ul > li > * {
    position: relative;
    padding: 1vh 1vw;
}

.booth-list > .detail > ul > li > *:before {
    content: "";
    width: 1px;
    height: 50%;
    position: absolute;
    top: 25%;
    left: 0;
    background: #dadada;
}

.booth-list > .detail > ul > li > *:first-child:before {
    background: transparent;
}


li > .trademark {
    flex: 1;
    overflow-y: auto;
}
li > .company {
    flex: 2;
    font-size: 15px;
    overflow-y: auto;
}
li > .introduction {
    flex: 4;
    line-height: 120%;
    overflow-y: auto;
}
li > .operation {
    flex: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

li > .operation img {
    width: 100%;
}

li > .operation > .nice {
    text-align: center;
    flex: 1;
    color: #8bc244;
}
li > .operation > .right {
    flex: 10;
}

.trademark > img {
    -webkit-user-drag: none;
    width: 100%;
}

