1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .container {
- position: relative;
- z-index: 2000;
- .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: 65px;
- bottom: 65px;
- }
- .close {
- padding: 15px 15px 15px 20px;
- border-bottom: 1px solid #EAEDF1;
- img{
- 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;
- }
- }
- }
|