body{
    position: fixed;
    top:0px;
    left:0px;
    width: 100vw;
    height: 100vh;
}
.ticketContent{
    width: 100%;
    height: 100%;
    background: url('../images/ticketList/maskBG.png') no-repeat;
    background-size: cover;
    position: relative;
    padding: 1vw 4.4vw;
}
.main{
    background: #ede1d1;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 1vw;
}
.back{
    position: fixed;
    left: .8vw;
    top:1vw;
    background: #FFFCF3;
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 2.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.back svg{
    margin-top: .2vw;
    width: 2.1vw;
    height: 2.1vw;
    padding-right: 3px;
}
.mainBody{
    width: 98%;
    height:calc(96% - 70px);
    position: relative;
    left: 1%;
    top:2%;
    overflow-x: hidden;
    overflow-y: auto;
}
.mainBody::-webkit-scrollbar {
    opacity:0;
    width:8px;
    height:8px;
}
.mainBody::-webkit-scrollbar-track {
    background: transparent;
}
.mainBody::-webkit-scrollbar-thumb {
    background: #BCA37B;
    border-radius:8px;
    cursor: pointer;
}
.mainBody .info{
    position: fixed;
    z-index: 1;
    right: 10vw;
    top: 70%;
    list-style: none;
}
.mainBody .info li{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:20px;
}
.mainBody .info li .icons{
    background: #8F6232;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainBody .info li span{
    font-size: 15px;
    font-weight: 700;
    margin-top: 4px;
}
.mainBody .info .like .icons{
    cursor: pointer;
}
.mainBody .info .like .icons:hover img{
    cursor: pointer;
    transform: scale(1.15) rotate(24deg);
}
.mainBody .info .like .icons img{
    transition: all ease .3s;
    width: 24px;
}
.mainBody .info .brow .icons img{
    width: 26px;
}

.mainBody .title{
    width: 50%;
    text-align: center;
    margin: 50px auto;
    color: #8F6232;
    font-size: 34px;
}
.images{
    margin: 0 auto;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.images .imgs{
    transition: all .3s;
    margin-bottom: 24px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
}
.story{
    position: relative;
    width: 50%;
    margin: 0 auto;
    margin-top: 40px;
}
.story .bgs{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
    background: url('../images/ticketList/D4.png') no-repeat;
    background-size: 100% 100%;
    transform: rotate(2deg) scale(1.05);
    border: 1px dashed #BCA37B;
}
.story .bgs .msk{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.3);
}
.story .storyBody{
    position: relative;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url('../images/ticketList/D4.png') no-repeat;
    background-size: 100% 100%;
    border: 1px dashed #BCA37B;
    color: #6E3900;
    line-height: 1.5;
    text-indent: 34px;
    font-size: 17px;
    text-align: justify;
    padding: 30px 38px 24px 24px;
    box-shadow: 3px 3px 16px rgba(0, 0, 0, 0.3);
}
.story .storyBody .circle{
    position: absolute;
    right: 12px;
    top: 10px;
    background: #834C11;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    border: 3px solid #BB9D7C;
}
.button{
    position: absolute;
    bottom: 20px;
    left:50%;
    transform: translateX(-50%);
    width: 500px;
    height: 50px;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 60px;
    background: var(--themeColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .3s;
    cursor: pointer;
}
.button:hover{
    opacity: .7;
}
.button img{
    width: 20px;
    margin-right: 10px;
}
@media screen and (max-width: 1000px) {
    body{
        position: fixed;
        top:0px;
        left:0px;
        width: 100vw;
        height: 100vh;
    }
    .ticketContent{
        width: 100%;
        height: 100%;
        background: url('../images/ticketList/maskBG.png') no-repeat;
        background-size: cover;
        position: relative;
        padding: 20px;
    }
    .main{
        background: #ede1d1;
        border-radius: 12px;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .back{
        position: fixed;
        z-index: 1;
        left: 10px;
        top:10px;
        background: #FFFCF3;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    }
    .back svg{
        width: 34px;
        height: 34px;
        padding-top: 5px;
        padding-right: 3px;
    }
    .mainBody{
        height: 100%;
        width: 100%;
        position: relative;
        left: 0%;
        top:0%;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0px 50px;
        padding-bottom: 130px;
    }
    .mainBody::-webkit-scrollbar {
        display: none;
    }
    .mainBody .info{
        position: absolute;
        z-index: 1;
        right: 50px;
        top: 90px;
        list-style: none;
        display: flex;
    }
    .mainBody .info li{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top:0px;
        margin-left: 26px;
    }
    .mainBody .info li .icons{
        background: #8F6232;
        width: 34px;
        height: 34px;
        border-radius: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mainBody .info li span{
        font-size: 13px;
        font-weight: 400;
        margin-top: 4px;
    }
    .mainBody .info .like .icons{
        cursor: pointer;
    }
    .mainBody .info .like .icons:hover img{
        cursor: pointer;
        transform: scale(1) rotate(0deg);
    }
    .mainBody .info .like .icons img{
        transition: all ease .3s;
        width: 18px;
    }
    .mainBody .info .brow .icons img{
        width: 22px;
    }

    .mainBody .title{
        width: 100%;
        text-align: center;
        margin: 40px auto;
        margin-bottom: 95px;
        color: #8F6232;
        font-size: 20px;
    }
    .images{
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .images .imgs{
        transition: all .3s;
        margin-bottom: 20px;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    }
    .story{
        position: relative;
        width: 100%;
        margin: 0 auto;
        margin-top: 50px;
    }
    .story .bgs{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0%;
        top: 0%;
        background: url('../images/ticketList/D4.png');
        background-size: 100%;
        transform: rotate(6deg) scale(1.02);
        border: 1px dashed #BCA37B;
    }
    .story .bgs .msk{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        background: rgba(0, 0, 0, 0.3);
    }
    .story .storyBody{
        position: relative;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        background: url('../images/ticketList/D4.png');
        background-size: 100%;
        border: 1px dashed #BCA37B;
        color: #6E3900;
        line-height: 1.5;
        text-indent: 34px;
        font-size: 15px;
        text-align: justify;
        padding: 30px 38px 24px 24px;
        box-shadow: 3px 3px 16px rgba(0, 0, 0, 0.3);
    }
    .story .storyBody .circle{
        position: absolute;
        right: 12px;
        top: 10px;
        background: #834C11;
        width: 16px;
        height: 16px;
        border-radius: 16px;
        border: 3px solid #BB9D7C;
    }
    .button{
        position: absolute;
        bottom: 15px;
        left:50%;
        transform: translateX(-50%);
        width: 80%;
        height: 44px;
        border-radius: 44px;
        margin: 0 auto;
        margin-top: 60px;
        margin-bottom: 20px;
        background: var(--themeColor);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: all .3s;
    }
    .button:hover{
        opacity: 1;
    }
    .button img{
        width: 18px;
        margin-right: 6px;
    }
    
}