body{
    position: fixed;
    top:0px;
    left:0px;
    width: 100vw;
    height: 100vh;
}
.ticketContent{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: url('../images/ticketList/maskBG.png') no-repeat;
    background-size: cover;
    position: relative;
    padding: 1vw 2vw 2vw 2vw;
}
.main{
    background: url('../images/ticketList/listBG.png') no-repeat;
    background-size: 100% 100%;
    width: 100%;
    min-height: calc(100vh - 3vw);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 13vw;
    position: relative;
}
.main .pin{
    position: absolute;
    left: .5vw;
    top:-.5vw;
    width: 10vw;
}
.listTitle{
    width: 62%;
    margin-top: 7.4vw;
}
.listSubhead{
    width: 20%;
    margin-top: 4.2vw;
    cursor: pointer;
    transition: all ease .3s;
}
.listSubhead:hover{
    transform: rotate(-6deg) scale(1.03);
}
.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;
}
.items{
    margin-top: 3vw;
    width: 74%;
    flex: 1;
}
.items .title{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}
.items .title span{
    font-family: "方正美黑_GBK";
    font-size:calc(100vw * 40 / 1920);
}
.items .title .search{
    background: var(--themeColor);
    color: #fff;
    position: absolute;
    right: .5vw;
    top: 0px;
    height: 100%;
    border-radius: 3vw;
    white-space: nowrap;
    overflow: hidden;
    transition: all ease .3s;
    display: flex;
    align-items: center;
    padding: 0px 1.2vw 1px 1.2vw;
    cursor: pointer;
}
.items .title .search img{
    width: calc(100vw * 24 / 1920);
    height: calc(100vw * 24 / 1920);
}
.items .title .search input{
    width: 100%;
    height: 100%;
    font-size:calc(100vw * 16 / 1920);
    font-weight: 700;
    outline: none;
    border: none;
    background: none;
    color: #fff;
    width: 0vw;
    transition: all ease .3s;
}
.items .title .search button{
    width: 4vw;
    height: 1.7vw;
    position: absolute;
    right:-7vw;
    top:50%;
    transform: translateY(-50%);
    border: none;
    font-size:calc(100vw * 15 / 1920);
    border-radius: 1.7vw;
    cursor: pointer;
    background: #F9F4EB;
    font-weight: 700;
    transition: all ease .4s;
}
.items .title .search .close{
    position: absolute;
    z-index: 1;
    right:-10vw;
    top:50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all ease .4s;
    display: none;
}
.items .title .search .close:hover{
    opacity: .6;
}
.items .title .search .close img{
    width: calc(100vw * 24 / 1920);
    height: calc(100vw * 24 / 1920);
    margin-bottom: .1vw;
}
.items .title .search input::placeholder{
    color: #ccc;
}
.items .title .searchFocus{
    padding: 0px 6.7vw 1px 1.2vw;
}
.items .title .searchFocus .close{
    position: absolute;
    right:5vw;
    top:50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.items .title .searchFocus button{
    right: .5vw;
}
.items .title .searchFocus img{
    width: calc(100vw * 20 / 1920);
    height: calc(100vw * 20 / 1920);
}
.items .title .searchFocus input{
    width: 12vw;
    margin-left: .8vw;
}

.items .list{
    margin-top: 2vw;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-bottom: 3.5vw;
}
.items .list li{
    width: 31.33%;
    margin: 0px 1%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.items .list li .imgs{
    width: 100%;
    height: 15.5vw;
    padding: 3%;
    border: 2px solid var(--themeColor);
    position: relative;
    border-radius: 2px;
    cursor: pointer;
}
.items .list li .cover{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.items .list li .imgs img{
    width: 100%;
    transition: all ease .4s;
}
.items .list li .imgs:hover img{
    transform: scale(1.03);
}
.items .list li .liInfo{
    margin:1.2vw 1vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.items .list li .liInfo .name{
    font-size:calc(100vw * 22 / 1920);
    font-weight: 700;
    flex: 1;    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1vw;
}
.items .list li .liInfo .like{
    position: relative;
}
.items .list li .liInfo .like .likeHandle{
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all .3s;
    z-index: 1;
}
.items .list li .liInfo .like .likeHandle:hover{
    transform: scale(.95);
}
.items .list li .liInfo .like .likeHandle .icon{
    width: calc(100vw * 26 / 1920);
    padding-bottom: 1px;
}
.items .list li .liInfo .like .likeHandle  span{
    font-size:calc(100vw * 23 / 1920);
    font-weight: 700;
    color: var(--themeColor);
    margin-left: .4vw;
}
.items .list li .liInfo .like .decorate{
    display: none;
}
.items .list li .liInfo .like .decorate1{
    width: calc(100vw * 26 / 1920);
    position: absolute;
    left: 0px;
    top:50%;
    transform: translateY(-20%) scale(.5);
    opacity: .3;
    animation: decorate1 .8s ease forwards;
}
@keyframes decorate1 {
    50%{
        transform: translateY(-90%) scale(1) rotate(-10deg);
        opacity: .8;
    }
    100%{
        transform: translateY(-90%) scale(1) rotate(-10deg);
        opacity: 0;
    }
}
.items .list li .liInfo .like .decorate2{
    width: calc(100vw * 20 / 1920);
    position: absolute;
    left: 1vw;
    top:50%;
    transform: translateY(-20%) scale(.5);
    opacity: .3;
    animation: decorate2 .6s ease forwards;
}
@keyframes decorate2 {
    50%{
        transform: translateY(-80%) scale(1) rotate(20deg);
        opacity: .6;
    }
    100%{
        transform: translateY(-80%) scale(1) rotate(10deg);
        opacity: 0;
    }
}
.paging{
    display: flex;
    list-style: none;
}
.paging a{
    width: 2vw;
    height: 2vw;
    padding-bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size:calc(100vw * 22 / 1920);
    font-weight: 700;
    border-radius: 100%;
    margin: 0px .4vw;
    cursor: pointer;
    transition: all ease .4s;
}
.paging .common-component-pagination-item-active{
    background: var(--themeColor);
    color: #F5DDBF;
}
.paging div{
    width: 2vw;
    height: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size:calc(100vw * 22 / 1920);
    font-weight: 700;
    border-radius: 100%;
    margin: 0px .4vw;
}
.paging form{
    display: flex;
}
.paging input{
    width: 3vw;
    height: 2vw;
    padding-bottom: 1px;
    border-radius: 1vw;
    border: none;
    outline: none;
    border: 2px solid var(--themeColor);
    background: #CBB18F;
    margin: 0px .4vw;
    text-align: center;
    font-size:calc(100vw * 18 / 1920);
    font-weight: 700;
}
.paging button{
    width: 2vw;
    height: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size:calc(100vw * 14 / 1920);
    font-weight: 700;
    border-radius: 100%;
    margin: 0px .4vw;
    cursor: pointer;
    transition: all .3s;
    background: var(--themeColor);
    color: #F5DDBF;
    border: none;
}

@media screen and (max-width: 1000px) {
    body{
        position: fixed;
        top:0px;
        left:0px;
        width: 100vw;
        height: 100vh;
    }
    .ticketContent{
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        position: relative;
        background: url('../images/ticketList/maskBG.png') no-repeat;
        background-size: cover;
        padding: 12px 14px;
    }
    body::-webkit-scrollbar {
        display: none;
    }
    .main{
        background: url('../images/ticketList/listBGP.png') no-repeat;
        background-size: 100% 100%;
        width: 100%;
        min-height: calc(100vh - 5vw);
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-bottom: 13vw;
    }
    .main .pin{
        position: absolute;
        left: -2px;
        top:-2px;
        width: 70px;
    }
    .listTitle{
        width: 80%;
        margin-top: 12vw;
    }
    .listSubhead{
        width: 50%;
        margin-top: 5vw;
    }
    .listSubhead:hover{
        transform: rotate(0deg) scale(1);
    }
    .back{
        position: fixed;
        left: 10px;
        top:10px;
        background: #FFFCF3;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1;
    }
    .back svg{
        width: 34px;
        height: 34px;
        padding-top: 5px;
        padding-right: 3px;
    }
    .items{
        flex: 1;
        margin-top: 14px;
        width: 84%;
    }
    .items .title{
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 0px;
        padding: 0px 4px;
        margin-bottom: 74px;
    }
    .items .title span{
        font-family: "方正美黑_GBK";
        font-size: 20px;
        display: none;
    }
    .items .title .search{
        background: var(--themeColor);
        color: #fff;
        position: absolute;
        right: 5px;
        top: 10px;
        width: calc(100% - 10px);
        height: 36px;
        border-radius: 36px;
        white-space: nowrap;
        overflow: hidden;
        transition: all ease .3s;
        display: flex;
        align-items: center;
        padding: 0px 108px 0px 14px;
        cursor: pointer;
    }
    .items .title .search .close{
        position: absolute;
        right:76px;
        top:50%;
        transform: translateY(-50%);
        cursor: pointer;
        transition: all ease .4s;
        display: none;
    }
    .items .title .search .close:hover{
        opacity:1;
    }
    .items .title .search .close img{
        width: 18px;
        height: 18px;
        margin-bottom: 3px;
    }
    .items .title .search button{
        width: 60px;
        height: 26px;
        position: absolute;
        right:6px;
        top:50%;
        transform: translateY(-50%);
        border: none;
        font-size: 12px;
        border-radius: 24px;
        cursor: pointer;
        background: #F9F4EB;
        font-weight: 400;
        transition: all ease .4s;
        color: #000;
    }
    .items .title .search img{
        width: 14px;
        height: 14px;
        margin-bottom: 1px;
    }
    .items .title .search input{
        flex: 1;
        font-size: 13px;
        font-weight: 400;
        outline: none;
        border: none;
        background: none;
        color: #fff;
        margin-left: 12px;
        transition: all ease .3s;
    }
    .items .title .search input::placeholder{
        color: #ccc;
    }
    .items .title .searchFocus{
        background: var(--themeColor);
        color: #fff;
        position: absolute;
        right: 5px;
        top: 10px;
        width: calc(100% - 10px);
        height: 36px;
        border-radius: 36px;
        white-space: nowrap;
        overflow: hidden;
        transition: all ease .3s;
        display: flex;
        align-items: center;
        padding: 0px 108px 0px 14px;
        cursor: pointer;
    }
    .items .title .searchFocus .close{
        position: absolute;
        right:76px;
        top:50%;
        transform: translateY(-50%);
        cursor: pointer;
        transition: all ease .4s;
    }
    .items .title .searchFocus button{
        width: 60px;
        height: 26px;
        position: absolute;
        right:6px;
        top:50%;
        transform: translateY(-50%);
        border: none;
        font-size: 12px;
        border-radius: 24px;
        cursor: pointer;
        background: #F9F4EB;
        font-weight: 400;
        transition: all ease .4s;
        color: #000;
    }
    .items .title .searchFocus img{
        width: 14px;
        height: 14px;
        margin-bottom: 1px;
    }
    .items .title .searchFocus input{
        flex: 1;
        font-size: 13px;
        font-weight: 400;
        outline: none;
        border: none;
        background: none;
        color: #fff;
        margin-left: 12px;
        transition: all ease .3s;
    }

    .items .list{
        margin-top: 5vw;
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: space-between;
        padding-bottom: 3.5vw;
    }
    .items .list li{
        width: 46%;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .items .list li .imgs{
        width: 100%;
        height: 28vw;
        padding: 3%;
        border: 1px solid var(--themeColor);
        transition: all ease .4s;
        position: relative;
        border-radius: 2px;
        cursor: pointer;
    }
    .items .list li .cover{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .items .list li .imgs img{
        width: 100%;
    }
    .items .list li .imgs:hover{
        padding: 3%;
    }
    .items .list li .liInfo{
        margin: 2vw 1px 4vw 1px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .items .list li .liInfo .name{
        font-size: 13px;
        font-weight: 400;
        flex: 1;    
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-right: 1vw;
    }
    .items .list li .liInfo .like{
        position: relative;
    }
    .items .list li .liInfo .like .likeHandle{
        display: flex;
        align-items: center;
        cursor: pointer;
        position: relative;
        transition: all .3s;
        z-index: 1;
    }
    .items .list li .liInfo .like .likeHandle:hover{
        transform: scale(1);
    }
    .items .list li .liInfo .like .likeHandle .icon{
        width: 13px;
    }
    .items .list li .liInfo .like .likeHandle  span{
        font-size: 13px;
        font-weight: 400;
        color: var(--themeColor);
        margin-left: .8vw;
    }

    .items .list li .liInfo .like .decorate{
        display: none;
    }
    .items .list li .liInfo .like .decorate1{
        width: 22px;
        position: absolute;
        left: 0px;
        top:50%;
        transform: translateY(-20%) scale(.5);
        opacity: .3;
        animation: decorate1 .8s ease forwards;
    }
    @keyframes decorate1 {
        50%{
            transform: translateY(-90%) scale(1) rotate(-10deg);
            opacity: .8;
        }
        100%{
            transform: translateY(-90%) scale(1) rotate(-10deg);
            opacity: 0;
        }
    }
    .items .list li .liInfo .like .decorate2{
        width: 18px;
        position: absolute;
        left: 2vw;
        top:50%;
        transform: translateY(-20%) scale(.5);
        opacity: .3;
        animation: decorate2 .6s ease forwards;
    }
    @keyframes decorate2 {
        50%{
            transform: translateY(-80%) scale(1) rotate(20deg);
            opacity: .6;
        }
        100%{
            transform: translateY(-80%) scale(1) rotate(10deg);
            opacity: 0;
        }
    }
    .paging{
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: center;
    }
    .paging a{
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        font-size: 12px;
        font-weight: 400;
        border-radius: 100%;
        margin: 0px .5vw;
        cursor: pointer;
        transition: all ease .4s;
        margin-top: 20px;
    }
    .paging .common-component-pagination-item-active{
        background: var(--themeColor);
        color: #F5DDBF;
    }
    .paging div{
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        font-size: 12px;
        font-weight: 400;
        border-radius: 100%;
        margin: 0px 1vw;
        margin-top: 20px;
    }
    .paging form{
        display: flex;
        margin-top: 20px;
    }
    .paging input{
        width: 60px;
        height: 30px;
        padding-bottom: 1px;
        border-radius: 30px;
        border: none;
        outline: none;
        border: 1px solid var(--themeColor);
        background: #CBB18F;
        margin: 0px 2vw;
        text-align: center;
        font-size: 12px;
        font-weight: 400;
    }
    .paging button{
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        font-size: 12px;
        font-weight: 400;
        border-radius: 100%;
        margin: 0px 1vw;
        cursor: pointer;
        transition: all .3s;
        background: var(--themeColor);
        color: #F5DDBF;
        border: none;
    }
}