45 lines
806 B
CSS
45 lines
806 B
CSS
.action {
|
|
width: 100%;
|
|
height: 50px;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 999;
|
|
}
|
|
.action .left_action {
|
|
width: 200px;
|
|
height: 100%;
|
|
background: #f6f6f6;
|
|
float: left;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
padding-right: 6px;
|
|
box-sizing: border-box;
|
|
}
|
|
.action .left_action .icon-houtui {
|
|
margin-right: 15px;
|
|
}
|
|
.action .right_menu {
|
|
width: calc(100% - 200px);
|
|
height: 100%;
|
|
background: #f9f9f9;
|
|
float: left;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.action .right_menu .menu_text {
|
|
font-weight: 500;
|
|
font-size: 15px;
|
|
margin-left: 32px;
|
|
}
|
|
.action .right_menu .menu_action i {
|
|
margin-right: 20px;
|
|
font-size: 22px;
|
|
}
|
|
.action .right_menu .menu_action .icon-yifu {
|
|
font-size: 20px;
|
|
}
|