*{
    padding: 0;
    margin: 0;
}
body{
    width: 100%;
    height: 100vh;
    /*//寮规€х洅瀛愬竷灞€鏂瑰紡*/
    display: flex;
    /*瀹瑰櫒鍐呭厓绱犲眳涓�*/
    justify-content: center;
    align-items:center ;
    /*background: #efeeee;*/
}
.content2{
    width: 100%;
    background: #fff;
}
.container{
    /*width: 990px;*/
    /*display: flex;*/
    /*!*瀹瑰櫒鍐呭厓绱犱箣闂寸幆缁曠暀鏈変竴瀹氱┖闂�*!*/
    /*justify-content: space-around;*/
    /*align-items: center;*/
    flex-wrap: wrap;
    margin-left: -32px;
}
.cont2{
    width: 1180px;
    height: auto;
    margin: 0 auto;
}
.container .box{
    float: left;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    width: 200px;
    height: 200px;
    margin-left: 56px;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 18px 18px 30px rgb(0 0 0 / 10%), -18px -18px 30px rgb(255 255 255);
}
.container .box .img{
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcf9f9;
    transition: box-shadow .2s ease-out;
    position: relative;
}
.container .box .img img{
    width: 45px;
    transition: width .2s ease-out;
    /*瀹炵幇鏁堟灉浠ュ強瀹炵幇鏂瑰悜浠ュ強瀹炵幇鏃堕棿 ease-out浠ｈ〃杩囧害鏁堟灉*/
}
.container .box a{
    color: slategray;
    font-size: 18px;
    text-align: left;
}
.container .box:hover{
    box-shadow: 0 0 0 rgba(0,0,0,0.1),
    0 0 0 rgba(255,255,255,1),
    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;
}

