| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .cookie-notice {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: #f1f1f1;
- color: #333;
- text-align: center;
- padding: 15px 0;
- z-index: 9999;
- box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
- }
- .cookie-notice p {
- margin: 0 0 10px;
- }
- .accept-button {
- background-color: #4CAF50; /* 绿色背景 */
- color: white; /* 白色文字 */
- border: none;
- padding: 10px 20px;
- text-align: center;
- text-decoration: none;
- display: inline-block;
- font-size: 16px;
- margin-right: 10px;
- cursor: pointer;
- border-radius: 5px; /* 圆角 */
- transition: background-color 0.3s; /* 平滑过渡效果 */
- }
- .accept-button:hover {
- background-color: #45a049; /* 鼠标悬停时颜色变深 */
- }
- .reject-button {
- background-color: #e7e7e7; /* 浅灰色背景 */
- color: #666; /* 深灰色文字 */
- border: 1px solid #ccc; /* 浅灰色边框 */
- padding: 10px 20px;
- text-align: center;
- text-decoration: none;
- display: inline-block;
- font-size: 16px;
- cursor: pointer;
- border-radius: 5px; /* 圆角 */
- transition: background-color 0.3s, color 0.3s; /* 平滑过渡效果 */
- }
- .reject-button:hover {
- background-color: #ddd; /* 鼠标悬停时颜色略微变深 */
- color: #555; /* 文字颜色也略微变深 */
- }
|