/*解决纯英文或数字内容在前台展示时不换行的问题的通用样式*/ .textWrap { word-break: break-all; word-wrap: break-word; display: block; display: -webkit-box; } /*一行内容过长时截断展示的通用样式(要求标签必需要有固定宽度,且只需展示一行)*/ .textClip { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; /* IE/Safari */ -ms-text-overflow: ellipsis; -o-text-overflow: ellipsis; /* Opera */ -moz-binding: url("/Resource/Template/1/css/ellipsis.xml"); /*FireFox*/ } .noDataSpan,.noMoreDataSpan { display:inline-block; padding:10px 30px; margin:0 auto; color:gray; font-size:12pt; } .noMoreDataSpan { display:none; } /* 弹出框 */ .pop-bg { display: none; position: fixed; left: 0; top: 0; _position: absolute; _bottom: auto; _top: expression(eval(document.documentElement.scrollTop)); width: 100%; height: 100%; background: #000; opacity: 0.45; filter: alpha(opacity=45); z-index: 99; } .pop { display: none; position: fixed; left: 50%; top: 50%; _position: absolute; _bottom: auto; _top: expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight*0.5)); z-index: 100; /*width: 900px;*/ max-width: 1200px; background: #fff; text-align:center; } .pop-title { padding-left: 10px; background: #218ef3; font: bold 14px/30px Arial,sans-serif,SimSun; text-align: left; color: #fff; cursor:move; } .pop-title span { float: right; display: inline; padding: 10px; width: 9px; height: 9px; background: url("/Resource/Template/1/images/ico11.gif") center center no-repeat; font: 0/0 Arial,sans-serif; cursor: pointer; } .pop-content { padding: 20px; min-width:180px; } .pop-foot { margin-bottom: 20px; } .pop p { margin-bottom: 20px; font-size: 14px; } .pop p strong { font-weight: normal; font-size: 20px; color: #f98520; } .pop .btn { margin: 0 5px; width: 75px; height: 28px; border: 0; background:url("/Resource/Template/1/images/sprite2.png") no-repeat -400px 0; font-size: 12px; color: #fff; cursor: pointer; } .create .contents { padding: 10px; border: 1px solid #dbdbdd; background: #fff; }