50 lines
813 B
CSS
50 lines
813 B
CSS
/* 订单支付页面样式 */
|
|
.pay-container {
|
|
max-width: 600px;
|
|
margin: 50px auto;
|
|
}
|
|
|
|
.order-info {
|
|
background-color: #f8f9fa;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.payment-method {
|
|
border: 2px solid #dee2e6;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin-bottom: 15px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.payment-method:hover {
|
|
border-color: #007bff;
|
|
background-color: #f8f9ff;
|
|
}
|
|
|
|
.payment-method.selected {
|
|
border-color: #007bff;
|
|
background-color: #f8f9ff;
|
|
}
|
|
|
|
.qr-code {
|
|
text-align: center;
|
|
padding: 30px;
|
|
background-color: #f8f9fa;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.countdown {
|
|
font-size: 1.2em;
|
|
color: #e74c3c;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.payment-status {
|
|
text-align: center;
|
|
padding: 20px;
|
|
}
|