<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> /* 綣合��桁� */
 #popup {
     position: fixed;
     bottom: -100%;
     left: 0;
     width: 100%;
     background-color: #fff;
     box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
     transition: bottom 0.3s ease-in-out;
     z-index: 999999999999999;
 }

 #popup.show {
     bottom: 0;
 }

 /* 綣合���絎号�桁� */
 .popup-content {
     padding: 20px;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 /* ��腓肴��桁� */
 .prompt-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     line-height: 60px;
     border-bottom: 1px solid #eee;
 }

 .prompt-row:last-child {
     border-bottom: none;
 }

 /* �丈���桁� */
 .icon {
     width: 30px;
     height: auto;
     /*margin-right: 10px;*/
 }

 /* �����桁� */
 .button {
     display: inline-block;
     padding: 5px 15px;
     border: none;
     border-radius: 20px;
     cursor: pointer;
     font-size: 16px;
 }

 .continue-button {
     background-color: #eee;
 }

 .download-button {
     background-color: rgb(250 117 3);
     color: #fff;
 }

 /* 蕁狗���腓堺��絖��桁� */
 .top-tip {
     text-align: center;
     margin-bottom: 15px;
 }

 .top-tip .sm {
     font-size: 12px;
     color: #6e6e6e;
 }</pre></body></html>