1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @charset "utf-8";
- /*弹出层样式 by zmy 2018 02 05*/
- .black_overlay{
- display: none;
- position: absolute;
- top: 0%;
- left: 0%;
- width: 100%;
- height: 100%;
- background-color: black;
- z-index:1001;
- -moz-opacity: 0.8;
- opacity:.30;
- filter: alpha(opacity=80);
- }
- .white_content {
- display: none;
- left: 50%;
- top: 50%;
- margin-left: -250px;
- margin-top: -150px;
- position: fixed;
- _top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop + (document.documentElement.clientHeight-this.offsetHeight)/2 :/*IE6*/ document.body.scrollTop + (document.body.clientHeight - this.clientHeight)/2);
- border: 2px solid #ebebeb;
- background-color: white;
- border-radius: 3px;
- z-index: 1002;
- height: 300px;
- width: 500px;
- overflow: hidden;
- padding: 20px;
- }
- .white_content_small {
- display: none;
- position: absolute;
- top: 20%;
- left: 30%;
- width: 40%;
- height: 60%;
- border: 16px solid lightblue;
- background-color: white;
- z-index:1002;
- overflow: hidden;
- }
- .divclose{margin-right:10px;float:right;cursor: pointer;font-size: 23px;margin-top: -2px;}
- .divtitle{
- font-size: 22px;
- font-weight: normal;
- font-stretch: normal;
- color: #333333;
- font-family: "Microsoft Yahei";}
- .MyDiv-header{height: 130px;
- border-bottom: 1px solid #cccccc;
- text-align: center;
- line-height: 30px;
- /* padding-top: 40px;*/
- }
- .MyDiv-header span{height: 35px;}
- .MyDiv-info{
- font-size: 14px;
- font-family: "Microsoft Yahei";
- padding: 44px 40px;
- overflow: hidden;
- }
- .MyDiv-info p{margin-bottom: 21px;}
- .border_all{padding:0px;}
- .dialog-btn{
- width: 150px;
- height: 60px;
- border-radius: 4px;
- outline: none;
- border: none;
- color: white;
- font-size: 20px;
- font-weight: normal;
- font-stretch: normal;
- font-family: "Microsoft Yahei";
- }
- .dialog-btn-left{
- background-color: #0482d0;
- float:left;
- }
- .dialog-btn-right{
- background-color: #ff8b00;
- float:right;
- }
- .MyDiv-info-one{
- text-align: center;
- }
- .dialog-btn-one{
- background-color: #0482d0;
- }
|