123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- 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-modal-content.show {
- width: 90vw;
- height: 90vh;
- }
-
- .license-info-card {
- width: calc(50% - 20px);
- height: auto;
- }
- }
|