12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- body
- {
- padding:0px;
- margin:0px;
- }
- .Confirm_div_out{
- border: 1px solid #e7e7e7;
- border-radius: 10px;
- margin-top: 10px;
- position: absolute;
- background-color:White;
- left: calc(50% - 226px);
- top:0px;
- z-index:99;
- }
- .Confirm_div{
- border: 1px solid #D6D6D6;
- border-radius: 10px;
- float: left;
- }
- .Confirm_div_top{
- width: 100%;
- height: 15%;
- float: left;
- border-bottom: 1px solid #D6D6D6;
- }
- .Confirm_top_title{
- color: #515151;
- margin-left: 15px;
- float: left;
- line-height: 35px;
- font-size: 18px;
- }
- .Confirm_top_close{
- width: 35px;
- height: 30px;
- margin-right: 8px;
- float: right;
- background-image: url(http://d.1473.cn/controls/pc/Confirm/close.png);
- background-size: 100%;
- }
- .Confirm_center{
- width: 100%;
- height: 61%;
- float: left;
- text-align: left;
- }
- .Confirm_center_text{
- width: 320px;
- color: #686868;
- margin: auto;
- margin-top: 50px;
- }
- .Confirm_under{
- width: 100%;
- height: 20%;
- float: left;
- }
- .Confirm_under_button_yes{
- width: 20%;
- height: 80%;
- color: white;
- border: 1px solid #00325d;
- background-color: #003f75;
- border-radius: 5px;
- float: right;
- margin: 5px;
- }
- .Confirm_under_button_no{
- width: 20%;
- height: 80%;
- color: #333;
- border: 1px solid #c9c9c9;
- background-color: #e5e5e5;
- border-radius: 5px;
- float: right;
- margin: 5px;
- }
|