123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- .header {
- height: 100px;
- border-bottom: 2px solid #e77e11;
- }
- .header .w {
- height: 100%;
- display: flex;
- justify-content: space-between;
- }
- .header .w .header-left {
- display: flex;
- align-items: center;
- height: 100%;
- }
- .header .w .header-left img {
- width: 200px;
- height: 62px;
- }
- .header .w .header-left h1 {
- font-size: 30px;
- margin-left: 30px;
- }
- .header .w .header-left span {
- font-size: 30px;
- margin-left: 30px;
- }
- .header .w .header-right {
- height: 100%;
- display: flex;
- align-items: center;
- }
- .header .w .header-right h3 {
- font-size: 20px;
- margin-right: 10px;
- }
- .header .w .header-right h3 span {
- color: red;
- margin: 0 5px;
- }
- .header .w .header-right div {
- font-size: 20px;
- color: #e77e11;
- cursor: pointer;
- }
- .header .w .header-right div a {
- font-size: 20px;
- color: #e77e11;
- }
- .header .w .header-right div:hover {
- color: skyblue;
- }
- .header .w .header-right .destory {
- margin: 0 10px;
- }
- .list {
- background-color: #f5f5f5;
- padding: 20px 0;
- }
- .list .w table {
- background-color: #fff;
- width: 100%;
- }
- .list .w table thead {
- border-bottom: 1px solid #ccc;
- }
- .list .w table thead th {
- height: 70px;
- text-align: center;
- }
- .list .w table thead th input {
- margin: 0 10px;
- }
- .list .w table tbody tr {
- border-bottom: 1px solid #eee;
- height: 100%;
- }
- .list .w table tbody tr td {
- height: 100%;
- padding: 10px 0;
- text-align: center;
- }
- .list .w table tbody tr td img {
- width: 80px;
- height: 80px;
- }
- .list .w table tbody tr td:nth-child(2) {
- padding: 0 20px;
- width: 300px;
- max-width: 300px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .list .w table tbody tr td:nth-child(3) {
- height: 100%;
- }
- .list .w table tbody tr td:nth-child(3) .count {
- display: inline-block;
- width: 25px;
- height: 25px;
- border: 1px solid #ccc;
- line-height: 22px;
- text-align: center;
- cursor: pointer;
- }
- .list .w table tbody tr td:nth-child(3) .count-num {
- margin: 0 10px;
- display: inline-block;
- width: 40px;
- height: 25px;
- text-align: center;
- }
- .list .w .footer {
- height: 50px;
- background-color: #fff;
- margin-top: 20px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .list .w .footer-left {
- margin-left: 20px;
- display: flex;
- align-items: center;
- color: #e77e11;
- font-size: 20px;
- cursor: pointer;
- }
- .list .w .footer-left .clear-cart {
- margin-right: 20px;
- }
- .list .w .footer-left a {
- color: #e77e11;
- }
- .list .w .footer-left a:hover {
- color: skyblue;
- }
- /*.list .w .footer-left div:hover {*/
- /* color: skyblue;*/
- /*}*/
- .list .w .footer-right {
- height: 100%;
- display: flex;
- align-items: center;
- }
- .list .w .footer-right .total-price {
- margin-left: 20px;
- }
- .list .w .footer-right span {
- color: red;
- font-size: 24px;
- margin: 0 10px;
- }
- .list .w .footer-right .pay {
- height: 50px;
- line-height: 50px;
- background-color: #e77e11;
- color: #fff;
- padding: 0 20px;
- margin-left: 20px;
- cursor: pointer;
- }
- .list .w .footer-right .pay:hover {
- background-color: red;
- }
- .bottom {
- opacity: 0.6;
- background-color: #323232;
- margin-top: 10px;
- color: #fff;
- text-align: center;
- }
- .bottom .top {
- height: 100px;
- border-bottom: 1px solid #474747;
- }
- .bottom .top ul {
- display: flex;
- justify-content: space-around;
- height: 100%;
- }
- .bottom .top ul li {
- height: 100%;
- display: flex;
- align-items: center;
- }
- .bottom .top ul li a {
- color: #fff;
- display: flex;
- align-items: center;
- }
- .bottom .top ul li a span {
- margin-left: 10px;
- }
- .bottom .content {
- height: 100px;
- display: flex;
- padding-top: 25px;
- justify-content: center;
- cursor: pointer;
- }
- .bottom .content dl {
- width: 180px;
- }
- .bottom .content dl dt {
- font-size: 20px;
- }
- .bottom .content dl dd {
- margin-top: 20px;
- font-size: 14px;
- color: #a8a8a8;
- }
- .bottom .down {
- height: 40px;
- background-color: #2a2a2a;
- line-height: 40px;
- }
|