* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
    border: 0;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wallpaper-page {
    min-height: 100vh;
    padding-bottom: 20px;
    max-width: 750px;
    margin: 0 auto;
    background-color: #fff;
}

.wp-topbanner {
    position: relative;
    width: 100%;
    padding: 12px;
    overflow: hidden;
}

.wp-topbanner__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 14 / 5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wp-topbanner__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.wp-topbanner__item.active {
    opacity: 1;
}

.wp-topbanner__bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wp-topbanner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-topbanner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 192, 203, 0.2) 100%);
}



.wp-topbanner__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.wp-topbanner__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wp-topbanner__dot.active {
    background-color: #fff;
    width: 18px;
    border-radius: 3px;
}

.wp-menubox {
    padding: 12px;
    background-color: #fff;
}

.wp-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wp-menu__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.wp-menu__item:active {
    transform: scale(0.97);
}

.wp-menu__item--blue {
    background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
    color: #fff;
}

.wp-menu__item--orange {
    background: linear-gradient(135deg, #ff7f50 0%, #ff6347 100%);
    color: #fff;
}

.wp-menu__item--purple {
    background: linear-gradient(135deg, #a29bfe 0%, #9b59b6 100%);
    color: #fff;
}

.wp-menu__item--green {
    background: linear-gradient(135deg, #55efc4 0%, #00b894 100%);
    color: #fff;
}

.wp-menu__text {
    flex: 1;
    z-index: 2;
}

.wp-menu__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.wp-menu__desc {
    font-size: 12px;
    opacity: 0.9;
}

.wp-menu__icon {
    width: 48px;
    height: 48px;
    opacity: 0.9;
    z-index: 2;
}

.wp-menu__icon svg {
    width: 100%;
    height: 100%;
}

.wp-casebox {
    background-color: #fff;
    padding: 0 12px 12px;
}

.wp-casemain {
    position: relative;
}

.wp-casetit {
    text-align: center;
    padding: 16px 0 12px;
}

.wp-casetit h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.wp-casetit span {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a853, transparent);
    border-radius: 2px;
}

.wp-casenav {
    position: relative;
    margin-bottom: 12px;
    z-index: 10;
}

.wp-casenav > ul {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    position: relative;
    z-index: 10;
}

.wp-casenav__item {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    border-right: 1px solid #eee;
}

.wp-casenav__item:last-child {
    border-right: none;
}

.wp-casenav__item--active .wp-casenav__label {
    color: #d4a853;
    font-weight: 500;
}

.wp-casenav__label {
    font-size: 13px;
}

.wp-casenav__arrow {
    font-size: 10px;
    margin-left: 4px;
    color: #999;
}

.wp-casenav__item--active .wp-casenav__arrow {
    color: #d4a853;
}

.wp-casenav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 999;
    display: none;
    max-height: 280px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.wp-casenav__item--open > .wp-casenav__dropdown {
    display: block;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-casenav__option {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.wp-casenav__option:last-child {
    border-bottom: none;
}

.wp-casenav__option:hover,
.wp-casenav__option--active {
    color: #d4a853;
    background-color: #faf7f2;
}

.wp-caselist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wp-caseitem {
    display: block;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wp-caseitem:active {
    transform: scale(0.98);
}

.wp-caseitem__img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #f5f0e6;
    overflow: hidden;
}

.wp-caseitem__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.wp-caseitem__img img.loaded {
    opacity: 1;
}

.wp-caseitem__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 4px;
    backdrop-filter: blur(4px);
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wp-caseitem__tag--corner {
    top: auto;
    left: auto;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    font-size: 11px;
    padding: 3px 8px;
}

.wp-caseitem__info {
    padding: 10px 10px 12px;
}

.wp-caseitem__name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wp-caseitem__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.wp-caseitem__tags span {
    position: relative;
    font-size: 11px;
    color: #999;
    padding-right: 6px;
}

.wp-caseitem__tags span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #ddd;
}

.wp-caseitem__tags span:last-child::after {
    display: none;
}

.wp-pageheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 12px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.wp-pageheader__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #333;
}

.wp-pageheader__back svg {
    width: 22px;
    height: 22px;
}

.wp-pageheader__title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.wp-pageheader__right {
    width: 36px;
}

.wp-listbanner {
    position: relative;
    width: 100%;
    padding: 12px;
    overflow: hidden;
}

.wp-listbanner__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 14 / 5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wp-listbanner__bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wp-listbanner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-listbanner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 192, 203, 0.2) 100%);
}

.wp-listbanner__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.wp-listbanner__title {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 4px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.wp-listbanner__subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #c0392b;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.wp-listmain {
    padding: 0 12px;
}

.wp-casenav--list {
    margin-bottom: 12px;
}

.wp-detailbanner {
    position: relative;
    width: 100%;
    padding: 12px;
    overflow: hidden;
}

.wp-detailbanner__wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #f8f4ef;
}

.wp-detailbanner__gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.wp-detailbanner__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.wp-detailbanner__item.active {
    opacity: 1;
}

.wp-detailbanner__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f4ef;
}

.wp-detailbanner__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.wp-detailbanner__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wp-detailbanner__dot.active {
    background-color: #fff;
    width: 18px;
    border-radius: 3px;
}

.wp-detailmain {
    padding: 0 12px;
}

.wp-detailinfo {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.wp-detailinfo__name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.wp-detailinfo__desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.wp-detailinfo__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wp-detailinfo__tag {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #faf7f2;
    border-radius: 6px;
    font-size: 13px;
}

.wp-detailinfo__tag em {
    font-style: normal;
    color: #999;
    margin-right: 6px;
}

.wp-detailinfo__tag strong {
    font-weight: 500;
    color: #d4a853;
}

.wp-detailsection {
    padding: 20px 0;
}

.wp-detailsection__title {
    text-align: center;
    margin-bottom: 16px;
}

.wp-detailsection__title h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.wp-detailsection__title span {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a853, transparent);
    border-radius: 2px;
}

.wp-detailsection__content {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.wp-detailsection__content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}

.wp-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.wp-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.wp-detail-service {
    margin-top: 20px;
    padding: 24px 12px;
    background-color: #3a3a3a;
    color: #fff;
}

.wp-detail-service__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wp-detail-service__item {
    text-align: center;
}

.wp-detail-service__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    color: #d4a853;
}

.wp-detail-service__icon svg {
    width: 100%;
    height: 100%;
}

.wp-detail-service__title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #fff;
}

.wp-detail-service__desc {
    font-size: 12px;
    color: #aaa;
}

.wp-backtop {
    position: fixed;
    right: 16px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(212, 168, 83, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wp-backtop.show {
    opacity: 1;
    visibility: visible;
}

.wp-backtop:active {
    transform: scale(0.9);
}

.wp-backtop svg {
    width: 24px;
    height: 24px;
}

.wp-morefilter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: none;
}

.wp-morefilter.show {
    display: block;
}

.wp-morefilter__mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.wp-morefilter__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border-radius: 16px 16px 0 0;
    padding: 20px 16px 30px;
    max-height: 70vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.wp-morefilter__group {
    margin-bottom: 20px;
}

.wp-morefilter__title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.wp-morefilter__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wp-morefilter__tag {
    padding: 8px 16px;
    background-color: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wp-morefilter__tag.active {
    background-color: #d4a853;
    color: #fff;
}

.wp-morefilter__btns {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.wp-morefilter__btn {
    flex: 1;
    height: 44px;
    border: none;
    border-radius: 22px;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.wp-morefilter__btn:active {
    opacity: 0.8;
}

.wp-morefilter__btn--cancel {
    background-color: #f5f5f5;
    color: #666;
}

.wp-morefilter__btn--confirm {
    background-color: #d4a853;
    color: #fff;
}

.wp-footer {
    padding: 20px 15px;
    text-align: center;
    color: #999;
    font-size: 12px;
    line-height: 1.8;
    margin-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.wp-footer p {
    margin: 2px 0;
}

.wp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 12px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.wp-header--detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    z-index: 100;
}

.wp-header__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
}

.wp-header--detail .wp-header__back {
    background-color: rgba(0, 0, 0, 0.3);
}

.wp-header__title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.wp-header--detail .wp-header__title {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.wp-header__right {
    width: 36px;
}

.wp-detail {
    background-color: #fff;
}

.wp-detail__banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f0e8dc;
}

.wp-detail__banner-wrapper {
    position: relative;
    width: 100%;
    height: 375px;
    overflow: hidden;
}

.wp-detail__banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.wp-detail__banner-item.active {
    opacity: 1;
}

.wp-detail__banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-detail__banner-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.wp-detail__banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.wp-detail__banner-dot.active {
    background-color: #fff;
    width: 20px;
    border-radius: 4px;
}

.wp-detail__info {
    padding: 20px 16px;
    border-bottom: 8px solid #f5f5f5;
}

.wp-detail__name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.wp-detail__desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.wp-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wp-detail__meta-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #faf7f2;
    border-radius: 6px;
    font-size: 13px;
}

.wp-detail__meta-label {
    color: #999;
    margin-right: 6px;
}

.wp-detail__meta-value {
    color: #d4a853;
    font-weight: 500;
}

.wp-detail__section {
    padding: 20px 16px;
}

.wp-detail__section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    position: relative;
    padding-left: 12px;
}

.wp-detail__section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, #d4a853 0%, #b8943d 100%);
    border-radius: 2px;
}

.wp-detail__content {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.wp-detail__content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}

.wp-loadmore {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-top: 10px;
    cursor: pointer;
}

.wp-loadmore span {
    font-size: 13px;
    color: #d4a853;
    padding: 8px 24px;
    border: 1px solid #d4a853;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.wp-loadmore span:active {
    transform: scale(0.95);
    background-color: rgba(212, 168, 83, 0.1);
}

.wp-loadmore--loading span {
    color: #999;
    border-color: #ddd;
}

.wp-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}

.wp-filter {
    background-color: #faf7f2;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 16px;
}

.wp-filter__group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 10px;
}

.wp-filter__group:last-child {
    margin-bottom: 0;
}

.wp-filter__label {
    flex-shrink: 0;
    width: 44px;
    font-size: 13px;
    color: #8a7a5e;
    padding-top: 6px;
    font-weight: 500;
}

.wp-filter__tags {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wp-filter__tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    color: #666;
    background-color: #fff;
    border: 1px solid #e8dfd0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wp-filter__tag:active {
    transform: scale(0.95);
}

.wp-filter__tag--active {
    color: #fff;
    background: linear-gradient(135deg, #d4a853 0%, #b8943d 100%);
    border-color: #b8943d;
}

@media (min-width: 768px) {
    .wallpaper-page {
        max-width: 1200px;
        padding: 0 20px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    .wp-topbanner {
        padding: 20px;
    }

    .wp-topbanner__wrapper {
        border-radius: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

  
    .wp-menubox {
        padding: 20px;
    }

    .wp-menu {
        gap: 16px;
    }

    .wp-menu__item {
        padding: 28px 24px;
    }

    .wp-menu__title {
        font-size: 22px;
    }

    .wp-menu__desc {
        font-size: 14px;
    }

    .wp-menu__icon {
        width: 64px;
        height: 64px;
    }

    .wp-casebox {
        padding: 0 20px 20px;
    }

    .wp-casetit {
        padding: 24px 0 16px;
    }

    .wp-casetit h2 {
        font-size: 24px;
    }

    .wp-caselist {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .wp-caseitem__name {
        font-size: 15px;
    }

    .wp-listbanner {
        padding: 20px;
    }

    .wp-listbanner__wrapper {
        border-radius: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

    .wp-listbanner__title {
        font-size: 32px;
    }

    .wp-listbanner__subtitle {
        font-size: 16px;
    }

    .wp-listmain {
        padding: 0 20px;
    }

    .wp-detailbanner {
        padding: 20px;
    }

    .wp-detailbanner__wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .wp-detailmain {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .wp-detailinfo__name {
        font-size: 24px;
    }

    .wp-detailsection__title h2 {
        font-size: 20px;
    }

    .wp-detail-service__grid {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .wp-caselist {
        grid-template-columns: repeat(5, 1fr);
    }
}
