.menu_list {
	clear: both;
	float: left; 
    width: 100%;    
    margin-top: 5px;
    height: 100%;
    background-color: rgba(255,255,255,1.00);
    padding-bottom: 10px;
}
.menu_list img{	
	width: 30px;
    height: auto;
}
.menu_list a{ 
text-decoration: none;
}
.menu_body{
	clear: both;
	float: left;    
	width: calc(100% - 30px);
	padding: 0 0 0 0;
	margin-left: 10px;
	display:none;
}
.menu_body2{
	clear: both;
	float: left;    
	width: calc(100% - 30px);
	padding: 0 0 0 0;
	margin-left: 10px;
	display:none;
}
.menu_l1{
    clear: both;
    float: left;     
    text-align: left;
    font-size: 110%;
    line-height: 45px;
    /*background-color: rgba(255,255,255,1.00);*/
    border-bottom: #ccc 1px solid;
    padding: 0 0 0 10px;
    margin-left: 10px;
    width: calc(100% - 40px);
    transition: all 0.5s ease;
    cursor: pointer;
    color: #333;
}

.menu_l1:hover{
    /*background-color: rgba(216,235,235,0.97);*/
    transition: all 0.5s ease;
    padding-left: 25px;
    width: calc(100% - 55px);
}	
.menu_l2{
    cursor: pointer;
    clear: none;
    float: left;
    font-size: 100%;
    line-height: 40px;
     background: linear-gradient(135deg, #00294b 0%, #00294b 100%);
    margin: 1px;
    width: calc((100% - 4px - 25px));
    color: #FFF8DC;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(101, 67, 33, 0.4);
    padding-left: 25px;
}
.menu_l2:hover{
    text-decoration: none;
    color: #FFD700;
    background: linear-gradient(135deg, #8B4513 0%, #FFD700 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.6);
    transform: translateY(-1px);
}
/*.menu_list:after,.menu_l1:after,.menu_l2:after,.menu_body:after{
  content :' ';
  height : 0;
  clear : both;
  display : block;
  visibility: hidden;
}*/
.menu_head3{
	cursor: pointer;
	position: relative;
	text-align: left;
	font-weight: bold;
	background-color: #FFCC33;
	font-size: 100%;
}
.menu_head3 a{
	text-decoration: none;
	padding: 10px 0 10px 0px;
	transition: all 0.5s ease;
	text-align: left;
	font-weight: bold;
	background-color: #FFFFCC;
	color: #666;
	font-size: 100%;
	}
.menu_head3 a:hover{
	text-decoration: none;
	transition: all 0.5s ease;
	color: #FFFFFF;
	background-color: #FF9966;
	}
	
.menu_l1 img{
    width: 28px;
    height: auto;
    opacity: 0.6;   
	filter: sepia(0.6);
	-webkit-filter: sepia(0.6);
	opacity: 0.6; 
    margin-right: 15px;
    /*background-color: #1277AA;
    border-radius: 50%;*/
    padding: 3px;
}
.menu_l2 img,.menu_head3 img{
 width:25px;
}
.mNO {
  float: right;
  margin-right: 8px;
}
.mNO::after {   
  content: "";
  display: inline-block;
  width: 0; 
  height: 0;
  margin-left: 7px;
  border-top: 7px solid transparent;    /* 上邊透明 */
  border-bottom: 7px solid transparent; /* 下邊透明 */
  border-left: 7px solid #ccc;         /* 左邊實色（形成向右箭頭） */
  vertical-align: middle;
  transition: all 0.3s ease;
}
.menu_l1:hover .mNO::after {
  border-left-color: #757C00; 
  transform: rotate(90deg); 
}