.container2 {
  
   					display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .diamond-card {
            position: relative;
            width: 300px;
            height: 400px;
            background: #fff;
            //background: #FFD700; /* 产品背景颜色设置为金色 */
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transform-style: preserve-3d;
            transition: transform 0.3s;
        }

        .diamond-card:hover {
            transform: rotateY(10deg) rotateX(10deg);
        }

        .diamond-shine, .diamond-sparkle {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.5);
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .diamond-shine {
            opacity: 0.1;
        }

        .diamond-sparkle {
            opacity: 0.3;
            background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/13471/sparkles.gif') center/cover;
        }

        .diamond-image {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .diamond-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
        }

        .diamond-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: #333;
            font-size: 18px;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
        }
  .silver-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px; /* Height of the silver bottom */
            background: #FFD700; /* 金色 */ /* 更改银色底部背景颜色 */
            border-radius: 0 0 20px 20px; /* Rounding the bottom corners */
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    
    
        }
  .price-tag {
            position: absolute;
            top: 20px; /* Price tag position */
            right: 20px; /* Price tag position */
            background: #FFD700; /* 金色背景 */
            color: #FF0000; /* 字体颜色 */
            padding: 5px 10px;
            border-radius: 10px; /* 圆角 */
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }