footer{
    background-color: #333;
    position: relative;
    padding: 100px 0;
}
.Footer{  
    position: relative;
    left: 50%;
    transform: translate(-50%); 
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
}
.Footer .left{
    width: 50%;
    text-align: left;
}
.Footer .left h1{
    color: white;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}
.Footer .left  span{
    color: white;
    font-size: 16px;
}
.Footer .left ul{
    padding: 0;
    margin-top: 20px;
}
.Footer .left ul li{
    color: white;
    font-size: 20px;
}
.Footer .left ul li span{
    color: #FF7100;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}
.Footer .right{
    width: 50%;
    text-align: right;
}
.Footer .right .container{
    display: flex;
    justify-content: end;
}
 
   
  
  .Footer .right  .form {
    display: flex;
    flex-direction: column;
    width: 70%;
  }
  
  .Footer .right .input,
  .Footer .right  textarea {
    margin: 1em 0 1em 0;
    width: 100%;
    position: relative;
  }
  
  .Footer .right  .input input,
  .Footer .right  textarea {
    font-size: 100%;
    padding: 0.7em;
    outline: none;
    color: #e8e8e8;
    border: none;
    border-bottom: 2px solid #e8e8e8;
    background: transparent;
    border-radius: none;
    width: 100%;
    resize: none;
  }
  
  .Footer .right .input label {
    font-size: 100%;
    position: absolute;
    left: 0;
    color: #e8e8e8;
    padding: 0.7em;
    margin-left: 0.1em;
    pointer-events: none;
    transition: all 0.5s ease;
    text-transform: uppercase;
  }
  
  .Footer .right  .input :is(input:focus, input:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    padding: 0.4em;
    background: transparent;
  }
  
  .Footer .right  .input textarea:focus ~ label,
  .Footer .right .input textarea:valid ~ label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    padding: 0.4em;
    background: transparent;
  }
  
  .Footer .right .inputGroup :is(input:focus, input:valid) {
    border-color: rgb(37, 37, 211);
  }
  
  .Footer .right  .form button {
    color: #e8e8e8;
    font-size: 15px;
    align-self: flex-start;
    padding: 0.6em;
    border: none;
    cursor: pointer;
    margin-bottom: 50px;
    background: transparent;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
  }
  
  .Footer .right  .form button:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .Footer .right .form button:hover:before {
    opacity: 0.2;
  }
  
  .Footer .right .form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  .Footer .right ul li {
    color: white;
    float: right; 
  }
  
  .Footer .right ul li span{
    font-size: 25px;
    margin-right: 20px;
  }

 @media screen and (max-width:991px) {
  footer{
    padding: 0;
  }
  .Footer{
    display: block !important;
     
  }
  .Footer .left ul{
    /* display: none; */
  }
  .Footer .left{
    width: 100%;
  }
  .Footer .right .container{
    display: block;
  }
  .Footer .right{
    width: 100%;
  } 
  .Footer .right .container{
    max-width: 100%;
  }
  .Footer .right ul{
    display: none;
  }
}


.iPhoneZz{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 998; 
  left: -100%;
  top: 0;
  backdrop-filter: blur(10px); /* 关键：模糊背景 */
  -webkit-backdrop-filter: blur(10px); /* Safari 兼容 */
  background: rgba(0, 0, 0, 0.3); /* 半透明增强效果 */
  transition: 0.4s;
}
.iPhoneZz.active{
  left: 0;
}
.iPhone{
  position: fixed;
  width: 45%;
  height: 100%;
  z-index: 999; 
  left: -100%;
  top: 0;
  background-color: #fff;
  padding: 40px 15px;
  transition: 0.4s;
}
.iPhone.active{
  left: 0;
}
.iPhone .iPhoneHead{
  display: flex;
  justify-content: space-between;
}
.iPhone .iPhoneHead img{
  width: 40%;
  object-fit: cover;
}
.iPhone .iPhoneHead button{
  width: 50px;
  height: 50px;
  border: none;
  background-color: transparent;
}
.iPhone .iPhoneNr{
  margin-top: 40px;
}
.iPhone .iPhoneNr ul li a{
  color: black;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  display: block;
  width: 100%;
}
@media screen and (max-width:991px) {
  .Footer .right  .form{
    width: 100%;
  }
  
}
@media screen and (max-width:768px) {
  .iPhone{
    width: 450px;
  }
}
@media screen and (max-width:576px) {
  .iPhone{
    width: 100%;
  }
  .iPhone .iPhoneHead img{
    width: 50%;
  }
}