12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .container {
- position: relative;
- z-index: 2000;
- .content{
- overflow: auto;
- position: fixed;
- bottom: 70px;
- top: 70px;
- // width: 820px;
- }
- .footer{
- // width: 820px;
- position: fixed;
- bottom:30px;
- text-align: right;
- }
- // @media print {
- // .close{
- // display: none;
- // }
- // .flg {
- // display: block !important;
- // }
- // }
- .flg {
- display: none;
- }
- .shade {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- background-color: #000;
- opacity: 0.6;
- filter:alpha(opacity=60);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
- }
- .modal {
- // width: 820px;
- background: #fff;
- position: fixed;
- left: 50%;
- //top: 50%;
- // margin-left: -410px;
- top: 65px;
- bottom: 65px;
- }
- .close {
- padding: 15px 15px 15px 20px;
- border-bottom: 1px solid #EAEDF1;
- background: #e5eefe;
- img{
- vertical-align: text-top;
- }
- .closeIcon{
- float:right;
- cursor: pointer;
- margin-top: -5px;
- }
- }
- .button {
- position: fixed;
- bottom: 75px;
- left: 50%;
- margin-left: 280px;
- span{
- display: inline-block;
- width: 80px;
- height: 34px;
- background: #3B9ED0;
- font-size: 14px;
- color: #FFFFFF;
- font-size: 14px;
- text-align: center;
- line-height: 34px;
- border-radius: 4px;
- cursor: pointer;
- }
- }
- }
|