/* 引入Font Awesome图标库 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.GGW-plist-body {
    background-color: rgb(0 0 0 / 38%);
    padding: 60px 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%), url(https://sc04.alicdn.com/kf/Hc2ea3a354b844b5ca2ab4819ddd8df2fe/240550027/Hc2ea3a354b844b5ca2ab4819ddd8df2fe.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.GGW-plist-container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 80px 0px;
}

.GGW-plist-section-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    position: relative;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.GGW-plist-section-title:after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    margin: 25px auto 0;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    border-radius: 2px;
}

.GGW-plist-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.GGW-plist-card {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    height: 360px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    backdrop-filter: blur(5px);
}

.GGW-plist-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    z-index: 2;
}

.GGW-plist-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(0, 0, 0, 0.85);
}

.GGW-plist-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: #111;
}

.GGW-plist-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.GGW-plist-card:hover .GGW-plist-image-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.GGW-plist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.5s ease;
    opacity: 0.9;
}

.GGW-plist-card:hover .GGW-plist-image img {
    transform: scale(1.1);
    opacity: 1;
}

.GGW-plist-content {
    flex: 0 0 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.GGW-plist-content-inner {
    max-width: 90%;
}

.GGW-plist-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.8px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
}

.GGW-plist-name:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.GGW-plist-card:hover .GGW-plist-name:after {
    width: 70px;
}

.GGW-plist-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    line-height: 1.8;
    padding-right: 20px;
}

.GGW-plist-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.GGW-plist-features span {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.GGW-plist-features i {
    margin-right: 6px;
    font-size: 12px;
}

.GGW-plist-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.GGW-plist-link i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.GGW-plist-link:hover {
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.GGW-plist-link:hover i {
    transform: translateX(4px);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .GGW-plist-card {
        height: 340px;
    }
    
    .GGW-plist-content {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .GGW-plist-card {
        max-width: 100%;
        height: auto;
        flex-direction: column;
    }
    
    .GGW-plist-image {
        flex: 0 0 300px;
    }
    
    .GGW-plist-section-title {
        font-size: 36px;
    }
    
    .GGW-plist-name {
        font-size: 24px;
    }
    
    .GGW-plist-content-inner {
        max-width: 100%;
    }
    
    .GGW-plist-desc {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .GGW-plist-container {
        padding: 60px 20px;
    }
    
    .GGW-plist-section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .GGW-plist-content {
        padding: 30px;
    }
    
    .GGW-plist-name {
        font-size: 22px;
    }
    
    .GGW-plist-desc {
        font-size: 15px;
    }
    
    .GGW-plist-image {
        flex: 0 0 250px;
    }
}

@media (max-width: 576px) {
    .GGW-plist-section-title {
        font-size: 28px;
    }
    
    .GGW-plist-image {
        flex: 0 0 220px;
    }
    
    .GGW-plist-link {
        padding: 10px 22px;
    }
    
    .GGW-plist-body {
        padding: 40px 0;
    }
    
    .GGW-plist-container {
        padding: 40px 15px;
    }
}