
    #shouye3{
     color: orange;
 }
.input_div2{
    position:relative;
    left:5%;
    width: 80%;
    margin:1rem;
    font-size:1.5rem;
    padding: 0.5em;
    background-color:wheat;

}
.button {

      /* 清除背景色 */
      background: transparent;
      /* 给边框添加圆角 */
      border-radius: 6px;
      /* 字母转大写 */
      border: none;
      color: white;
      padding: 0.4rem 0.8rem;
      text-align: center;
      display: inline-block;
      font-size: 1.5rem;
      margin: 0.4rem 2rem;
      -webkit-transition-duration: 0.4s; /* Safari */
      transition-duration: 0.4s;
      cursor: pointer;
      text-decoration: none;
      text-transform: uppercase;
}
.button {
      background-color: white;
      color: black;
      border: 2px solid #008CBA;
      width: 80%;
    /*left:10%;*/
}
/* 悬停样式 */
.button:hover {
      background-color: #008CBA;
      color: white;
}
#bazi_check_gz{
    text-align:left;
    margin-left:1rem;
    font-size:1rem;
    display: none;
    line-height:1;
}
table{
    width: 90%;
    border-collapse: collapse;
}

table caption{
    font-size: 2em;
    font-weight: bold;
    margin: 1em 0;
}

th,td{
    /*border: 1px solid #999;*/
    text-align: center;
    padding: 5px 0;
}

table thead tr{
    background-color: #008c8c;
    color: #fff;
}

table tbody tr:nth-child(odd){
    background-color: #eee;
}

table tbody tr:hover{
    background-color: #ccc;
}

table tbody tr td:first-child{
    color: #f40;
}

table tfoot tr td{
    text-align: right;
    padding-right: 5px;
}


/*弹框*/

.address-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            background: white;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0,0,0,0.2);
            z-index: 1000;
        }

 /*头部*/
.modal-header {
            padding: 0.5rem;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }

.tab-buttons {
            display: flex;
            gap: 0.8rem;
        }

.tab-btn {
        padding:0.5rem 1rem;
        border: none;
        background: none;
        cursor: pointer;
        font-size: 1.8rem;
    }

.tab-btn.active {
        border-bottom: 2px solid #1890ff;
        color: #1890ff;
    }

/*搜索框*/
 .search-box{
    width:28rem;
     margin-left:4rem;
    }
 .sear_input{
        width: 20rem;
        padding:0.2rem;
        border: 1.5px solid #ddd;
        border-radius: 4px;
    }

    .sear_enter{
        padding: 0.2rem;
        border: none;
        border-radius: 0.3rem;
        font-family: 'Segoe UI', sans-serif;
        font-weight: 600;
        cursor: pointer;

        /* 颜色渐变 */
        background-image: linear-gradient(135deg, #6B8DD6 0%, #8E37D7 100%);
        color: white;

        /* 阴影效果 */
        box-shadow: 0 0.3rem 1rem rgba(111, 78, 229, 0.2);

        /* 过渡动画 */
        transition: all 0.3s ease;

        /* 文字样式 */
        letter-spacing: 0.5px;
        font-size: 1.5rem;
    }
 /* 搜索框关闭和筛选按钮样式 */
.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    line-height: 1;
}
.close-btn:hover,
.close-btn:focus {
            color: black;
            text-decoration: none;
        }
 /* 查询结果 */
.search-result {
    display: none;
    height: 20rem;
    overflow-y: auto;
}
.resulti{
    font-size:1.3rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    padding-bottom: 0.6rem;
    padding-top: 0.6rem;
}
.resulti:hover {
    background-color: #f5f5f5;
}
 .search-result.show {
        display: block;
    }



 /*主要内容*/
.modal-body {
        padding: 15px;
        max-height: 25rem;
        /*overflow-y: auto;*/
    }
 .region-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;

    }
.region-item {
        /*padding: 0.4rem;*/
        /*border-radius: 4px;*/
        height: 20rem;
        overflow-y: auto;
        border-right: 1px solid #eee;
    }

.selected {
        background-color: #f5f5f5;
        color: #1890ff;
        font-weight: bold;
        }
/*省市县*/
 .region1,.region2,.region3{
       cursor: pointer;
        /*background: #f5f5f5;*/
      border-radius: 0.2rem;
     font-size: 1.3rem;
        padding-top: 0.6rem;
     padding-bottom: 0.6rem;
 }
.region1:hover {
    background-color: #f5f5f5;;
}
.region2:hover {
    background-color:#f5f5f5;;
}
.region3:hover {
    background-color: #f5f5f5;;
}


/* 确认按钮 */
 .enter_btn {
    /* 基础样式 */
     text-align: center;
     width: 10rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0.3rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;

    /* 颜色渐变 */
    background-image: linear-gradient(135deg, #6B8DD6 0%, #8E37D7 100%);
    color: white;

    /* 阴影效果 */
    box-shadow: 0 0.3rem 1rem rgba(111, 78, 229, 0.2);

    /* 过渡动画 */
    transition: all 0.3s ease;

    /* 文字样式 */
    letter-spacing: 0.5px;
    font-size: 1.5rem;
}

/* 悬停效果 */
.enter_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.4rem 1.5rem rgba(111, 78, 229, 0.3);
    background-image: linear-gradient(135deg, #5a7bc7 0%, #7d2cc4 100%);
}

/* 点击效果 */
.enter_btn:active {
    transform: scale(0.98);
}

/* 禁用状态 */
.enter_btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


.hidden{
    display: none;
}
.show{
    display: block;
}
/*高亮效果*/
/*.highlight {*/
/*    transform: scale(1.05);*/
/*    box-shadow: 0 0 10px rgba(0,0,0,0.3);*/
/*    transition: all 0.3s;*/
/*  }*/

.zdy_hour_div{
    font-size: 1.2rem;
    color:#555555
}

/* 定义强调动画 */
  .highlight {
    animation: colorPulse 1.5s ease-out;
  }

@keyframes colorPulse {
  0% {
    color: #333; /* 原始颜色 */
  }
  30% {
    color: #ff4444; /* 亮红色 */
  }
  70% {
    color: #cc0000; /* 深红色 */
  }
  100% {
    color: #333; /* 恢复原色 */
  }
}

/*夏令时注释*/
.tk_note{
    position: absolute; /* 脱离文档流，不影响其他元素 */
      left: 0.8rem;         /* 距离左侧 10px */
      bottom: 0.8rem;       /* 距离底部 10px */
    color: #555555;
    font-size: 1rem;
}

.xls_qh{
    position: absolute; /* 脱离文档流，不影响其他元素 */
      right: 1.2rem;         /* 距离左侧 10px */
      bottom: 1rem;       /* 距离底部 10px */
    color: #555555;
    font-size: 1.2rem;
    cursor: pointer;
}
.selected_an{
    color:orange;
    font-weight: bold;
    font-size:1.2rem;
}
.action-btn-qrbz{
    cursor: pointer;
}


.checkbox_large {
   /*transform: scale(1);*/
    box-sizing: border-box;
    /*margin-left:1rem ;*/
    /*margin-right:0.4rem;*/
}
#input_address{
     cursor: pointer;
}
