1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .maskCover{
- position: fixed;
- left: 0;
- top: 0;
- z-index: 100;
- width: 100%;
- height: 100%;
- background-color: #000;
- opacity:0.6;
- filter:alpha(opacity=60);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
- }
- .contentBox{
- width: 600px;
- height: 500px;
- position: fixed;
- bottom: 0;
- right: 50%;
- margin-right: -600px;
- background: #fff;
- z-index: 101;
- .content{
- padding:0 15px;
- height: 440px;
- overflow-y: auto;
- }
- h2{
- text-align: center;
- font-size: 18px;
- margin:0 auto;
- color: #fff;
- background: #4F9FF3;
- line-height: 30px;
- }
- .close{
- width: 15px;
- float: right;
- margin-top: -22px;
- margin-right: 10px;
- cursor: pointer;
- }
- .title{
- /*text-indent: 20px;*/
- margin: 15px auto 8px;
- }
- th{
- border:1px solid #CCD2D9;
- background: #d8d8d9;
- height: 25px;
- line-height: 25px;
- white-space: nowrap;
- }
- td{
- border:1px solid #CCD2D9;
- text-align: center;
- line-height: 25px;
- }
- }
|