.pageBox.imgshop-page {
    padding-top: 0;
    background: #ffffff;
}

.imgshop-page,
.imgshop-page * {
    box-sizing: border-box;
}

.imgshop-inner {
    width: 1200px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

.imgshop-banner {
    padding-bottom: 24px;
}

.imgshop-banner__hero {
    height: 468px;
    background: url('/static/newindex/img/imgshop/banner/bg.webp') center center / cover no-repeat;
}

.imgshop-banner__hero-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.imgshop-banner__hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
}

.imgshop-search {
    width: 600px;
    height: 52px;
    margin-top: 32px;
    padding: 5px 6px 5px 12px;
    border-radius: 26px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.imgshop-search__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.imgshop-search__icon svg {
    width: 18px;
    height: 18px;
    fill: #b3b8c2;
}

.imgshop-search input {
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 12px;
    color: #1a1a1a;
    font-size: 14px;
    background: transparent;
}

.imgshop-search input::placeholder {
    color: #b0b5bf;
}

.imgshop-search button {
    width: 88px;
    height: 42px;
    border: 0;
    border-radius: 21px;
    background: #0066ff;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.imgshop-banner-cards {
    margin-top: -60px;
    display: flex;
    gap: 20px;
}

.imgshop-banner-card {
    width: calc((100% - 40px) / 3);
    min-height: 118px;
    padding: 24px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    box-shadow: 0 0 38px 1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.imgshop-banner-card__text h3 {
    margin: 0;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.imgshop-banner-card__text p {
    margin: 8px 0 0;
    color: #999999;
    font-size: 14px;
    line-height: 1.8;
}

.imgshop-banner-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.imgshop-banner-card__icon--1 {
    background-image: url('/static/newindex/img/imgshop/banner/icon/1.png');
}

.imgshop-banner-card__icon--2 {
    background-image: url('/static/newindex/img/imgshop/banner/icon/2.png');
}

.imgshop-banner-card__icon--3 {
    background-image: url('/static/newindex/img/imgshop/banner/icon/3.png');
}

.imgshop-section {
    padding: 48px 0 72px;
}

.imgshop-title {
    text-align: center;
}

.imgshop-title h2 {
    margin: 0;
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
}

.imgshop-title p {
    margin: 14px 0 0;
    color: #8f96a3;
    font-size: 16px;
    line-height: 1.8;
}

.imgshop-grid {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.imgshop-card {
    width: calc((100% - 64px) / 5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    background: #f4f5f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.imgshop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.imgshop-card__tag {
    position: absolute;
    top: 10px;
    z-index: 2;
    height: 22px;
    line-height: 22px;
    padding: 0 6px;
    border-radius: 4px;
    font-size: 12px;
    color: #ffffff;
}

.imgshop-card__tag--left {
    left: 10px;
    background: rgba(0, 0, 0, 0.3);
}

.imgshop-card__tag--right {
    right: 10px;
    background: #0066ff;
}

.imgshop-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #d6dbe5;
}

.imgshop-card__info {
    display: block;
    padding: 8px;
}

.imgshop-card__info strong {
    display: block;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.imgshop-card__meta {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.imgshop-card__author {
    display: flex;
    align-items: center;
    min-width: 0;
    color: #999999;
    font-size: 12px;
}

.imgshop-card__author span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.imgshop-card__avatar {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    border-radius: 50%;
    background: #d5d9df center center / cover no-repeat;
    flex-shrink: 0;
}

.imgshop-card__views {
    display: flex;
    align-items: center;
    color: #999999;
    font-size: 12px;
    flex-shrink: 0;
}

.imgshop-card__views i {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    display: inline-block;
    background:
        radial-gradient(circle at 50% 50%, transparent 3px, #97a0af 3px, #97a0af 4px, transparent 4px),
        linear-gradient(#97a0af, #97a0af);
    background-size: 14px 14px, 4px 4px;
    background-position: center, center;
    background-repeat: no-repeat;
    border-radius: 50%;
    opacity: 0.9;
}

.imgshop-more {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.imgshop-more a {
    min-width: 128px;
    height: 40px;
    padding: 0 24px;
    border: 1px solid #d7dce6;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    background: #ffffff;
    transition: all 0.2s ease;
}

.imgshop-more a:hover {
    border-color: #0066ff;
    color: #0066ff;
}

.imgshop-cta {
    width: 100%;
    padding: 56px 20px 0;
}

.imgshop-cta__inner {
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
}

.imgshop-pingtai {
    width: 100%;
    min-height: 296px;
    padding: 0 24px;
    background: url("/static/newindex/img/pingtaibg.png") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.imgshop-pingtai h1 {
    margin: 0;
    color: #111111;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
}

.imgshop-pingtai__brand {
    font-weight: 700;
}

.imgshop-pingtai__dot {
    margin: 0 6px;
}

.imgshop-pingtai .phonebox {
    margin-top: 30px;
    display: flex;
    align-items: center;
    width: 602px;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(31, 93, 191, 0.08);
}

.imgshop-pingtai .phonebox .inputbox {
    flex: 1;
    width: auto;
    height: 55px;
    background: #ffffff;
}

.imgshop-pingtai .phonebox .inputbox input {
    width: 100%;
    height: 55px;
    border: 0;
    outline: none;
    padding: 0 18px;
    font-size: 18px;
    color: #1a1a1a;
    line-height: 55px;
    background: #ffffff;
}

.imgshop-pingtai .phonebox .inputbox input::placeholder {
    color: #b4bac5;
}

.imgshop-pingtai .phonebox .shenqing {
    flex: 0 0 120px;
    width: 120px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    background: #1D77FF;
    cursor: pointer;
    transition: background 0.2s ease;
}

.imgshop-pingtai .phonebox .shenqing:hover {
    background: #0066ff;
}

@media screen and (max-width: 991px) {
    .imgshop-inner {
        max-width: calc(100% - 32px);
    }

    .imgshop-banner-cards {
        flex-wrap: wrap;
        gap: 12px;
    }

    .imgshop-banner-card {
        width: calc((100% - 12px) / 2);
    }

    .imgshop-grid {
        gap: 12px;
    }

    .imgshop-card {
        width: calc((100% - 36px) / 4);
    }

    .imgshop-pingtai {
        min-height: 260px;
        padding: 0 20px;
    }

    .imgshop-pingtai h1 {
        font-size: 28px;
    }
}

@media screen and (max-width: 767px) {
    .imgshop-inner {
        max-width: calc(100% - 24px);
    }

    .imgshop-banner__hero {
        height: 260px;
        background-position: 60% center;
    }

    .imgshop-banner__hero h1 {
        font-size: 24px;
        text-align: center;
    }

    .imgshop-search {
        width: 100%;
        height: 44px;
        margin-top: 20px;
        padding: 4px 4px 4px 10px;
    }

    .imgshop-search button {
        width: 76px;
        height: 36px;
        font-size: 14px;
    }

    .imgshop-banner-cards {
        margin-top: 12px;
        flex-direction: column;
    }

    .imgshop-banner-card {
        width: 100%;
        min-height: auto;
        padding: 16px;
    }

    .imgshop-banner-card__text h3 {
        font-size: 16px;
    }

    .imgshop-banner-card__text p {
        font-size: 12px;
    }

    .imgshop-banner-card__icon {
        width: 32px;
        height: 32px;
    }

    .imgshop-section {
        padding: 32px 0 48px;
    }

    .imgshop-title h2 {
        font-size: 24px;
    }

    .imgshop-title p {
        font-size: 14px;
    }

    .imgshop-grid {
        margin-top: 24px;
    }

    .imgshop-card {
        width: calc((100% - 12px) / 2);
    }

    .imgshop-cta {
        padding: 36px 12px 0;
    }

    .imgshop-pingtai {
        min-height: 220px;
        padding: 0 16px;
        background-position: center center;
    }

    .imgshop-pingtai h1 {
        font-size: 24px;
    }

    .imgshop-pingtai .phonebox {
        margin-top: 24px;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        border-radius: 0;
        overflow: visible;
    }

    .imgshop-pingtai .phonebox .inputbox {
        width: 100%;
    }

    .imgshop-pingtai .phonebox .inputbox input {
        height: 50px;
        border-radius: 12px;
        background: #ffffff;
        padding: 0 16px;
        font-size: 16px;
        line-height: 50px;
    }

    .imgshop-pingtai .phonebox .shenqing {
        width: 100%;
        flex: none;
        height: 50px;
        border-radius: 12px;
    }
}
