html {
    font-size: 14px;
}



body {
    margin: 0;
    background: linear-gradient( 135deg, #101522, #202942 );
    color: #fff;
    font-family: "Microsoft YaHei", sans-serif;
}



/*顶部*/

.shop-navbar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: rgba(0,0,0,0.55);
    box-shadow: 0 3px 20px #000;
}




.shop-logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffd45c;
}





.shop-menu a {
    color: #fff;
    margin-left: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}



    .shop-menu a:hover {
        color: #ffd45c;
    }




/*内容*/


.shop-container {
    width: 1200px;
    margin: 30px auto;
}





/*玩家信息*/


.player-box {
    background: rgba(255,255,255,.08);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px #0005;
    margin-bottom: 30px;
}





/*商品*/


.product-card {
    background: rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    transition: .3s;
}




    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px #000;
    }





.product-title {
    font-size: 22px;
    color: #ffd45c;
}




.product-price {
    font-size: 18px;
    color: #00ff9d;
}





.shop-btn {
    background: linear-gradient( 45deg, #ffb300, #ff6600 );
    border: none;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}



    .shop-btn:hover {
        opacity: .8;
    }




.shop-footer {
    text-align: center;
    padding: 30px;
    color: #aaa;
}
