.example-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 左側預覽區域 */
.preview-container {
    width: 375px;
    height: 812px;
    background: #000;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.preview-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: #fff;
    border-radius: 100px;
    margin-bottom: 8px;
}

/* 頂部導航欄 */
.nav-bar {
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 返回圖標 */
.back-button {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.back-button::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    left: 10px;
    top: 6px;
}

.example-container .page-title {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    border-bottom: none !important;
}

/* 狀態欄 */
.status-bar {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    color: #fff;
}

.time {
    width: 67px;
    height: 22px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0px 0px 0px 21px;
    padding: 0 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.2px;
}

.time.status-none {
    background: transparent;
}

.time.status-green {
    color: rgb(255, 255, 255);
    background: rgb(48, 209, 88);
}

.time.status-blue {
    color: rgb(255, 255, 255);
    background: rgb(10, 132, 255);
}

.time.status-yellow {
    color: rgb(255, 255, 255);
    background: rgb(255, 159, 10);
}

.right-items {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 5px;
}

/* 主要內容區域 */
.content {
    padding: 0;
    color: #fff;
}

.example-container .amount-section {
    text-align: center !important;
    padding: 20px 15px 15px !important;
}

.example-container .amount-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 18px !important;
    margin: 0 !important;
    text-align: center !important;
    font-weight: 400 !important;
}

.example-container .amount-value {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 32px !important;
    margin: 0 !important;
    padding: 6px 0 !important;
    text-align: center !important;
    letter-spacing: -0.5px !important;
}

.example-container .status-tag {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 20px !important;
    margin: 0 !important;
    margin-top: 8px !important;
    font-weight: 400 !important;
}

.example-container .status-tag .check-icon {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    vertical-align: -2px !important;
}

.example-container .notice-box {
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin: 30px 12px 0px !important;
    width: 351px !important;
    height: 71px !important;
    display: flex !important;
    align-items: flex-start !important;
}

.example-container .notice-box .icon {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
    margin-right: 12px !important;
    margin-top: 2px !important;
}

.notice-box .text-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.example-container .notice-box .title {
    color: #fff !important;
    font-size: 14px !important;
    line-height: 18px !important;
    margin: 0 !important;
    text-align: left !important;
    font-weight: bold !important;
}

.example-container .notice-box .subtitle {
    color: #6469b7 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    text-align: left !important;
    font-weight: bold !important;
}

.example-container .info-list {
    margin: 20px 16px !important;
}

.example-container .info-item {
    display: flex !important;
    justify-content: space-between !important;
    padding: 8px 0 !important;
    line-height: 24px !important;
    min-height: 24px !important;
}

.example-container .info-item .label {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    line-height: 24px !important;
    position: relative !important;
    font-weight: 400 !important;
}

/* 专门为区块链交易标签添加样式 */
.info-item.blockchain-tx .label {
    margin-top: -14px;
    position: relative;
}

.example-container .info-item .value {
    color: #fff !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    text-align: right !important;
    max-width: 65% !important;
    display: flex !important;
    justify-content: flex-end !important;
    margin-right: 12px !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 400 !important;
    line-height: 24px !important;
}

/* 提币地址的右侧文字单独设置 */
.info-item .address-container {
    margin-right: 12px;
}

.address-value {
    display: block;
    word-break: break-all;
    text-align: right;
    line-height: 16px;
    font-family: monospace;
}

.address-line1-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.address-line1 {
    display: inline-block;
    letter-spacing: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 14px;
    text-align: right;
    white-space: nowrap;
    width: auto;
    font-weight: 400;
    margin-right: 0;
}

.address-line2 {
    display: block;
    margin-top: 2px;
    text-align: right;
    letter-spacing: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 14px;
    text-align: right;
    white-space: nowrap;
    width: auto;
    font-weight: 400;
    margin-top: 2px;
}

.copy-button {
    width: 14px;
    height: 14px;
    opacity: 0.6;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAMmSURBVHic7ZvdddpAEEbvcFwAJaiDOBUEKkhSgaEC04HtCuxUYFKBcQXgCkwqgA6iDr48aCE5mF0hrcSCwj2HF2s9O/NJsz/akdEwkjLgFrh2v37TfVRgDSyAn2a2aLUnSZmkZ50uK0mDtoK/dh2cA/dtBP87dVQV2YpgkcH3gXcgi5MxCWMzm/YijUw4z+AB7iDiCXB3f0V4lM+BZd0+IulTzEIhxrWtSxocmmepcD6uAj6+xBifBAw/NhhHFCqmZx/vMWPAp8C1twi7jWJma/xpeB0jQB64lirvfXh9jRHg1fP3hVO9+0i638mplYq9wEkhae4bBJow3pc0kvStAV9bISTA1QH/nFEsdrKSpn1Jo2hvP7IE1mYWGnNqs1cAF/QIuOE0Vnq5pCXwcIxt7USnvbObq+I4o0AK9HYa3gOPnMZd9zEA5pLKlrkHsRXABX/XhNEjkAEvVZ+EffSgWDNzPsFvyIB5rJHNE/AcaygRmSJnnit397NAmxyYAb8IL3/boA98pch7H7fAtHYPCr/IXDWRZ7Ho44pzl6CPoVkAhae8wXFCLEfSS8DP4Co0JEAP/+O/bn3RUY3QFrv2lBjaDR4738toZYt9TgK0Quxb4bPnIkBqB1JzESC1A6m5CJDagdRcBEjtQGouAqR2IDUXAVI7cCS8RRydF0BFJUvmuZx3XgCKcw7fE7AsPRs8N9z7wU2VatnR3lunBFDxivzQV/w58NSZFHC5XuV844eZdWoMGFVouwSe4D+YBfawBr5v6g26JMDsgDZT4PO/NUydEcAFNWb/2+wZMDSz8W6lSadmATObSprx9ywxLzvc6ZQAAO4OH5IOQIdSoC4XAVI7UIFWPr7q4T8DbKQIqUFC/tQ+x+zhP3XtS5rUNdwkbpl7E2iyjjH+GCg8UGoRVNT7v5f4WDs9zG0fVyXtcgqVU9QIlaXiwsyGdTswKOqEqLaZOCWGMZUsm1nggZg8SsdTbBnP9qsxVxAVXXh4RJYUdz8qLbfrAKfkkPMojZnSQPB7caOut6wsMSs1/E2C98NJFSkxAL6Q9jP4JcX49Gpm06aN/wG/JfI3WplioQAAAABJRU5ErkJggg==');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    flex-shrink: 0;
    position: absolute;
    right: -20px;
    top: 0;
}

.bottom-button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 16px 32px;
}

.example-container .view-button {
    width: 100% !important;
    height: 52px !important;
    background: #fff !important;
    border-radius: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #000 !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    letter-spacing: -0.3px !important;
}

/* 狀態圖標 */
.signal-icon {
    width: 18px;
    height: 18px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHASURBVHgB7ZjhUYNAEIUfTgqwBEugA0kFkgqMFYhWYKzAWIFQgbECSQVCB5IOnA7YvQwTmBhO7mbhj+/PLDc3x+7jlmMPQiKEkJzzE+wLxtgZCaABJeAEe0WkIAScIW9gvQqDSgBT9grjuM8aEAJeMZeQXqVBpSAHXJijDEkQAOKhAbUBkR6XWlANaCFEOKOc35bVdUL4lJV1Svn/I4QskQgGGMXvu8vwzBc+b6/YowtEBDP8xae5y2iKFqFYbgMgmDu+/4lAhEEwTwIgqUJxvO8eRRFKwQiiqJlFEVLwzRxHK+FEHcIxG8wQoiHOI7XCIQQYh3H8YNhmiRJNpzzWwTiL5gkSTZSynvTQJqmW8bYNQLxG0yaplus4ZxfIRBCiOskSbbYwQzDMBuGYWYXzG8whmGYDcMwM03zZBdMmqYbwzBMTdOc2AWTpunWNM2JaZoTu2DSNP0wDMPUMIzELhjO+cYwDFPDMCZ2wQghNoZhpIZhxHbBZFm21TTtXNO0kV0wWZZ9aprWNwzjzC4YzvmHpmk9TdP6dsHkef6paVpX07SuXTB5nn9pmtbRNA0AcEJBkiT5BoDOeDzuIjL/APJitVV4UCMhAAAAAElFTkSuQmCC');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.network-icon {
    width: 18px;
    height: 18px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGKSURBVHgB7ZjRUYNAEECXYQqwhEsBqUBSgaQCYwVKBWIFxgqECgwVSCowdEA6oAPYxQyTIQnJzR0M4/A/O3PLwT7uWPaADEgpn4QQT9jBGHtBBjSgDJxhh4g0GlAGbrBDkF6nAWXgHjuEUupRA8rAI3aIUupeA8rADg3BGFMaUE40oDbI0utaA2oDIcSS9KSUeuac39q2/YK0tG37yjm/k1IukIjBYDAZj8fz0Wg0n0wmE9d15/0F13XnjuPMgiCYjcfjmeu6sz6D4zjPjuPMwjCcjUajWRAEj0EQzPoMYRg+hmE4M03zIQzDmW3bUyRiOBxObducm6Y5tSxrikRYljU1TXNqWdbUtm1OW8i27YllWVPTNCeWZU2QiCzLNpZlTUzTfLIs6wmJ+A0mSZI1gRHiConIA0N6QsA451dIRJIkaykl6REYzvklEpEkyUZKuSS9UkpxzvkFEpGm6VZKuSC9SqnFYDA4RyLSNN1IKZ9Jr1JqORgMzpCINE23pPc/MN8VfQcgZHr0YAAAAABJRU5ErkJggg==');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.battery-icon {
    width: 24px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('data:image/webp;base64,UklGRj4EAABXRUJQVlA4WAoAAAAwAAAAMQAAGwAASUNDUBgCAAAAAAIYAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAAHRyWFlaAAABZAAAABRnWFlaAAABeAAAABRiWFlaAAABjAAAABRyVFJDAAABoAAAAChnVFJDAAABoAAAAChiVFJDAAABoAAAACh3dHB0AAAByAAAABRjcHJ0AAAB3AAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAFgAAAAcAHMAUgBHAEIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAAOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z3BhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABYWVogAAAAAAAA9tYAAQAAAADTLW1sdWMAAAAAAAAAAQAAAAxlblVTAAAAIAAAABwARwBvAG8AZwBsAGUAIABJAG4AYwAuACAAMgAwADEANlZQOEzEAAAALzHABhBvQCBpY7Dz8C/2GvNPkG1TpflDHOlm2rbN9fQZCGO2wP4AAaCqWQAoehygVtv2PLnSA6pXxQhgUbABHoVmlIxA179OfQZgCf5hULw/YYCI/itw20bJ6JjvEwAAAAAAALhfJ0mSJEmSZHaCy01S0KbPZ3NUGOd6s8viojTG5wOrwVfb/s7tM+l9V9gL0Rb4KdkON3WaOvlXdGjSYaC/P/FOl7celq77asa8+ECe+GgOC3a3uej0CD2uCvY8YhsfAA==');
}

/* 右側控制面板 */
.control-panel {
    flex: 1;
    max-width: 600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* 移除所有区块的边框和背景 */
.control-panel > .control-section {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    background: #fff;
    height: 36px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.1);
}

/* 保存按钮样式 */
#save-btn {
    width: 200px;
    padding: 8px;
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto 5px;
    display: block;
}

#save-btn:hover {
    background: #0056b3;
}

/* 語言選擇器 */
#language-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* 輸入框統一樣式 */
input[type="text"] {
    height: 32px;
    line-height: 32px;
    width: 100%;
}

/* 下拉選擇器統一樣式 */
select {
    height: 36px;
    line-height: 36px;
    background-color: #f5f5f5;
}

.notice-box .icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.address-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    padding-top: 6px;
    margin-right: 0;
}

.address-line1,
.address-line2 {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 14px;
    text-align: right;
    white-space: nowrap;
    width: auto;
    font-weight: 400;
    margin-right: 0;
}

.address-line2 {
    margin-top: 2px;
}

.copy-button {
    position: absolute;
    right: -20px;
    top: 0;
}

.info-item .value {
    max-width: 65%;
    display: flex;
    justify-content: flex-end;
    margin-right: 12px;
}

.tx-hash-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    width: 100%;
    margin-top: -8px;
    margin-right: 12px;
}

.tx-hash-line1,
.tx-hash-line2,
.tx-hash-line3 {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 14px;
    text-align: right;
    white-space: nowrap;
    width: auto;
    font-weight: 400;
    margin-top: 2px;
}

.tx-hash-line1 {
    margin-top: 0;
}

.tx-hash-line2 {
    margin-top: 2px;
}

.tx-hash-line3 {
    margin-top: 2px;
}

.tx-hash-container .copy-button {
    position: absolute;
    right: -20px;
    top: 0;
}

.address-line1,
.address-line2,
.tx-hash-line1,
.tx-hash-line2,
.tx-hash-line3 {
    text-align: right;
    width: auto;
    margin-right: 0;
}

.info-item:nth-last-child(-n+2) {
    transform: translateY(3px); /* 从-3px改为3px，最后两项（手续费和时间）整体往下移动3px */
}

/* 区块链交易的右侧文字保持原样 */
.info-item.blockchain-tx .value {
    margin-right: 12px;
}

/* 区块链交易的问号图标 base64编码
使用这个图片：
data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMTZDMTIuNDE4MyAxNiAxNiAxMi40MTgzIDE2IDhDMTYgMy41ODE3MiAxMi40MTgzIDAgOCAwQzMuNTgxNzIgMCAwIDMuNTgxNzIgMCA4QzAgMTIuNDE4MyAzLjU4MTcyIDE2IDggMTZaIiBmaWxsPSIjNkQ2RDZEIi8+CjxwYXRoIGQ9Ik04IDEyLjhDOC40NDE4MyAxMi44IDguOCAxMi40NDE4IDguOCAxMkM4LjggMTEuNTU4MiA4LjQ0MTgzIDExLjIgOCAxMS4yQzcuNTU4MTcgMTEuMiA3LjIgMTEuNTU4MiA3LjIgMTJDNy4yIDEyLjQ0MTggNy41NTgxNyAxMi44IDggMTIuOFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik04IDkuNkM4LjQ0MTgzIDkuNiA4LjggOS4yNDE4MyA4LjggOC44VjQuOEM4LjggNC4zNTgxNyA4LjQ0MTgzIDQgOCA0QzcuNTU4MTcgNCA3LjIgNC4zNTgxNyA3LjIgNC44VjguOEM3LjIgOS4yNDE4MyA3LjU1ODE3IDkuNiA4IDkuNloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=

样式设置：
.blockchain-tx .label {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blockchain-tx .label::after {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMTZDMTIuNDE4MyAxNiAxNiAxMi40MTgzIDE2IDhDMTYgMy41ODE3MiAxMi40MTgzIDAgOCAwQzMuNTgxNzIgMCAwIDMuNTgxNzIgMCA4QzAgMTIuNDE4MyAzLjU4MTcyIDE2IDggMTZaIiBmaWxsPSIjNkQ2RDZEIi8+CjxwYXRoIGQ9Ik04IDEyLjhDOC40NDE4MyAxMi44IDguOCAxMi40NDE4IDguOCAxMkM4LjggMTEuNTU4MiA4LjQ0MTgzIDExLjIgOCAxMS4yQzcuNTU4MTcgMTEuMiA3LjIgMTEuNTU4MiA3LjIgMTJDNy4yIDEyLjQ0MTggNy41NTgxNyAxMi44IDggMTIuOFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik04IDkuNkM4LjQ0MTgzIDkuNiA4LjggOS4yNDE4MyA4LjggOC44VjQuOEM4LjggNC4zNTgxNyA4LjQ0MTgzIDQgOCA0QzcuNTU4MTcgNCA3LjIgNC4zNTgxNyA3LjIgNC44VjguOEM3LjIgOS4yNDE4MyA3LjU1ODE3IDkuNiA4IDkuNloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    opacity: 0.6;
}