#main_cnt {
    height: auto;
}
.p_box{
	background-color: #eee;
	padding: 100px 15%;
}
.p_box .sec_title{
	font-size: 36px;
	font-weight: bold;
    color: #1b66a2;
}
.p_box > .sub_title{
	font-weight: 500;
	color: #666;
	width: 80%;
}
.p_box .products{
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.p_box .items{
	display: inline-block;
	vertical-align: top;
	width: 300px;
	overflow: hidden;
}
.p_box .items .cover{
	background-color: #aaa;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 300px;
	height: 300px;
	transition:all .3s ease-in-out;
	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
	transform: scale(1);
	overflow: hidden;
}
.p_box .items .cover img{
	width: 100%;
	max-width: 100%;
	height: auto;
}
.p_box .items:hover .cover{
	transform: scale(1.1);
}
.p_box .items .info{
	background-color: #1b66a2;
	color: #fff;
	padding: 10px;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 50px;
	min-height: 80px;
}
.p_box .items .info .sub_title{
	color: #bbb;
	font-size: 16px;
	font-weight: 400;
	padding-top: 2px;
}

@media only screen and (min-width: 50px) and (max-width: 1300px) {
  .p_box {
    padding: 15px 5%;
  }
}
/*   mobile */
@media only screen and (min-width: 50px) and (max-width: 750px) {
  .p_box {
    padding: 50px 5%;
  }
  .p_box .sec_title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .p_box > .sub_title {
    width: 100%;
    text-align: justify;
  }
  .p_box .items{
    width: 100%;
  }
  .p_box .items .cover{
    width: 100%;
  }
}
 /* tablet vertical */
@media only screen and (min-width: 751px) and (max-width: 900px) {
  .p_box {
      padding: 15px;
      height: auto;
  }
  .p_box .sec_title {
    font-size: 30px;
    text-align: justify;
    margin-bottom: 20px;
  }
  .p_box > .sub_title {
    width: 100%;
    text-align: justify;
  }
  .p_box .items{
    width: 100%;
  }
  .p_box .items .cover{
    width: 100%;
  }
}
