|
|
(未显示同一用户的11个中间版本) |
第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行: |
| } | | } |
|
| |
|
| /* 神圣石交易市场样式 */
| |
| .sacred-stone-market {
| |
| background-color: white;
| |
| padding: 15px;
| |
| font-family: Arial, sans-serif;
| |
| }
| |
|
| |
| .sacred-stone-item {
| |
| border: 1px solid #ddd;
| |
| border-radius: 5px;
| |
| padding: 15px;
| |
| margin-bottom: 20px;
| |
| background-color: #f9f9f9;
| |
| }
| |
|
| |
| .sacred-stone-item h4 {
| |
| color: #333;
| |
| border-bottom: 1px solid #eee;
| |
| padding-bottom: 5px;
| |
| }
| |
|
| |
| .sacred-stone-item ul {
| |
| list-style-type: none;
| |
| padding-left: 0;
| |
| }
| |
|
| |
| .sacred-stone-item li {
| |
| margin-bottom: 8px;
| |
| color: #555;
| |
| }
| |
|
| |
| .buy-button {
| |
| display: inline-block;
| |
| padding: 8px 15px;
| |
| background-color: #fff;
| |
| color: #f80;
| |
| border: 2px solid #f80;
| |
| border-radius: 4px;
| |
| font-weight: bold;
| |
| margin-top: 10px;
| |
| cursor: pointer;
| |
| }
| |
|
| |
| .buy-button:hover {
| |
| background-color: #f80;
| |
| color: white;
| |
| }
| |
|
| |
|
| /* 星级评分样式 */ | | /* 星级 */ |
| .mw-star-rating { | | .mw-star-rating { |
| unicode-bidi: bidi-override; | | color: #ffc53d; |
| color: #ccc; | | letter-spacing: 2px; |
| font-size: 16px; | | font-size: 1.2em; |
| position: relative; | | unicode-bidi: bidi-override; /* 防止RTL语言导致符号反转 */ |
| margin: 0;
| |
| padding: 0;
| |
| }
| |
| | |
| .mw-star-rating .mw-star-rating-filled {
| |
| color: #f80;
| |
| position: absolute;
| |
| display: block;
| |
| top: 0;
| |
| left: 0;
| |
| overflow: hidden;
| |
| } | | } |