*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efeeee;
}
 .container1 {
	 width: 100%;
    display: flex;
    flex-direction: column;
	overflow: auto; 
   
  }
  .header1 {
	  float:left;

    left: 50px;
	top:20px;
   padding: 20px;
    text-align: center;
  }
   .footer1 {
    width: 100%;
 
    text-align: right;
  }
  .content1 {
    flex: 1; /* This makes the content area grow to fill the remaining space */
	display: flex;
  justify-content: center; /* 水平居中 */
    flex-wrap: wrap;
    align-items: center;
	margin-top:20px;
   float:left;
    padding: 20px;
    text-align: center;}
	 .contentt {
    flex: 1; /* This makes the content area grow to fill the remaining space */
	margin-top:20px;
   float:left;
    padding: 20px;
    text-align: center;
	margin-left:50px;}
	
.container{
	 float:left;
    width:1200px;
  display: flex;
  justify-content: center; /* 水平居中 */
    flex-wrap: wrap;
    align-items: center;
}
.container .box{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    align-content: center;
    width: 150px;
    height: 190px;
    margin: 20px;
}
.container .box .img{
    width: 150px;
    height: 150px;
    box-shadow: 18px 18px 30px rgba(0, 0, 0, 0.1),
    -18px -18px 30px rgba(255, 255, 255, 1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#2e3192; 
    transition: box-shadow .2s ease-out;
    position: relative;
}

.container .box .img  img{
    width: 130px;
	border-radius:15px;
    transition: width 0.2s ease-out;
}
.container .box p{
    color: slategrey;
}
.container .box .img:hover{ 
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px rgba(255, 255, 255, 0.8),
    inset 18px 18px 30px rgba(0, 0, 0, 0.1),
    inset -18px -18px 30px rgba(255, 255, 255, 1);
    transition: box-shadow .2s ease-out;
}
.container .box .img:hover img{
    width: 128px;
    transition: width 0.2s ease-out;
}