*, ::after, ::before {
    box-sizing: border-box
}

i {
    font-style: normal
}

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto
}

.container {
    position: relative;
    padding-top: 5px;
}

.container .wrap-left {
    position: absolute;
    left: 0;
    width: 177px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 17px
}

@media (max-width:1199px) {
    .container .wrap-left {
        position: unset
    }
}

@media (min-width:1000px) {
    .container {
        padding-left: 170px;
        overflow: visible
    }

    .container .wrap-left {
        display: block
    }
}

@media (min-width:1660px) {
    .container {
        padding-left: 180px
    }

    .container .wrap-left {
        padding-left: 27px
    }
}

@media (min-width:1900px) {
    .container {
        width: 90%;
        margin: 0 auto
    }
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.flex .f-box {
    width: 100%;
    height: 100%
}

.f-box, .f-item, .flex {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.overflow-x-auto {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: unset
}

header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1080;
    width: 100%;
    background-color: var(--theme-color)
}

nav {
    display: flex;
    height: 68px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

nav .logo {
    color: #fff;
    letter-spacing: -1px;
    font-weight: 500;
    font-size: 30px
}

nav .logo img {
    margin: 10px 0;
    width: auto
}

nav .nav-box {
    display: flex;
    flex: 1
}

nav .nav-items {
    display: flex;
    padding: 0 0 0 40px;
    flex: 1
}

nav .nav-items .menu-item {
    position: relative;
    margin: 0 15px;
    list-style: none
}

nav .nav-items li a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    box-shadow: 0 0 1px transparent;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-weight: 400;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0)
}

nav .nav-items li.current-menu-item a, nav .nav-items li.current-menu-parent a {
    color: #eee;
    font-weight: 500
}

nav .nav-items li.current-menu-item a:before, nav .nav-items li.current-menu-parent a:before {
    position: absolute;
    bottom: 0;
    left: -50%;
    z-index: -1;
    width: 200%;
    height: 2px;
    background: #eee;
    content: ""
}

nav .nav-items li a:hover {
    color: #eee
}

nav .nav-items li a:hover:before {
    right: 0;
    left: 0
}

nav .nav-items li.nav-activ a:before {
    display: none
}

nav .nav-items li.active a:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 2px;
    background: #f3f3f3;
    content: ""
}

@media (max-width:1199px) {
    #top-nav-wraper .container {
        padding-left: 0;
        overflow: visible
    }
}













.nav-items .submenu {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    position: absolute;
    left: 50%;
    top: 80%;
    padding-top: 15px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.nav-items .submenu-wrap {
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 10px 30px 0 rgba(70, 86, 125, .15);
    box-shadow: 0 10px 30px 0 rgba(70, 86, 125, .15)
}

.nav-items .submenu-item {
    display: block;
    color: #5a5a5a
}

.nav-items .submenu-item-wrap {
    padding: 10px 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.nav-items .submenu-item-icon {
    width: 40px;
    line-height: 40px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    margin: 0 auto 8px;
    font-size: 20px
}

.nav-items .submenu-item {
    display: block;
    color: #5a5a5a
}

.nav-items .menu-item:hover .submenu {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    top: 100%
}

.nav-items .submenu-item:hover {
    color: #ff6000
}

.nav-items .submenu-item:hover .submenu-item-wrap {
    background: #f1f7fc
}

.nav-items .submenu-item-title {
    font-size: 12px;
    white-space: nowrap;
    text-align: center
}

.login-btn {
    display: flex;
    margin-right: 30px
}

.login-btn .user-login {
    margin-left: 1rem;
    padding: 0 .75rem;
    height: 2rem;
    border: 1px solid #fff;
    border-radius: 4px;
    background: 0 0;
    color: #fff;
    font-weight: 200;
    font-size: 13px;
    line-height: 2rem
}

.login-btn .user-login:hover {
    opacity: .8;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.login_user {
    display: flex;
    color: #eee;
    margin-right: 30px
}

.login_user a {
    color: #eee;
    font-weight: 200
}

.simple-info img {
    margin: 0 8px;
    width: 36px;
    height: 36px;
    border-radius: 50px
}

.main-left-box {
    margin-right: 0
}
.menu-item-more{
    visibility: hidden;
    opacity: 0;

-webkit-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
-webkit-transition: none;
-o-transition: none;
transition: none;
position: absolute;
left: 50%;
top:100%;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);

padding-top: 15px;

}

.menu-item-more .more-wrap {
position: relative;
background-color: #fff;
    width: 260px;
border-radius: 5px;
padding:  20px 20px 10px 20px;

}
.menu-item-more .more-wrap::before {
content: '';
border-width: 0 8px 8px 8px;
border-style: solid;
border-bottom: 8px solid #fff;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
position: absolute;
left: calc(50% - 4px);
top: -8px;
margin-left: 0;
}
.menu-item-more .sec{
width: 100%;
box-sizing: border-box;
margin-bottom: 15px;
}
.menu-item-more .sec:last-child{
margin-bottom: 0;
}
.menu-item-more .sec .sec-tit{
text-indent: 5px;
font-size: 14px;
color: #333;
font-weight: bold;
line-height: 20px;
margin-bottom: 15px;
}

.menu-item-more .sec .item {
float: left;
position: relative;
width: 50%;
height: 34px;
padding: 11px 0 11px 44px;
text-align: left;
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: block;
font-size: 14px;
color: #666;
margin-bottom: 15px;
line-height: 16px;
}
.menu-item-more .sec .item:hover{
color: var(--theme-color);
}
.menu-item-more .sec .item img {
position: absolute;
left: 0;
top: 0;
width: 34px;
height: 34px;
-webkit-border-radius: 4px;
border-radius: 4px;
}

.menu-item.more:hover .menu-item-more{
visibility: visible;
opacity: 1;
-webkit-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
top: 100%
}
@media (min-width:750px) {
    .part-main {
        padding-top: 8px
    }
}

@media (min-width:1000px) {
    .part-main {
        padding-top: 15px
    }

    .main-left-box {
        margin-right: 25px
    }
}

@media (min-width:750px) {
    .main {
        padding: 0 15px
    }
}

@media (max-width:750px) {
    .main-left-box {
        padding: 0 15px
    }
}

@media (min-width:1330px) {
    .main {
        padding: 0 30px
    }
}

.main .main-wrap {
    max-width: 1660px;
    margin: 0 auto;
    padding-top: 8px;
}

@media (max-width: 768px) {
    .container {
        padding-top: 3px;
    }
    
    .part-search {
        height: 160px;
        margin: 0 15px;
        margin-top: 8px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .slider-arrows .arrow {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    
    .slider-arrows {
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 320px) {
    .container {
        padding-top: 2px;
    }
    
    .part-search {
        height: 140px;
        margin-top: 5px;
    }
}

.part-search {
    position: relative;
    overflow: hidden;
}

.slider-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0;
    max-width: calc(100% - 100px); /* 减少左右边距 */
    left: 50%;
    transform: translate(-50%, -50%); /* 水平垂直居中 */
}

.slider-arrows .arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 48px;
    color: #333;
    user-select: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slider-arrows .arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slider-arrows .arrow i {
    color: #333;
    font-size: 24px;
}

/* 确保轮播图有足够的高度 */
.part-search {
    min-height: 300px;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-slide.active {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width:750px) {
    .part-search {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: top;
        -webkit-align-items: top;
        -moz-box-align: top;
        -ms-flex-align: top;
        align-items: top;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        height: 346px
    }
}

@media (min-width:1000px) {
    .part-search {
        margin-bottom: 30px
    }
}

.fa {
    display: inline-block;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.header-big {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px
}

@-webkit-keyframes gradient {
    50% {
        background-position: 100% 0
    }
}

@keyframes gradient {
    50% {
        background-position: 100% 0
    }
}

.header-big .search-group {
    padding: 0;
    margin: 0 auto
}

.header-big #search-list {
    text-align: center
}

.header-big .search-smart-tips {
    width: unset;
    left: 20px;
    right: 20px
}

.header-big .search-type input:checked+label {
    display: inline-block;
    font-size: 15px;
    color: #8e9298;
    margin-right: 20px;
    letter-spacing: 1px;
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
    border-radius: 16px;
    background-color: var(--sub-color);
    color: #fff !important;
    position: relative;
    transition: .3s
}

.header-big .search-type li label {
    padding-top: 5px
}

.header-big .s-type-list {
    position: relative !important;
    display: block;
    white-space: nowrap;
    text-align: center;
    position: inherit;
    top: inherit;
    padding: inherit;
    width: none;
    background: 0 0 !important;
    border-radius: inherit;
    box-shadow: none !important
}

.header-big:not(.no-bg) .s-type-list {
    color: #262729
}

.s-type:hover .s-type-list.big {
    display: inline-table
}

.header-big .s-type-list label:hover {
    background: 0 0
}

.header-big .s-type-list:before {
    display: none
}

.header-big .s-type {
    position: inherit;
    top: inherit;
    left: inherit;
    z-index: inherit;
    width: auto
}

.s-type:hover .s-type-list.big {
    display: block
}

.header-big .s-type-list label {
    position: relative;
    display: inline-block
}

.header-big .s-type-list label span {
    display: inline-table;
    padding: 0 20px
}

.header-big .s-type-list label.active::after {
    content: '';
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-top: 8px solid var(--theme-color);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    left: 30%;
    bottom: 0;
    margin-left: 0;
    transition: .3s
}

.header-big .s-type-list label:not(.active)::after {
    content: '';
    height: 4px;
    width: 4px;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    bottom: 5px;
    margin-left: -2px;
    background-color: rgba(255, 255, 255, 0);
    transition: .3s
}

.header-big:not(.no-bg) .search-type label {
    display: inline-block;
    font-size: 15px;
    margin-right: 20px;
    letter-spacing: 1px;
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
    border-radius: 16px;
    color: #8e9298;
    background-color: #f1f5f8;
    position: relative
}

.header-big #search-text {
    box-sizing: border-box;
    max-width: 800px;
    border-radius: 50px;
    padding: 9px 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

.header-big #search button {
    position: absolute;
    top: 0;
    right: 8px;
    background: 0 0;
    border: 0 !important;
    width: unset;
    height: unset;
    margin: 0 9px;
    line-height: 58px;
    border-radius: 3px
}

.header-big #search button:active, .header-big #search button:focus {
    box-shadow: none;
    outline: 0;
    border: 0 !important
}

#search {
    position: relative;
    box-sizing: border-box
}

#search form {
    max-width: 800px;
    margin: 15px auto;
    position: relative
}

#search-text {
    z-index: inherit;
    padding: 9pt;
    height: 58px;
    font-size: 1pc;
    border: 0;
    border-radius: 3px;
    background-color: #f5f7f9;
    transition: .3s
}

#search button i {
    color: #8e9298;
    font-size: 22px
}

#search .search-select {
    height: 50px;
    cursor: pointer;
    border: none;
    background-color: #fff;
    transition: .3s
}

#search .input-group-prepend:not(.d-none)+.search-key {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.search-group {
    display: none;
    padding-left: 75px
}

.s-current .search-type {
    padding-left: 0;
    display: block
}

.s-current {
    display: block
}

#search-list {
    position: relative
}

#search-list-modal {
    position: relative
}

.s-type {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 23;
    width: 75px
}

.s-type:hover {
    height: auto
}

.s-type>span {
    display: block;
    height: 31px;
    width: 75px
}

.s-type-list {
    display: none;
    position: absolute;
    top: 31px;
    padding: 9pt 0;
    min-width: 70px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 9px 20px rgba(0, 0, 0, .16)
}

.s-type-list:before {
    position: absolute;
    top: -1pc;
    left: 20px;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #fff
}

.s-type-list label {
    display: block;
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0;
    padding: 2px 0;
    cursor: pointer;
    transition: .3s
}

.s-type-list label:hover {
    background: rgba(136, 136, 136, .1)
}

.s-type-list .tile-lg {
    color: #fff;
    width: 3pc;
    height: 3pc;
    font-size: 1.25rem;
    line-height: 3rem;
    border-radius: .3rem;
    display: block;
    margin: auto
}

.s-type:hover .s-type-list {
    display: block
}

.search-type {
    white-space: nowrap;
    margin: 0
}

.search-type label {
    margin: 0
}

.search-type li {
    display: inline-block
}

.search-type li label {
    display: inline-block;
    padding: 0 11px;
    font-size: 14px;
    line-height: 31px;
    border-radius: 3px 3px 0 0;
    cursor: pointer
}

.search-type input:checked+label, .search-type input:hover+label {
    background-color: #fff
}

.search-type li {
    list-style: none;
    display: inline-block
}

.search-type {
    overflow: auto
}

.s-type-list label {
    padding: 8px 0
}

.search-list {
    height: 30px;
    overflow-y: hidden;
    overflow-x: scroll;
    white-space: nowrap
}

.s-type-list span {
    display: inline-block;
    font-size: 16px;
    margin-right: 30px;
    letter-spacing: 2px;
    border-radius: 4px;
    height: 32px;
    line-height: 32px;
    padding: 0 13px;
    position: relative
}

.s-type-list :not(.active) span:hover {
    color: var(--theme-color) !important
}

.s-type-list .active span {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    margin-right: 30px;
    letter-spacing: 2px;
    border-radius: 4px;
    height: 32px;
    line-height: 32px;
    padding: 0 13px;
    position: relative;
    background: var(--theme-color);
    position: relative;
    transition: .3s
}

@media screen and (min-width:768px) {
    .header-big {
        padding-top: 90px;
        padding-bottom: 100px
    }

    .post-top {
        padding-bottom: 35px
    }

    .header-big .search-type li label {
        padding: 5px 20px
    }

    .header-big .s-type-list label span {
        padding: 0 20px
    }

    .header-big .s-type-list .anchor {
        content: '';
        border-width: 8px 8px 0 8px;
        border-style: solid;
        border-top: 8px solid var(--theme-color);
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        position: absolute;
        left: 50%;
        margin-top: 37px
    }
}

@media screen and (max-width:998px) {
    .header-big {
        padding: 60px 20px 50px 20px
    }
}

.block, .card {
    background: #fff;
    border-width: 0;
    margin-bottom: 1rem;
    transition: background-color .3s
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .25rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, .3)
}

.header-big .search-smart-tips {
    top: 130px
}

.search-smart-tips {
    position: absolute;
    border-radius: 8px;
    z-index: 999;
    max-width: 800px;
    margin: 0 auto
}

.search-smart-tips ul {
    position: relative;
    padding: 10px 0;
    margin: 0
}

.search-smart-tips ul li {
    line-height: 30px;
    font-size: 14px;
    padding: 0 25px;
    cursor: pointer;
    list-style: none;
    z-index: 9999
}

.search-smart-tips ul li.current, .search-smart-tips ul li:hover {
    background-color: rgba(130, 130, 130, .2)
}

.search-smart-tips::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 1px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: -5px;
    left: 40px;
    z-index: 0
}

.part-search:before {
    background-color: #f3f4f6;
    bottom: 0;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    opacity: .3
}

.part-poster ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px
}

.part-poster ul li {
    margin-bottom: 20px
}

.part-poster ul li a {
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    position: relative
}

.part-poster ul li img {
    width: 100%;
    border-radius: 10px
}

.slider_menu[sliderTab] {
    display: flex;
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #f1f4f9;
    border-radius: 10px 10px 0 0
}

@media (min-width:1000px) {
    .part-cat-block {
        margin-bottom: 30px
    }
}

.part-cat-block .c-title {
    height: 26px;
    line-height: 26px;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400
}

.part-cat-block .c-title .l, .part-cat-block .c-title .r {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.part-cat-block .c-title .l strong {
    font-size: 20px;
    color: #000
}

.part-cat-block .c-title .l strong a {
    color: #000
}

.part-cat-block .c-title .a-more {
    display: block;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    font-size: 12px;
    padding: 0 20px 0 10px;
    color: #8f8f8f;
    background-color: #fff;
    position: relative
}

.part-cat-block .c-title .a-more:hover {
    background-color: var(--sub-color);
    color: #fff
}

.part-cat-block .c-title .menu-a {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    font-size: 14px;
    color: #5a5a5a;
    background-color: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 4px 6px;
    cursor: pointer
}

.part-cat-block .c-title .menu-a.active, .part-cat-block .c-title .menu-a:hover {
    background-color: #ff6000;
    color: #fff
}

.part-cat-block .c-title .r {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.part-cat-block .c-title .r .btn {
    margin-left: 10px;
    line-height: 26px
}

.part-article .part-cat-block .c-content {
    padding: 0;
    background: 0 0
}

.part-article .p-item .f-box {
    background-color: #fff
}

.part-cat-block .c-content {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px
}

.part-cat-block .c-content.tab-content {
    border-radius: 0 0 10px 10px
}

@media (min-width:750px) {
    .part-cat-block .c-content {
        margin-bottom: 15px
    }

    .part-cat-block-book .c-content {
        background-color: #fff;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        padding: 20px
    }
}

@media (min-width:1000px) {
    .part-cat-block .c-content {
        padding: 20px
    }
}

.part-cat-block .c-loop {
    margin: 0 -9px -15px
}

@media (min-width:1000px) {
    .part-cat-block .c-loop {
        margin: 0 -10px -20px
    }
}

@media (max-width:749.5px) {
    .part-cat-block {
        padding: 15px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px
    }

    .part-cat-block .c-title {
        position: relative;
        margin-bottom: 15px
    }

    .part-cat-block .c-title .l {
        white-space: nowrap;
        overflow-y: hidden;
        overflow-x: auto
    }

    .part-cat-block .c-title .l::-webkit-scrollbar {
        display: none
    }

    .part-cat-block .c-title .l strong {
        font-size: 18px
    }

    .part-cat-block .c-title span.j-title {
        margin: 0
    }

    .part-cat-block .c-title .sub-title {
        font-size: 12px;
        margin-left: 5px
    }
}

.part-cat-block-color .c-title {
    height: 34px;
    line-height: 34px;
    margin-bottom: 30px
}

.part-cat-block-color .c-title .menu-a {
    padding: 0 10px
}

@media (max-width:749.5px) {
    .part-cat-block-color {
        background-color: transparent;
        padding: 0 10px 15px;
        margin: 0;
        overflow: hidden
    }

    .part-cat-block-color .c-loop {
        margin-left: -7px;
        margin-right: -7px
    }

    .part-cat-block-color .c-title {
        margin-bottom: 15px;
        padding-bottom: 0
    }
}

.tab-pane {
    display: none
}

.tab-pane.active {
    display: block
}

.slider_menu[sliderTab]>.menu {
    position: relative;
    white-space: nowrap;
    margin: 0;
    text-align: center;
    display: inline-block;
    background: rgba(0, 0, 0, .1);
    border-radius: 100px;
    padding: 5px
}

.slider_menu[sliderTab] .anchor {
    background: var(--sub-color);
    border-radius: 100px;
    width: 60px;
    height: 40px;
    opacity: 0;
    -webkit-transition: .25s;
    transition: .25s
}

.slider_menu[sliderTab]>.menu>li {
    display: inline-block;
    cursor: pointer
}

.slider_menu[sliderTab]>.menu>li {
    display: inline-block;
    cursor: pointer
}

.slider_menu[sliderTab]>.menu>li.next, .slider_menu[sliderTab]>.menu>li.prev, .slider_menu[sliderTab]>.menu>li>.sub-menu {
    display: none
}

.slider_menu[sliderTab]>.menu>li>a {
    display: block;
    text-decoration: none;
    position: relative;
    color: #888;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    padding: 0 16px;
    -webkit-transition: .25s;
    transition: .25s
}

.slider_menu[sliderTab]>.menu>li>a:hover {
    color: #fff
}

.slider_menu[sliderTab]>.menu>li>a.active {
    color: #fff
}

.slider_menu[sliderTab] ul:hover li:not(.hover) a.active {
    color: #888 !important
}

.slider_menu.mini_tab[sliderTab]>.menu>li>a {
    height: 28px;
    line-height: 28px;
    padding: 0 12px
}

.slider_menu.mini_tab[sliderTab]>.menu {
    padding: 3px
}

.part-item-website {
    cursor: pointer
}

.p-item {
    width: 50%;
    padding: 0 9px;
    margin-bottom: 20px
}

.sidebar .p-item {
    width: 50%
}

@media (min-width:750px) {
    .p-item {
        width: 33.33333333%
    }
}

@media (min-width:1000px) {
    .p-item {
        width: 25%;
        padding: 0 10px
    }
}

@media (min-width:1330px) {
    .p-item {
        width: 16.66666667%
    }
}

.p-item .f-box {
    display: block;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

@media (min-width:750px) {
    .p-item .f-box:hover {
        -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
        box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
    }

    .p-item .f-box:hover .item-title {
        color: var(--sub-color)
    }

    .p-item .f-box:hover .title {
        color: var(--sub-color);
        text-decoration: underline
    }

    .p-item .f-box:hover .show-hover {
        display: inline
    }

    .p-item .f-box:hover .item-desc {
        color: #5a5a5a
    }
}

.p-item .show-hover {
    display: none
}

.p-item .item-title {
    line-height: 28px;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    color: #3c3c3c;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

@media (min-width:1660px) {
    .p-item .item-title {
        line-height: 32px
    }
}

.p-item .item-title .title {
    font-size: 16px;
    color: #3c3c3c
}

.p-item .item-ico {
    display: inline-block;
    vertical-align: top;
    width: 28px;
    height: 28px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 5px
}

@media (min-width:1660px) {
    .p-item .item-ico {
        width: 32px;
        height: 32px
    }
}

.p-item .item-desc {
    font-size: 12px;
    color: #8f8f8f;
    line-height: 18px;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.p-item .item-tag {
    height: 20px;
    overflow: hidden;
    margin-top: 12px
}

.p-item .item-tag .tag {
    display: inline-block;
    background-color: #f1f7fc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    line-height: 20px;
    white-space: nowrap;
    font-size: 12px;
    padding: 0 6px;
    color: #9ca7ae;
    margin-right: 3px
}

@media (max-width:749.5px) {
    .p-item .item-title {
        margin-bottom: 10px
    }

    .p-item .item-title .title {
        font-size: 14px
    }

    .p-item .item-desc {
        line-height: 20px;
        height: 40px
    }
}

.post-item .item-thumb {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px
}

.post-item .item-thumb .thumb {
    padding-top: 63.63636364%;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.post-item .item-title {
    height: 46px;
    line-height: 23px;
    font-size: 16px;
    overflow: hidden;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.post-item:first-child .item-tag .tag, .post-item:nth-child(2) .item-tag .tag, .post-item:nth-child(3) .item-tag .tag {
    background-color: var(--sub-color);
    color: #fff
}

.part-item-article .item-thumb .thumb {
    padding-top: 67.27272727%
}

.part-item-article .bg-4 {
    background-color: #edf5f2
}

.part-item-article .item-thumb {
    background: #fff3f7;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px
}

.part-article .post-item .item-tag {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    font-weight: 400;
    overflow: visible;
    height: 21px
}

.part-article .post-item .item-tag .tag {
    line-height: 18px;
    margin: 3px 0 0;
    vertical-align: top
}

.part-article .post-item .item-title {
    height: 46px;
    line-height: 23px;
    font-size: 16px;
    overflow: hidden;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0
}

.part-article .post-item .item-title .title {
    font-size: 14px;
    font-weight: 400
}

@media (max-width:749.5px) {
    .post-item {
        width: 100%
    }

    .post-item .f-box {
        padding-left: 15px;
        padding-right: 145px;
        position: relative;
        min-height: 104px
    }

    .post-item .item-thumb {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 115px
    }

    .post-item .item-title {
        height: auto
    }

    .post-item .item-title .title {
        font-weight: 400
    }
}

.part-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 167px;
    display: none
}

.part-sidebar.a-fixed {
    position: fixed;
    z-index: 2;
    top: 98px
}

.part-sidebar.a-absolute {
    position: absolute;
    top: auto;
    bottom: 0
}

@media (min-width:1000px) {
    .part-sidebar {
        display: block
    }
}

@media (min-width:1660px) {
    .part-sidebar {
        width: 177px
    }
}

@media (min-width:1900px) {
    .part-sidebar {
        left: auto;
        margin-left: -177px
    }
}

.part-sidebar .sidebar-menu-wrap {
    position: relative
}

.part-sidebar .sidebar-menu {
    position: relative;
    padding-left: 17px;
    max-height: -webkit-calc(100vh - 170px);
    max-height: calc(100vh - 170px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

@media (min-width:1660px) {
    .part-sidebar .sidebar-menu {
        padding-left: 27px
    }
}

.part-sidebar .sidebar-menu::-webkit-scrollbar {
    display: none
}

.part-sidebar .sidebar-menu .menu {
    padding: 2px 0
}

.part-sidebar .sidebar-menu .menu-item {
    display: block;
    width: 150px
}

.part-sidebar .sidebar-menu .menu-a {
    display: block;
    line-height: 42px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 14px;
    padding: 0 20px 0 15px;
    position: relative;
    color: #5a5a5a
}

.part-sidebar .sidebar-menu .menu-a .ico {
    margin-right: 5px
}

.part-sidebar .sidebar-menu .menu-a:hover {
    background-color: #fff;
    color: var(--sub-color)
}

.part-sidebar .sidebar-menu .menu-a.active {
    background-color: var(--sub-color);
    color: #fff
}

.sidebar-item {
    position: relative;
    display: block
}

.sidebar-menu .sidebar-item a.active+i {
    color: #fff
}

.part-sidebar .sidebar-navs {
    margin-bottom: 15px
}

.part-sidebar .home {
    position: relative;
    padding-left: 17px
}

@media (min-width:1660px) {
    .part-sidebar .home {
        padding-left: 27px
    }
}

.part-sidebar .sn-btn {
    display: block;
    line-height: 20px;
    padding: 11px 20px 11px 15px;
    color: #3a3a3a;
    white-space: nowrap;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    position: relative
}

.part-sidebar .sn-btn .ico-more {
    display: block;
    position: absolute;
    right: 6px;
    top: 50%;
    font-weight: 400;
    -webkit-transform: translate(0, -50%) scale(.6);
    -ms-transform: translate(0, -50%) scale(.6);
    transform: translate(0, -50%) scale(.6)
}

.part-sidebar .sn-btn .ico {
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: var(--theme-color);
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 12px;
    text-align: center;
    font-weight: 400
}

.part-sidebar .shake {
    -webkit-animation: shake .3s cubic-bezier(.36, .07, .19, .97) both;
    animation: shake .3s cubic-bezier(.36, .07, .19, .97) both;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

.part-sidebar .shake_b {
    -webkit-animation: shake_b .3s cubic-bezier(.36, .07, .19, .97) both;
    animation: shake_b .3s cubic-bezier(.36, .07, .19, .97) both;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

.part-sidebar .sidebar-menu .smooth {
    display: block;
    line-height: 42px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 14px;
    padding: 0 20px 0 15px;
    position: relative;
    color: #5a5a5a
}

.part-sidebar .sidebar-menu .sidebar-show ul {
    background-color: #fff;
    border-radius: 10px
}

.part-sidebar .sidebar-menu .sidebar-show ul li {
    margin-left: 15px
}

.part-sidebar .sidebar-menu .smooth:hover {
    background-color: #fff;
    color: var(--sub-color)
}

@media (min-width:750px) {
    .part-sidebar .sidebar-menu-scrollbar {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0
    }

    .part-sidebar .sidebar-menu-scrollbar .block {
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
        display: block;
        position: absolute;
        left: 0;
        width: 6px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-color: #d9dfe4;
        cursor: pointer
    }

    .part-sidebar .sidebar-menu-scrollbar .block:hover {
        background-color: #cbd4dc
    }
}

.sidebar-item .sidebar-more {
    transform: scale(1)
}

.sidebar-more {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    padding: 0 16px;
    line-height: 44px !important;
    transition: transform .3s
}

.sidebar-show>.sidebar-more {
    transform: scale(1) rotate(90deg)
}

@-webkit-keyframes shake {
    10%, 90% {
        -webkit-transform: translate(0, -1px);
        transform: translate(0, -1px)
    }

    30%, 50%, 70% {
        -webkit-transform: translate(0, 15px);
        transform: translate(0, 15px)
    }
}

@keyframes shake {
    10%, 90% {
        -webkit-transform: translate(0, -1px);
        transform: translate(0, -1px)
    }

    30%, 50%, 70% {
        -webkit-transform: translate(0, 15px);
        transform: translate(0, 15px)
    }
}

@-webkit-keyframes shake_b {
    10%, 90% {
        -webkit-transform: translate(0, 1px);
        transform: translate(0, 1px)
    }

    30%, 50%, 70% {
        -webkit-transform: translate(0, -15px);
        transform: translate(0, -15px)
    }
}

@keyframes shake_b {
    10%, 90% {
        -webkit-transform: translate(0, 1px);
        transform: translate(0, 1px)
    }

    30%, 50%, 70% {
        -webkit-transform: translate(0, -15px);
        transform: translate(0, -15px)
    }
}

.part-show {
    overflow: hidden;
    margin-bottom: 0
}

@media (min-width:1000px) {
    .part-show {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        margin-bottom: 40px
    }

    #singular_content .container, .singular-tuwen .container {
        max-width: 85%
    }
}

.part-show a, .part-show img {
    display: block;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.part-show a:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.part-introduction {
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 44px 40px 46px;
    margin-bottom: 40px
}

.part-introduction .b-wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.part-introduction .b-title {
    font-size: 20px;
    color: #000;
    line-height: 28px;
    margin-bottom: 20px;
    white-space: nowrap
}

.part-introduction .intro-item {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 4.81927711%
}

.part-introduction .b-intro {
    width: 610px
}

.part-introduction .b-intro p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 25px;
    height: 75px;
    overflow: hidden;
    margin-bottom: 30px
}

.part-introduction .b-media {
    display: none
}

@media (min-width:1330px) {
    .part-introduction .b-media {
        display: block;
        width: 460px
    }
}

@media (min-width:750px) and (max-width:1659.5px) {
    .part-introduction .b-media {
        padding-right: 0
    }
}

@media (min-width:1660px) {
    .part-introduction .b-media {
        width: 500px
    }
}

@media (min-width:1900px) {
    .part-introduction .b-media {
        width: 700px
    }
}

.part-introduction .b-amount {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: none
}

@media (min-width:1660px) {
    .part-introduction .b-amount {
        display: block
    }
}

.part-introduction .site-amount {
    color: var(--theme-color);
    margin-bottom: 20px
}

.part-introduction .site-amount strong {
    font-size: 64px;
    font-weight: 400;
    font-family: Barlow-SemiBold, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
}

.part-introduction .site-amount i {
    font-size: 14px
}

.part-introduction .medias {
    background-color: #f9fcff;
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #f3f9ff
}

.part-introduction .m-item {
    position: relative
}

.part-introduction .m-item:hover .ewm-content {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.part-introduction .m-box {
    display: block;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.part-introduction .m-box:hover {
    background-color: #fff
}

.part-introduction .m-box:hover .ico {
    background-color: var(--sub-color)
}

.part-introduction .m-c {
    position: relative;
    padding-left: 46px;
    min-height: 36px
}

.part-introduction .m-c .ico {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    line-height: 36px;
    text-align: center;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 20px
}

.part-introduction .m-c strong {
    display: block;
    font-size: 15px;
    line-height: 20px;
    color: #3c3c3c;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.part-introduction .m-c .desc {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 13px;
    color: #8f8f8f;
    line-height: 18px
}

.part-introduction .ewm-content {
    position: absolute;
    left: 0;
    bottom: 100%;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .1);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    margin-bottom: 5px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.part-introduction .ewm-content::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff
}

.part-introduction .ewm-content.ewm-qun .ewm-main {
    padding: 20px
}

.part-introduction .ewm-content.ewm-qun .ewm-qun-2 {
    overflow: hidden
}

.part-introduction .ewm-content.ewm-qun .ewm-qun-2 .thumb-div {
    float: left
}

.part-introduction .ewm-content.ewm-qun .ewm-qun-2 h3 {
    font-size: 16px;
    line-height: 24px;
    color: #323232;
    margin: 12px 0
}

.part-introduction .ewm-content.ewm-qun .ewm-qun-2 h5 {
    font-size: 12px;
    color: #5b5b5b;
    line-height: 20px;
    margin-bottom: 0
}

.part-introduction .ewm-main {
    padding: 20px;
    text-align: left
}

.part-introduction .ewm-main:after, .part-introduction .ewm-main:before {
    content: " ";
    display: table
}

.part-introduction .ewm-main:after {
    clear: both
}

.part-introduction .ewm-main .fl {
    float: left
}

.part-introduction .ewm-main .fr {
    float: right
}

.part-introduction .ewm-main .thumb-div {
    width: 120px
}

.part-introduction .ewm-main .thumb {
    padding-top: 100%
}

@media (max-width:749.5px) {
    .part-introduction {
        margin: 0 10px 15px;
        padding: 15px
    }

    .part-introduction .b-title {
        font-size: 16px;
        margin-bottom: 10px
    }

    .part-introduction .b-intro p {
        font-size: 12px;
        line-height: 18px;
        height: auto
    }

    .part-introduction .intro-item {
        padding-right: 0
    }
}

.part-footer-copyright {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    color: rgba(255, 255, 255, .7);
    background: var(--theme-color);
    line-height: 2.08333333em;
    padding: 22px 24px;
    position: relative;
    z-index: 10
}

.part-footer-copyright a {
    color: inherit;
    margin: 0 5px;
    white-space: nowrap
}

.part-footer-copyright a:hover {
    color: #fff
}

.part-footer-copyright p img {
    margin-bottom: 4px
}

@media (min-width:750px) {
    .part-footer-copyright .links a {
        margin: 0 10px
    }
}

.scroll-to-top {
    padding: 1px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    z-index: 10001;
    display: none;
    right: 20px
}

.scroll-to-top>i {
    display: inline-block;
    color: #000;
    font-size: 40px;
    opacity: .3;
    cursor: pointer
}

#singular_content .container, .singular-tuwen .container {
    padding-left: 0
}

.main-left {
    float: left
}

.main-left .c-content {
    margin-top: 25px
}

.main-left .part-prev-next .thumb {
    padding-top: 66.7%
}

.main-left .singular-tuwen {
    margin: auto 1rem;
    border-bottom: 1px solid #e5e7eb
}

.main-left .article {
    padding: 1rem;
    border-radius: 8px;
    background-color: #fff
}

.main-left .article .article-title {
    border-bottom: 1px solid #e5e7eb;
    text-align: center
}

.main-left .article .article-title .title {
    color: #374151;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem
}

.main-left .article .article-title .detail, .main-left .article .article-title .detail a {
    margin-top: 1rem;
    padding-bottom: 1.25rem;
    color: rgba(107, 114, 128)
}

.main-left .article p {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 28px
}

/*.main-left .article p img {*/
/*    width: 100%*/
/*}*/

.main-left .main-comment, .main-left .main-relate {
    margin-top: 20px;
    padding: 2rem;
    border-radius: 10px;
    background-color: #fff
}

.main-left-down .down-score {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: rgba(107, 114, 128);
    text-align: center
}

.main-left-down .down-feedback, .main-left-down .down-feedback a {
    padding-bottom: 1rem;
    color: rgba(156, 163, 175);
    text-align: center
}

.module-title-box {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb
}

.module-title-box .title {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.use-tip {
    margin-top: 1.25rem
}

.use-tip h3 {
    margin-bottom: .75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.25rem;
    line-height: 1.75rem
}

.main .use-tip p, .main .use-tip p a, .main-left .article .use-tip p, .main-left .article .use-tip p a {
    margin-top: 0;
    margin-bottom: 0;
    color: #999;
    font-size: 14px;
    line-height: 28px
}

.main-right {
    float: right
}

.login-opt .btn, .main-left .btn, .main-right .btn {
    display: inline-block;
    padding-top: .68rem;
    padding-bottom: .68rem;
    width: 42%;
    border-radius: .375rem;
    color: #fff !important;
    text-align: center
}

.main-right .side {
    padding: 1.25rem;
    border-radius: 10px;
    background-color: #fff
}

.main-right .side .down-score {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: rgba(107, 114, 128);
    text-align: center
}

.main-right .side .down-feedback, .main-right .side .down-feedback a {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(229, 231, 235);
    color: rgba(156, 163, 175);
    text-align: center
}

.main-right .side .down-feedback a {
    border: none
}

.main-right .side .down-feedback a:hover {
    color: #10b981
}

.main-right .side .down-attribute {
    margin: 1.25rem
}

.main-right .side .down-attribute li {
    margin-top: .75rem;
    color: rgba(156, 163, 175)
}

.main-right .side .down-attribute li span {
    display: inline-block;
    color: rgba(55, 65, 81)
}

.main-right .side .module-list li {
    margin-bottom: 5px
}

.main-right .side .module-list .module-list_box {
    border-radius: 3px
}

.main-right .side .module-list .module-list_detail {
    padding: 5px
}

.main-right .side .module-list .module-list_thumb {
    border-radius: 3px 3px 0 0
}

.main-right .side .module-list .module-list_detail .title {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0;
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: .7rem;
    line-height: 1rem;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.fixedbox-on {
    position: fixed;
    z-index: 98;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

.fixedbox-off {
    position: absolute;
    bottom: 0;
    z-index: 98
}

.tag a {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #f3f4f6
}

.tag a:first-child {
    margin-left: 0
}

.tag a:hover {
    background-color: var(--theme-color);
    color: #fff
}

.side_tag a {
    display: inline-block;
    margin: 0 8px 8px 0;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #f3f4f6
}

.article {
    font-size: 14px;
    line-height: 1.85;
    color: #525252;
    word-break: break-all
}

.main-post {
    border-radius: 10px;
    background: #fff;
    padding: 25px 20px
}

@media (min-width:1024px) {
    .content {
        overflow: hidden
    }

    #singular_content {
        margin-top: 30px
    }

    .content .main {
        float: left;
        padding: 0
    }

    .main-post {
        padding: 30px;
        margin-bottom: 30px
    }

    .widget {
        background: #fff;
        margin-bottom: 20px;
        -webkit-border-radius: 6px;
        border-radius: 6px;
        padding: 30px 20px
    }
}

@media (max-width:1023px) {
    .main-post {
        padding: 20px;
        margin-bottom: 20px
    }

    #singular_content {
        margin-top: 20px
    }
}

.siteico {
    background: #e6e8ed;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 20px -20px rgba(0, 0, 0, .15);
    border-radius: 10px;
    transition: background-color .3s
}

.siteico:before {
    content: '';
    display: block;
    padding-top: 100%
}

.blur-layer {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    width: inherit;
    height: inherit;
    opacity: .2
}

.img-cover {
    max-width: 90% !important;
    min-width: 72px !important;
    max-height: 90% !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 6px
}

.tool-actions {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: .625rem 0
}

.tool-actions .btn-light {
    color: #424446 !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(250, 250, 250, .5) !important;
    border-color: transparent !important
}

.btn:not(.go-up) {
    border-radius: 3px;
    white-space: normal;
    font-size: .875rem
}

.siteico .btn-icon {
    text-align: center;
    width: 3.125rem;
    height: 3.125rem;
    padding: 0 !important;
    position: relative
}

.btn-icon .flex-column {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column !important;
    flex-direction: column
}

.rounded-circle {
    border-radius: 50% !important
}

.icon-lg {
    font-size: 1.333rem;
    line-height: 1.333rem;
    vertical-align: -.0667em
}

.text-xs {
    font-size: .75rem !important
}

.mt-1, .my-1 {
    margin-top: .25rem !important
}

.text-height-xs {
    line-height: 1 !important
}

.site-body .btn {
    padding-top: .88rem;
    padding-bottom: .88rem;
    border-radius: 8px
}

.site-body {
    margin-left: 30px
}

.site-body .site-name {
    margin: 1rem auto
}

.site-body .site-desc {
    margin-top: 0;
    margin-bottom: 0;
    color: #1d232b;
    font-size: 14px;
    line-height: 28px
}

.site-body .site-tag {
    display: block;
    margin: 15px auto
}

.btn-cat {
    color: #fff !important;
    background: var(--theme-color);
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 4px;
    transition: .3s
}

.custom-piece_c {
    font-size: 10px;
    color: var(--theme-color) !important;
    margin: auto 5px
}

.panel-body p, .post-content figure, .site-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 2;
    word-wrap: break-word
}

.site-body .site-go {
    position: relative;
    margin-bottom: 20px
}

.site-body .site-go i {
    margin-left: 10px
}

.site-body .site-go .site-go-url a {
    background-color: var(--theme-color)
}

.site-body .site-go .qr-img {
    background-color: var(--sub-color)
}

.site-body .site-go a:hover .site-go-qrcode {
    visibility: visible;
    opacity: 1;
    margin-bottom: 0
}

.site-body .site-go .site-go-qrcode {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 60px;
    left: calc(50% + 60px);
    padding: 11px;
    background-color: #000
}

.site-body .site-go .site-go-qrcode::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 1px;
    background-color: #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: -8px;
    left: 75px;
    z-index: 0
}

.add_fav_nav i {
    font-size: 18px;
    color: #ffcec5;
    cursor: pointer
}

.add_fav_nav .in_fav, .add_fav_nav i:hover {
    color: #fa7960
}

.archive-main .archive-pages {
    text-align: center;
    margin-bottom: 30px
}

@media (min-width:768px) {
    .archive-main .archive-pages {
        margin-bottom: 55px
    }
}

.nav-pages .nav {
    display: inline-block;
    vertical-align: top;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -5px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.nav-pages .nav li {
    display: inline;
    margin: 0;
    width: auto;
    padding: 0 5px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px
}

.nav-pages .nav a {
    display: inline-block;
    text-align: center;
    background: #fff;
    font-size: 14px;
    color: #333;
    line-height: 38px;
    height: 38px;
    overflow: hidden;
    padding: 0 15px;
    border: 1px solid #fff;
    margin-right: 8px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.nav-pages .nav a:hover {
    color: var(--theme-color);
    background: #fff;
    border-color: var(--theme-color)
}

.nav-pages .nav .disabled a {
    cursor: default;
    color: #333;
    border: none;
    background: rgba(0, 0, 0, 0);
    padding: 0
}

.nav-pages .nav .active a {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
    padding: 0 15px
}

.nav-pages.no-pages {
    color: #bfbfbf
}

.tuwen_link a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #fbfbfb
}

.tuwen_link a .item_thumb {
    width: 60px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px
}

.tuwen_link a .item_main {
    position: relative;
    padding-right: 70px;
    font-size: 13px;
    color: #888;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

@media (min-width:768px) {
    .sidebar .tuwen_link a .item_main {
        padding-top: 5px;
        padding-right: 0
    }
}

.tuwen_link a .item_main h2 {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    max-height: 2.8em;
    overflow: hidden;
    font-weight: 400
}

.tuwen_link a .item_main .btn {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 12px;
    padding: 8px;
    background: #edf5fe;
    color: #417ff9;
    border: none
}

.tuwen_link a .item_thumb .thumb {
    padding-top: 63.6363%;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 0
}

.thumb {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat
}

@media (min-width:768px) {
    .thumb {
        display: block;
        width: 100%;
        height: 0;
        padding-top: 100%;
        background-position: 50%;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
        background-color: rgba(0, 0, 0, 0);
        position: relative;
        overflow: hidden
    }
}

.thumb-img img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.tuwen_link {
    -o-transition: all .2s;
    transition: all .2s
}

.tuwen_link:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
}

.tuwen_link:hover h2 {
    color: var(--sub-color) !important;
    text-decoration: underline
}

.tuwen_link a {
    padding: 20px
}

.tuwen_link a .item_thumb {
    width: 120px;
    margin-right: 20px
}

.tuwen_link a .item_main h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 10px;
    max-height: 2.2em
}

.tuwen_link a .item_main p {
    display: block;
    line-height: 1.7;
    height: 3.4em;
    overflow: hidden;
    margin-bottom: 0
}

@media (min-width:750px) {
    .part-item-creator .f-box {
        padding: 30px 20px
    }
}

.part-item-creator .f-box {
    position: relative
}

.part-item-creator .item-thumb {
    width: 64px;
    margin: 0 auto 20px
}

.part-item-creator .item-thumb .thumb {
    padding-top: 100%;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden
}

.part-item-creator .item-title {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-align: center;
    margin-bottom: 6px
}

.singular-title {
    font-size: 23px;
    color: #3c3c3c;
    margin: 0 0 15px
}

.singular-title-meta {
    font-size: 12px;
    color: #8f8f8f;
    margin-bottom: 15px;
    position: relative
}

.singular-title-meta .meta-item {
    display: inline-block;
    padding-right: 0;
    margin-right: 15px;
    position: relative;
    white-space: nowrap
}

.singular-title-meta .meta-item a {
    color: #8f8f8f
}

.main-post .post-extra-info {
    padding: 15px 43px;
    margin: 0 -43px 15px;
    color: #8f8f8f;
    font-size: 12px
}

.main-post .post-extra-info .extra-copy {
    float: left
}

.main-post .post-extra-info .extra-share {
    float: right
}

.main-post .post-extra-info .extra-copy .component-copy {
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 2px 8px;
    margin-top: 5px
}

.main-post .post-extra-info .extra-copy .component-copy:hover {
    background-color: var(--theme-color)
}

.main-post .post-extra-info .extra-copy .component-copy:hover .txt {
    color: #fff
}

.main-post .post-extra-info .extra-copy .component-copy .txt {
    color: var(--theme-color);
    font-style: normal;
    cursor: pointer
}

.copy-content {
    width: 1px;
    height: 0;
    opacity: 0;
    padding: 0;
    border: none;
    position: absolute
}

@media (min-width:768px) {
    .singular-title {
        font-size: 30px
    }

    .singular-title-meta {
        font-size: 14px
    }

    .singular-title-meta .meta-item {
        padding-right: 15px;
        margin-right: 15px
    }

    .main-post .post-extra-info {
        font-size: 14px;
        padding: 35px;
        margin: 0 -30px 43px
    }
}

.part-prev-next {
    background: #fff;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
    margin: 0
}

.part-prev-next .prev-next .item {
    float: left;
    width: 50%;
    padding: 20px 28px 20px 20px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0);
    background-image: -webkit-linear-gradient(left, #fff, #fbfbfb);
    background-image: -o-linear-gradient(left, #fff, #fbfbfb);
    background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fbfbfb));
    background-image: linear-gradient(left, #fff, #fbfbfb)
}

.part-prev-next .prev-next .item .item-thumb {
    background: #f6f6f6;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    display: block
}

.part-prev-next .prev-next .item h2 {
    font-size: 12px;
    font-weight: 400;
    color: #3c3c3c;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
    height: 1.5em;
    overflow: hidden
}

.part-prev-next .prev-next .item p {
    font-size: 12px;
    line-height: 20px;
    height: 40px;
    color: #8f8f8f;
    overflow: hidden
}

.part-prev-next .prev-next a:hover p {
    color: var(--theme-color);
    text-decoration: underline
}

@media (min-width:768px) {
    .part-prev-next {
        margin: 0 0 30px
    }

    .part-prev-next .prev-next .item {
        padding: 35px 30px 32px 200px;
        height: 160px
    }

    .part-prev-next .prev-next .item .item-thumb {
        position: absolute;
        left: 30px;
        top: 35px;
        width: 140px;
        -webkit-border-radius: 5px;
        border-radius: 5px
    }

    .part-prev-next .prev-next .item h2 {
        margin-top: 0;
        font-size: 16px
    }

    .part-prev-next .prev-next .item p {
        font-size: 14px;
        line-height: 24px;
        height: 48px
    }
}

.tag_list .part-cats-loop .p-item {
    width: 20%
}

.tag-key {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700
}

.tag-key font {
    color: var(--sub-color)
}

.form-control {
    padding: 6px 12px;
    width: 100%;
    height: 34px;
    border: 1px solid #c2cad8;
    border-radius: 4px;
    background-color: #fff;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.shares {
    margin: 10px 0
}

.shares strong {
    line-height: 32px;
    display: inline-block;
    font-weight: 400;
    color: #999
}

.shares a {
    position: relative;
    width: 34px;
    height: 34px;
    line-height: 34px;
    display: inline-block;
    margin-right: 5px;
    opacity: .8;
    cursor: pointer;
    border-radius: 50px;
    text-align: center
}

.shares a:hover {
    opacity: 1
}

.shares a:hover .share-popover {
    visibility: visible;
    opacity: 1;
    margin-bottom: 0
}

.shares a:before {
    height: 32px;
    width: 10px
}

.shares a:hover:before {
    -webkit-transition: right .5s;
    -moz-transition: right .5s;
    transition: right .5s;
    right: -70%
}

.shares a[class^=share] i {
    color: #fff;
    font-size: 16px;
    font-weight: 400
}

.shares a.share-tsina {
    background-color: #ff6b60
}

.shares a.share-weixin {
    background-color: #07c160
}

.shares a.share-qzone {
    background-color: #fbc440
}

.shares a.share-sqq {
    background-color: #00a9ee
}

.shares a.share-renren {
    background-color: #95b4ec
}

.shares a.share-tqq {
    background-color: #5fb2d7
}

.shares a.share-douban {
    background-color: #67ce9b
}

.shares a.share-huaban {
    background-color: #dc5e5e
}

.shares a.share-twitter {
    background-color: #41b8fc
}

.shares a.share-facebook {
    background-color: #4867aa
}

.shares a.share-linkedin {
    background-color: #0a66c2
}

.shares .share-popover {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 110px;
    height: 116px;
    margin-bottom: 20px;
    padding-bottom: 6px;
    background-color: transparent
}

.shares .share-popover .share-popover-inner {
    display: block;
    background-color: #fff;
    border: 1px solid #999;
    padding: 4px;
    border-radius: 2px;
    position: relative;
    bottom: 6px;
    height: 110px
}

.shares .share-popover .share-popover-inner::after, .shares .share-popover .share-popover-inner::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 9px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent
}

.shares .share-popover .share-popover-inner::before {
    border-top: 5px solid #555
}

.shares .share-popover .share-popover-inner::after {
    border-top: 5px solid #fff;
    margin-bottom: 1px
}

@media (max-width:1199px) {
    nav {
        height: 62px
    }
}

nav .m-nav-box {
    display: flex;
    flex: 1;
    padding-left: 20px
}

nav .m-nav-box i {
    color: #fff;
    font-size: 20px;
    cursor: pointer
}

nav .m-nav-box-list {
    display: none;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    border: 1px solid #ededed;
    padding: 20px
}

nav .m-nav-box-list>ul>li {
    display: inline-block;
    border: 1px solid #ededed;
    padding: 8px;
    margin-right: 10px;
    border-radius: 8px
}

.select-lang {
    position: relative;
    float: left;
    width: 100px;
    background: #fff;
    color: #555;
    border-radius: 3px;
    height: 30px;
    overflow: hidden;
    margin-right: 15px
}

.select-lang select {
    box-sizing: border-box;
    background: 0 0;
    width: 100%;
    height: 100%;
    color: #555;
    font-size: 14px;
    padding: 0 20px 0 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    border-radius: 5px
}

.select-lang .arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

.side-community{
	
}

.side-community__head{
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}
.side-community__handle .handle-item{
	display:inline-block;
	margin-right:10px;
	font-size: 1.25rem;
    line-height: 1.75rem;
}
.side-community__handle .handle-item.active{
	font-weight:bold;
}

.box-item{
	position: relative;	
	margin-bottom: 20px;
}
.box-item__cont{
	display:flex;
	align-items:center;
}
.box-item__cont .item-ico{
	margin-right:10px;
	width:36px;
	height:36px;
}
.box-item__cont .item-ico img{
	width:34px;
	height:34px;
    border-radius: 50%;
    border: 1px solid #E8E8E8;
}
.box-item__cont .item-txt{
	-webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.box-item__cont .item-txt h3{
    max-width: 80%;
    font-size: 16px;
    color: #333;
    line-height: 24px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.box-item__cont .item-btn{
    width: 56px;
    height: 28px;
    line-height: 26px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #FF8739;
    text-align: center;
    font-size: 12px;
    color: #F60;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}
.box-item__more{
    display: block;
    height: 37px;
    font-size: 14px;
    line-height: 37px;
    color: #999;
    text-align: center;
    background: #f7f7f7;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}
.box-item__more:hover{
    background: #f60;
    color: #fff;
}

.box-item .hover-tips{
	display:none;
	position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 70px;
    width: 160px;
    height: 160px;
    background: #FFF;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, .1);
    padding: 10px;
    z-index: 2;
}
.box-item .hover-tips img{
	position: relative;
    width: 100%;
    height: 100%;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.box-item .hover-tips:after{
    content: '';
    position: absolute;
    top: 75px;
    right: -7px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ebeced;
    border-right: 2px solid #ebeced;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
}

.item-btn:hover .hover-tips{
	display:block;
}

@media (max-width: 768px) {
    .bg-slide picture div {
        background-size: cover;
        background-position: center center;
    }
    
    .part-search {
        height: 160px;
        margin: 0 15px;
        margin-top: 8px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .slider-arrows .arrow {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    
    .slider-arrows {
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 320px) {
    .container {
        padding-top: 2px;
    }
    
    .part-search {
        height: 140px;
        margin-top: 5px;
    }
}

/* 添加居中样式 */
#singular_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.author-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.author-info h3 {
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: bold;
}

.author-info-content {
    display: flex;
    flex-direction: column;
}

.author-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    margin-right: 12px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.author-info p.name {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: 48px; /* 与头像高度一致，实现垂直居中 */
}

.author-info p.name:before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #FF8739;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.author-info p.intro {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-height: 117px; /* 13px * 1.8 * 5行 */
    padding: 0 2px; /* 添加一点内边距 */
}

.observer-plan {
    margin-top: 15px;
    text-align: center;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
}

.observer-plan a {
    display: inline-block;
    color: #FF8739;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 15px;
    border: 1px solid #FF8739;
    border-radius: 4px;
}

.observer-plan a:hover {
    background-color: #FF8739;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 135, 57, 0.3);
}

.observer-plan a:active {
    transform: translateY(0);
}