/* 本页头部标题高亮 */
body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header .ContTop a {
    color: #fff;
    font-weight: 700;
}

 .phone {
    
    background-color: rgba(97, 195, 161, 1)!important; 
}

/* 主体内容 */
.Cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    padding: 0 2rem;
    
}

section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    
    
}

.title {
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
    height: 3rem;
    padding-bottom: 1.5rem;
    margin-top: 4rem;
    border-bottom: 2px solid rgba(0,0,0,0.3);
    font-family: "Source Han Sans SC", "Source Han Sans SC";
    font-weight: bold;
    font-size: 2.5rem;
    color: #1F2937;    
}

/* picece */

.piece {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    padding: 1rem;
    
}

.container .left {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 50%;
    
    
}

.left-title {
    font-family: "Source Han Sans SC", "Source Han Sans SC";
    font-weight: bold;
    font-size: 2.2rem;
    color: #1F2937;
    margin-bottom: 2rem;
}

section  .left ul input {
    width: 100%;
    height: 4rem;
    background: #F2F2F2;
    border-radius: 2px;
    margin-top: 0.5rem;
    border: none;
    background-color: #f0f2f5;
    font-family: "Source Han Sans SC", "Source Han Sans SC";
}

.left ul input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #3498db;
}

.left ul input::placeholder {
    font-family: "Source Han Sans SC", "Source Han Sans SC";   
    font-size: 1.2rem; 
    color: #1e1b1b;
    padding-left: 2rem;
}

.right {
    display: flex;
    flex-direction: column;
    
    width: 50%;
    padding: 1rem;
    
    
}

.right-cont {
    width: 100%;    
    padding-left:1rem;
    margin-top: 1.5rem;
}

.right-cont-t {
    margin-bottom: 2rem;
}
.right-cont-d {
    width: 100%;
}

.right-cont h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #1E1B1B; 
    margin-bottom: 0.6rem;
}

.right-cont-d-i {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #1E1B1B;
}


/* button  */

.btn {
    display: flex;
    justify-content: center;
    align-items: center;    
    width: 17%;
    height: 4rem;
    background-color: #FFD050;
    border-radius: 1rem;
    margin-right: 82%;
    margin-top: 2rem;
    margin-bottom:3rem;
    cursor: pointer;
}       

.btn span {
    display: flex;    
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #1F2937;
}

.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* 默认隐藏 */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* 确保在最上层 */
  }

  /* 弹窗容器 */
  .custom-alert {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 100%px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
  }

  /* 弹窗标题 */
  .alert-title {
    margin: 10px ;
    color: #333;
    font-size: 2.5rem;
  }

  /* 弹窗内容 */
  .alert-message {
    
    color: #040404;
    margin: 0 0 1.5rem;
    line-height: 1.5;
    font-size: 2rem;
  }

  .alert-btn{
    width: 100px;
    height: 60px;
    margin: 0 170px;
    font-size: 24px;
    border-radius: 8px;
    
  }
  
  .alert-btn:hover {
    background-color: #FFD050;
  }

