1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .tableBox{
- // height: 690px;
- overflow-y: auto;
- padding: 30px;
- h1{
- font-size: 16px;
- font-weight: bold;
- margin: 10px 0 30px;
- text-align: center;
- }
- }
- strong{
- font-weight: bold;
- }
- .textlh{
- p{
- line-height: 22px;
- }
- }
- .textContent{
- margin: 40px 0 30px;
- .group{
- border-bottom: 4px solid #EBEBEB;
- padding-bottom: 10px;
- margin-top: 25px;
- .item{
- display: inline-block;
- margin-right: 24px;
- }
- .recomand{
- color:#3B9ED0;
- }
- .block{
- margin-top: 20px;
- padding-top: 5px;
- }
- .redBorder{
- border: 1px solid #f00;
- }
- // .miniName{
- // margin-top: 25px;
- // }
- }
- .groupName{
- font-size: 14px;
- font-weight: bold;
- color:#000;
- margin: 25px 0;
- }
- .subTotal{
- height: 49px;
- line-height: 49px;
- border-top: 1px solid #EBEBEB;
- text-align: right;
- margin-top: 10px;
- }
- .total{
- height: 72px;
- line-height: 72px;
- border-bottom: 10px solid #EBEBEB;
- text-align: right;
- .totalBtn{
- display: inline-block;
- width: 64px;
- height: 32px;
- line-height: 32px;
- color:#3B9ED0;
- border: 1px solid #3B9ED0;
- border-radius: 4px;
- margin-left: 40px;
- text-align: center;
- cursor: pointer;
- }
- }
- }
- .printShow {
- display: none;
- }
- @media print {
- .printShow {
- display: block;
- }
- }
|