.item0 .bg {
    opacity: .15;
    filter: blur(5px) grayscale(100%);
    transform: scale(1.5);
    z-index: -1;
}

.item0 .resize {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50%;
    max-width: 1366px;
    margin: 0 auto;
}

.item0 hgroup {
    position: absolute;
    display: inline-block;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
}

.item0 h2 {
    font-size: 1rem;
    color: var(--mix-15);
    text-align: center;
}

.item0 .progress {
    position: relative;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.item0 .progress>div {
    position: absolute;
    bottom: 9px;
    right: 0;
    color: var(--primary);
}

.item0 .progress #rate {
    font-size: 14px;
}

.item0 .nextpage {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 2;
}

.item0 .nextpage>div {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat;
    background-size: cover;
}

.item0 .nextpage .one {
    z-index: 2;
    width: 0;
}

.item0 .nextpage .two {
    filter: grayscale(1) invert(.1) saturate(5);
}

@media (max-width: 1024px) {
    .item0 {
        height: 100vw;
    }

    .item0 hgroup {
        bottom: 120%;
    }

    .item0 .resize {
        width: 80%;
    }

    .item0 h1 {
        font-size: 5vw;
    }
}


.items {
    background: var(--mix-95);
}

.items .nav {
    margin-left: -1rem;
}

.items .list {
    margin-top: -5rem;
}

.items .list li {
    position: relative;
    margin-top: 10rem;
}

.items .list .box {
    position: relative;
    display: block;
    width: 60%;
}

.items .list h2 {
    font-size: 3rem;
    color: var(--mix-25);
    position: absolute;
    bottom: 20%;
    left: 90%;
    z-index: 2;
    transition: color .5s, transform .25s;
}

.items .list h2::after {
    content: 'NO.'attr(alias);
    position: absolute;
    top: -1rem;
    right: 0;
    font-size: 25%;
    color: transparent;
}

.items .list .hvr {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 0;
    transition: opacity .5s;
}

.items .list .hvr a {
    padding: .5rem;
    margin: .5rem;
}

.items .list path {
    fill: var(--mix-5);
}

.items .list li:nth-of-type(even) .box {
    margin-left: auto;
}

.items .list li:nth-of-type(even) h2 {
    right: 90%;
    left: auto;
}

.items .list li:nth-of-type(even) h2::after {
    right: auto;
    left: 0;
}

.items .list li:nth-of-type(even) .hvr {
    right: 0;
    left: auto;
}

.items .list li:hover .hvr {
    opacity: 1;
}

.items .list li:hover h2 {
    color: var(--mix-5);
    transform: translateX(5vw);
}

.items .list li:hover h2::after {
    color: currentcolor;
}

.items .list li:nth-of-type(even):hover h2 {
    transform: translateX(-5vw);
}

.items .qrcode {
    position: absolute;
    border: 1rem solid #fff;
    font-size: 0;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    opacity: 0;
    transition: opacity .5s;
    visibility: hidden;
}

.items .qrcode.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 960px) {
    .items .list h2 {
        font-size: 5vw;
    }

    .items .list .box {
        width: 70%;
    }
}


/* 详情页 */
.detail .bg {
    opacity: .15;
    filter: blur(15px);
    transform: scale(1.5);
    z-index: -1;
}

.params {
    bottom: 2rem;
    background: rgba(255, 255, 255, 0.45);
}

.content {
    max-width: 1920px;
}

.content p {
    margin: 0;
    overflow: hidden;
}

.arrow {
    width: 3rem;
    height: 3rem;
    color: var(--mix-5);
    z-index: -1;
    transition: all 0.25s;
}

.arrow-up {
    right: 5%;
    bottom: 10%;
    background: var(--mix-34);
    border-radius: 100%;
    transition: background-color 0.25s;
    z-index: 9;
}

.arrow:hover {
    color: var(--mix);
    background: var(--mix-36);
}