 body {
   background: #f1f3f6;
 }

 .p-list {

   margin: 0 -5px 0;
 }

 .p-list .item {
   background: #fff;
   padding: 15px;
   width: calc(20% - 10px);
   float: left;
   text-align: center;
   margin: 0 5px 10px 5px;
   transition: all 0.3s;
   cursor: pointer;
   border-radius: 5px;
   border: 2px solid #fff;
   position: relative;
 }

 .p-list .item .corner_mark {
   position: absolute;
   width: 50px;
   height: 50px;
   top: 5px;
   right: 5px;
   background-size: 100%;
 }

 .p-list .item:hover {
   box-shadow: 0 0 3px rgba(46, 110, 213, 0.6);
   border: 2px solid rgba(46, 110, 213, 0.8);
 }

 .p-list .item img {
   height: 130px;
   margin-bottom: 10px;
 }

 .p-list .item .name {
   height: 42px;
   color: #333;
   font-weight: 500;
   text-align: left;
 }

 .p-list .item .desc {
   color: #999;
   text-align: left;
   line-height: 1.8;
 }

 .p-list .price {
   padding-top: 5px;
   border-top: 1px solid #f4f4f4;
   margin-top: 5px;
   margin-bottom: 5px;
   font-size: 20px;
   font-weight: 500;
   color: rgba(46, 110, 213, 1);
 }

 .p-list .price del {
   color: #777;
   font-size: 13px;
 }

 .p-list .ant-btn {
   width: 100%;
   margin-top: 10px;
 }

 .p-list .tl {
   border-top: 1px dashed rgba(46, 110, 213, 0.6);
   margin-top: 10px;
   padding-top: 10px;
 }

 .p-list .item .spec-desc {
   text-align: left;
   font-size: 12px;
   color: rgba(0, 0, 0, 0.5);
 }