  /* 搜索框样式 */
    .search-container {
      display: flex;
      align-items: center;
      background: rgba(200, 230, 255, 0.6);
      border-radius: 25px;
      padding: 10px 16px;
      max-width: 600px;
      margin: 0 auto;
      backdrop-filter: blur(10px);
    }
    
    .search-engine-selector {
      display: flex;
      align-items: center;
      gap: 6px;
      padding-right: 12px;
      cursor: pointer;
      flex-shrink: 0;
    }
    
    .engine-icon {
      width: 20px;
      height: 20px;
    }
    
    .dropdown-arrow {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    #inputText {
      flex: 1;
      border: none !important;
      outline: none !important;
      padding: 0 !important;
      font-size: 16px;
      background: transparent !important;
      min-width: 200px;
      color: #333;
      height: auto !important;
      box-shadow: none !important;
    }
    
    #inputText:focus {
      box-shadow: none !important;
    }
    
    #inputText::placeholder {
      color: rgba(0, 0, 0, 0.5);
    }
    
    .submitButton {
      background: none !important;
      border: none !important;
      cursor: pointer;
      padding: 4px !important;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(0, 0, 0, 0.5);
      flex-shrink: 0;
      position: static !important;
      height: auto !important;
      width: auto !important;
    }
    
    .submitButton:hover {
      color: rgba(0, 0, 0, 0.7);
    }
    
    .submitButton svg {
      width: 20px;
      height: 20px;
    }
    
    .submitButton:before {
      content: none !important;
    }
    
    /* 搜索框容器 */
    .inputDiv {
      position: relative;
      z-index: 100000;
    }
    
    /* 书签分类由JavaScript控制显示/隐藏 */
    
    /* 搜索引擎下拉菜单 */
    .engine-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(10px);
      z-index: 100001;
      min-width: 520px;
    }
    
    .engine-dropdown.show {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      justify-content: center;
      gap: 12px;
    }
    
    .engine-option {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s;
      min-width: 70px;
      text-align: center;
    }

    .engine-option:hover {
      background: rgba(200, 230, 255, 0.5);
    }

    .engine-option img {
      width: 40px;
      height: 40px;
      margin-bottom: 8px;
      border-radius: 10px;
      object-fit: contain;
      display: block;
    }

    .engine-option span {
      font-size: 13px;
      color: #333;
      white-space: nowrap;
      display: block;
    }
    
    /* 日历模态框样式 */
    #calendar-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.5);
    }
    
    #calendar-modal .modal-content {
      background-color: #fff;
      margin: 3% auto;
      width: 95%;
      max-width: 1100px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
      display: flex;
      overflow: hidden;
      position: relative;
    }
    
    /* 左侧日历区域 */
    .calendar-left {
      flex: 1;
      padding: 20px;
      position: relative;
      background: #fff;
      overflow: hidden;
    }
    
    /* 顶部工具栏 */
    .calendar-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .toolbar-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .year-selector {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .calendar-icon {
      font-size: 16px;
    }
    
    #year-input {
      padding: 5px 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      background: #fff;
      cursor: pointer;
    }
    
    #month-select {
      padding: 5px 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      background: #fff;
    }
    
    .nav-buttons {
      display: flex;
      gap: 5px;
    }
    
    .nav-btn {
      padding: 5px 10px;
      border: 1px solid #ddd;
      background: #fff;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
      color: #666;
    }
    
    .nav-btn:hover {
      background: #f5f5f5;
    }
    
    .today-btn {
      padding: 5px 12px;
      border: 1px solid #1890ff;
      background: #1890ff;
      color: #fff;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
    }
    
    .today-btn:hover {
      background: #40a9ff;
    }
    
    .toolbar-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    .days-diff {
      font-size: 14px;
      color: #666;
    }
    
    .week-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    /* Switch 开关 */
    .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 26px;
    }
    
    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }
    
    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #1890ff;
      transition: .3s;
      border-radius: 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 8px;
      box-sizing: border-box;
    }
    
    .slider:before {
      position: absolute;
      content: "";
      height: 20px;
      width: 20px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .3s;
      border-radius: 50%;
      z-index: 1;
    }
    
    input:checked + .slider {
      background-color: #1890ff;
    }
    
    input:checked + .slider:before {
      transform: translateX(34px);
    }
    
    .slider-text {
      font-size: 12px;
      color: #fff;
      font-weight: bold;
      z-index: 0;
    }
    
    .slider-text:first-child {
      margin-left: 2px;
    }
    
    .slider-text:last-child {
      margin-right: 2px;
    }
    
    /* 星期标题 */
    .calendar-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
      margin-bottom: 8px;
    }
    
    .weekday {
      text-align: center;
      font-size: 14px;
      color: #333;
      padding: 8px 0;
    }
    
    .weekday:first-child,
    .weekday:last-child {
      color: #ff4d4f;
    }
    
    /* 日历网格 */
    .calendar-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
    }
    
    .calendar-day {
      height: 70px;
      border-radius: 8px;
      padding: 6px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      cursor: pointer;
      transition: all 0.2s;
      background: #fff;
      border: 1px solid transparent;
      gap: 4px;
    }
    
    .calendar-day:hover {
      border-color: #1890ff;
    }
    
    .calendar-day.other-month {
      opacity: 0.3;
    }
    
    /* 日期数字 */
    .day-number {
      font-size: 28px;
      font-weight: bold;
      line-height: 1;
      text-align: center;
    }
    
    /* 周末红色 */
    .calendar-day.weekend .day-number {
      color: #ff4d4f;
    }
    
    /* 今天 - 蓝色背景 */
    .calendar-day.today {
      background: #1890ff;
    }
    
    .calendar-day.today .day-number,
    .calendar-day.today .day-lunar {
      color: blue;
    }
    
    /* 选中 - 灰色边框 */
    .calendar-day.selected {
      border: 2px solid #999;
    }
    
    /* 节假日 - 粉色背景 */
    .calendar-day.holiday {
      background: #fff1f0;
    }
    
    .calendar-day.holiday .day-number {
      color: #ff4d4f;
    }
    
    /* 调班 - 蓝色背景 */
    .calendar-day.workday {
      background: #e6f7ff;
    }
    
    /* 农历 */
    .day-lunar {
      font-size: 11px;
      color: #999;
      line-height: 1;
      text-align: center;
    }
    
    /* 节日标签 */
    .day-festival {
      font-size: 10px;
      color: #1890ff;
      text-align: center;
      line-height: 1;
    }
    
    /* 休/班标记 */
    .day-mark {
      position: absolute;
      top: 4px;
      right: 4px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      font-size: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }
    
    .day-mark.holiday-mark {
      background: #ff4d4f;
      color: #fff;
    }
    
    .day-mark.work-mark {
      background: #1890ff;
      color: #fff;
    }
    
    /* 背景月份数字 */
    .month-bg {
      position: absolute;
      top: 55%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 600px;
      font-weight: bold;
      color: rgba(200,200,200,0.15);
      pointer-events: none;
      line-height: 1;
      user-select: none;
    }
    
    /* 右侧信息区域 */
    .calendar-right {
      width: 320px;
      background: #f5f5f5;
      padding: 20px;
      position: relative;
    }
    
    /* 关闭按钮容器 */
    .close-btn-container {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 20px;
      height: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .close-btn-circle {
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #ff5f57;
      transition: all 0.2s;
    }
    
    .close-btn-x {
      position: relative;
      font-size: 12px;
      color: #fff;
      opacity: 0;
      transition: opacity 0.2s;
      font-weight: bold;
      z-index: 1;
    }
    
    .close-btn-container:hover .close-btn-x {
      opacity: 1;
    }
    
    /* 右侧标题 */
    .right-header {
      text-align: right;
      margin-bottom: 15px;
      padding-right: 10px;
    }
    
    .right-header span {
      font-size: 14px;
      color: #666;
    }
    
    /* 大日期卡片 */
    .big-date-card {
      width: 80px;
      height: 80px;
      background: #1890ff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
    }
    
    .big-date-number {
      font-size: 48px;
      font-weight: bold;
      color: #fff;
    }
    
    /* 农历信息 */
    .lunar-info {
      text-align: center;
      margin-bottom: 20px;
    }
    
    .lunar-info div {
      font-size: 13px;
      color: #666;
      margin: 4px 0;
    }
    
    /* 详细信息 */
    .detail-section {
      margin-bottom: 15px;
    }
    
    .detail-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 8px 0;
    }
    
    .detail-tag {
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 12px;
      color: #fff;
    }
    
    .detail-tag.blue {
      background: #1890ff;
    }
    
    .detail-tag.pink {
      background: #eb2f96;
    }
    
    .detail-value {
      font-size: 14px;
      color: #333;
    }
    
    /* 宜忌信息 */
    .yi-ji-section {
      margin-bottom: 15px;
    }
    
    .yi-ji-row {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin: 8px 0;
    }
    
    .yi-tag, .ji-tag {
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 12px;
      color: #fff;
      flex-shrink: 0;
    }
    
    .yi-tag {
      background: #52c41a;
    }
    
    .ji-tag {
      background: #8c8c8c;
    }
    
    .yi-ji-text {
      font-size: 13px;
      color: #666;
      line-height: 1.5;
    }
    
    /* 月相信息 */
    .moon-section {
      margin-bottom: 15px;
    }
    
    .moon-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .moon-tag {
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 12px;
      color: #fff;
      background: #722ed1;
    }
    
    .moon-phase {
      font-size: 13px;
      color: #333;
    }
    
    .moon-name {
      padding: 2px 8px;
      background: #333;
      color: #fff;
      border-radius: 4px;
      font-size: 12px;
    }
    
    .moon-desc {
      font-size: 13px;
      color: #666;
    }
    
    /* 方位信息 */
    .direction-section {
      margin-top: 10px;
    }
    
    .direction-row {
      display: flex;
      justify-content: space-between;
      padding: 4px 0;
      border-bottom: 1px solid #e8e8e8;
    }
    
    .direction-row:last-child {
      border-bottom: none;
    }
    
    .direction-label {
      font-size: 13px;
      color: #999;
    }
    
    .direction-value {
      font-size: 13px;
      color: #333;
    }