|
|
|
@ -1,167 +1,166 @@
|
|
|
|
|
@charset "utf-8";
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
box-sizing: border-box; /* 设置所有元素的盒子模型为border-box */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app-menu ul {
|
|
|
|
|
padding: 0;
|
|
|
|
|
padding: 0; /* 移除列表的默认内边距 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app-menu li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
list-style: none; /* 移除列表项的默认样式 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app-menu {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden; /* 隐藏溢出的内容 */
|
|
|
|
|
width: 100%; /* 设置宽度为100% */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 320px;
|
|
|
|
|
height: 540px;
|
|
|
|
|
float: left;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
border: 1px solid #e7e7eb;
|
|
|
|
|
position: relative; /* 相对定位 */
|
|
|
|
|
width: 320px; /* 设置宽度 */
|
|
|
|
|
height: 540px; /* 设置高度 */
|
|
|
|
|
float: left; /* 左浮动 */
|
|
|
|
|
margin-right: 10px; /* 右边距 */
|
|
|
|
|
border: 1px solid #e7e7eb; /* 边框颜色和宽度 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #616161;
|
|
|
|
|
text-decoration: none; /* 移除链接下划线 */
|
|
|
|
|
color: #616161; /* 文字颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .weixin-hd .weixin-title {
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 33px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
color: #fff; /* 文字颜色 */
|
|
|
|
|
font-size: 15px; /* 字体大小 */
|
|
|
|
|
width: 100%; /* 宽度 */
|
|
|
|
|
text-align: center; /* 文字居中对齐 */
|
|
|
|
|
position: absolute; /* 绝对定位 */
|
|
|
|
|
top: 33px; /* 顶部位置 */
|
|
|
|
|
left: 0px; /* 左侧位置 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .weixin-header{
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
background-color: #616161;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
text-align: center; /* 文字居中对齐 */
|
|
|
|
|
padding: 10px 0; /* 上下内边距 */
|
|
|
|
|
background-color: #616161; /* 背景颜色 */
|
|
|
|
|
color: #ffffff; /* 文字颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .weixin-menu {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
border-top: 1px solid #e7e7e7;
|
|
|
|
|
background-position: 0 0;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
position: absolute; /* 绝对定位 */
|
|
|
|
|
bottom: 0; /* 底部位置 */
|
|
|
|
|
left: 0; /* 左侧位置 */
|
|
|
|
|
right: 0; /* 右侧位置 */
|
|
|
|
|
border-top: 1px solid #e7e7e7; /* 上边框颜色和宽度 */
|
|
|
|
|
background-position: 0 0; /* 背景图像位置 */
|
|
|
|
|
background-repeat: no-repeat; /* 背景图像不重复 */
|
|
|
|
|
margin-bottom: 0px; /* 底部外边距 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*一级*/
|
|
|
|
|
.weixin-preview .weixin-menu .menu-item {
|
|
|
|
|
position: relative;
|
|
|
|
|
float: left;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 33.33%;
|
|
|
|
|
border-left: 1px solid #e7e7e7;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #616161;
|
|
|
|
|
position: relative; /* 相对定位 */
|
|
|
|
|
float: left; /* 左浮动 */
|
|
|
|
|
line-height: 50px; /* 行高 */
|
|
|
|
|
height: 50px; /* 高度 */
|
|
|
|
|
text-align: center; /* 文字居中对齐 */
|
|
|
|
|
width: 33.33%; /* 宽度 */
|
|
|
|
|
border-left: 1px solid #e7e7e7; /* 左边框颜色和宽度 */
|
|
|
|
|
cursor: pointer; /* 鼠标指针变为手型 */
|
|
|
|
|
color: #616161; /* 文字颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*二级*/
|
|
|
|
|
.weixin-preview .weixin-sub-menu {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 60px;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
border-top: 1px solid #d0d0d0;
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
background: #fafafa;
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 0;
|
|
|
|
|
position: absolute; /* 绝对定位 */
|
|
|
|
|
bottom: 60px; /* 底部位置 */
|
|
|
|
|
left: 0; /* 左侧位置 */
|
|
|
|
|
right: 0; /* 右侧位置 */
|
|
|
|
|
border-top: 1px solid #d0d0d0; /* 上边框颜色和宽度 */
|
|
|
|
|
margin-bottom: 0px; /* 底部外边距 */
|
|
|
|
|
background: #fafafa; /* 背景颜色 */
|
|
|
|
|
display: block; /* 块级显示 */
|
|
|
|
|
padding: 0; /* 内边距 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .weixin-sub-menu .menu-sub-item {
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid #d0d0d0;
|
|
|
|
|
border-top-width: 0px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
|
|
|
|
color: #616161;
|
|
|
|
|
line-height: 50px; /* 行高 */
|
|
|
|
|
height: 50px; /* 高度 */
|
|
|
|
|
text-align: center; /* 文字居中对齐 */
|
|
|
|
|
width: 100%; /* 宽度 */
|
|
|
|
|
border: 1px solid #d0d0d0; /* 边框颜色和宽度 */
|
|
|
|
|
border-top-width: 0px; /* 顶部边框宽度 */
|
|
|
|
|
cursor: pointer; /* 鼠标指针变为手型 */
|
|
|
|
|
position: relative; /* 相对定位 */
|
|
|
|
|
color: #616161; /* 文字颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .weixin-sub-menu .menu-sub-item.on-drag-over{
|
|
|
|
|
border-top: 2px solid #44b549;
|
|
|
|
|
border-top: 2px solid #44b549; /* 顶部边框颜色和宽度 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .menu-arrow {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -6px;
|
|
|
|
|
position: absolute; /* 绝对定位 */
|
|
|
|
|
left: 50%; /* 左侧位置 */
|
|
|
|
|
margin-left: -6px; /* 左边距调整 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .arrow_in {
|
|
|
|
|
bottom: -4px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 0px;
|
|
|
|
|
height: 0px;
|
|
|
|
|
border-width: 6px 6px 0px;
|
|
|
|
|
border-style: solid dashed dashed;
|
|
|
|
|
border-color: #fafafa transparent transparent;
|
|
|
|
|
bottom: -4px; /* 底部位置 */
|
|
|
|
|
display: inline-block; /* 行内块级显示 */
|
|
|
|
|
width: 0px; /* 宽度 */
|
|
|
|
|
height: 0px; /* 高度 */
|
|
|
|
|
border-width: 6px 6px 0px; /* 边框宽度 */
|
|
|
|
|
border-style: solid dashed dashed; /* 边框样式 */
|
|
|
|
|
border-color: #fafafa transparent transparent; /* 边框颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .arrow_out {
|
|
|
|
|
bottom: -5px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 0px;
|
|
|
|
|
height: 0px;
|
|
|
|
|
border-width: 6px 6px 0px;
|
|
|
|
|
border-style: solid dashed dashed;
|
|
|
|
|
border-color: #d0d0d0 transparent transparent;
|
|
|
|
|
bottom: -5px; /* 底部位置 */
|
|
|
|
|
display: inline-block; /* 行内块级显示 */
|
|
|
|
|
width: 0px; /* 宽度 */
|
|
|
|
|
height: 0px; /* 高度 */
|
|
|
|
|
border-width: 6px 6px 0px; /* 边框宽度 */
|
|
|
|
|
border-style: solid dashed dashed; /* 边框样式 */
|
|
|
|
|
border-color: #d0d0d0 transparent transparent; /* 边框颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .menu-item .menu-item-title, .weixin-preview .menu-sub-item .menu-item-title {
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 100%; /* 宽度 */
|
|
|
|
|
overflow: hidden; /* 内容溢出时隐藏 */
|
|
|
|
|
white-space: nowrap; /* 不换行 */
|
|
|
|
|
text-overflow: ellipsis; /* 文本溢出时显示省略号 */
|
|
|
|
|
box-sizing: border-box; /* 盒子模型为border-box */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.weixin-preview .menu-item.current, .weixin-preview .menu-sub-item.current {
|
|
|
|
|
border: 1px solid #44b549;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #44b549;
|
|
|
|
|
border: 1px solid #44b549; /* 边框颜色和宽度 */
|
|
|
|
|
background: #fff; /* 背景颜色 */
|
|
|
|
|
color: #44b549; /* 文字颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .weixin-sub-menu.show {
|
|
|
|
|
display: block;
|
|
|
|
|
display: block; /* 块级显示 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .icon_menu_dot {
|
|
|
|
|
/* background: url(../images/index_z354723.png) 0px -36px no-repeat; */
|
|
|
|
|
width: 7px;
|
|
|
|
|
height: 7px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 2px;
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
width: 7px; /* 宽度 */
|
|
|
|
|
height: 7px; /* 高度 */
|
|
|
|
|
vertical-align: middle; /* 垂直居中对齐 */
|
|
|
|
|
display: inline-block; /* 行内块级显示 */
|
|
|
|
|
margin-right: 2px; /* 右边距 */
|
|
|
|
|
margin-top: -2px; /* 顶部外边距调整 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .icon14_menu_add {
|
|
|
|
|
/* background: url(../images/index_z354723.png) 0px 0px no-repeat; */
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
width: 14px; /* 宽度 */
|
|
|
|
|
height: 14px; /* 高度 */
|
|
|
|
|
vertical-align: middle; /* 垂直居中对齐 */
|
|
|
|
|
display: inline-block; /* 行内块级显示 */
|
|
|
|
|
margin-top: -2px; /* 顶部外边距调整 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview li:hover .icon14_menu_add {
|
|
|
|
@ -169,197 +168,197 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .menu-item:hover {
|
|
|
|
|
color: #000;
|
|
|
|
|
color: #000; /* 文字颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview .menu-sub-item:hover {
|
|
|
|
|
background: #eee;
|
|
|
|
|
background: #eee; /* 背景颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-preview li.current:hover {
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #44b549;
|
|
|
|
|
background: #fff; /* 背景颜色 */
|
|
|
|
|
color: #44b549; /* 文字颜色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*菜单内容*/
|
|
|
|
|
.weixin-menu-detail {
|
|
|
|
|
width: 600px;
|
|
|
|
|
padding: 0px 20px 5px;
|
|
|
|
|
background-color: #f4f5f9;
|
|
|
|
|
border: 1px solid #e7e7eb;
|
|
|
|
|
float: left;
|
|
|
|
|
min-height: 540px;
|
|
|
|
|
width: 600px; /* 宽度 */
|
|
|
|
|
padding: 0px 20px 5px; /* 内边距 */
|
|
|
|
|
background-color: #f4f5f9; /* 背景颜色 */
|
|
|
|
|
border: 1px solid #e7e7eb; /* 边框颜色和宽度 */
|
|
|
|
|
float: left; /* 左浮动 */
|
|
|
|
|
min-height: 540px; /* 最小高度 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-name {
|
|
|
|
|
float: left;
|
|
|
|
|
height: 40px;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
float: left; /* 左浮动 */
|
|
|
|
|
height: 40px; /* 高度 */
|
|
|
|
|
line-height: 40px; /* 行高 */
|
|
|
|
|
font-size: 18px; /* 字体大小 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-del {
|
|
|
|
|
float: right;
|
|
|
|
|
height: 40px;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
color: #459ae9;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
float: right; /* 右浮动 */
|
|
|
|
|
height: 40px; /* 高度 */
|
|
|
|
|
line-height: 40px; /* 行高 */
|
|
|
|
|
color: #459ae9; /* 文字颜色 */
|
|
|
|
|
cursor: pointer; /* 鼠标指针变为手型 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-input-group {
|
|
|
|
|
width: 540px;
|
|
|
|
|
margin: 10px 0 30px 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
width: 540px; /* 宽度 */
|
|
|
|
|
margin: 10px 0 30px 0; /* 外边距 */
|
|
|
|
|
overflow: hidden; /* 隐藏溢出的内容 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-label {
|
|
|
|
|
float: left;
|
|
|
|
|
height: 30px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
width: 80px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
float: left; /* 左浮动 */
|
|
|
|
|
height: 30px; /* 高度 */
|
|
|
|
|
line-height: 30px; /* 行高 */
|
|
|
|
|
width: 80px; /* 宽度 */
|
|
|
|
|
text-align: right; /* 文字右对齐 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-input {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 380px
|
|
|
|
|
float: left; /* 左浮动 */
|
|
|
|
|
width: 380px; /* 宽度 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-input-text {
|
|
|
|
|
border: 0px;
|
|
|
|
|
outline: 0px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
width: 300px;
|
|
|
|
|
padding: 5px 0px 5px 0px;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
text-indent: 10px;
|
|
|
|
|
height: 35px;
|
|
|
|
|
border: 0px; /* 边框宽度 */
|
|
|
|
|
outline: 0px; /* focus时的轮廓宽度 */
|
|
|
|
|
background: #fff; /* 背景颜色 */
|
|
|
|
|
width: 300px; /* 宽度 */
|
|
|
|
|
padding: 5px 0px 5px 0px; /* 内边距 */
|
|
|
|
|
margin-left: 10px; /* 左边距 */
|
|
|
|
|
text-indent: 10px; /* text缩进 */
|
|
|
|
|
height: 35px; /* 高度 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-tips {
|
|
|
|
|
color: #8d8d8d;
|
|
|
|
|
padding-top: 4px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
color: #8d8d8d; /* 文字颜色 */
|
|
|
|
|
padding-top: 4px; /* top方向的内边距 */
|
|
|
|
|
margin: 0; /* margin属性值设置为0 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-tips.cursor {
|
|
|
|
|
color: #459ae9;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #459ae9; /* 文字颜色 */
|
|
|
|
|
cursor: pointer; /* mouse指针变为手型图标 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-input .menu-tips {
|
|
|
|
|
margin: 0 0 0 10px;
|
|
|
|
|
margin: 0 0 0 10px; /* margin属性值设置为0,最后一个参数为10px */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-content {
|
|
|
|
|
padding: 16px 20px;
|
|
|
|
|
border: 1px solid #e7e7eb;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 16px 20px; /* Padding属性值设置为16px和20px */
|
|
|
|
|
border: 1px solid #e7e7eb; /* Border属性值设置为1px和#e7e7eb颜色值 */
|
|
|
|
|
background-color: #fff; /* background-color属性值设置为白色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-content .menu-input-group {
|
|
|
|
|
margin: 0px 0 10px 0;
|
|
|
|
|
margin: 0px 0 10px 0; /* margin属性值设置为0px,10px和0px */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-content .menu-label {
|
|
|
|
|
text-align: left;
|
|
|
|
|
width: 100px;
|
|
|
|
|
text-align: left; /* text对齐方式设置为左对齐 */
|
|
|
|
|
width: 100px; /* width属性值设置为100px */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-content .menu-input-text {
|
|
|
|
|
border: 1px solid #e7e7eb;
|
|
|
|
|
border: 1px solid #e7e7eb; /* border属性值设置为1px和#e7e7eb颜色值 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-content .menu-tips {
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
padding-bottom: 10px; /* bottom方向的内边距设置为10px */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-msg-content {
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 1px solid #e7e7eb;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 0; /* Padding属性值设置为0 */
|
|
|
|
|
border: 1px solid #e7e7eb; /* Border属性值设置为1px和#e7e7eb颜色值 */
|
|
|
|
|
background-color: #fff; /* background-color属性值设置为白色 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-msg-content .menu-msg-head {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-bottom: 1px solid #e7e7eb;
|
|
|
|
|
line-height: 38px;
|
|
|
|
|
height: 38px;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
overflow: hidden; /* Overflow属性值设置为hidden */
|
|
|
|
|
border-bottom: 1px solid #e7e7eb; /* Border属性值设置为1px和#e7e7eb颜色值 */
|
|
|
|
|
line-height: 38px; /* Line height属性值设置为38px */
|
|
|
|
|
height: 38px; /* height属性值设置为38px */
|
|
|
|
|
padding: 0 20px; /* Padding属性值设置为0和20px */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-msg-content .menu-msg-panel {
|
|
|
|
|
padding: 30px 50px;
|
|
|
|
|
padding: 30px 50px; /* Padding属性值设置为30px和50px */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-msg-content .menu-msg-select {
|
|
|
|
|
padding: 40px 20px;
|
|
|
|
|
border: 2px dotted #d9dadc;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 40px 20px; /* Padding属性值设置为40px和20px */
|
|
|
|
|
border: 2px dotted #d9dadc; /* Border属性值设置为2px虚线和#d9dadc颜色值 */
|
|
|
|
|
text-align: center; /* text对齐方式设置为居中对齐 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-msg-content .menu-msg-select:hover {
|
|
|
|
|
border-color: #b3b3b3;
|
|
|
|
|
border-color: #b3b3b3; /* border颜色值设置为#b3b3b3 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-msg-content strong {
|
|
|
|
|
display: block;
|
|
|
|
|
padding-top: 3px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
display: block; /* Display属性值设置为block */
|
|
|
|
|
padding-top: 3px; /* Top方向的内边距设置为3px */
|
|
|
|
|
font-weight: 400; /* font weight属性值设置为400 */
|
|
|
|
|
font-style: normal; /* font style属性值设置为normal */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-menu-detail .menu-msg-content .menu-msg-title {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 310px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
float: left; /* float属性值设置为left */
|
|
|
|
|
width: 310px; /* width属性值设置为310px */
|
|
|
|
|
height: 30px; /* height属性值设置为30px */
|
|
|
|
|
line-height: 30px; /* line height属性值设置为30px */
|
|
|
|
|
overflow: hidden; /* Overflow属性值设置为hidden */
|
|
|
|
|
text-overflow: ellipsis; /* TextOverflow属性值设置为ellipsis */
|
|
|
|
|
white-space: nowrap; /* WhiteSpace属性值设置为nowrap */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon36_common {
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 36px; /* width属性值设置为36px */
|
|
|
|
|
height: 36px; /* height属性值设置为36px */
|
|
|
|
|
vertical-align: middle; /* vertical align属性值设置为middle */
|
|
|
|
|
display: inline-block; /* Display属性值设置为inline block */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon_msg_sender {
|
|
|
|
|
margin-right: 3px;
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 3px; /* Right方向的外边距设置为3px */
|
|
|
|
|
margin-top: -2px; /* Top方向的外边距设置为负2px */
|
|
|
|
|
width: 20px; /* width属性值设置为20px */
|
|
|
|
|
height: 20px; /* height属性值设置为20px */
|
|
|
|
|
vertical-align: middle; /* vertical align属性值设置为middle */
|
|
|
|
|
display: inline-block; /* Display属性值设置为inline block */
|
|
|
|
|
/* background: url(../images/msg_tab_z25df2d.png) 0 -270px no-repeat; */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-btn-group {
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 30px 0px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-align: center; /* text对齐方式设置为居中对齐 */
|
|
|
|
|
width: 100%; /* width属性值设置为100% */
|
|
|
|
|
margin: 30px 0px; /* margin属性值设置为30px和0px */
|
|
|
|
|
overflow: hidden; /* Overflow属性值设置为hidden */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.weixin-btn-group .btn {
|
|
|
|
|
width: 100px;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
width: 100px; /* width属性值设置为100px */
|
|
|
|
|
border-radius: 0px; /* border radius属性值设置为0px */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#material-list {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
height: 558px;
|
|
|
|
|
padding: 20px; /* Padding属性值设置为20px */
|
|
|
|
|
overflow-y: scroll; /* Overflow y属性值设置为scroll,使内容可滚动 */
|
|
|
|
|
height: 558px; /* height属性值设置为558px */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#news-list {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
height: 558px;
|
|
|
|
|
padding: 20px; /* Padding属性值设置为20px */
|
|
|
|
|
overflow-y: scroll; /* Overflow y属性值设置为scroll,使内容可滚动 */
|
|
|
|
|
height: 558px; /* height属性值设置为558px */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#material-list table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
width: 100%; /* width属性值设置为100% */
|
|
|
|
|
}
|
|
|
|
|