1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- @import "~@less/variables.less";
- .container {
- .maskZIndex;
- position: relative;
- .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%;
- margin-left: -410px;
- top: 7%;
- bottom: 7%;
- height: 86%;
- overflow: hidden;
- padding-top: 45px;
- }
- .close {
- padding: 0 15px;
- height: 45px;
- line-height: 45px;
- border-bottom: 1px solid #EAEDF1;
- position: absolute;
- width: 100%;
- top: 0;
- }
- img.closeImg{
- cursor: pointer;
- position: absolute;
- right: 10px;
- top: 10px;
- z-index: 100;
- }
- }
|