@charset "utf-8";
body {
    margin: auto;
    padding: auto;
    overflow-x: hidden;
	overflow-y: hidden;

 }
a{
	text-decoration: none;
    margin: auto;
    padding: auto;
}
.back01{
    width: 100vw;
    height: 100vh;
    
    background-image: url(../image/livingroom.webp);
    background-size: cover;
    background-repeat: no-repeat;
    animation: homeimage 1s ;
  
   
}
.back02{
    width: 80vw;
    min-width: 1200px;
    height: 60vh;
    position: absolute;
    top: 20%;
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow:0 0 20px rgba(50, 59, 88, 0.8);
    border-radius: 20px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    
   
 }
 
.pt{
   
    display: grid;

   
    background: rgba(219, 235, 241,0.8);
    box-shadow: 0 0 15px rgb(59, 73, 95);
    border-radius: 15px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.5s ease 0s;
}
.pt:hover{
    cursor: pointer;
    transform: scale(1.05);
}

.imghid{
    overflow: hidden;
}
.part1 .img{
    background-image: url("../image/homepic1.webp");
   
}
.part2 .img{
    background-image: url("../image/homepic2.webp");
}
.part3 .img{
    background-image: url("../image/homepic3.webp");
}
.part4 .img{
    background-image: url("../image/homepic4.webp");
}

.pt .img{
    height: 190px;
    width: 250px;
    background-size: cover;
    background-position: 0px -30px;
    transition: all 0.5s ease 0s;
    opacity: 0.8;
    animation: mymove 1s ;
  
}

.pt .img:hover{
    transform: scale(1.1);
}

.pt .txt{
    height: 310px;
    width: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: auto;
    
}

.pt .txt h1{
    text-align: center;
    font-size: 3em;
    color: rgb(5, 19, 40);
    height: 30px;
    line-height: 30px;
}

.pt .txt p{
    margin-top: -2px;
    word-wrap: break-word;
    color:rgb(17, 79, 114) ;
    font-weight:300;
    margin:4px;
}
div{
    line-height:26px;
 }

@keyframes homeimage {
    0% {
      transform: scale(1.2); /*开始为原始大小*/
      filter: blur(12px);  

    }
    75% {
      transform: scale(1);
    }
  }
 
  @-webkit-keyframes homeimage /*Safari and Chrome*/ {
    0% {
        transform: scale(1.2); /*开始为原始大小*/
      }
      75% {
        transform: scale(1);
      }
  }

  @keyframes mymove {
    from {top:-100px;}

    to {top:15%;}
  
  }
 
  @-webkit-keyframes mymove /*Safari and Chrome*/ {
    from {top:-100px;}

    to {top:15%;}
  }