#app {
    position: relative;
    width: 100%;
    min-width: 1000px;
}

.dialogWrap {
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background-color:rgba(0,0,0,0.8);
}

.dialogSet {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    margin: 0 auto;
}

.dialogInfo {
    width: 20%;
    height: auto;
}

.dialogInner {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    margin: auto;
    width: 900px;
    height: 800px;
    z-index: 99999;
}
.dialogInner > button{
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 34px;
    background: #fff;
    box-shadow: none;
    border: none;
    margin-bottom: 10px;
    cursor: pointer;
}

.dialogInner ul {
    position: absolute;
    padding: 20px 0 0 0;
    font-weight: normal;
    bottom: 0;
    left: 0;
    right: 0;
}

.dialogInner-img {
    margin: auto;
    max-width: 100%;
    max-height: 90%;
    list-style: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
}


.dialogInner ul li img {
    width: 100%;
}

.dialogPager {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    width: 230px;
}
.dialogPager li {
    list-style: none;
    margin-right: 10px;
}
.dialogPager li button{
    cursor: pointer;
}
.dialogPager li span{
    background: #f5f5f5;
    padding: 0px 5px;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}


@media screen and (max-width: 640px){
#app{min-width: 600px;}
.dialogSet {
    justify-content: flex-start;
    width: 600px;
}
.dialogInfo {
    width: 290px;
    height: auto;
    margin: 5px;
}

.dialogInner {
    width: 100%;
    height: 100%;
}
.dialogInner-img {
    position: absolute;
    top: 150px;
    max-width: 100%;
    max-height: 70%;
}
.dialogInner ul {
    padding: 80px 0 0 0;
    bottom: 130px;
}
.dialogInner > button {
    width: 70px;
    height: 70px;
    font-size: 64px;
    margin: 30px 30px 70px;
    padding: 0px;
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}
.dialogPager {
    width: 630px;
}
.dialogPager > li> button{
    font-size: 30px;
    padding: 10px 20px;
    border: none;
    background: #fff;
}
.dialogPager li span {
    background: #ddd;
    padding: 0px 15px;
    font-size: 30px;
}

}
