| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*order css*/
- .orderLeft{
- display:inline;
- float:left;
- width: 220px;
- margin-left:10%;
- }
- .center{
- display:inline;
- float:left;
- margin-left:10%;
- }
- .orderRight{
- float:right;
- margin-right:10%;
- }
- .orderLeft>div{
- margin-bottom:10px;
- }
- .orderRight>div{
- margin-bottom:10px;
- }
- .center>div{
- margin-bottom:10px;
- }
- /*postion deal css*/
- .left{
- display:inline;
- float:left;
- width: 220px;
- margin-left:10%;
- }
- .right{
- float:right;
- margin-right:20%;
- }
- .left>div{
- margin-bottom:10px;
- }
- .right>div{
- margin-bottom:10px;
- }
- /*公共部分css*/
- .title{
- padding-left:400px;
- margin-bottom:10px;
- font-size: 20px;
- color: #0c0c0c;
- }
- .number{
- margin-bottom:30px;
- }
- .number>div{
- margin-left:100px;
- display:inline;
- margin-right:120px;
- }
- /*被弹出的div*/
- #eject{
- border: 1px #B3A9A9 solid;
- border-radius: 10px;
- width: 1000px;
- height: 600px;
- background-color: white;
- /*让其浮在最上面*/
- position: absolute;
- display: none;
- /*设置弹出的div窗口位置*/
- /*left: 40%;*/
- /*top: 30%;*/
- }
|