goodsItem_2.less 1.5 KB
@charset "UTF-8";

.goods-item-2-box {
	background-color: #ffffff;
	padding: 20px 0;
	width: 240px;
	height: auto;
    border-radius: 8px;
    .top-box {
        position: relative;
        .img-box {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #F9F9F9;
            margin: 0 auto;
            width: 200px;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            .simg {
                display: block;
                width: 200px;
                height: 200px;
            }
        }
    }
	.content-box {
		margin: 0 auto;
		width: 200px;
		.title {
			margin-top: 10px;
			color: #333333;
			font-size: 24px;
			white-space: nowrap;
			text-overflow: ellipsis;
			overflow: hidden;
		}
		.price-box {
			display: flex;
			justify-content: flex-start;
			align-items: center;
			margin-top: 20px;
			.symbol {
				color: #FC1541;
				font-size: 20px;
			}
			.price {
				color: #FC1541;
				font-size: 30px;
				white-space: nowrap;
				text-overflow: ellipsis;
				overflow: hidden;
			}
		}
	}

    &.pid-2 {	// 排名样式
        background-color: transparent;
	    padding: 0;
        width: 200px;
		.content-box {
			.price-box {
				justify-content: center;
			}
			.ads {
				margin-top: 2px;
				text-align: center;
				color: #999999;
                font-size: 24px;
                height: 34px;
				white-space: nowrap;
				text-overflow: ellipsis;
				overflow: hidden;
			}
		}
	}
}