|
|
(未显示同一用户的13个中间版本) |
第22行: |
第22行: |
| position: relative; | | position: relative; |
| padding: 15px 20px 15px 35px; | | padding: 15px 20px 15px 35px; |
| margin-bottom: 25px; | | margin-bottom: 20px; |
| border-radius: 4px; | | border-radius: 4px; |
| background: rgba(255,255,255,0.95); | | background: rgba(255,255,255,0.95); |
第140行: |
第140行: |
| display: grid; | | display: grid; |
| grid-template-columns: repeat(2, 1fr); | | grid-template-columns: repeat(2, 1fr); |
| gap: 1.5rem; | | gap: 0.5rem; |
| margin: 2rem 0; | | margin: 1rem 0; |
| } | | } |
|
| |
|
第202行: |
第202行: |
| } | | } |
|
| |
|
| /* 市集MediaWiki:Common.css */
| |
| .market-container {
| |
| background: #FFEBD2;
| |
| padding: 20px;
| |
| border-radius: 8px;
| |
| }
| |
|
| |
| .market-table {
| |
| width: 100%;
| |
| border-collapse: collapse;
| |
| background: white;
| |
| box-shadow: 0 2px 4px rgba(0,0,0,0.1);
| |
| }
| |
|
| |
| .table-header th {
| |
| background: #FFA726;
| |
| color: white;
| |
| padding: 12px;
| |
| text-align: left;
| |
| }
| |
|
| |
| .product-item td {
| |
| padding: 15px;
| |
| border-bottom: 1px solid #EEE;
| |
| }
| |
|
| |
| .product-name {
| |
| font-weight: bold;
| |
| color: #333;
| |
| }
| |
|
| |
| .trade-method {
| |
| color: #666;
| |
| font-size: 0.9em;
| |
| }
| |
|
| |
| .time {
| |
| color: #888;
| |
| font-size: 0.85em;
| |
| }
| |
|
| |
| .rate .price {
| |
| color: #E65100;
| |
| font-weight: bold;
| |
| }
| |
|
| |
| .ratio {
| |
| color: #666;
| |
| font-size: 0.9em;
| |
| }
| |
|
| |
| .current-stock {
| |
| color: #2E7D32;
| |
| font-weight: bold;
| |
| }
| |
|
| |
| .limits {
| |
| color: #666;
| |
| font-size: 0.85em;
| |
| margin-top: 5px;
| |
| }
| |
|
| |
|
| .sell-amount input { | | /* 星级 */ |
| width: 80px;
| | .mw-star-rating { |
| padding: 6px;
| | color: #ffc53d; |
| border: 1px solid #CCC;
| | letter-spacing: 2px; |
| border-radius: 4px;
| | font-size: 1.2em; |
| }
| | unicode-bidi: bidi-override; /* 防止RTL语言导致符号反转 */ |
| | |
| .total-price {
| |
| color: #E65100; | |
| font-weight: bold;
| |
| margin-top: 5px; | |
| }
| |
| | |
| .service-item {
| |
| display: inline-block;
| |
| background: #FFF3E0;
| |
| padding: 4px 8px;
| |
| border-radius: 12px;
| |
| margin: 2px;
| |
| font-size: 0.85em; | |
| }
| |
| | |
| .service-item.cash { background: #E8F5E9; }
| |
| .service-item.reject { background: #FFEBEE; }
| |
| | |
| .sell-button { | |
| display: inline-block;
| |
| background: linear-gradient(135deg, #FFB74D, #FF9800); | |
| color: white!important;
| |
| padding: 8px 20px;
| |
| border-radius: 20px;
| |
| text-decoration: none;
| |
| font-weight: bold;
| |
| transition: 0.3s;
| |
| }
| |
| | |
| .sell-button:hover {
| |
| opacity: 0.9;
| |
| transform: translateY(-1px);
| |
| }
| |
| | |
| .input-group {
| |
| display: flex;
| |
| align-items: center;
| |
| gap: 5px;
| |
| } | | } |