@charset "utf-8"; .nav-search-wrap { position: relative; } .nav-search-content { display: flex; align-items: center; line-height: 72px; border: 1px solid rgba(60, 60, 60, 0.1); border-top: none; border-bottom: none; cursor: pointer; padding: 0 16px; } .nav-search-content:hover .nav-icon-search { background-image: ; } .nav-search-btn { font-size: 18px; color: #0c0f11; cursor: pointer; } .nav-search-fake_input { font-size: 14px; color: #0c0f11; opacity: 0.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .nav-icon-search { display: inline-block; width: 20px; height: 20px; background: no-repeat; background-size: cover; vertical-align: middle; } .nav-icon-search.active { background-image: ; } .nav-search-container { position: absolute; right: -1px; top: -0.5px; opacity: 0; z-index: -1; width: 0; box-shadow: 0 8px 13px 0 rgba(0, 0, 0, 0.07); overflow: hidden; } .nav-search-container_active { animation-name: nav-search-container_active; animation-iteration-count: 1; animation-duration: 0.2s; animation-delay: 0s; animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-fill-mode: both; } .nav-rich-search-wrap { width: 560px; position: relative; background: #fff; box-shadow: 0 8px 13px 0 rgba(0, 0, 0, 0.07); border-radius: 0 0 2px 2px; padding-bottom: 10px; z-index: 1; transition: width 0.2s ease-in-out; } .nav-common-search-wrapper { width: 100%; font-size: 14px; } .nav-common-search-tab { height: 72px; padding: 0 24px; background: linear-gradient(136deg, #fb7130 0%, #fe9f51 100%); } .nav-common-search-tab-item { position: relative; display: inline-block; width: auto; height: 72px; cursor: pointer; color: #fff; opacity: 0.6; padding-right: 32px; text-align: center; line-height: 72px; font-size: 14px; letter-spacing: 0; } .nav-common-search-tab-item.active, .nav-common-search-tab-item:hover { opacity: 1; text-decoration: none; } .nav-common-search-tab-item-highlight { position: absolute; bottom: 0; left: 6px; width: 0; height: 0; border: 6px solid transparent; border-bottom: 6px solid #fff; } .nav-common-search-input-warpper { position: relative; margin-top: 4px; } .nav-common-search-input-warpper-container { margin: 0 20px; border-bottom: 1px solid #ff7400; outline: none; } .nav-common-search-input-elem { width: 100%; padding: 10px 30px 10px 0; font-size: 16px; color: #bababa; letter-spacing: 0.5px; line-height: 24px; background: transparent; outline: none; } .default-input-wrapper { display: flex; align-items: center; position: relative; width: 100%; height: 36px; line-height: 36px; } .default-input-wrapper .default-input { width: 92%; height: 36px; padding-left: 10px; outline: none; border: none; color: #3d3d3d; line-height: 24px; background: transparent; font-size: 14px; letter-spacing: 0; } .nav-common-search-button { position: absolute; right: 20px; top: 0; height: 36px; color: #ff7400; text-align: right; cursor: pointer; line-height: 54px; user-select: none; font-size: 14px; } .nav-common-search-hotkey { padding-top: 20px; } .nav-common-search-hotkey .ace-link { text-decoration: none; transition: color 0.3s; } .nav-common-search-hotkey .nav-common-search-hotkey-title { color: #a1a4a6; letter-spacing: 0; line-height: 20px; padding: 0 20px; margin-bottom: 4px; } .nav-common-search-hotkey .nav-common-search-hotkey-content { line-height: normal; padding: 0 20px; padding-top: 12px; } .nav-common-search-hotkey .nav-common-search-hotkey-item { display: inline-block; height: 28px; line-height: 20px; font-size: 14px; color: #ff7400; letter-spacing: 0; padding: 4px 8px; margin-right: 16px; margin-bottom: 10px; min-width: 64px; cursor: pointer; text-align: center; background-color: rgba(255, 116, 0, 0.1); border-radius: 2px; } .nav-common-search-hotkey .nav-common-search-hotkey-item:hover { background-color: rgba(255, 116, 0, 0.2); } .nav-common-search-hotkey .nav-common-search-history-item { max-width: 114px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .nav-common-search-close-btn { cursor: pointer; position: absolute; top: 0; right: 20px; line-height: 72px; } .nav-icon-close { display: inline-block; width: 20px; height: 20px; background: no-repeat; background-size: cover; vertical-align: middle; } /* 自适应 */ @media screen and (min-width: 1680px) { .nav-search-content { width: 282px; justify-content: space-between; } .nav-search-fake_input { width: 206px; } } @media screen and (max-width: 1679px) and (min-width: 1440px) { .nav-search-content { width: 270px; justify-content: space-between; } .nav-search-fake_input { width: 206px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } } @media screen and (max-width: 1439px) and (min-width: 1280px) { .nav-search-content { width: 64px; justify-content: center; } .nav-search-fake_input { display: none; } } @media screen and (max-width: 1279px) and (min-width: 1200px) { .nav-search-content { width: 64px; justify-content: center; } .nav-search-fake_input { display: none; } } @media screen and (max-width: 1199px) { .nav-search-content { width: 64px; justify-content: center; } .nav-search-fake_input { display: none; } } @keyframes nav-search-container_active { 0% { opacity: 0; z-index: -1; width: 0; } to { opacity: 1; z-index: 99; width: 560px; } }