62 lines
1.2 KiB
CSS
62 lines
1.2 KiB
CSS
/*最外层,主容器样式*/
|
|
.strip_main_content{
|
|
width:100%;
|
|
height:100%;
|
|
overflow-x:hidden;
|
|
overflow-y:auto;
|
|
}
|
|
.strip_main_content *{
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
/*列表容器*/
|
|
.strip_main_content div.strip_item{
|
|
margin: 2px 0;
|
|
}
|
|
/*标题*/
|
|
.strip_main_content div h3 {
|
|
font-weight: normal;
|
|
cursor:pointer;
|
|
display: block;
|
|
width: 100%;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
background:url(../images/strip/tit-bg.gif) repeat-x bottom;
|
|
}
|
|
/*标题,鼠标未移入*/
|
|
.strip_main_content div h3 span.strip_hand_inactive span,
|
|
.strip_main_content div h3 span.strip_hand_over span {
|
|
display: inline-block;
|
|
float: left;
|
|
height: 100%;
|
|
font-size: 12px;
|
|
}
|
|
/*标题栏指示图片:非激活状态*/
|
|
.strip_main_content div h3 span.arrow_inactive{
|
|
display: inline-block;
|
|
width:15px;
|
|
margin: 0 2px;
|
|
background:url(../images/strip/expand.gif) no-repeat center;
|
|
}
|
|
/*标题栏指示图片:激活状态*/
|
|
.strip_main_content div h3 span.arrow_active{
|
|
display: inline-block;
|
|
width:15px;
|
|
margin: 0 2px;
|
|
background:url(../images/strip/collapse.gif) no-repeat center;
|
|
}
|
|
/*内容区域样式*/
|
|
.strip_main_content div div{
|
|
/*border:1px solid #F00;*/
|
|
width:100%;
|
|
height:600px;
|
|
display: none;
|
|
}
|
|
/*内容区域样式-IFRAME*/
|
|
.strip_main_content div div iframe{
|
|
margin:1px;
|
|
margin:1px;
|
|
width:100%;
|
|
height:100%;
|
|
border:0;
|
|
} |