﻿@charset "utf-8";

/*
Author：张浩华
Date：2011.11.25 0:12
Version：SimpleTree 1.0
*/

.st_tree{ 
	padding:10px;
	width: calc(100% - 20px);
}

/* 超链接 */
.st_tree a{ 
	color:#222; 
	text-decoration:none; 
	font-size:14px;
}

/* 鼠标经过的超链接 */
.st_tree a:hover{ 
	color:#f33; 
	text-decoration:underline;
}

/* 菜单 */
.st_tree ul{ 
	padding:0 0 0 18px; 
	margin:0; 
}

/* 菜单项 */
.st_tree ul li{ 
	font-size:14px; 
	color:#222; 
	line-height:50px; 
	cursor:pointer;
	display:flex;
	justify-content:space-between;
	list-style:none; 
	background:url(../images/wjico2.png) left center; 
	background-repeat:no-repeat; 
	padding:0 0 3px 40px;
	border-bottom: 1px solid #ddd;
	height: 50px;
	text-align: center;
	align-items:center;
    overflow: hidden;
}
.wordlist ul li{background:url(../images/word.png) left center no-repeat!important; }
.st_tree ul li .bianji{color:#fff;display:block;border-radius: 10px; background: #2196f3; font-size: 14px; min-width:80px; height:30px;line-height:30px;padding:0 10px;}
.st_tree ul li:hover .bianji{display:block;background: #5d48ff; }
.st_tree ul li:hover a{color:#000;}
/* 子菜单 */
.st_tree ul li ul{}

/* 子菜单项 */
.st_tree ul li ul li{}

/* 子菜单的父节点 */
.st_tree .folder{ 
	list-style-image:url(../images/st_icon.png); 
	background:url(../images/wjico.png) left center; 
	background-repeat:no-repeat; 
	padding:0 0 0 40px; 
}

/* 展开的父节点 */
.st_tree .open{ 
	list-style-image:url(../images/st_icon_open.png); 
	background:url(../images/wjico.png) left center; 
	background-repeat:no-repeat; 
	padding:0 0 0 40px; 
}

.st_tree .hover{
	background-color:#eee;
}