123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .modal {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- margin: auto;
- border-radius: 5px;
- background: #fff;
- overflow: hidden;
- z-index: 9999;
- }
- .modal-title {
- width: 100%;
- height: 50px;
- line-height: 50px;
- padding: 0 10px;
- background: #e5e5e5
- }
- .modal-close {
- position: absolute;
- right: 0px;
- width: 40px;
- height: 40px;
- }
- .modal-content {
- width: 100%;
- padding: 0 10px;
- }
- .modal-operator {
- width: 100%;
- height: 70px;
- }
- .modal-btn-box {
- width: 50%;
- float: left;
- text-align: center;
- }
- .modal-operator-close, .modal-operator-confirm {
- width: 100px;
- border: none;
- outline: none;
- margin: auto;
- height: 34px;
- line-height: 24px;
- opacity: 1;
- color: #fff;
- cursor: pointer;
- border-radius: 4px;
- border: 1px solid #78bddd;
- }
- .modal-operator-confirm {
- background: #78bddd;
- }
- .modal-operator-close{
- background: #fff;
- color: #78bddd;
- }
- .modal-operator-close:active, .modal-operator-confirm:active {
- opacity: .6;
- filter:alpha(opacity=60);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
- transition: opacity .3s;
- }
- .mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #000;
- opacity: .6;
- filter:alpha(opacity=60);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
- z-index: 9998;
- }
|