:root {
    --thm-font: "Open Sans Light", "Open Sans", "Microsoft Yahei", 微软雅黑, Arial;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #b2b2b2;
    --thm-gray-n: #eaeaea;
    --thm-gray-rgb: 123, 121, 129;
    /* 主题色建议 */
    --main-color: #ffb1a1;      /* 主色（淡粉色） */
    --accent-color: #BFD7ED;    /* 辅色（淡蓝色） */
    --emphasis-color: #333333;  /* 强调色（黑色） */
    --highlight-color: #FF7F6C; /* 按钮/高亮（橙粉） */
    --hover-color: #fa8e7d;     /* 鼠标悬停色（主色加亮） */
    --active-color: #ffb6a7;    /* active色（主色加深） */
    --thm-primary: var(--main-color);
    --thm-primary-rgb: 247, 207, 199;
    --thm-primary-hover: var(--highlight-color);
    --thm-secondary: var(--accent-color);
    --thm-secondary-rgb: 191, 215, 237;
    --thm-accent: var(--highlight-color);
    --thm-accent-rgb: 255, 127, 108;
    --thm-black: var(--emphasis-color);
    --thm-black-rgb: 51, 51, 51;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-extra: #fe5c24;
    --thm-extra-rgb: 254, 92, 36;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-red: #ff0000;
    --thm-bdr-color: #dae3e9;
    --thm-bdr-color-rgb: 218, 227, 233;
    --thm-bdr-color-menu: #015291;
    --thm-bdr-color-menu-rgb: 1, 82, 145;
    --thm-dark: #0094e7;
    --thm-dark-rgb: 0, 148, 231;
    --thm-light: #ecf5ff;
    --thm-light-rgb: 236, 245, 255;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

::-webkit-scrollbar-thumb {
    height: 4px;
    background-color: #ccc;
    border-radius: 3px;
}

body ::-webkit-scrollbar, div ::-webkit-scrollbar, html ::-webkit-scrollbar {
    width: 4px;
    height: 5px;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
}
ul,li{
    list-style-type: none;
}
.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
}

.container {
    padding:0;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

canvas {
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    outline: none;
}
.form-group{display: flex;}
.form-group label{width: 100px;}
.form-group input{width: 100%; border: 0; 
    outline: none;
    resize: none;
    padding: 12px 14px;
    border-radius: 5px;
    font-size: 13px;
    box-shadow: none;}
.form-group input:focus{border-color: var(--thm-primary);box-shadow: none;color: #606266;}
.form-group input::-webkit-input-placeholder{color: #d9d7d7;}
.form-group input::-moz-placeholder{color: #d9d7d7;}
.form-group input:-ms-input-placeholder{color: #d9d7d7;}
.form-group input:-moz-placeholder{color: #d9d7d7;}
.form-group textarea{width: 100%; border: 0; 
    outline: none;
    resize: none;
    padding: 12px 14px;
    border-radius: 5px;
    font-size: 13px;
    box-shadow: none;}
.form-group textarea::-webkit-input-placeholder{color: #d9d7d7;}
.form-group textarea::-moz-placeholder{color: #d9d7d7;}
.form-group textarea:-ms-input-placeholder{color: #d9d7d7;}
.form-group textarea:-moz-placeholder{color: #d9d7d7;}
/* 
清除浮动
*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--thm-primary);
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px 40px;
    border-radius: 5px;
    transition: all 0.3s linear;
    overflow: hidden;
    letter-spacing: 0.1em;
    z-index: 1;
}
.thm-btn::before,
.thm-btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--thm-black);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}
.thm-btn .loading-icon{
    vertical-align: middle; 
}
.loading-wrapper {
    display: flex;
    align-items: center;
}
.loading-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 5px;
}
@keyframes spin {
    to {
      transform: rotate(360deg);
    }
}
.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}

.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.text-center{
    text-align: center;
}
.section-title {
    padding-bottom: 40px;
    font-family: "Open Sans Light";
    display: grid;
    justify-content: center;
    align-items: center;
}

.section-title .section-title__top {
    font-size: 24px;
    padding-top: 10px;
    color: #00cdfb;
    font-weight: 300;
    text-transform: uppercase;
}
.section-title .section-title__title {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--thm-primary);
    text-align: center;
}
.section-title .section-title__title i{
    width: 100px;
    height: 1px;
    display: inline-block;
    border-top: 1px solid #ccc;
    margin: 10px;
}
.section-title .section-title__more{
    margin-top: 15px;
    display: block;
}
.section-title .section-title__more a{
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    width: 150px;
    height: 35px;
    color: var(--thm-base);
    border: 1px solid var(--thm-primary);
    text-align: center;
    line-height: 35px;
}
.section-title .section-title__more a:hover{
    background-color: var(--thm-dark);
    color: var(--thm-base);
    cursor: pointer;
}
.section-title .section-title__desc {
    display: block;
    font-size: 22px;
    font-weight: lighter;
    color: #000;
    text-align: center;
    height: 40px;
    line-height: 40px;
}

/* scroll to top */
.footer-scroll{
    height: 200px;
    bottom: 250px;
    position: fixed;
    width: 65px;
    right: 0;
    z-index: 999;
    padding-left: 10px;
}
.footer-scroll .footer-scroll__single{
    width: 100%;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}
.footer-scroll .footer-scroll__single a {
    display: block;
    width: 44px;
    height: 44px;
    background-color: var(--thm-dark);
    margin-bottom: 4px;
    cursor: pointer;
    outline: none;
}
.footer-scroll .footer-scroll__single a:last-child{
    background: #D2D3D6;
}
.footer-scroll .footer-scroll__single a.active,.footer-scroll .footer-scroll__single a:hover {
    background: #30b0f1;
}
.footer-scroll .footer-scroll__single-content{
    display: flex;
    width: 223px;
    background: #fff;
    position: absolute;
    right: 60px;
    min-height: 90px;
    border: 1px solid #E0E1E5;
    border-radius: 3px;
    box-shadow: 0px 2px 5px 0px rgba(161, 163, 175, 0.11);
    opacity: 0;
    visibility: hidden;
}
.footer-scroll .footer-scroll__single-content a:hover{
    color: var(--thm-dark);
}

/*--------------------------------------------------------------
# Pager Box
--------------------------------------------------------------*/
.list-pager{
    margin: 10px 0px 10px 0px;
}
.list-pager .list-pager__inner{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:微软雅黑;
    font-size: 14px;
}

.pager a,.pager span{
    display:block;
    float:left;
    margin:8px 8px 0 0;
    padding: 2px 12px;
    border: 1px #cccccc solid;
    background: #fff;
    text-decoration: none;
    color: #808080;
}
.pager a:hover{
    color:var(--thm-dark);
    border:1px var(--thm-dark) solid;
}
.pager span{
    border:0;
}
.pager a.js-selected{
    background: var(--thm-dark);
    border-color: var(--thm-dark);
    color:#fff;
    cursor:default;
}

.pager a.js-disabled{
    cursor:default;
    color: #bbb;
    border: 1px #ccc solid;
    background: #fcfcfc;
}
.list-pager .list-pager__inner .list-pager__page-info{
    margin-top:8px;
    color: #666;
}
.list-pager .list-pager__inner .list-pager__page-info span{
    padding: 0 5px;
    color: var(--thm-primary-fa);
}
.list-pager .list-pager__inner .list-pager__page-info .records{
    /* margin-left: 15px; */
    line-height: 40px;
    height: 40px;
    font-size: 13px;
    color: #808080;
    display: flex;
}
/*-------------------
    Header Style
---------------------*/
.page-header {
    position: relative;
    display: block;
    height: 220px;
    z-index: 1;
}
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 1;
}

.page-header-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 570px;
    background-repeat: no-repeat;
}

.page-header__inner {
    height: 220px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header__inner h2 {
    font-size: 25px;
    color: var(--thm-base);
    line-height: 50px;
    font-weight: 400;
}

.main-header,
.main-menu,
.main-menu_fixed {
    background: linear-gradient(90deg, #F7CFC7 70%, #BFD7ED 100%) !important;
    box-shadow: 0 2px 8px rgba(191,215,237,0.08);
    border-bottom: 1.5px solid #BFD7ED;
}

.main-header__top {
    position: relative;
    display: block;
    padding: 0px 80px;
    background-color: var(--thm-black);
}

.main-header__top-inner {
    position: relative;
    display: block;
    padding: 1.5px 0;
}

.main-header__top-left {
    position: relative;
    display: block;
    float: left;
}

.main-header__top-right {
    position: relative;
    display: flex;
    float: right;
    align-items: center;
}

.main-header__top-right-text {
    margin-right: 30px;
}

.main-header__top-right-text p {
    font-size: 12px;
    margin: 0;
    color: #ada8ba;
}

.main-header__top-right-text p span {
    color: var(--thm-extra);
}

.main-header__top-right-social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 10px 0;
}

.main-header__top-right-social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header__top-right-social a:hover {
    color: var(--thm-extra);
}

.main-header__top-right-social a+a {
    margin-left: 25px;
}

.main-menu {
    position: relative;
    z-index: 91;
}

.main-menu-wrapper {
    position: relative;
    display: block;
}

.main-menu-wrapper-inner {
    display: block;
    position: relative;
}
.main-menu-wrapper-inner .main-menu-wrapper__left {
    position: relative;
    display: flex;
    float: left;
    width: 90%;
}
.main-menu-wrapper-inner .main-menu-wrapper__right {
    position: relative;
    display: flex;
    float: right;
    align-items: center;
    width: 10%;
    justify-content: end;
}
.main-menu-wrapper-inner .main-menu-wrapper__right .main-menu-wrapper__search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-wrapper-inner .main-menu-wrapper__right .split{
    display: block;
    line-height: 70px;
    height: 30px;
    width: 2px;
    background: var(--thm-gray);
    margin-right: 25px;
}
.main-menu-wrapper-inner .main-menu-wrapper__right .main-menu-wrapper__search-box .main-menu-wrapper__search{
    font-size: 24px;
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    line-height: 70px;
}

.main-menu-wrapper-inner .main-menu-wrapper__right .main-menu-wrapper__search-box .main-menu-wrapper__search:hover {
    color: var(--thm-primary);
    cursor: pointer;
    transform: scale(1.1);

}

.main-menu-wrapper__top {
    padding: 0 0 0 0;
    background: transparent;
}
.main-menu-wrapper__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0;
}
.main-menu-wrapper__desc {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.main-menu-wrapper__desc a{
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-menu-wrapper__opt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.main-menu-wrapper__opt ul {
    display: flex;
    align-items: center;
    gap: 1px;
    margin: 0;
    padding: 0;
}
.main-menu-wrapper__opt ul li {
    margin: 0;
    padding: 0;
}
.main-menu-wrapper__opt ul li a,
.main-menu-wrapper__opt ul li .nickname {
    font-size: 15px;
    color: #333;
    padding: 6px 12px;
    transition: background 0.2s, color 0.2s;
    background: transparent;
    display: inline-block;
}
.main-menu-wrapper__opt ul li a:hover,
.main-menu-wrapper__opt ul li .nickname:hover {
    color: #5c5b5b;
}
.main-menu-wrapper__opt ul li .nickname {
    color: #333;
    font-weight: 600;
}
.main-menu-wrapper__opt ul li .pictrue img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #F7CFC7;
    margin-right: 4px;
}
.main-menu-wrapper__opt ul li .login_info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 2px;
    transition: all 0.3s ease;
}
.main-menu-wrapper__opt ul li .login_info .pictrue {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--thm-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-menu-wrapper__opt ul li .login_info .pictrue img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-menu-wrapper__opt ul li .login_info:hover .pictrue img {
    transform: scale(1.1);
}

.main-menu-wrapper__opt ul li .login_info .nickname {
    color: var(--thm-black);
    font-size: 15px;
    font-weight: 500;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
    padding: inherit;
}


.main-menu-wrapper__opt ul li .login_info .dropdown-login {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    width: 140px;
    background: var(--thm-base);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.main-menu-wrapper__opt ul li .login_info:hover .dropdown-login {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu-wrapper__opt ul li .login_info .dropdown-login::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: var(--thm-base);
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.main-menu-wrapper__opt ul li .login_info .dropdown-login a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--thm-black);
    font-size: 14px;
    transition: all 0.3s ease;
}

.main-menu-wrapper__opt ul li .login_info .dropdown-login a:hover {
    background: #f2f1f1;
}

.login-status-overlay {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-status-overlay-content {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-status-overlay-content i {
    color: #454545;
    font-size: 16px;
    animation: spin 1s linear infinite !important;
}

/* 确保FontAwesome图标也能旋转 */
.login-status-overlay-content .fa-spinner,
.login-status-overlay-content .fa-spin {
    animation: spin 1s linear infinite !important;
}

/* 纯CSS旋转图标备用方案 */
.login-status-overlay-content .spinner-fallback {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #c3c3c3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .main-menu-wrapper__top-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .main-menu-wrapper__desc {
        justify-content: flex-start;
    }
    .main-menu-wrapper__opt {
        justify-content: flex-end;
}
    .main-menu-wrapper__opt ul {
        gap: 16px;
    }
    .main-menu-wrapper__opt ul li a,
    .main-menu-wrapper__opt ul li .nickname {
        font-size: 15px;
        padding: 6px 10px;
}
}
@media (max-width: 767px) {
    .main-header,
    .main-menu,
    .main-menu_fixed {
        padding: 0 0 0 0;
}
    .main-menu-wrapper__top-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .main-menu-wrapper__desc {
        justify-content: flex-start;
        margin-bottom: 6px;
}
    .main-menu-wrapper__desc span{display: none;}
    .main-menu-wrapper__opt {
        justify-content: flex-end;
}
    .main-menu-wrapper__opt ul li a,
    .main-menu-wrapper__opt ul li .nickname {
        font-size: 15px;
        padding: 6px 10px;
        margin-bottom: 2px;
        position: relative;
    }
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    position: relative;
    height: 52px;
    line-height: 52px;
    font-size: 15px;
    letter-spacing: 0.2pt;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    text-align: center;
    display: block;
    color: #2f373d;
    font-size: 18px;
    padding: 10px 34px 30px 34px;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    position: relative;
    transition: all 500ms ease;
}

.main-menu .main-menu__list {
    width: 100%;
}
.main-menu .main-menu__list>li.dropdown>a::after{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.main-menu .main-menu__list>li.dropdown:hover>a::after{
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color:var(--thm-primary);
    font-weight: 500;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
    transform: scale(1) translateY(-50%);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    z-index: 999;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 90px;
    color: var(--thm-base);
    transition: all 0.5s;
    overflow: hidden;
    transform-origin: top center;
    transform: scale(1, 0);
    margin-top: 0px;
    border: 0px solid rgba(0, 0, 0, 0.15) !important;
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}
.main-menu .main-menu__list li.dropdown ul{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
    transform: scale(1); 
}

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
    border-top: 1px solid RGBA(var(--thm-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    font-size: 14px;
    line-height: 40px;
    display: block;
    transition: 500ms;
    overflow: hidden;
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.main-menu .main-menu__list li ul li{
    border: 2px solid var(--thm-base);
}
.main-menu .main-menu__list li ul li:hover,
.stricky-header .main-menu__list li ul li:hover {
    background-color: var(--thm-light);
}
/* .main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    transform: scale(1);  
} */

.main-menu .main-menu__list li ul li>a.active,
.stricky-header .main-menu__list li ul li>a.active {
    background-color: var(--thm-light);
}
.main-menu_fixed {
    position: fixed;
    z-index: 1049 !important;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
    top: 0;
}
.main-menu.main-menu_fixed .main-menu__list li ul{
    top: 80px;
}
.main-menu.main-menu_fixed .main-menu-wrapper__center{
    height: 90px;
}
.stricky-header {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important
    }
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 30px;
    color: var(--thm-primary);
    cursor: pointer;
    transition: 500ms;
    line-height: 75px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-black);
}

.main-menu .mobile-nav__language-box{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 12px;
    -webkit-tap-highlight-color: #fff;
    transition: all 300ms ease;
}
.mobile-nav__language-box .mobile-language-box{
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 15px;
    border: 2px solid var(--thm-primary);
    border-radius: 3px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    transition: all 300ms ease;
    line-height: 15px;
}
.mobile-language-box-expand{
    border-top:1px solid var(--thm-primary);
    border-right:1px solid var(--thm-primary);
    border-left:1px solid var(--thm-primary);
}

.mobile-language-box__current{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    padding: 5px 2px 5px 7px;
}
.mobile-language-box__current i{
    margin-left: 10px;
}

.mobile-language-box ul{
    position: absolute;
    top: 98%;
    left: -2px;
    width: 54px;
    line-height: 28px;
    background-color: #fff;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: color #fff ease;
    z-index: 99;
    overflow: hidden;
    flex-wrap: wrap;
    text-align: center;
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-right:2px solid var(--thm-primary);
    border-left:2px solid var(--thm-primary);
    border-bottom: 2px solid var(--thm-primary);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 4px;
}
.mobile-language-box ul li{
    position: relative;
    display: flex;
    width: 100%;
    line-height: 30px;
    text-align: center;
    justify-content: center;
}
.mobile-language-box ul li.active{
    color: var(--bs-white);
    background-color: var(--thm-primary);
}
.mobile-language-box ul li.active>a{
    color: var(--bs-white);
}

.main-header-two {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {

    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        -webkit-transform: translate(40px, 60px) rotate(0deg);
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@-moz-keyframes service_hexagon_2 {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -moz-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@-o-keyframes service_hexagon_2 {
    0% {
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: #5d5b5b;
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    scrollbar-color: var(--thm-primary) var(--thm-black);
    &::-webkit-scrollbar {
        width: 5px;
    }
    &::-webkit-scrollbar-track {
        background: var(--thm-primary);
    }
    &::-webkit-scrollbar-thumb {
        background-color: var(--thm-primary);
        border: 3px solid var(--thm-primary);
    }
    ::-webkit-scrollbar-thumb {  
        background: var(--thm-primary);
    }  
    &::-webkit-scrollbar-thumb:hover {
        background-color: var(--thm-black);
    }

}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav__content .logo-box {
    margin-bottom: 30px;
    display: flex;
}
.mobile-nav__content .logo-box img{
    /* width: 55px;
    height: 69px; */
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--thm-text-dark);
    cursor: pointer;
}

.mobile-nav__content .mobile-nav__search {
    margin-bottom: 20px;
}

.mobile-nav__content .mobile-nav__search form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.mobile-nav__content .mobile-nav__search form input[type="search"],
.mobile-nav__content .mobile-nav__search form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 13px;
    border: none;
    outline: none;
    height: 40px;
    padding-left: 10px;
    color: #a29b9b;
}
.mobile-nav__content .mobile-nav__search form input[type="search"],
.mobile-nav__content .mobile-nav__search form input[type="text"]:focus{
    color: #958f8f;
}

.mobile-nav__content .mobile-nav__search .thm-btn {
    font-size: 18px;
    padding: 0;
    width: 50px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-primary);
}
.mobile-nav__content .mobile-nav__search .thm-btn::after{
    background-color: var(--thm-primary);
}
.mobile-nav__content .mobile-nav__search .thm-btn i {
    margin: 0;
}
.mobile-nav__content .mobile-nav__search-keyword{
    margin-top: 1px;
    font-size: 2px;
    color: var(--bs-white);
    display: flex;
    position: relative;
}
.mobile-nav__content .mobile-nav__search-keyword span{
    width: auto;
}
.mobile-nav__content .mobile-nav__search-keyword ul {
    font-size: 15px;
    margin-left: 10px;
}
.mobile-nav__content .mobile-nav__search-keyword ul li{
    color: var(--bs-white);
    margin-left: 5px;
    margin-right: 5px;
    float: left;
}
.mobile-nav__content .mobile-nav__search-keyword li a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #ada8ba;
    transition: all 500ms ease;
}
.mobile-nav__content .mobile-nav__search-keyword ul li a:hover{
    color: var(--bs-white);
}

.mobile-nav__content .hot_keyword_search li a::after{
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left center;
    background-color: currentColor;
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-primary);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 1px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--thm-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
    border: 2px solid #284458;
    padding: 1px;
    height: 150px;
    width: 150px;
    overflow: hidden;
}
.mobile-nav__social img{
    width: 100%;
    height: 100%;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-primary);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-primary);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--thm-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}
/*--------------------------------------------------------------
# Overlay start
--------------------------------------------------------------*/
.overlay{position: absolute; top: 0; left: 0px; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.1); z-index:998;}
.overlay-content{position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 13px;}
.overlay.bg-white{background: var(--bs-white);}
.overlay.bg-f{background: #f7f7f7;}
.overlay.min-width-45{min-width: 45px;}
.overlay .color-white{color: var(--bs-white);}
.overlay .color-gray{color: var(--thm-gray);}
.overlay .color-primary{color: var(--thm-primary);}

/*--------------------------------------------------------------
# Overlay end
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer start
--------------------------------------------------------------*/
/** 书籍商城底部重构样式 START **/
.site-footer, .book-footer {
    background: linear-gradient(120deg, #F7CFC7 60%, #BFD7ED 100%);
    color: #333;
    border-top: 3px solid #BFD7ED;
    padding-top: 32px;
    font-family: var(--thm-font);
    z-index: 1001;
    position: relative;
}
.site-footer__top-inner, .book-footer__top-inner {
    padding-bottom: 20px;
}
.footer-widget__column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 120px;
    padding: 0 18px;
}
.footer-widget__column .unsubscribe{
    margin-left:10px;
}
.footer-widget__column .unsubscribe a{
    color:var(--thm-primary);
}
.footer-widget__column .unsubscribe a:hover{
    color:var(--thm-primary);
}
.footer-widget__title, .footer-widget__title-last {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.book-footer__slogan {
    font-size: 16px;
    color: #FF7F6C;
    font-family: 'KaiTi', 'STKaiti', cursive;
    font-weight: 500;
    text-align: right;
    margin-bottom: 4px;
    margin-top: 8px;
}
.book-footer__author {
    text-align: right;
    font-size: 14px;
    color: #FF7F6C;
    margin-top: 0;
    margin-right: 0;
    padding-right: 8px;
}
.footer-widget__links-list {
    margin: 0;
    padding: 0;
}
.footer-widget__links-list li,
.footer-widget__links-list a {
    color: #333;
    line-height: 2.2;
    transition: color 0.3s;
}
.footer-widget__links-list a:hover {
    color: #FF7F6C;
}
.book-footer__btn:hover, .footer-widget__links-list button:hover {
    background: #F7CFC7;
    color: #333;
}
.book-footer__bookimg img {
    height: 54px;
    opacity: 0.85;
    margin-top: 10px;
}
.site-footer__bottom, .book-footer__bottom {
    border-top: 1.5px solid #BFD7ED;
    background: transparent;
    margin-top: 10px;
    padding: 8px 0 0 0;
}
.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}
.book-footer__copyright, .book-footer__beian {
    color: #888;
    font-size: 14px;
    text-align: left;
    margin: 0;
    padding: 2px 0;
}
@media (max-width: 991px) {
    .footer-widget__column {
        min-height: unset;
        padding: 0 6px;
    }
    .book-footer__slogan, .book-footer__author {
        text-align: left;
        margin-right: 0;
        padding-right: 0;
}
    .book-footer__bookimg {
        display: none;
    }
    .footer-widget__title, .footer-widget__title-last {
        text-align: left;
    }
    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}
@media (max-width: 767px) {
    .site-footer__top-inner .row, .book-footer__top-inner .row {
        display: block;
}
    .footer-widget__column {
        margin-bottom: 12px;
        padding-bottom: 0;
        border-bottom: none;
}
    .footer-widget__title, .footer-widget__title-last {
        font-size: 15px;
}
    .book-footer__slogan {
        font-size: 15px;
}
    .book-footer__author {
        font-size: 13px;
        text-align: right;
        padding-right: 8px;
}
.site-footer__bottom-inner {
        flex-direction: column;
    align-items: center;
        text-align: center;
}
    .book-footer__copyright, .book-footer__beian {
        text-align: center;
    width: 100%;
    }
}
/** 书籍商城底部重构样式 END **/

.mt20{margin-top: 20px;}
/*--------------------------------------------------------------
# Search Popup Start
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}
.search-popup.active {
    transform: translateY(0%);
}
.search-popup.active .search-popup__content .search-popup__close{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.search-popup .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.8;
    cursor: pointer;
    z-index: 9999;
}
.search-popup .search-popup__content {
    width: 100%;
    max-width: 560px;
    z-index: 9999;
}
.search-popup .search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}
.search-popup .search-popup__content form input[type="search"],
.search-popup .search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
    color: #a29b9b;
}
.search-popup .search-popup__content form input[type="search"],
.search-popup .search-popup__content form input[type="text"]:focus{
    color: #908989;
}
.search-popup .search-popup__content .thm-btn {
    font-size: 24px;
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-primary);
}
.search-popup .search-popup__content .thm-btn i {
    margin: 0;
}
.search-popup .search-popup__content .hot_keyword_search{
    margin-top: 15px;
    font-size: 15px;
    color: var(--bs-white);
    display: flex;
    position: relative;
}
.search-popup .search-popup__content .close-style {
    background: none;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 0;
    z-index: 9;
}
.search-popup .search-popup__content .search-popup__close{
    width: 45px;
    height: 45px;
    top: 12%;
    right: 100px;
    margin: auto 0;
    -webkit-transition: all 300ms ease 0.8s;
    -o-transition: all 300ms ease 0.8s;
    transition: all 300ms ease 0.8s;
    -webkit-transform: translateY(-500px);
    -ms-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0;
    visibility: hidden;
}
.search-popup .search-popup__content .close-style:before,.search-popup .search-popup__content  .close-style:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;    
    width: 30px;
    height: 3px;
    background: var(--thm-base);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.search-popup .search-popup__content .close-style:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.search-popup .search-popup__content .close-style:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.search-popup .search-popup__content .close-style:hover:before,.search-popup .search-popup__content  .close-style:hover:after,
.search-popup .search-popup__content .close-style:focus:before,.search-popup .search-popup__content  .close-style:focus:after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.search-popup .search-popup__content .close-style:focus {
    outline-color: #252525;
}
.search-popup .search-popup__content .hot_keyword_search span{
    width: auto;
}
.search-popup .search-popup__content .hot_keyword_search ul {
    font-size: 15px;
    margin-left: 10px;
}
.search-popup .search-popup__content .hot_keyword_search ul li{
    color: var(--bs-white);
    margin-left: 5px;
    margin-right: 5px;
    float: left;
}
.search-popup .search-popup__content .hot_keyword_search li a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #ada8ba;
    transition: all 500ms ease;
}
.search-popup .search-popup__content .hot_keyword_search ul li a:hover{
    color: var(--bs-white);
}
.search-popup .search-popup__content .hot_keyword_search li a::after{
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left center;
    background-color: currentColor;
    transition: transform 500ms ease;
}
/*--------------------------------------------------------------
# Search Popup End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# List Public Start
--------------------------------------------------------------*/
.list__single-img{
    position: relative;
    overflow: hidden;
}
.list__single-img img{
    transition: all 500ms ease;
}

.list__img-none{
    position: absolute;
    width: 100%; 
    height: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background: #f5f7fa;
    color: #a8abb2;
    vertical-align: middle;
}
/*--------------------------------------------------------------
# List Public End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# animate.css Start
--------------------------------------------------------------*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes fadeInDown {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
/*------------------------------------------------------------
# animate.css End
--------------------------------------------------------------*/

.xtiper_btn li.xactive button,.xtiper_btn_warning .xtiper_btnbor {
    background-color: var(--thm-primary);
}
.xtiper_btn li.xactive button:hover {
    background-color: var(--thm-primary-hover);
}
.xtiper_icon{height: 25px;width: 25px;margin-right: 10px;margin:5px 10px 0 0;}
.xtiper_icon_warning{
    background-image: url("../image/warning.svg") !important;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    height: 25px;
    width: 25px;
}

/* 书籍商城主题底部样式 */
.book-footer__title, .book-footer__title-last {
    color: #333;
    font-weight: bold;
    letter-spacing: 1px;
}
.book-footer__slogan {
    color: #FF7F6C;
    font-family: 'KaiTi', 'STKaiti', cursive;
    font-size: 18px;
    font-weight: bold;
}
.book-footer__btn {
    background: #FF7F6C;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 24px;
    font-weight: bold;
    transition: background 0.3s;
}
.book-footer__btn:hover {
    background: #F7CFC7;
    color: #333;
}
.book-footer__links-list a {
    color: #333;
    transition: color 0.3s;
}
.book-footer__links-list a:hover {
    color: #FF7F6C;
}
.book-footer__copyright,
.book-footer__beian {
    color: #888;
    font-size: 13px;
}
.book-footer__bottom {
    border-top: 1px solid #BFD7ED;
    background: #fff0;
}
.book-footer__top-inner {
    padding-bottom: 10px;
}
.book-footer__title, .book-footer__title-last {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.book-footer__slogan {
    font-size: 20px;
    color: #FF7F6C;
    font-family: 'KaiTi', 'STKaiti', cursive;
    font-weight: bold;
    text-align: right;
    margin-bottom: 8px;
    margin-top: 10px;
}
.book-footer__author {
    text-align: right;
    font-size: 16px;
    color: #FF7F6C;
    margin-top: 8px;
    margin-right: 8px;
}
.book-footer__links-list li,
.book-footer__links-list a {
    font-size: 16px;
    color: #333333;
}
.book-footer__links-list a:hover {
    color: #FF7F6C;
}
.book-footer__btn {
    background: #FF7F6C;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 32px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(255,127,108,0.08);
    transition: background 0.3s, color 0.3s;
}
.book-footer__btn:hover {
    background: #F7CFC7;
    color: #333333;
}
.book-footer__links-list input[type='email'] {
    border: 1px solid #BFD7ED;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 15px;
    margin-bottom: 8px;
    width: 100%;
    box-sizing: border-box;
}
.book-footer__column {
    border-bottom: 1px solid #BFD7ED;
    margin-bottom: 12px;
    padding-bottom: 12px;
}
.book-footer__bookimg img {
    height: 60px;
    opacity: 0.8;
    margin-top: 10px;
}
.site-footer__bottom, .book-footer__bottom {
    border-top: 1.5px solid #BFD7ED;
    background: #fff0;
    margin-top: 10px;
}
.book-footer__copyright,
.book-footer__beian {
    color: #888;
    font-size: 15px;
    text-align: center;
    margin: 0;
    padding: 2px 0;
}
@media (max-width: 991px) {
    .book-footer__slogan, .book-footer__author {
        text-align: left;
        margin-right: 0;
    }
    .book-footer__bookimg {
        display: none;
    }
    .book-footer__title, .book-footer__title-last {
        text-align: left;
    }
}
@media (max-width: 767px) {
    .book-footer__top-inner .row {
        display: block;
    }
    .book-footer__column, .footer-widget__column {
        border-bottom: none;
        margin-bottom: 18px;
        padding-bottom: 0;
    }
    .book-footer__title, .book-footer__title-last {
        font-size: 18px;
    }
    .book-footer__slogan {
        font-size: 18px;
    }
    .book-footer__author {
        font-size: 14px;
    }
}

.site-footer__subscribe-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 6px;
}
.site-footer__subscribe-row input[type='email'] {
    border-radius: 18px 0 0 18px;
    padding: 8px 16px;
    height: 38px;
    width: 180px;
    box-sizing: border-box;
    background: #fff;
    outline: none;
    transition: border 0.2s;
    border: none;
    color: var(--thm-gray);
}
.site-footer__subscribe-row button {
    background: var(--thm-primary);
    color: #fff;
    border: none;
    border-radius: 0 18px 18px 0;
    padding: 0 22px;
    font-size: 15px;
    height: 38px;
    font-weight: 500;
    margin-left: -1px;
    box-shadow: 0 2px 8px rgba(255,127,108,0.08);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    display: inline-block;
}
.site-footer__subscribe-row button:hover {
    background: var(--thm-primary-dark);
}
/* 关注我们横向排列 */
.site-footer__social-row {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding-top: 2px;
}
.site-footer__social-row li {
    margin: 0;
    padding: 0;
}
.site-footer__social-row a {
    font-size: 15px;
    color: #333;
    font-weight: 400;
    padding: 0 2px;
    transition: color 0.3s;
}
.site-footer__social-row a:hover {
    color: #FF7F6C;
}
.site-footer__slogan {
    font-size: 16px;
    color: #FF7F6C;
    font-family: 'KaiTi', 'STKaiti', cursive;
    font-weight: 500;
    text-align: right;
    margin-bottom: 4px;
    margin-top: 8px;
}
.site-footer__author {
    text-align: right;
    font-size: 14px;
    color: #FF7F6C;
    margin-top: 0;
    margin-right: 0;
    padding-right: 8px;
}

.site-footer__copyright, .site-footer__beian {
    color: #888;
    font-size: 14px;
    text-align: left;
    margin: 0;
    padding: 2px 0;
}
@media (max-width: 991px) {
    .footer-widget__column {
        min-height: unset;
        padding: 0 6px;
    }
    .site-footer__slogan, .site-footer__author {
        text-align: left;
        margin-right: 0;
        padding-right: 0;
    }
    .footer-widget__title, .footer-widget__title-last {
        text-align: left;
    }
    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    /* 移动端二维码调整 */
    .site-footer__qrcode {
        justify-content: flex-start;
    }
    .footer-qrcode-img {
        width: 80px;
        height: 80px;
    }
    .video-col, .slogan-col, .follow-col, .subscribe-col {
        width: 50%;
    }
    .video-col, .slogan-col{
        margin-top: 15px;
    }
}
@media (max-width: 767px) {
    .site-footer__top-inner .row {
        display: block;
    }
    .footer-widget__column {
        margin-bottom: 12px;
        padding-bottom: 0;
        border-bottom: none;
    }
    .footer-widget__title, .footer-widget__title-last {
        font-size: 15px;
    }
    .site-footer__slogan {
        font-size: 15px;
    }
    .site-footer__author {
        font-size: 13px;
        text-align: right;
        padding-right: 8px;
    }
    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .site-footer__copyright, .site-footer__beian {
        text-align: center;
        width: 100%;
    }
    /* 小屏幕二维码调整 */
    .footer-qrcode-img {
        width: 70px;
        height: 70px;
    }
    .video-col, .slogan-col, .follow-col, .subscribe-col {
        width: 100%;
    }
    .subscribe-col, .follow-col{
        margin-top: 15px;
    }
}

/* 视频号二维码样式 */
.site-footer__qrcode {
    display: flex;
    align-items: center;
    padding-top: 8px;
}
.footer-qrcode-img {
    width: 100px;
    height: 100px;
    border: 2px solid #BFD7ED;
    border-radius: 8px;
    padding: 4px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-qrcode-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(191, 215, 237, 0.3);
}

/* ====== 头部主菜单优化 START ====== */
.main-menu-wrapper__desc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.main-menu-wrapper__desc span{
    color: #000000;
    font-family: 'KaiTi', 'STKaiti', cursive;
    font-weight: 500;
    font-size: 18px;
}
.main-menu-wrapper__desc .logo {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    max-width: 38px;
    max-height: 38px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.main-menu-wrapper__desc .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 头部两侧分布与间距 */
.main-menu-wrapper__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0;
    gap: 0;
}
.main-menu-wrapper__desc {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

@media (max-width: 991px) {
    .main-menu-wrapper__top-inner {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    .main-menu-wrapper__desc {
        flex: 1 1 auto;
        justify-content: flex-start;
        gap: 8px;
    }
    .main-menu-wrapper__opt {
        flex: 0 0 auto;
        min-width: 120px;
        justify-content: flex-end;
    }
    .main-menu-wrapper__opt ul {
        gap: 10px;
    }
}
@media (max-width: 767px) {
    .main-menu-wrapper__top-inner {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    .main-menu-wrapper__desc {
        flex: 1 1 auto;
        justify-content: flex-start;
        gap: 6px;
    }
    .main-menu-wrapper__opt {
        flex: 0 0 auto;
        min-width: 0;
        justify-content: flex-end;
    }
    .main-menu-wrapper__opt ul {
        gap: 0;
    }
    .main-menu-wrapper__desc .logo {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        max-width: 30px;
        max-height: 30px;
        margin-right: 6px;
    }
    .main-menu-wrapper__desc span {
        font-size: 15px;
    }
}
/* ====== 头部主菜单优化 END ====== */
/* ====== 订阅 START ====== */
.subscribe-message {
    display: none;
    margin-top: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    position: absolute;
    background: #F7CFC7;
}

.subscribe-message.success {
    /* background: #d4edda; */
    color: #155724;
    /* border: 1px solid #c3e6cb; */
}

.subscribe-message.error {
    /* background: #f8d7da; */
    color: #721c24;
    /* border: 1px solid #f5c6cb; */
}
/* ====== 订阅 END ====== */
.dispay-none{
    display:none;
}
