123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- body {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- margin: 0;
- padding: 0;
- background-color: #f2f2f7;
- }
- header {
- background-color: #ffffff;
- color: #333;
- padding: 20px;
- text-align: center;
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
- }
- .container {
- display: flex;
- height: calc(100vh - 70px);
- }
- aside {
- width: 200px;
- background-color: #f2f2f7;
- color: #000;
- padding: 20px;
- height: 100%;
- }
- aside ul {
- list-style: none;
- padding: 0;
- }
- aside ul li {
- margin: 20px 0;
- cursor: pointer;
- }
- main {
- flex: 1;
- padding: 20px;
- overflow-y: auto;
- }
- .license-info-container {
- display: flex;
- flex-wrap: wrap;
- gap: 20px;
- }
- .license-info-card {
- position: relative;
- width: calc(25% - 20px);
- background-color: #ffffff;
- border-radius: 15px;
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
- overflow: hidden;
- transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
- margin-bottom: 20px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- padding-bottom: 20px;
- }
- .license-info-card:hover {
- transform: translateY(-3px);
- box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
- }
- .license-info-card-header {
- background-color: #007aff;
- height: 50px;
- border-top-left-radius: 15px;
- border-top-right-radius: 15px;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 10px;
- text-align: center;
- color: white;
- }
- .card-title {
- font-size: 20px;
- font-weight: 600;
- color: white;
- margin: 0;
- line-height: 1.2;
- }
- .license-info-card-content {
- padding: 20px;
- color: #333;
- }
- .card-text {
- margin: 10px 0;
- font-size: 18px;
- color: #3a3a3c;
- line-height: 1.6;
- }
- .license-status-green {
- color: #34c759;
- }
- .license-status-yellow {
- color: #ffcc00;
- }
- .license-status-red {
- color: #ff3b30;
- }
- @media (max-width: 768px) {
-
- .license-info-card {
- width: calc(50% - 20px);
- height: auto;
- }
- }
- @media (max-width: 768px) {
- .license-info-modal-content.show {
- width: 90vw;
- height: 90vh;
- }
- }
- .license-info-modal {
- display: none;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.2);
- justify-content: center;
- align-items: center;
- z-index: 1000;
- overflow: hidden;
- }
- .license-info-modal-content {
- background-color: white;
- padding: 20px;
- border-radius: 20px;
- position: absolute;
- transform-origin: center;
- opacity: 0;
- transition: opacity 0.3s ease, transform 0.3s ease;
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
- max-height: 80vh;
- overflow-y: auto;
- }
- .license-info-modal-content {
- transform: scale(0.95);
- }
- .license-info-modal-content.show {
- opacity: 1;
- width: 80vw;
- height: 70vh;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%) scale(1);
- }
- .license-info-close {
- position: absolute;
- top: 10px;
- right: 20px;
- font-size: 28px;
- color: #007aff;
- cursor: pointer;
- font-weight: 600;
- }
- .license-info-modal-header {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 20px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- }
- .license-info-modal-header h2 {
- font-size: 24px;
- font-weight: 600;
- color: #333;
- margin-bottom: 10px;
- }
- .license-info-modal-button-group {
- display: flex;
- justify-content: space-around;
- width: 100%;
- margin-top: 10px;
- }
- .license-info-group-box {
- border: 1px solid #ccc;
- border-radius: 8px;
- padding: 15px;
- margin-bottom: 15px;
- background-color: #f9f9f9;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- }
- .license-info-group-box p {
- margin: 5px 0;
- font-size: 16px;
- color: #333;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- }
- .license-info-group-title {
- font-weight: 600;
- margin-bottom: 10px;
- color: #007aff;
- }
- .license-info-modal-button {
- padding: 12px 20px;
- background-color: #007aff;
- color: white;
- border: none;
- border-radius: 12px;
- font-size: 16px;
- font-weight: 500;
- cursor: pointer;
- transition: background-color 0.3s ease;
- }
- .license-info-modal-button:hover {
- background-color: #005bb5;
- }
- .license-info-modal-body {
- overflow-y: auto;
- flex-grow: 1;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- color: #3a3a3c;
- font-size: 18px;
- line-height: 1.6;
- }
- .license-info-modal-body::-webkit-scrollbar {
- width: 6px;
- }
- .license-info-modal-body::-webkit-scrollbar-thumb {
- background-color: rgba(0, 0, 0, 0.2);
- border-radius: 3px;
- }
- .license-info-modal-pagination {
- display: flex;
- justify-content: center;
- margin-top: 20px;
- }
- .license-info-modal-pagination button {
- padding: 10px 15px;
- margin: 0 5px;
- background-color: #007aff;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- font-size: 16px;
- transition: background-color 0.3s ease;
- }
- .license-info-modal-pagination button:hover {
- background-color: #005bb5;
- }
- .license-info-modal-pagination button:disabled {
- background-color: #ccc;
- cursor: not-allowed;
- }
- .license-info-modal-pagination select {
- padding: 10px 15px;
- margin: 0 5px;
- background-color: #007aff;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- font-size: 16px;
- transition: background-color 0.3s ease;
- }
- .license-info-modal-pagination select option {
- background-color: white;
- color: black;
- }
- .license-info-modal-pagination select option:hover {
- background-color: #007aff;
- color: white;
- }
- .license-info-modal-pagination select option:checked {
- background-color: #ccc;
- color: white;
- }
- nav ul li a.active {
- background-color: #007aff;
- color: white;
- }
|