Confirm.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. body
  2. {
  3. padding:0px;
  4. margin:0px;
  5. }
  6. .Confirm_div_out{
  7. border: 1px solid #e7e7e7;
  8. border-radius: 10px;
  9. margin-top: 10px;
  10. position: absolute;
  11. background-color:White;
  12. left: calc(50% - 226px);
  13. top:0px;
  14. z-index:99;
  15. }
  16. .Confirm_div{
  17. border: 1px solid #D6D6D6;
  18. border-radius: 10px;
  19. float: left;
  20. }
  21. .Confirm_div_top{
  22. width: 100%;
  23. height: 15%;
  24. float: left;
  25. border-bottom: 1px solid #D6D6D6;
  26. }
  27. .Confirm_top_title{
  28. color: #515151;
  29. margin-left: 15px;
  30. float: left;
  31. line-height: 35px;
  32. font-size: 18px;
  33. }
  34. .Confirm_top_close{
  35. width: 35px;
  36. height: 30px;
  37. margin-right: 8px;
  38. float: right;
  39. background-image: url(http://d.1473.cn/controls/pc/Confirm/close.png);
  40. background-size: 100%;
  41. }
  42. .Confirm_center{
  43. width: 100%;
  44. height: 61%;
  45. float: left;
  46. text-align: left;
  47. }
  48. .Confirm_center_text{
  49. width: 320px;
  50. color: #686868;
  51. margin: auto;
  52. margin-top: 50px;
  53. }
  54. .Confirm_under{
  55. width: 100%;
  56. height: 20%;
  57. float: left;
  58. }
  59. .Confirm_under_button_yes{
  60. width: 20%;
  61. height: 80%;
  62. color: white;
  63. border: 1px solid #00325d;
  64. background-color: #003f75;
  65. border-radius: 5px;
  66. float: right;
  67. margin: 5px;
  68. }
  69. .Confirm_under_button_no{
  70. width: 20%;
  71. height: 80%;
  72. color: #333;
  73. border: 1px solid #c9c9c9;
  74. background-color: #e5e5e5;
  75. border-radius: 5px;
  76. float: right;
  77. margin: 5px;
  78. }