html,body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
div,p,ul,li,a,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}

*{
    box-sizing: border-box;
}
#app{
    width: 100%;
    height: 100%;
}
.register-container{
    width: 100%;
    height: 100%;
    display: flex;
}
.register-container .register-left{
    width: 40%;
    height: 100%;
    background-color: #eef5f8;
    display: flex;
    flex-direction: column;
}
.register-container .register-left .register-left-logo{
 
}
.register-container .register-left .register-left-img{
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}
.register-container .register-left  img{
    max-width: 100%;
    max-height: 100%;
}
.register-container .register-left .register-left-img img{
    padding: 20px;
}
.register-container .register-right{
    width: 60%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column; 
    padding-top: 150px;
}
.register-container .register-right h1{
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.register-container .register-right .register-body h1{
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}


.setting-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.setting-container .setting-header{
    width: 100%;
    height: 70px;
    background-color: #f5f5f5;
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    border-bottom: 1px solid #e5e5e5;
    z-index: 100;
   
}
.setting-container .setting-header .txt{
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.setting-container .setting-header img{
    height: 40px;
}



.setting-body{
    margin-top: 70px;
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-bottom: 50px;
    background-color: #fff;
}
.setting-body .el-tabs{
    width: 100%;
    height: 100%;
}

.setting-footer{
    width: 100%;
    height: 50px;
    border-top: 1px solid #e5e5e5;
    padding: 0 10px;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hotel-category{
    width: 100%;
    height: 100%;
}
.hotel-title{
    font-size: 15px;
    font-weight: 600;
    color: #102647;
    margin-bottom: 10px;
}
.hotel-category-item-title-required{
    color: #f00;
}
.hotel-category-items{
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
}
.hotel-category-item{
    height: 100%;
    width: 25%;
    display: flex;
    color: #102247;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #E7E8EC;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    min-height: 100px;
    box-shadow: 0 0 0 0 #e9f0f7;
}
.hotel-category-item:hover{
    border: 1px solid #007AFF;
    background-color: #F0F6FF;
}
.hotel-category-item.cur{
    border: 1px solid #007AFF;
    background-color: #F0F6FF;
}
.hotel-category-item-title{
    font-size: 16px;
    color: #333;
    padding-left: 10px;
    border-left: 4px solid #007AFF;
}
.hotel-category-item-txt{
    font-size: 14px;
    color: #666;
}

.el-form--label-top .el-form-item__label{
    padding: 0 !important;
}




/* 响应式布局：平板和手机端优化 */
@media (max-width: 900px) {
  .register-container {
    flex-direction: column;
    height: auto;
  }
  .register-container .register-left,
  .register-container .register-right {
    width: 100%;
    height: auto;
    min-height: 200px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .register-container .register-right {
    padding-top: 40px;
  }
}

@media (max-width: 600px) {
  .register-container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .register-container .register-left {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #fff;

  }
  .register-container .register-right {
    width: 100%;
    min-width: 0;
    padding: 20px 10px 0 10px;
    box-sizing: border-box;
    align-items: flex-start;
    position: absolute;
    bottom: 0;
    top:100px;
    background-color:rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    z-index: 100;

  }
  .register-container .register-right .el-input{
   width: 40% !important;
  }
  .register-container .register-right .register-body {
    width: 100%;
    min-width: 0;
    padding: 0;
  }
  .el-form {
    width: 100% !important;
    min-width: 0;
  }
  .el-form-item__content {
    width: 100%;
  }
  .el-input {
    width: 100% !important;
  }
  .register-container .register-right h1,
  .register-container .register-right .register-body h1 {
    font-size: 18px;
    text-align: left;
  }
  .hotel-category-item{
    width: 100%;
  }
}



