@charset "UTF-8";

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    background: var(--simple-body-bg-color);
}

:root {
    --simple-color: 40, 53, 147;
    --simple-black-color: 0, 0, 0;
    --simple-grey-color: #616a76;
    --simple-body-bg-color: #F8F8F8;
    --simple-card-bg-color: 255, 255, 255;
    --simple-border-radius-s: 4px;
    --simple-border-radius-m: 6px;
    --simple-border-radius-l: 8px;
    --simple-border-radius-xl: 10px;
    --spacing: 0.25rem
}

*,
::after,
::before {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
button,
input,
select,
textarea {
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:active {
    outline: none;
    text-decoration: none;
}

a:hover {
    color: rgba(var(--simple-color));
}

a {
    color: rgba(var(--simple-black-color));
}

img {
    border: none;
}


input,
input:focus,
select,
select:focus,
textarea,
textarea:focus {
    outline: none;
    border: 0;
}

button {
    background: unset;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

button:focus-visible,
button:focus {
    outline: 0;
}

ul,
li,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

* {
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f3f3f3;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c8c8c8;
    border-radius: 4px;
    transition: background .3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--simple-color));
}

::-webkit-scrollbar-thumb:active {
    background: rgba(var(--simple-color));
}

/*
 * ------------------------------------------------------------------------------
 * 公共样式
 * ------------------------------------------------------------------------------
 */

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.m-1 {
    margin: var(--spacing)
}

.m-2 {
    margin: calc(var(--spacing)*2)
}

.m-3 {
    margin: calc(var(--spacing)*4)
}

.m-4 {
    margin: calc(var(--spacing)*6)
}

.mt-1 {
    margin-top: var(--spacing)
}

.mt-2 {
    margin-top: calc(var(--spacing)*2)
}

.mt-3 {
    margin-top: calc(var(--spacing)*4)
}

.mt-4 {
    margin-top: calc(var(--spacing)*6)
}

.mr-1 {
    margin-right: var(--spacing)
}

.mr-2 {
    margin-right: calc(var(--spacing)*2)
}

.mr-3 {
    margin-right: calc(var(--spacing)*4)
}

.mr-4 {
    margin-right: calc(var(--spacing)*6)
}

.mb-1 {
    margin-bottom: var(--spacing)
}

.mb-2 {
    margin-bottom: calc(var(--spacing)*2)
}

.mb-3 {
    margin-bottom: calc(var(--spacing)*4)
}

.mb-4 {
    margin-bottom: calc(var(--spacing)*6)
}

.ml-1 {
    margin-left: var(--spacing)
}

.ml-2 {
    margin-left: calc(var(--spacing)*2)
}

.ml-3 {
    margin-left: calc(var(--spacing)*4)
}

.ml-4 {
    margin-left: calc(var(--spacing)*6)
}

.my-1 {
    margin-top: var(--spacing);
    margin-bottom: var(--spacing)
}

.my-2 {
    margin-top: calc(var(--spacing)*2);
    margin-bottom: calc(var(--spacing)*2)
}

.my-3 {
    margin-top: calc(var(--spacing)*4);
    margin-bottom: calc(var(--spacing)*4)
}

.my-4 {
    margin-top: calc(var(--spacing)*6);
    margin-bottom: calc(var(--spacing)*6)
}

.mx-1 {
    margin-left: var(--spacing);
    margin-right: var(--spacing)
}

.mx-2 {
    margin-left: calc(var(--spacing)*2);
    margin-right: calc(var(--spacing)*2)
}

.mx-3 {
    margin-left: calc(var(--spacing)*4);
    margin-right: calc(var(--spacing)*4)
}

.mx-4 {
    margin-left: calc(var(--spacing)*6);
    margin-right: calc(var(--spacing)*6)
}

.p-1 {
    padding: var(--spacing)
}

.p-2 {
    padding: calc(var(--spacing)*2)
}

.p-3 {
    padding: calc(var(--spacing)*4)
}

.p-4 {
    padding: calc(var(--spacing)*6)
}

.pt-1 {
    padding-top: var(--spacing)
}

.pt-2 {
    padding-top: calc(var(--spacing)*2)
}

.pt-3 {
    padding-top: calc(var(--spacing)*4)
}

.pt-4 {
    padding-top: calc(var(--spacing)*6)
}

.pr-1 {
    padding-right: var(--spacing)
}

.pr-2 {
    padding-right: calc(var(--spacing)*2)
}

.pr-3 {
    padding-right: calc(var(--spacing)*4)
}

.pr-4 {
    padding-right: calc(var(--spacing)*6)
}

.pb-1 {
    padding-bottom: var(--spacing)
}

.pb-2 {
    padding-bottom: calc(var(--spacing)*2)
}

.pb-3 {
    padding-bottom: calc(var(--spacing)*4)
}

.pb-4 {
    padding-bottom: calc(var(--spacing)*6)
}

.pl-1 {
    padding-left: var(--spacing)
}

.pl-2 {
    padding-left: calc(var(--spacing)*2)
}

.pl-3 {
    padding-left: calc(var(--spacing)*4)
}

.pl-4 {
    padding-left: calc(var(--spacing)*6)
}

.py-1 {
    padding-top: var(--spacing);
    padding-bottom: var(--spacing)
}

.py-2 {
    padding-top: calc(var(--spacing)*2);
    padding-bottom: calc(var(--spacing)*2)
}

.py-3 {
    padding-top: calc(var(--spacing)*4);
    padding-bottom: calc(var(--spacing)*4)
}

.py-4 {
    padding-top: calc(var(--spacing)*6);
    padding-bottom: calc(var(--spacing)*6)
}

.px-1 {
    padding-left: var(--spacing);
    padding-right: var(--spacing)
}

.px-2 {
    padding-left: calc(var(--spacing)*2);
    padding-right: calc(var(--spacing)*2)
}

.px-3 {
    padding-left: calc(var(--spacing)*4);
    padding-right: calc(var(--spacing)*4)
}

.px-4 {
    padding-left: calc(var(--spacing)*6);
    padding-right: calc(var(--spacing)*6)
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-sticky {
    position: sticky;
}

.align-items-center {
    align-items: center;
}

.flex-direction-column {
    flex-direction: column;
}

.text-align-center {
    text-align: center;
}

.justify-content-center {
    justify-content: center;
}


/*
 * ------------------------------------------------------------------------------
 * 整体宽度
 * ------------------------------------------------------------------------------
 */
.simple-auto-frame {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*
 * ------------------------------------------------------------------------------
 * 头部
 * ------------------------------------------------------------------------------
 */

header {
    justify-content: center;
    position: sticky;
    top: 0px;
    z-index: 99999;
    background-color: rgba(var(--simple-card-bg-color));
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.simple-header-container {
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.simple-header-right {
    height: 40px;
}

.simple-hr-item {
    height: 40px;
    width: 40px;
}

.simple-history-content {
    position: absolute;
    min-width: 360px;
    background: #fff;
    top: 100%;
    right: 14px;
    box-shadow: 0px -2px 10px 1px rgba(0, 0, 0, 0.08);
    border-radius: var(--simple-border-radius-m);
    display: none;
    opacity: 0;
    transform-origin: top right;
}

.simple-history-content.show {
    display: block;
    animation: historyShow .25s ease forwards;
}

.simple-history-content.hide {
    animation: historyHide .2s ease forwards;
}

.simple-history-header {
    display: flex;
    justify-content: space-between;
}

.history-title {
    font-size: 16px;
    color: rgba(var(--simple-color));
    font-weight: 600;
}

.history-clear {
    cursor: pointer;
    color: var(--simple-grey-color);
}

.history-clear:hover {
    color: rgba(var(--simple-color));
}

.simple-history-list {
    display: flex;
    flex-wrap: wrap;
}

.simple-history-list a {
    display: block;
    position: relative;
    font-size: 14px;
    width: 33.33%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 20px;
}

.simple-history-list a:nth-child(3n+1) {
    padding-left: 11px;
}

.simple-history-list a::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 12px;
    width: 3px;
    height: 6px;
    background: #283593;
    border-radius: 6px;
    z-index: -1;
}

.simple-history-list a:nth-child(3n+1)::before {
    left: 3px;
}

@keyframes historyShow {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes historyHide {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(-8px) scale(.96);
    }
}

.header-bg {
    background-color: rgba(var(--simple-card-bg-color)) !important;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1) !important;
}

.header-bg .simple-history i {
    color: #000000;
}

/*
 * ------------------------------------------------------------------------------
 * 主体框架
 * ------------------------------------------------------------------------------
 */

main {
    min-height: calc(100vh - 185px);
}

.simple-wrap {
    justify-content: center;
}

.simple-content {
    flex: 1;
    z-index: 1;
}

/*
 * ------------------------------------------------------------------------------
 * 左侧边栏
 * ------------------------------------------------------------------------------
 */
.simple-side {
    position: sticky;
    width: 160px;
    top: 80px;
    height: fit-content;
    z-index: 2;
}

.simple-side-nav {
    background-color: rgba(var(--simple-card-bg-color));
    border-radius: var(--simple-border-radius-m);
}

.simple-side-menu:before {
    content: "";
    position: absolute;
    top: 0;
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
    width: 100%;
    left: 0;
}

.simple-side-menu,
.simple-collect-menu {
    position: relative;
}

.simple-side-menu:after,
.simple-collect-menu:after {
    content: "";
    position: absolute;
    bottom: 0;
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
    width: 100%;
    left: 0;
}


.simple-side-nav-index>ul,
.simple-side-menu>ul,
.simple-collect-menu>ul,
.simple-side-nav-other>ul {
    width: 100%;
}

.simple-side-nav-index>ul>li:last-child a,
.simple-side-menu>ul>li:last-child a,
.simple-collect-menu>ul>li:last-child a,
.simple-side-nav-other>ul>li:last-child a {
    margin-bottom: 0;
}

.simple-side-nav-index>ul>li>a,
.simple-side-menu>ul>li>a,
.simple-collect-menu>ul>li>a,
.simple-side-nav-other>ul>li>a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: var(--simple-border-radius-m);
    margin-bottom: 2px;
}

.simple-side-nav-index>ul>li>a:hover,
.simple-side-nav-index>ul>li.active>a,
.simple-side-menu>ul>li>a:hover,
.simple-side-menu>ul>li.active>a,
.simple-collect-menu>ul>li>a:hover,
.simple-collect-menu>ul>li.active>a,
.simple-side-nav-other>ul>li>a:hover,
.simple-side-nav-other>ul>li.active>a {
    background: linear-gradient(to right, color-mix(in srgb, rgba(var(--simple-color)) 10%, transparent) 10%, #0066ff00 99%);
    color: rgba(var(--simple-color));
    font-weight: 600;
}


.simple-side-nav-index>ul>li>a:hover::before,
.simple-side-nav-index>ul>li.active>a::before,
.simple-side-menu>ul>li>a:hover::before,
.simple-side-menu>ul>li.active>a::before,
.simple-collect-menu>ul>li>a:hover::before,
.simple-collect-menu>ul>li.active>a::before,
.simple-side-nav-other>ul>li>a:hover::before,
.simple-side-nav-other>ul>li.active>a::before {
    content: "";
    position: absolute;
    left: calc(var(--spacing) * -4);
    top: 50%;
    transform: translate(0, -50%);
    width: 4px;
    height: 28px;
    background: rgba(var(--simple-color));
    border-radius: 0px 0.75rem 0.75rem 0px;
    pointer-events: none;
    z-index: 2;
}

.simple-side-nav-index>ul>li>a>i,
.simple-side-menu>ul>li>a>i,
.simple-collect-menu>ul>li>a>i,
.simple-side-nav-other>ul>li>a>i {
    margin-right: 5px;
}

.simple-side-nav-index>ul>li>a>span,
.simple-side-menu>ul>li>a>span,
.simple-collect-menu>ul>li>a>span,
.simple-side-nav-other>ul>li>a>span {
    font-size: 16px;
    line-height: 16px;
}

.simple-menu-child {
    display: none;
}

.simple-collect-menu>ul>li .simple-menu-child>li>a {
    display: flex;
    padding: 5px 10px;
    border-radius: var(--simple-border-radius-m);
}

.simple-collect-menu>ul>li .simple-menu-child>li>a:hover {
    background-color: rgb(241, 242, 243);
}

.simple-collect-menu>ul>li:hover .simple-menu-child {
    /*display: block;子菜单，待开启*/
    position: absolute;
    right: -26px;
    top: 0;
    transform: translate(100%, 0);
    padding: 16px;
    background: rgba(var(--simple-card-bg-color));
    border-radius: var(--simple-border-radius-m, 12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    z-index: 999;
}

.simple-collect-menu>ul>li:hover .simple-menu-child::after {
    content: "";
    position: absolute;
    left: -26px;
    top: 0px;
    width: 26px;
    height: 100%;
}

.simple-collect-menu>ul>li:hover .simple-menu-child::before {
    content: "";
    position: absolute;
    top: 9px;
    left: -10px;
    border-width: 10px 10px 10px 0px;
    border-style: solid;
    border-color: transparent rgba(var(--simple-card-bg-color));
    filter: drop-shadow(-1px 0px 1px rgba(0, 0, 0, 0.03));
    pointer-events: none;
}

/*
 * ------------------------------------------------------------------------------
 * 首页收藏夹
 * ------------------------------------------------------------------------------
 */

.simple-collect {
    background-color: rgba(var(--simple-card-bg-color));
    border-radius: var(--simple-border-radius-m);
    display: inline-block;
}

.collect-card {
    width: 100%;
}

.collect-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collect-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(var(--simple-black-color));
}

.collect-card-header h3 i {
    font-size: 18px;
}

.term-separator {
    margin: 0 5px 0 15px;
    height: 12px;
    width: 2.5px;
    border-radius: 2px;
    background-color: rgba(var(--simple-black-color));
}

.term-tab {
    display: flex;
    flex: 1;
    overflow-x: overlay;
    overflow-y: hidden;
    height: 28px;
    align-items: center;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.term-tab::-webkit-scrollbar {
    height: 0;
}

.term-tab-item {
    flex-shrink: 0;
    z-index: 2;
}

.term-tab-item a {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 16px;
    padding: 0 12px;
    z-index: 2;
}

.term-tab-item a:hover,
.term-active {
    color: rgba(var(--simple-color)) !important;
    font-weight: 600;
}

.term-slider {
    position: absolute;
    left: 0;
    top: 50%;
    height: 28px;
    border-radius: var(--simple-border-radius-s);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
    pointer-events: none;
    transform: translate(0, calc(-50% + 5px)) skewX(-15deg);
    background: linear-gradient(to right, transparent 0%, color-mix(in srgb, rgba(var(--simple-color)) 20%, transparent) 100%);
    height: 13px !important;
}

.term-desc {
    font-size: 14px;
    color: var(--simple-grey-color);
}

.collect-card-content {
    width: 100%;
}

.collect-card-tab {
    display: none;
    flex-wrap: wrap;
    margin: 0 -4px;
}

.tab-active {
    display: flex;
}

/*
 * ------------------------------------------------------------------------------
 * 默认卡片风格
 * ------------------------------------------------------------------------------
 */

.site-def-card-item {
    width: 25%;
    transition: 0.2s;
    z-index: 998;
}

.site-def-url-body {
    border-radius: var(--simple-border-radius-m);
    border: 1px solid #F6F6F6;
    padding: 15px;
}

.site-def-card-item:hover .site-def-go a {
    color: rgba(var(--simple-black-color));
}

.site-def-url-img {
    display: flex;
    height: 25px;
    width: 25px;
    margin: 0 10px 0 5px;
    align-items: center;
}

.site-def-url-img img {
    width: 100%;
    height: 100%;
    border-radius: var(--simple-border-radius-s);
}

.site-def-url-info {
    flex: 1;
    width: 0;
}

.site-def-url-title {
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 2px;
    color: rgba(var(--simple-black-color));
}

.site-def-url-desc p {
    font-size: 12px;
    color: var(--simple-grey-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-def-tool {
    top: 15px;
    right: 15px;
}

.site-def-go a {
    color: var(--simple-card-grey-bg-color);
}

.site-def-card-item:hover {
    transform: translateY(-1px);
    z-index: 999;
}

.site-def-card-item:hover .site-def-url-body {
    background-color: #f1f2f3;
}

.has-child-link:hover .site-def-url-body {
    border-radius: var(--simple-border-radius-m) var(--simple-border-radius-m) 0 0;
}

.has-child-link:hover .site-def-child-link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
}

.site-def-child-link {
    z-index: 999;
    background: #f1f2f3;
    width: calc(100% - var(--spacing) * 2);
    position: absolute;
    left: var(--spacing);
    top: calc(100% - var(--spacing) - 1px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, max-height 0.5s ease;
    padding: 0 var(--spacing);
    border-radius: 0 0 var(--simple-border-radius-m) var(--simple-border-radius-m);
}

.site-def-child-link-img {
    display: flex;
    height: 20px;
    width: 20px;
    margin: 0 5px 0 3px;
    align-items: center;
}

.site-def-child-link-img img {
    width: 100%;
    height: 100%;
    border-radius: var(--simple-border-radius-s);
}

.site-def-child-link-item {
    background: rgba(13, 110, 253, .08);
    color: #4285f4;
    border-radius: var(--spacing);
}

.site-def-child-link-info {
    flex: 1;
}

.site-def-child-link-info p {
    font-size: 12px;
    line-height: 14px;
}

.site-def-child-link-go i {
    font-size: 12px;
}

.site-def-card-icon {
    top: var(--spacing);
    right: 0;
    transform: translate(calc(-1 * var(--spacing)), 0);
    display: flex;
    cursor: pointer;
}

.site-def-card-icon-item i {
    font-size: 14px;
}

.site-def-card-icon-item .icon-child-links {
    color: #ffcc66;
}

/*
 * ------------------------------------------------------------------------------
 * 网址风格一
 * ------------------------------------------------------------------------------
 */

.site-one-card-item {
    width: 14.28%;
}

.site-one-url-body {
    color: var(--simple-grey-color);
    background-color: rgba(var(--simple-card-bg-color));
    align-items: center;
    border-radius: var(--simple-border-radius-m);
}

.site-one-url-img {
    width: 22px;
    height: 22px;
}

.site-one-url-img img {
    width: 100%;
    height: 100%;
    border-radius: var(--simple-border-radius-s);
}

.site-one-url-title {
    font-size: 14px;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.site-one-go {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
    transition: .3s
}

.site-one-card-item:hover .site-one-go {
    opacity: 1;
    right: 0;
    transition: .3s
}

.site-one-go i {
    font-size: 18px;
}

.site-one-go i:hover {
    text-shadow: 0 0 5px;
}

/*
 * ------------------------------------------------------------------------------
 * 无内容
 * ------------------------------------------------------------------------------
 */

.no-content {
    height: 100px;
    justify-content: center;
    flex: 1;
    align-items: center;
    border-radius: var(--simple-border-radius-m);
    color: var(--simple-grey-color);
    background-color: rgba(var(--simple-color), .05);
}

/*
 * ------------------------------------------------------------------------------
 * 友情链接
 * ------------------------------------------------------------------------------
 */
.simple-friend-link {
    background-color: rgba(var(--simple-card-bg-color));
    border-radius: var(--simple-border-radius-m);
}

.simple-friend-link-title {
    display: inline-block;
}

.simple-friend-link-content a {
    font-size: 14px;
    white-space: nowrap;
}

/*
 * ------------------------------------------------------------------------------
 * 底部
 * ------------------------------------------------------------------------------
 */
.simple-footer-content {
    background-color: rgba(var(--simple-card-bg-color));
    width: 100%;
}

.simple-footer-name {
    font-size: 30px;
    line-height: 40px;
    color: rgba(var(--simple-color));
    text-transform: uppercase;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.follow-icon {
    height: 40px;
    width: 40px;
    display: flex;
    background-color: rgba(var(--simple-color), .1);
    border-radius: var(--simple-border-radius-l);
}

.follow-icon:hover {
    background: rgba(var(--simple-color));
}

.follow-icon:hover i {
    color: #FFFFFF;
}

.follow-icon i {
    font-size: 20px;
    color: rgba(var(--simple-black-color));
}

.simple-footer-bottom {
    font-size: 12px;
    width: 100%;
    background: rgba(var(--simple-card-bg-color));
    color: rgba(var(--simple-black-color));
    border-top: 1px dashed rgba(var(--simple-color), .2);
}

.simple-footer-bottom a {
    color: rgba(var(--simple-black-color));
}

.simple-footer-bottom-wrap,
.simple-footer-content-wrap {
    justify-content: space-between;
}

/*
 * ------------------------------------------------------------------------------
 * 底部小工具
 * ------------------------------------------------------------------------------
 */
.footer-tools {
    position: fixed;
    bottom: 140px;
    right: 20px;
    display: flex;
    z-index: 999;
    flex-direction: column !important;
}

.footer-tools-item {
    color: rgba(var(--simple-black-color));
    width: 40px;
    height: 40px;
    font-size: 1rem;
    text-align: center;
    line-height: 40px;
    display: block;
    background: rgba(var(--simple-card-bg-color));
    padding: unset;
    border: unset;
    border-radius: var(--simple-border-radius-m, 12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
    transition: opacity .5s ease, visibility .5s ease;
}

.go-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(.8);
    transition: all .3s ease;
}

.go-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

/*
 * ------------------------------------------------------------------------------
 * 手机菜单
 * ------------------------------------------------------------------------------
 */
.simple-phone {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 999;
}

.simple-phone-wrap {
    height: 100%;
    width: 100%;
    background-color: rgba(var(--simple-card-bg-color));
    border-radius: var(--simple-border-radius-xl) var(--simple-border-radius-xl) 0 0;
    box-shadow: 0 0 3px 1px hsl(0 0 10% / 6%);
}

.simple-phone-item {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.simple-phone-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.simple-phone-item a i {
    font-size: 16px;
}

.simple-phone-item a span {
    font-size: 10px;
}

/*
 * ------------------------------------------------------------------------------
 * 产品页
 * ------------------------------------------------------------------------------
 */

.product-notice {
    background-color: rgba(var(--simple-card-bg-color));
    border-radius: var(--simple-border-radius-m);
}

.product-notice svg {
    height: 48px;
    width: 48px;
    background: rgba(var(--simple-card-bg-color));
    border: 2px solid #fac9aa;
    border-radius: var(--simple-border-radius-m);
}

.product-notice-title h1 {
    font-size: 16px;
    line-height: 22px;
}

.product-notice-desc {
    font-size: 14px;
}

.product-notice-title {
    color: rgba(var(--simple-black-color));
}

.product-notice-desc {
    color: var(--simple-grey-color);
}

.product-notice-content {
    flex: 1;
}

.product-list {
    background-color: rgba(var(--simple-card-bg-color));
    border-radius: var(--simple-border-radius-m);
}

.product-list-item {
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
}

.product-list-item:last-child {
    border-bottom: 0;
}

.product-title {
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
}

.product-title h2 {
    font-size: 24px;
    line-height: 32px;
    color: rgba(var(--simple-black-color));
}

.pl-item-content {
    flex: 1;
    width: 0;
    margin-right: 45px;
}

.day-new {
    position: relative;
    width: 5px;
    height: 5px;
    background-color: #ff0000;
    border-radius: 5px;
}

.day-new:after {
    content: "";
    background-color: #ff0000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 1;
    animation: breathing 1.5s ease infinite;
    transition: background-color 1s
}

/*呼吸灯动画*/
@keyframes breathing {
    0% {
        transform: scale(1);
        opacity: .8
    }

    to {
        transform: scale(2);
        opacity: 0
    }
}

.pl-item-icon {
    width: 32px;
    height: 32px;
    line-height: 16px;
    font-weight: 600;
    color: var(--simple-grey-color);
}

.product-lists .product-list-item:nth-child(1) .pl-item-icon {
    background: #fffbeb;
    border-radius: 50%;
    color: #f22400;
}

.product-lists .product-list-item:nth-child(2) .pl-item-icon {
    background: #f8f8f8;
    border-radius: 50%;
    color: #faa273;
}

.product-lists .product-list-item:nth-child(3) .pl-item-icon {
    background: #fff7ed;
    border-radius: 50%;
    color: #8ea8ff;
}

.pl-item-img {
    position: relative;
    height: 64px;
    width: 64px;
    border-radius: var(--simple-border-radius-m);
    overflow: hidden;
    border: 5px solid #f1f5f9;
}

.pl-item-img img {
    width: 100%;
    transition: all .35s ease;
    opacity: 1;
    transform: scale(1);
}

.pl-item-img .pl-link-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(.8);
    transition: all .35s ease;
    z-index: 2;
}

.pl-item-img .pl-link-btn i {
    font-size: 20px;
}

.pl-item-img:hover img {
    opacity: 0;
    transform: scale(.8);
}

.pl-item-img:hover .pl-link-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.pl-item-content h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 2px;
}

.pl-item-content h3 a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pl-item-content h3 a .icon-new {
    font-size: 25px;
    line-height: 12px;
    background: #efc2c7;
    padding: 2px 5px;
    color: #e64f49;
    border-radius: var(--simple-border-radius-s);
    font-weight: 300;
}

.pl-item-content h3 a .icon-xiangqing {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: all .3s ease;
}

.pl-item-content h3 a:hover .icon-xiangqing {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.pl-item-content p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--simple-grey-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pl-item-info i {
    font-size: 10px;
    padding-right: 2px;
}

.pl-item-info {
    font-size: 10px;
    margin-top: 2px;
    color: var(--simple-grey-color);
}

.pl-item-time-tady {
    color: red;
}

.pl-item-btn {
    height: 56px;
    width: 56px;
    top: 50%;
    right: 4px;
    transform: translate(0, -50%);
}

.pl-like-btn {
    width: 100%;
    height: 100%;
    transition: .2s;
    border: 2px solid #f1f5f9;
    border-radius: var(--simple-border-radius-m);
    background-color: rgba(var(--simple-card-bg-color));
    color: var(--simple-grey-color);
}

.pl-like-btn:hover {
    border-color: #ffc993;
    background-color: #fef0c7;
}

.pl-like-btn.liked {
    color: #ff6154 !important;
    border-color: #ff6154 !important;
}

.pl-like-btn.liked i {
    font-weight: 1000;
}

.pl-item-btn i {
    font-size: 16px;
}

.pl-item-btn .like-count {
    font-size: 12px;
}

.product-load-more {
    width: 100%;
}

.product-load-more button {
    width: 100%;
    color: var(--simple-grey-color);
    border: 1px dashed rgba(var(--simple-color), .2);
    border-radius: var(--simple-border-radius-m);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.product-load-more button:hover {
    border-color: #4285f4;
    background: rgba(13, 110, 253, .08);
    color: #4285f4;
}

.loaded-finish {
    background-color: unset !important;
    border: 0 !important;
    color: var(--simple-grey-color) !important;
    border-radius: 0 !important;
    cursor: unset !important;
}

/*
 * ------------------------------------------------------------------------------
 * 排行榜页
 * ------------------------------------------------------------------------------
 */
.ranking-main {
    background-color: rgba(var(--simple-card-bg-color));
    border-radius: var(--simple-border-radius-m);
}

.ranking-header {
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
}

.ranking-header-left {
    flex: 1;
}

.ranking-header-left h1 {
    font-size: 24px;
    line-height: 32px;
    color: rgba(var(--simple-black-color));
}

.ranking-header-right {
    gap: 5px;
}

.ranking-custom-select {
    position: relative;
    height: 30px;
    border-radius: var(--simple-border-radius-m);
    border: 1px solid #f2f2f2;
}

.ranking-current {
    padding: 0 10px;
    border-radius: var(--simple-border-radius-m);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: rgba(var(--simple-black-color));
    ;
}

.ranking-current i {
    margin-left: 10px;
    flex-shrink: 0;
    font-size: 12px;
    transition: .3s;
}

.ranking-custom-select.active .ranking-current i {
    transform: rotate(180deg);
}

.ranking-dropdown {
    display: grid;
    position: absolute;
    gap: 5px;
    left: 0;
    top: 32px;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    border-radius: var(--simple-border-radius-m);
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px) scale(.95);
    transition: .3s;
    z-index: 999;
}

.ranking-custom-select.active .ranking-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ranking-dropdown li {
    padding: 5px;
    border-radius: var(--simple-border-radius-m);
    cursor: pointer;
    color: rgba(var(--simple-color));
    text-align: center;
    font-size: 14px;
}

.ranking-dropdown li.active {
    background: rgba(var(--simple-color), .1);
    color: rgba(var(--simple-color));
    font-weight: 600;
}

.ranking-dropdown li:hover {
    background: rgba(var(--simple-color));
    color: #fff;
    font-weight: 600;
}

.ranking-top {
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 688px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    margin-bottom: 24px;
}

.ranking-top-item {
    border-radius: var(--simple-border-radius-xl);
}

.ranking-top-item:hover,
.ranking-top-item:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.13), 0 10px 28px rgba(15, 23, 42, 0.08);
    filter: saturate(1.05);
}

.ranking-one {
    min-height: clamp(150px, 50vw, 262px);
    padding-top: 22px;
    border: none;
    background: linear-gradient(180deg, #FFEED4 0%, #FFFEFA 100%);
}

.ranking-two {
    background: linear-gradient(180deg, #E8F3FF 0%, #FCFEFF 100%);
}

.ranking-three {
    background: linear-gradient(180deg, #FDD0C4 0%, #ffffff 100%);
}

.ranking-two,
.ranking-three {
    min-height: clamp(132px, 38vw, 226px);
    margin-top: auto;
    border: none;
    padding-top: 18px;
}


.ranking-one,
.ranking-two,
.ranking-three {
    position: relative;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, filter 0.28s ease;
    width: 100%;
}

.ranking-icon {
    width: clamp(44px, 13vw, 68px);
    height: clamp(44px, 13vw, 68px);
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: none;
    background: #E8EDF3;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
    display: inline-block;
    border: 2px solid rgba(99, 140, 220, 0.35);
}

.ranking-one .ranking-icon {
    width: clamp(52px, 15vw, 92px);
    height: clamp(52px, 15vw, 92px);
}

.ranking-icon img {
    width: 100%;
}

.ranking-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.ranking-title p {
    flex: 1;
    width: 0;
}

.ranking-one .ranking-tag {
    background: rgba(246, 183, 64, 0.1);
    color: rgb(246, 183, 64);
}

.ranking-two .ranking-tag {
    background: rgba(88, 140, 234, 0.1);
    color: rgba(88, 140, 234);
}

.ranking-three .ranking-tag {
    background: rgba(255, 4, 99, 0.1);
    color: rgb(255, 4, 99);
}

.ranking-one .ranking-tag,
.ranking-two .ranking-tag,
.ranking-three .ranking-tag {
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.ranking-one .ranking-hot {
    color: rgb(246, 183, 64);
    font-weight: 600;
}

.ranking-two .ranking-hot {
    color: rgba(88, 140, 234);
    font-weight: 600;
}

.ranking-three .ranking-hot {
    color: rgb(255, 4, 99);
    font-weight: 600;
}

.ranking-mark {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: block;
    width: auto;
    height: 32px;
    max-width: min(88px, 100%);
    object-fit: contain;
    margin: 0;
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.14));
    height: 28px;
    width: 28px;
}

.ranking-one .ranking-mark {
    width: 40px;
    height: 40px;
}

.ranking-mark img {
    width: 100%;
}

.ranking-list-head {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 80px 50px;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: rgba(var(--simple-color));
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-sizing: border-box;
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
}

.ranking-list-head-num {
    justify-content: center;
}

.ranking-list-head-axonomy,
.ranking-list-head-count {
    text-align: center;
}

.ranking-list-row {
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 80px 50px;
    align-items: center;
    gap: 12px;
    background: #fff;
    box-sizing: border-box;
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.ranking-list-num {
    align-items: center;
    justify-content: center;
    color: var(--simple-grey-color);
    font-weight: 600;
}

.ranking-list-img {
    width: clamp(15px, 15vw, 30px);
    height: clamp(15px, 15vw, 30px);
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
}

.ranking-list-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

.ranking-list-info {
    flex-direction: column;
    width: 0;
    flex: 1;
}

.ranking-list-info P {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-list-info span {
    font-size: 12px;
    color: var(--simple-grey-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-list-axonomy,
.ranking-list-hot {
    font-size: 12px;
    text-align: center;
}

.ranking-list-hot {
    color: #fc484e;
}

.ranking-list-hot i {
    font-size: 12px;
    font-weight: 600;
}

.ranking-list-axonomy span {
    background: rgba(13, 110, 253, .08);
    color: #4285f4;
    border-radius: var(--spacing);
}

/*
 * ------------------------------------------------------------------------------
 * 评论
 * ------------------------------------------------------------------------------
 */
.comment-form-content {
    background-color: rgba(var(--simple-color), .1);
    resize: vertical;
    height: auto;
    width: 100%;
    border-radius: var(--simple-border-radius-m);
    color: var(--simple-grey-color);
    font-size: 16px;
    min-height: 110px;
}

.comment-form-author,
.comment-form-email {
    background-color: rgba(var(--simple-color), .1);
    flex: 1;
    border-radius: var(--simple-border-radius-s);
    color: var(--simple-grey-color);
    font-size: 16px;
    width: 100%;
}

.comment-form-button {
    justify-content: flex-end;
}

.comment-form-cancel {
    background-color: rgba(var(--simple-color), .1);
    border-radius: var(--simple-border-radius-s);
    font-size: 14px;
    color: var(--simple-grey-color);
}

.comment-form-submit {
    background-color: rgba(var(--simple-color));
    border-radius: var(--simple-border-radius-s);
    font-size: 14px;
    color: #FFFFFF;
}

.comments-area {
    background-color: rgba(var(--simple-card-bg-color));
    border-radius: var(--simple-border-radius-m);
}

.comment-list>.comment-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
}

.comment-list>.comment-item>.comment-inner .comment-nickname {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comment-body {
    flex: 1;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.comment-avatar img {
    height: 100%;
    width: 100%;
}

.comment-nickname {
    min-height: 40px;
}

.comment-author {
    font-size: 14px;
    font-weight: 600;
}

.comment-time {
    font-size: 12px;
    color: var(--simple-grey-color);
}

.comment-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.comment-text {
    font-size: 14px;
}

.comment-children {
    position: relative;
    margin-left: 40px;
    background: #f6f6f6;
    border-radius: var(--simple-border-radius-m);
}

.comment-children:before {
    border: 9px solid #0000;
    border-bottom: 10px solid #f6f6f6;
    content: "";
    left: 15px;
    position: absolute;
    top: -19px;
}

.comment-children .comment-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
}

.comment-children .comment-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-children .comment-avatar {
    width: 24px;
    height: 24px;
}

.comment-children .comment-nickname {
    min-height: 24px;
}

.comment-children .comment-author {
    margin-right: 15px;
}

.comment-children .comment-nickname {
    display: flex;
    align-items: center;
}

.comment-children .comment-nickname .comment-meta-row {
    flex: 1;
}

.comment-children .comment-reply-quote {
    font-size: 14px;
}

.icon-admin{
    font-size: 14px!important;
    color: #e64f49;
    filter: sepia(1) saturate(4) hue-rotate(12deg) brightness(1.05);
}
/*
 * ------------------------------------------------------------------------------
 * 右边栏
 * ------------------------------------------------------------------------------
 */

.simple-sidebar {
    position: sticky;
    width: 270px;
    top: 80px;
    height: fit-content;
}

.simple-sidebar div:last-child {
    margin-bottom: 0;
}

/*
 * ------------------------------------------------------------------------------
 * 小工具
 * ------------------------------------------------------------------------------
 */

.widget {
    margin-bottom: calc(var(--spacing) * 4);
}

.simple-product-rand,
.simple-collect-new-rand {
    background-color: rgba(var(--simple-card-bg-color));
}

.simple-product-rand,
.simple-collect-new-rand,
.simple-day-hot-site {
    border-radius: var(--simple-border-radius-m);
    padding: calc(var(--spacing) * 6);
}

/*
 * ------------------------------------------------------------------------------
 * 小工具-随机、新网址
 * ------------------------------------------------------------------------------
 */

.new-rand-switch {
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-rand-switch a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
}

.new-rand-active:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2.5px;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 2px;
    background-color: rgba(var(--simple-black-color));
}

.new-rand-main {
    padding-top: 5px;
}

.new-rand-content li {
    height: 34px;
}

.new-rand-content li:nth-child(2n+1) a {
    background: rgb(247, 248, 249);
    border-radius: var(--simple-border-radius-m);
}

.new-rand-content a,
.rand-content a {
    display: flex;
    align-items: center;
}

.new-rand-img {
    display: flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--simple-border-radius-s);
}

.new-rand-img img {
    width: 100%;
    height: 100%;
}

.new-rand-title {
    flex: 1;
    width: 0;
}

.new-rand-title p {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.skeleton-item {
    height: 34px;
    border-radius: var(--simple-border-radius-m);
    background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
    background-size: 400% 100%;
    animation: skeleton 1.2s ease infinite;
}

@keyframes skeleton {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.new-rand-img img {
    background: #f5f5f5;
}

/*
 * ------------------------------------------------------------------------------
 * 小工具-随机产品
 * ------------------------------------------------------------------------------
 */

.product-rand-header {
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
    margin-left: calc(var(--spacing) * -6);
    margin-right: calc(var(--spacing) * -6);
}

.product-rand-header h3 {
    font-size: 16px;
    color: rgba(var(--simple-black-color));
}

.simple-product-item-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f1f5f9;
}

.simple-product-item-img img {
    width: 100%;
}

.simple-product-item-content {
    flex: 1;
    width: 0;
}

.simple-product-item-title {
    font-size: 14px;
    color: rgba(var(--simple-black-color));
    font-weight: 600;
}

.simple-product-item-info {
    font-size: 12px;
    color: var(--simple-grey-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.simple-product-item-info i {
    font-size: 12px;
}

.simple-product-item-go {
    width: 30px;
    height: 30px;
    border: 2px solid #f1f5f9;
    border-radius: 50%;
}

.simple-product-item-go a {
    width: 100%;
    height: 100%;
}

/*
 * ------------------------------------------------------------------------------
 * 小工具-今日热门
 * ------------------------------------------------------------------------------
 */
.widget_simple_day_hot_widget {
    position: relative;
    border-radius: var(--simple-border-radius-m);
    overflow: hidden;
    background: linear-gradient(135deg, #FEFAF2, #FFFFFF);
    border: 1px solid #FEEFB3;
}

.widget_simple_day_hot_widget::before {
    content: '';
    position: absolute;
    inset: -150%;
    background:
        conic-gradient(transparent 0deg,
            transparent 310deg,

            #ff9800 325deg,
            #ff4fd8 345deg,
            #7b61ff 360deg);
    animation: simpleHotRotate 4s linear infinite;
    z-index: 0;
}

.widget_simple_day_hot_widget::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: calc(var(--simple-border-radius-m) - 1px);
    background: linear-gradient(135deg, #FEFAF2, #FFFFFF);
    z-index: 1;
}

.widget_simple_day_hot_widget>* {
    position: relative;
    z-index: 2;
}

@keyframes simpleHotRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.csimple-dhs-main {
    display: flex;
    flex-direction: column;
    margin-top: calc(var(--spacing) * -4);
}

.simple-dhs-header {
    border-bottom: 1px dashed rgba(var(--simple-color), .2);
    margin-left: calc(var(--spacing) * -6);
    margin-right: calc(var(--spacing) * -6);
}

.simple-dhs-header h3 {
    font-size: 16px;
    color: rgba(var(--simple-black-color));
}

.simple-day-hot-item {
    flex: 1;
}

.simple-dhs-item-rank {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 14px;
    transform: skew(345deg, 0deg);
    color: var(--simple-grey-color);
    font-weight: 600;
}

.simple-dhs-main .simple-day-hot-item:nth-child(1) .simple-dhs-item-rank {
    color: #f22400;
}

.simple-dhs-main .simple-day-hot-item:nth-child(2) .simple-dhs-item-rank {
    color: #faa273;
}

.simple-dhs-main .simple-day-hot-item:nth-child(3) .simple-dhs-item-rank {
    color: #8ea8ff;
}

.simple-dhs-item-content {
    flex: 1;
}

.simple-dhs-item-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f1f5f9;
}

.simple-dhs-item-img img {
    width: 100%;
}

.simple-dhs-item-info {
    flex: 1;
    width: 0;
}

.simple-dhs-item-title {
    font-size: 14px;
    color: rgba(var(--simple-black-color));
    font-weight: 600;
}

.simple-dhs-item-info i {
    font-size: 12px;
    color: var(--simple-grey-color);
}

.simple-dhs-item-info p {
    font-size: 12px;
    color: var(--simple-grey-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.simple-dhs-item-hot-views {
    font-size: 12px;
    color: #fc484e;
    display: flex;
    align-items: center;
}

.simple-dhs-item-hot-views i {
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-right: 3px;
    font-weight: 600;
}


/*
 * ------------------------------------------------------------------------------
 * 底部通知
 * ------------------------------------------------------------------------------
 */
#notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(var(--simple-color));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, height 0.5s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
}

#notification.show {
    opacity: 1;
    height: 40px;
    overflow: visible;
}

.notification-content {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.notification-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-close {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}
.notification-close:hover {
  transform: translateY(-50%) rotate(180deg);
}

/*
 * ------------------------------------------------------------------------------
 * 返回提示
 * ------------------------------------------------------------------------------
 */
.toast-wrap {
    position: fixed;
    bottom: 30px;
    right: 0;
    transform: translateX(-20px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-item {
    border-radius: var(--simple-border-radius-m);
    color: #fff;
    font-size: 12px;
    min-width: 100px;
    text-align: center;
    animation: toastIn 0.25s ease forwards;
}

.toast-item i {
    font-size: 12px;
}

.toast-success {
    background-color: #28a745;
}

.toast-error {
    background-color: #dc3545;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.toast-out {
    animation: toastOut 0.25s ease forwards;
}

/*
 * ------------------------------------------------------------------------------
 * 提示工具
 * ------------------------------------------------------------------------------
 */

.simple-tooltip {
    position: absolute;
    max-width: 180px;
    background-color: #000000;
    color: #fff;
    font-size: 14px;
    border-radius: var(--simple-border-radius-l);
    z-index: 1000;
    display: none;
    text-align: justify;
    line-height: 1.5;
}

.simple-tooltip img {
    border-radius: var(--simple-border-radius-s);
}

.simple-tooltip::after {
    content: '';
    position: absolute;
    border-width: 5px;
    border-style: solid;
}

.simple-tooltip.top::after {
    border-color: #000000 transparent transparent transparent;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.simple-tooltip.bottom::after {
    border-color: transparent transparent #000000 transparent;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.simple-tooltip.left::after {
    border-color: transparent transparent transparent #000000;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.simple-tooltip.right::after {
    border-color: transparent #000000 transparent transparent;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

/*
 * ------------------------------------------------------------------------------
 * 跳动图片动画
 * ------------------------------------------------------------------------------
 */
.simple-site a:hover .site-def-url-img img,
.simple-site a:hover .site-one-url-img img,
.simple-site a:hover .site-two-url-img img,
.simple-site a:hover .site-thr-url-img img {
    animation: jumps 1.2s ease 1
}

@keyframes jumps {
    0% {
        transform: translate(0)
    }

    10% {
        transform: translateY(8px) scaleX(1.2) scaleY(0.8)
    }

    30% {
        transform: translateY(-5px) scaleX(1) scaleY(1) rotate(5deg)
    }

    50% {
        transform: translateY(3px) scale(1) rotate(0)
    }

    55% {
        transform: translateY(0) scaleX(1.1) scaleY(0.9) rotate(0)
    }

    70% {
        transform: translateY(-5px) scaleX(1) scaleY(1) rotate(-2deg)
    }

    80% {
        transform: translateY(0) scaleX(1) scaleY(1) rotate(0)
    }

    85% {
        transform: translateY(0) scaleX(1.05) scaleY(0.95) rotate(0)
    }

    to {
        transform: translateY(0) scaleX(1) scaleY(1)
    }
}

/*
 * ------------------------------------------------------------------------------
 * 自适应
 * ------------------------------------------------------------------------------
 */
@media (max-width: 1201px) {

    .simple-footer-content,
    .simple-footer-bottom {
        padding: 0 15px;
    }

    .simple-wrap {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media (max-width: 992px) {

    .logo,
    .simple-header-right {
        height: 34px;
    }

    .simple-hr-item {
        height: 34px;
        width: 34px;
    }

    /*俩边栏*/
    .simple-side,
    .simple-sidebar {
        top: 74px;
    }

    .simple-side {
        display: none;
    }

    .index .simple-side {
        display: block;
    }

    /*产品页*/
    .product-nav,
    .simple-collect-left {
        display: none;
    }

    /*默认卡片数量*/
    .site-def-card-item {
        width: 33.33%;
    }

    /*搜索*/
    .search-wrap {
        margin-left: auto;
        padding: 0 10px;
    }

    /*手机底部空出*/
    .simple-footer-bottom {
        padding-bottom: 50px !important;
    }
}

@media (max-width: 768px) {

    .logo,
    .simple-header-right {
        height: 30px;
    }

    .index .simple-wrap {
        padding: 0px;
        margin-top: 0px;
    }

    .simple-friend-link,
    .simple-collect {
        border-radius: 0;
    }

    /*俩边栏*/
    .simple-side,
    .simple-sidebar {
        display: none !important;
    }

    /*默认卡片数量*/
    .site-def-card-item {
        width: 33.33%;
    }

    /*大分类介绍*/
    .term-desc {
        display: none;
    }

    /*手机菜单*/
    .simple-phone {
        display: block;
    }

    /*产品页*/
    .product-content {
        margin-right: 0 !important;
    }

    .product-title h2 {
        font-size: 18px;
        line-height: 20px;
    }

    .pl-item-img {
        height: 40px;
        width: 40px;
    }

    .pl-item-content h3 {
        font-size: 14px;
    }

    .pl-item-content p {
        font-size: 10px;
    }

    .pl-item-btn {
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 576px) {

    /*默认卡片数量*/
    .site-def-card-item {
        width: 50%;
    }

    /*浏览记录*/
    .simple-history-content {
        min-width: 240px;
    }

    .simple-history-list a {
        width: 50%;
    }

    .simple-history-list a:nth-child(3n+1) {
        padding-left: 20px;
    }

    .simple-history-list a:nth-child(3n+1)::before {
        left: 12px;
    }

    .simple-history-list a:nth-child(2n+1) {
        padding-left: 11px;
    }

    .simple-history-list a:nth-child(2n+1)::before {
        left: 3px;
    }

    /*底部*/
    .simple-footer-content-wrap {
        padding: 12px 0;
    }

    .simple-footer-name {
        font-size: 20px;
        line-height: 35px;
    }

    .follow-icon {
        height: 35px;
        width: 35px;
    }

    .footer-neme {
        margin: 0;
    }

    .footer-copyright,
    .footer-beian {
        display: none;
    }
}