<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*css*/


.left-menu-title {
      display: block;
      padding: 10px;
      font-size: 14px;
      color:#000;
      text-decoration: none;
      border: none;
      border-top: 1px solid #E3EBFF;
       background-color: #fed532;
       text-align: center;
    }
   .menu {
      list-style: none;
      padding: 0;
      width: 100%;
      background-color: #f5f5f5;
    }

    .menu li {
      position: relative;

    }

    .menu &gt; li &gt; a {
      display: block;
      padding: 10px;
      font-size: 14px;
      color:#000;
      text-decoration: none;
      border: none;
      border-top: 1px solid #E3EBFF;
    }

    .menu ul {
      list-style: none;
      padding: 0;
      overflow: hidden;
      height: auto;
      /*--height: 0; �箔��㺿��𣂷���见�见�閖�𧢲�隞交㺿�躰ㄐ*/
      transition: height 0.3s;
    }

    .menu li.open &gt; a {
      background-color: #fff;
    }

    .menu li.open &gt; a:after {
      content: '-';
      float: right;
    }

    .menu li.collapsed &gt; a:after {
      content: '+';
      float: right;
    }

    .menu ul li label {
      display: flex;
      align-items: center;
      padding: 5px;
      font-size: 14px;
      font-weight: 200;

    }
    .menu input[type="text"] {
        font-size: 14px;
        padding: 3px;
        margin-left: 10px;
        width: 230px;
        
    }

    .menu ul li input[type="checkbox"] {
        width: 15px;
        height: 15px;
        
        margin: 2px 8px 2px 2px;
        margin-left: 10px;
    }
     .menu ul li input[type="radio"] {
      
           width: 15px;
        height: 15px;
          margin: 2px 8px 2px 2px;
          margin-left: 10px;
    }

    .menu ul li a {
      display: block;
      padding: 10px;
      background-color: #f9f9f9;
      color: #555;
      text-decoration: none;
      
    }

    .buttons {
      display: none;
      justify-content: left;
      margin-top: 20px;

    }

    .submit-btn
     {
      padding: 5px 20px;
      margin-left: 40px;
      font-size: 14px;

 }

    .clear-btn {
      padding: 5px 20px;
      margin-left: 10px;
      font-size: 14px;

 }
    .menu-img {
    
    right: 0;
    width: 30px;
    height: 30px;
    max-width: 100%;
    top: 0;
}

/* 2023/11/08 靽格㺿 */
.menu {
  list-style: none;
  margin: 10px 0;
  padding: 20px 0 30px;
  width: 100%;
  background-color: #FFFDF0;
  border-radius: 20px;
  box-shadow: 1px 1px 15px rgba(50,50,50,0.1);
}
.left-menu-title {
  display: flex;
  justify-content:center;
  align-items: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 900;
  color: #333;
  text-decoration: none;
  border: none;
  border-top: none;
  background-color: transparent;
  text-align: center;
}
.left-menu-title::after {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  background-image: url(../images/icon/search/search.png);
  margin-left: 20px;
}
#kw{
  margin: 10px auto;
  width: 80%;
  display: block;
  border: none;
  border-radius: 7px;
  background: rgba(249, 211, 116, 0.70);
  padding: 4px 8px;
  font-weight: bold;
  color: #000;
}
.menu li.open ul {
  margin-bottom: 10px;
}
.menu &gt; li &gt; a {
  display: block;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  border: none;
  border-top: 1px solid rgba(51,51,51,0.15);
}
.menu &gt; li:nth-child(4) &gt; a::before,
.menu &gt; li:nth-child(5) &gt; a::before,
.menu &gt; li:nth-child(6) &gt; a::before,
.menu &gt; li:nth-child(7) &gt; a::before,
.menu &gt; li:nth-child(8) &gt; a::before,
.menu &gt; li:nth-child(9) &gt; a::before,
.menu &gt; li:nth-child(10) &gt; a::before{
  display: inline-block;
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 8px;
  vertical-align:-10px;
}
.menu &gt; li:nth-child(4) &gt; a::before{  
  background: url(../images/icon/search/s1.png) no-repeat left top;  
}
.menu &gt; li:nth-child(5) &gt; a::before{  
  background: url(../images/icon/search/s2.png) no-repeat left top;  
}
.menu &gt; li:nth-child(6) &gt; a::before{  
  background: url(../images/icon/search/s3.png) no-repeat left top;  
}
.menu &gt; li:nth-child(7) &gt; a::before{  
  background: url(../images/icon/search/s4.png) no-repeat left top;  
}
.menu &gt; li:nth-child(8) &gt; a::before{  
  background: url(../images/icon/search/s5.png) no-repeat left top;  
}
.menu &gt; li:nth-child(9) &gt; a::before{  
  background: url(../images/icon/search/s6.png) no-repeat left top;  
}
.menu &gt; li:nth-child(10) &gt; a::before{  
  background: url(../images/icon/search/s7.png) no-repeat left top;  
}
.menu li.collapsed &gt; a:after {
  content: '+';
  float: right;
  font-weight: 100;
}
.menu li.open &gt; a:after {
  content: '-';
  float: right;
  font-weight: 100;
}
.menu li li {
  margin-left: 50px;
}
.menu li.open &gt; a {
  background: none;
}
.buttons{
  justify-content: center;
  margin-top: 0;
}
.buttons.btmbutton{  
  padding-top: 20px;
  border-top: 1px solid rgba(51,51,51,0.15);
}
.buttons button{
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(82deg, #B7B7B7 2.25%, #a9a9a9 79.87%);
  border: none;
}
.submit-btn,
.clear-btn {
  padding: 5px 50px;
  margin: 10px;
}
.buttons.btmbutton button {
  background: linear-gradient(82deg, #ebad73 2.25%, #e6974d 79.87%);
}

    /* 慦㘾�娍䰻閰� */
    @media only screen and (max-width: 1320px) {
      .submit-btn, .clear-btn {
        padding: 5px 20px;
        word-break: keep-all;
      }
    }
    @media only screen and (max-width: 768px) {
      .menu {
        display: none;
      }

      .search-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
        width: 100%;
        padding: 10px;
        font-size: 16px;
        font-weight: 900;
        color: #333;
        background-color: #fbca99;
        border-radius: 20px;
        border: none;
        box-shadow: 1px 1px 15px rgba(50,50,50,0.1);
      }
      .search-btn::after {
        display: block;
        content: '';
        width: 24px;
        height: 24px;
        background-image: url(../images/icon/search/search.png);
        margin-left: 20px;
      }
      .open .left-menu-title{
        display: none;
      }

      .menu.open {
        display: block;
      }

      .buttons.open,
      .open .buttons {
        display: flex;
      }

      .search-btn.open {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #f1f1f1;
        z-index: 9999;
      }
      .submit-btn, .clear-btn {
        padding: 5px 40px;
        word-break: keep-all;
      }
      
    }

    @media only screen and (min-width: 769px) {
      .search-btn {
        display: none;
      }

      .menu {
        display: block;
      }

      .buttons {
        display: flex;
      }
      
    }</pre></body></html>