popup.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*order css*/
  2. .orderLeft{
  3. display:inline;
  4. float:left;
  5. width: 220px;
  6. margin-left:10%;
  7. }
  8. .center{
  9. display:inline;
  10. float:left;
  11. margin-left:10%;
  12. }
  13. .orderRight{
  14. float:right;
  15. margin-right:10%;
  16. }
  17. .orderLeft>div{
  18. margin-bottom:10px;
  19. }
  20. .orderRight>div{
  21. margin-bottom:10px;
  22. }
  23. .center>div{
  24. margin-bottom:10px;
  25. }
  26. /*postion deal css*/
  27. .left{
  28. display:inline;
  29. float:left;
  30. width: 220px;
  31. margin-left:10%;
  32. }
  33. .right{
  34. float:right;
  35. margin-right:20%;
  36. }
  37. .left>div{
  38. margin-bottom:10px;
  39. }
  40. .right>div{
  41. margin-bottom:10px;
  42. }
  43. /*公共部分css*/
  44. .title{
  45. padding-left:400px;
  46. margin-bottom:10px;
  47. font-size: 20px;
  48. color: #0c0c0c;
  49. }
  50. .number{
  51. margin-bottom:30px;
  52. }
  53. .number>div{
  54. margin-left:100px;
  55. display:inline;
  56. margin-right:120px;
  57. }
  58. /*被弹出的div*/
  59. #eject{
  60. border: 1px #B3A9A9 solid;
  61. border-radius: 10px;
  62. width: 1000px;
  63. height: 600px;
  64. background-color: white;
  65. /*让其浮在最上面*/
  66. position: absolute;
  67. display: none;
  68. /*设置弹出的div窗口位置*/
  69. /*left: 40%;*/
  70. /*top: 30%;*/
  71. }