| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .productCenter{
- display: grid;
- grid-template-columns: repeat(4,310px);
- grid-gap: 25px;
- box-sizing: border-box;
- }
- .product{
- display: block;
- height: 380px;
- background-color: #fff;
- box-shadow: 1px 1px 3px black;
- border-radius: 3px;
- overflow: hidden;
- cursor: pointer;
- position: relative;
- }
- .product:hover{
- box-shadow: 1px 1px 5px #3a3838;
- }
- .product .more{
- background-color: #912b02;
- padding: 0 30px;
- border-radius: 4px;
- display: block;
- position: absolute;
- left: 50%;
- transform: translate(-50%,0);
- top: 250px;
- opacity: 0;
- transition:all 0.5s;
- color: white;
- }
- .product:hover .more{
- opacity: 1;
- background-color: orangered;
- }
- .product .more:hover{
- box-shadow: 1px 1px 5px white;
- padding: 0 25px;
- }
- .product .product-info{
- display: block;
- padding: 5px;
- height: calc(100% - 270px);
- box-sizing: border-box;
- }
- .product .imgBox{
- display: block;
- width: 310px;
- height: 270px;
- }
- .product:hover .imgBox img{
- left: -10px;
- top: -10px;
- max-width: calc(100% + 20px);
- width: calc(100% + 20px);
- height: calc(100% + 20px);
- }
- .product .title{
- height: 40px;
- display: flex;
- align-items: center;
- font-size: 1.6em;
- }
- .product-info .description{
- display: block;
- height: calc(100% - 40px);
- border-top: 1px solid beige;
- font-size: 0.9em;
- color: #444343;
- }
- .product-info .description > span{
- display: block;
- }
|