body {
    font-family: 'Playfair Display', 'Trebuchet MS', 'Arial', 'Open Sans', 'Nunito Sans', sans-serif;
    font-size: 14px;
    overflow-x: hidden !important;
    color: #313131;
    line-height: 1.42857143;
}


h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

img {
    width: 100%;
}

.fix {
    zoom: 1;
    clear: both;
}

.fix:before,
.fix:after {
    display: table;
    clear: both;
    content: '';
}

a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: 0;
    color: #1d165c
}

a:hover {
    color: #30e1ca;
}
:root {
    --primary--color: #30e1ca;
    --title: #363636;
    --text: #4c4c4d;
    --theme-light-background: #f8f6f1;
    --theme-bg-light: #F6F6F6;
    --black--color: #363636;
    --theme-color2: #363636;
    --secondary--color: #fff;
    --navy-color: #363636;
    --bg: #FCF7F4;
    --border: #f2f2f2;
    --text-font:'Archivo', sans-serif;
    --theme-light-background: #f8f6f1;
}

.wrap {
    width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.logo {
    float: left;
    font-size: 40px;
    margin-top: 32px;
    font-weight: bold;
}

.logo a {
    color: #fff;
    display: inline-block;

}

.logo a:hover {
    color: #30e1ca
}

.header-right {
    float: right;
    color: #fff;
}

.top-right {
    position: relative;
    display: block;
    padding: 10px 0px 10px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-right .support {
    float: right;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.top-right .support i {
    color: #30e1ca;
    margin-right: 25px;
    font-size: 18px;
}

.top-right .support a {
    margin-left: 10px;
    color: #fff;
}

.social-links {
    float: right;
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
}

.social-links:before {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 19px;
    left: 0px;
    top: 5px;
}

.social-links a {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    color: #fff;
}

.search-box-outer {
    float: right;
}

.search-box-outer form {
    position: relative;
    padding-left: 21px;
    margin-left: 21px;
}

.search-box-outer form:before {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 19px;
    left: 0px;
    top: 5px;
}

.search-box-outer input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 80px;
}

.search-box-outer button {
    background-color: transparent;
    color: #fff;
    border: none;
    outline: none;
}

.search-box-outer form input::-webkit-input-placeholder {
    opacity: 1;
    color: #fff;
}

.search-box-outer form input::-moz-placeholder {
    opacity: 1;
    color: #fff;
}

.search-box-outer form input:-ms-input-placeholder {
    opacity: 1;
    color: #fff;
}

.search-box-outerform input::-ms-input-placeholder {
    opacity: 1;
    color: #fff;
}

.search-box-outer form input::placeholder {
    opacity: 1;
    color: #fff;
}

.theme-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700 !important;
    color: #fff;
    background: transparent;
    padding: 7px 30px;
    text-align: center;
    cursor: pointer;
    background-size: 200% auto;
    border-radius: 5px;
    z-index: 1;
    transition: all 500ms ease;
}

.header-upper .btn-box {
    position: relative;
    float: left;
    margin-left: 45px;
    margin-top: 13px;
}

.header-upper .btn-box .theme-btn {
    padding: 7px 24px;
    background-image: linear-gradient(to right, #30e1ca 0%, #10ddc2 50%, #30e1ca 100%);
}

.header-upper .btn-box .theme-btn:hover {
    color: #fff;
}

#navBar {
    margin: 25px 0;
    float: left;
}

#navBar ul li {
    float: left;
}

#navBar ul li>a {
    font-size: 15px;
    color: #fff;
    display: inline-block;
    padding: 0 30px;
    text-transform: uppercase;
}

#navBar ul li:first-child>a {
    padding-left: 0;
}

#navBar ul li>a:hover {
    color: #30e1ca;
}

#navBar ul li>a:hover::before {
    width: 100%;
}

#header .header-bottom {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #cbcbcb;
}

#header.fixed .header-bottom {
    background: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

#header.fixed .logo {
    font-size: 35px;
    margin-top: 11px;
}

#header.fixed .logo a,
#header.fixed #navBar ul li>a {
    color: #1d165c;
}

#header.fixed #navBar ul li>a:hover {
    color: #30e1ca;
}

#header.fixed .header-top {
    display: none;
}

.mobile_key {
    display: none;
}

.height {
    display: none;
}

.crumbs {
    position: relative;
    padding: 210px 0px 110px;
    background-color: #110b44;
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.crumbs .file-box p {
    font-weight: bold;
}

.crumbs .file-box i {
    font-weight: bold;
}

.crumbs .wrap {
    position: relative;
}

.pattern-layer {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 420px;
    background: url(../img/bg-pattern.png);
    background-repeat: repeat-x;
    animation: slide 100s linear infinite;
    -webkit-animation: slide 100s linear infinite;
}

@keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1920px 0;
    }
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1920px 0;
    }
}

.crumb-title {
    font-weight: bold;
    font-size: 55px;
    line-height: 1;
    color: #fff;
    margin-bottom: 15px;
}

.detail .crumb-title {
    font-size: 36px;
}

.breadcrumb {
    color: #fff;
}

.breadcrumb-item {
    font-size: 17px;
    margin: 0 5px;
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.crumbs .info-box {
    position: relative;
    display: block;
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-box li {
    position: relative;
    float: left;
    width: 50%;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    padding-top: 26px;
    padding-bottom: 28px;
    color: #fff;
    font-weight: 500;
}

.info-box li:before {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 60px;
    top: 0px;
    right: 0px;
}

.info-box li:last-child:before {
    display: none;
}

.info-box li i {
    margin-right: 10px;
}

.info-box li span {
    font-size: 17px;
    font-weight: 600;
}

.content-left {
    float: left;
    width: 66%;
    box-sizing: border-box;
}

.content-right {
    float: right;
    width: 31%;
    box-sizing: border-box;
}

.blog-news-single {
    margin-bottom: 50px;
}


.blog-news-single .blog-news-img {
    width: 100%;
    overflow: hidden;
}

.blog-news-single .blog-news-img a {
    display: block;
    font-size: 0;
    position: relative;

}

.blog-news-single .blog-news-img a:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    opacity: 0.9;
    z-index: 1;
    transition: all 500ms ease;
    background: -webkit-linear-gradient(-45deg, #30e1ca, #10ddc2 100%);
}

.blog-news-single:hover .blog-news-img a:before {
    width: 100%;
    left: 0px;
}

.blog-news-single .blog-news-img i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    color: #fff;
    z-index: 1;
    opacity: 0;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .6s;
    transition-duration: .6s;
}

.blog-news-single:hover .blog-news-img i {
    opacity: 1;
}

.blog-news-single .blog-news-title {
    padding-top: 20px;
}

.blog-news-single .blog-news-title .news-title {
    position: relative;
    padding: 0px 0px 0px 75px;
    margin-bottom: 21px;
}

.blog-news-single .blog-news-title h2 {
    color: #1d165c;
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
}

.blog-news-single .blog-news-title h2 a {
    color: #1d165c;
}

.blog-news-single .blog-news-title h2 a:hover {
    color: #30e1ca;
}

.blog-news-single .blog-news-title .con {
    margin-bottom: 21px;
    font-size: 16px;
    color: #616161;
}

.more-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #1d165c;
    padding-left: 17px;
}

.more-btn:hover {
    padding-left: 0px;
    color: #1d165c;
}

.more-btn:before {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    left: 0px;
    top: 8px;
    border-radius: 50%;
    transition: all 500ms ease;
    background: #30e1ca;
}

.more-btn:hover:before {
    opacity: 0;
}

.more-btn span {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 3px;
    background: #fff;
    font-size: 25px;
    margin-left: 7px;
}

.more-btn:hover span {
    background: -webkit-linear-gradient(-45deg, #30e1ca, #10ddc2 100%);
    color: #fff;
}

.widget-information li {
    transition: all 0.3s ease 0s;
    padding-bottom: 10px;
}

.widget-information li a {
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding-left: 28px;
    color: #666;
    position: relative;
}

.widget-information li a:before {
    position: absolute;
    content: '';
    background: transparent;
    border: 1px solid #d1d1d1;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    left: 0px;
    top: 10px;
    transition: all 500ms ease;
}

.widget-information li a:hover:before {
    border-color: #30e1ca;
    background: #30e1ca;
}

.newsletter-widget .con {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 23px;
}

.newsletter-widget .search-group {
    border: 1px solid #e5e5e5
}

.newsletter-widget .search-group input[type="search"] {
    padding-left: 38px;
    border: none;
}

.newsletter-widget .icon-youxiang1 {
    position: absolute;
    left: 19px;
    top: 20px;
    font-size: 14px;
    z-index: 1;
}

.newsletter-widget .search-group .blog-search-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    color: #1d165c;
    background: transparent;
    cursor: pointer;
    transition: all 500ms ease;
    height: auto;
    padding: 0;
}

.newsletter-widget .search-group .blog-search-btn:hover {
    color: #10ddc2;
    background-color: transparent;
}

.newsletter-widget .search-group .blog-search-btn:before {
    position: absolute;
    content: '';
    background: #e5e5e5;
    width: 1px;
    height: 54px;
    left: -20px;
    top: -15px;
}




.widget-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #1d165c;
}


.blog-archive-area {
    padding: 50px 0;
}

.single-blog-post-details {
    margin-bottom: 50px;
}

.single-blog-post-details .dsc {
    margin-bottom: 5px;
}

.single-blog-post-content .img {
    margin-bottom: 20px;
}

.single-blog-post-content .tit {
    font-size: 20px;
    color: #152535;
    margin-bottom: 10px;
}

.add-post-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    border: none;
    padding: 10px 26px 10px 43px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    color: #1d165c;
    border: 1px solid #30e1ca;
    transition: .5s ease;
    cursor: pointer;
}

.add-post-btn:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: -1;
    transition: all 500ms ease;
    background: -webkit-linear-gradient(0deg, #30e1ca, #10ddc2 100%);
}

.add-post-btn:after {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: 22px;
    left: 27px;
    transition: all 500ms ease;
    background: #30e1ca;
}

.add-post-btn span {
    font-size: 20px;
    margin-left: 7px;
}

.add-post-btn:hover {
    color: #fff;
}

.add-post-btn:hover:before {
    width: 100%;
    left: 0px;
}

.add-post-btn:hover:after {
    background: #fff;
}

.comments-box-area {
    margin-bottom: 30px;
}

.comments-box-area h2 {
    color: #1d165c;
    font-size: 35px;
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    color: #777;
    background-color: #fff;
    background-image: none;
    border: none;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    line-height: 38px;
    height: 38px;
    border: 1px solid #dee2e6;
}

.form-group1 .form-control {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin-right: 3%;
}

.form-group1 .form-control[name="email"] {
    margin-right: 0;
}

.comments-form {
    margin-top: 10px;
}

.comments-form input {
    display: block;
    width: 100%;
    padding: 6px 15px;
    line-height: 1.42857143;
    font-family: inherit;
}

.comments-form textarea {
    height: 140px;
    padding: 10px;
    width: 100%;
    font-family: inherit;
    box-sizing: border-box;
}

.comments-form .form-control:focus {
    box-shadow: none;
    border-color: #30e1ca !important;
    outline: 0;
}

.comments-form .form-group {
    margin-bottom: 15px;
}

.blog-pagination {
    padding: 0 0 15px;
    text-align: center;
}

.pagination-nav li {
    display: inline-block;
}

.pagination-nav li a {
    color: #999;
    border: 1px solid #CACACA;
    display: inline-block;
    margin: 0 5px;
    font-size: 12px;
    padding: 8px 13px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.pagination-nav li a:hover,
.pagination-nav li a:focus {
    color: #fff;
    text-decoration: none;
    outline: none;
    background-color: #000;
    background-color: #30e1ca;
    border-color: #30e1ca;
}

.widget-news li {
    position: relative;
    padding: 0px 0px 0px 75px;
    padding-bottom: 30px;
    margin-bottom: 36px;
    border-bottom: 1px solid #e5e5e5;
}

.post-date {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 54px;
    height: 54px;
    text-align: center;
    border-radius: 5px;
    padding: 8px 0px;
    box-sizing: border-box;
    background: -webkit-linear-gradient(-45deg, #30e1ca, #10ddc2 100%);
}

.post-date p {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 20px;
}

.post-date span {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    color: #fff;
}

.file-box {
    position: relative;
    margin-bottom: 9px;
}

.file-box i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: transparent !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-right: 10px;
    background: -webkit-linear-gradient(-45deg, #30e1ca, #10ddc2 100%);
}

.file-box p {
    position: relative;
    display: inline-block;
}

.widget-news a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #1d165c;
}

.widget-news a:hover {
    color: #10ddc2;
}

.widget-tags li {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 15px
}

.widget-tags li a {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.widget-tags li a span {
    font-size: 24px;
}




.sidebar-widget {
    margin-bottom: 50px;
}

.search-group {
    position: relative;
}

.search-group .blog-search-btn {
    border: medium none;
    color: #fff;
    font-size: 14px;
    height: 50px;
    background-image: linear-gradient(to right, #30e1ca 0%, #10ddc2 50%, #30e1ca 100%);
    transition: .5s ease;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 12px 20px;
    border-radius: 5px;
}

.search-group .blog-search-btn:hover {
    background: #313131;
    color: #fff;
}

.search-group input[type="search"] {
    position: relative;
    width: calc(100% - 100px);
    height: 54px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 500ms ease;
}

.search-group input[type="search"]:focus {
    outline: none;
}

.blog-title h2 {
    font-size: 24px;
    color: #1d165c;
    line-height: 1.2;
    margin-bottom: 20px;
}

.single-blog-post-details h2 {
    font-size: 35px;
    color: #1d165c;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position:relative;
}
.single-blog-post-details h2:after{
    content: ' ';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 57px;
    height: 9px;
    background-image: url(../img/decor-1.png);
    background-repeat: no-repeat;
}

.single-blog-post-details .info {
    margin: 20px 0;
}

.single-blog-post-details .info .tit {
    font-size: 20px;
    color: #152535;
    margin-bottom: 10px;
}

.blog-list .blog-news-single {
    float: left;
    width: 49%;
}

.blog-list .blog-news-single:nth-child(2n) {
    margin-left: 2%;
}


#footer {
    background: #18003a;
    padding: 50px 0 20px;
}

.footer-left {
    float: left;
    width: 32%;
}

.footer-center {
    float: left;
    width: 32%;
}

.footer-top .tit {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 39px;
}

.footer-top .tit a {
    color: #fff;
}

.footer-top .tit a:hover {
    color: #30e1ca;
}

.footer-top .tit:after {
    content: ' ';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 57px;
    height: 9px;
    background-image: url(../img/decor-3.png);
    background-repeat: no-repeat;
}

.footer-left .link ul li {
    margin-bottom: 10px;
}

.footer-left .link ul li:last-child {
    margin-bottom: 0;
}

.footer-left .link a {
    color: #fff;
}

.footer-center .link ul li {
    margin-bottom: 10px;
}

.footer-center .link ul li:last-child {
    margin-bottom: 0;
}

.footer-center .link a {
    color: #fff;
}


.footer-left .link a:hover,
.footer-center .link a:hover {
    text-decoration: none;
    outline: none;
    color: #30e1ca;
}

.footer-right {
    float: right;
    width: 32%;
}

.input_form {
    background-color: #fff;
    height: 40px;
    line-height: 40px;
    border: none;
    padding-left: 20px;
}

.input_form input {
    border: none;
    outline: none;
}

.footer-right button {
    background-image: linear-gradient(to right, #30e1ca 0%, #10ddc2 50%, #30e1ca 100%);
    color: #fff;
    line-height: 40px;
    height: 40px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border: none;
}

.footer-bottom {
    margin-top: 50px;
    color: #fff;
    margin-bottom: 0;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.footer-bottom .wrap {
    border-top: 1px solid #222;
    padding-top: 20px;
}

.sharing {
    display: inline-block;
    width: auto;
    margin-top: 20px;
}

.sharing .title {
    font-size: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.sharing .title i {
    margin-right: 5px;
}
.sharing ul li {
    float: left;
}
.social li {
    display: inline-block;
}

.social li a:first-child {
    margin-left: 0;
}

.social li a {
    display: block;
    text-align: center;
    margin: 0 5px;
    line-height: 40px;
    margin-bottom: 8px;
    position: relative;
    transition: all .5s;
    text-decoration: none;
    padding-right: 25px;
    padding-left: 25px;
    border-radius: 5px;
}
.sharing ul li a i {
    margin-right: 10px;
}
a.facebook {
    background-color: #3b5998;
    color: #fff !important;
}
a.twitter {
    background-color: #4099FF;
    color: #fff !important;
}
a.googleplus {
    background-color: #DE5245;
    color: #fff !important;
}
a.linkedin {
    background-color: #007BB6;
    color: #fff !important;
}
.sharing ul li a:hover {
    background: #30e1ca !important;
}



@media only screen and (max-width:1240px) {

    .header-wrap {
        padding-right: 15px;
        padding-left: 15px;
        width: auto;
    }

    .wrap {
        width: auto;
    }

}



@media(min-width: 960px){
.inner-box{
                max-width: 64.5%;
         margin: 30px auto 60px;
        padding: 0 15px;
    }
    .single .nv-meta-list {
        --avatarsize: 20px;
    }
    .nv-is-boxed.comment-respond {
        --padding: 40px;
    }
        .single:not(.single-product), .page {
        --c-vspace: 0 0 0 0;
    }
        .nv-is-boxed.comment-respond {
        --padding: 40px;
    }
}






@media only screen and (max-width:992px) {

    .wrap {
        width: 750px;
    }

    .header-top {
        display: none;
    }

    #header.fixed .header-bottom {
        background-color: #fff;
    }

    .logo,
    #header.fixed .logo {
        font-size: 25px;
        margin: 15px 0;
    }

    .header-upper .btn-box {
        display: none;
    }

    #header.fixed #navBar {
        background-color: #fff;
    }

    .header-right {
        float: none;
    }

    .mobile_key {
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        float: right;
        z-index: 10;
        display: block;
        width: 20px;
        height: 20px;
        margin-left: 10px;
        margin-top: 18px
    }

    .mobile_key span,
    .mobile_key:before,
    .mobile_key:after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 17px;
        height: 2px;
        margin-left: -10px;
        background: #30e1ca;
        border-radius: 2px;
        display: inline-block;
        transition: all 0.3s ease-in-out;
    }

    .mobile_key span {
        margin-top: -4px;
    }

    .mobile_key:before {
        content: '';
        margin-top: 3px;
    }

    .mobile_key:after {
        content: '';
        margin-top: 10px;
    }

    .menu-open .mobile_key:before {
        opacity: 0;
        transition: 0.2s ease 0.1s;
    }

    .menu-open .mobile_key:after {
        margin-top: 2px !important;
        -webkit-transform: rotateZ(-45deg);
        transform: rotateZ(-45deg);
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, -webkit-transform 0.25s ease 0.36s;
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s;
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s, -webkit-transform 0.25s ease 0.36s;
    }

    .menu-open .mobile_key span {
        margin-top: 2px !important;
        -webkit-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, -webkit-transform 0.25s ease 0.36s;
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s;
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s, -webkit-transform 0.25s ease 0.36s;
    }

    #navBar {
        display: block;
        float: none;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: -80%;
        z-index: 1000;
        width: 80%;
        height: 10000px;
        -webkit-transition-duration: .5s;
        transition-duration: .5s;
        padding: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
        overflow-x: hidden;
    }

    #navBar.on {
        left: 0;
    }

    #navBar ul li {
        float: none;
        line-height: 30px;
        padding: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }

    #navBar ul li>a {
        padding: 5px 10px;
        color: #000;
        display: block;
        font-size: 0.875em;
        transition: all 0.2s linear;
    }

    #navBar ul li:first-child>a {
        padding-left: 10px;
    }

    #navBar ul li:hover>a {
        color: #30e1ca;
    }


    .content-left {
        width: 100%;
    }

    .content-right {
        width: 100%;
    }

    #navBar {
        margin: 0;
        padding: 20px 0;
    }

    #navBar ul {
        padding-top: 0;
    }

    .crumbs {
        padding: 100px 0 30px;
    }

    .crumb-title {
        font-size: 24px;
    }


}

















@media only screen and (max-width:760px) {

    .wrap {
        width: auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    h2 {
        font-size: 18px;
        line-height: 1.2;
    }


    .logo,
    #header.fixed .logo {
        font-size: 20px;
        margin: 15px 0;
    }

    .mobile_key {
        width: 35px;
        line-height: 30px;
        height: 30px;
        margin: 10px 0 0;
        border: none;
    }

    .mobile_key i {
        font-size: 25px;
    }

    #header.fixed #navBar ul li {
        padding: 0;
    }

    .content-left {
        padding: 0 0 10px;
    }

    .content-right {
        padding: 0;
    }

    .blog-archive-left .blog-news-single {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .blog-archive-left .blog-news-single h2 {
        font-size: 18px;
    }

    .blog-news-single .blog-news-title .news-title {
        padding-left: 55px;
    }

    .blog-news-single .file-box {
        margin-bottom: 15px;
    }

    .post-date {
        width: 45px;
        height: 45px;
        padding: 4px 0;
    }

    .newsletter-widget .icon-youxiang1 {
        top: 13px
    }

    .widget-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .widget-news span {
        font-size: 14px;
    }

    .newsletter-widget .search-group .blog-search-btn:before {
        height: 45px;
        top: -9px
    }

    .newsletter-widget .search-group .blog-search-btn {
        top: 9px;
    }

    .newsletter-widget .con {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .sidebar-widget ul>li>a {
        font-size: 14px;
    }

    .widget-tags li {
        margin-right: 7px;
    }

    .widget-tags li a span {
        font-size: 18px;
    }


    .sidebar-widget {
        margin-bottom: 30px;
    }

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

    .single-blog-post-details h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }


    .single-blog-post-content .img {
        margin-bottom: 10px;
    }

    .single-blog-post-content .tit {
        font-size: 16px;
    }

    .single-blog-post-content .dsc {
        font-size: 13px;
    }

    .single-blog-post-details {
        margin-bottom: 25px;
    }

    .add-post-btn {
        font-size: 14px;
        padding:7px 15px 7px 30px;
    }
    .add-post-btn:after{left:13px;}

    .blog-archive-area {
        padding: 20px 0 0;
    }

    .comments-box-area h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .form-group1 .form-control {
        width: 100%;
        margin-right: 0;
    }

    .form-group1 .form-control:first-child {
        margin-bottom: 10px;
    }

    .comments-form .form-group {
        margin-bottom: 10px;
    }

    .form-control {
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }

    .comments-form textarea {
        height: 100px;
    }

    .pagination-nav li a {
        padding: 3px 10px;
        font-size: 14px;
    }

    .widget-news i {
        font-size: 12px;
        margin-right: 5px;
    }

    .widget-news a {
        font-size: 16px;
    }

    .blog-news-single .blog-news-title {
        padding-top: 15px;
    }

    .file-box {
        margin-bottom: 3px;
    }

    .blog-news-single .blog-news-title .con {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .more-btn {
        font-size: 14px;
    }

    .blog-side-bar {
        margin-bottom: 20px;
    }

    .blog-side-bar .br {
        margin: 15px 0;
    }

    .sidebar-widget .widget-information li a {
        font-size: 13px;
    }

    .sidebar-widget .widget-information li {
        padding: 5px 0;
    }

    .comments-box-area {
        margin-bottom: 20px;
    }

    .single-blog-post-details .info .tit {
        font-size: 15px;
    }

    .single-blog-post-details .info .con {
        font-size: 13px;
    }

    .search-group input[type="search"] {
        height: 45px
    }

    .search-group .blog-search-btn {
        height: 43px
    }

    .widget-news li {
        padding-left: 60px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    #footer {
        padding: 20px 0;
    }

    .footer-left {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-center {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-top .tit {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .footer-bottom {
        margin-top: 20px;
    }

    .crumbs {
        font-size: 14px;
        padding-top: 90px;
    }

    .crumbs .file-box {
        margin-bottom: 10px;
    }
    .crumb-title,
    .detail .crumb-title {
        font-size: 20px;
    }
    .breadcrumb-item{font-size: 14px;}
    .crumbs .info-box{margin-top: 20px;}
    .info-box li{width:100%; font-size: 14px; text-align: left; padding:10px 0 0;}
    .info-box li:before{display:none;}
    .info-box li span{font-size: 14px;}
    
}

.positionFixed {
    bottom: 0px;
    left: 50%;
    position: fixed;
    transform: translate(-50%, 0%);
    z-index: 999;
    width: 100%;
    background-color: #e4e4e4;
    display: flex;
    justify-content: center;
}

.ad-div {
    margin-bottom: 50px;
    width: 100%
}

.t_de {
    height: 0.2rem;
    max-width: 100%;
    line-height: 0.3rem;
    font-size: 0.6rem;
    padding: 0.5rem 0 1rem 0;
    box-sizing: border-box;
    color: #707070;
    text-align: center;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* tab */
.blog-details__image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 40px;
  box-shadow: none;
  transition: none;
}

.blog-details__image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.detail-image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-image-slider .slider-item {
    display: none;
  /* position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center; */
}
.detail-image-slider .slider-item.active {
  opacity: 1;
  z-index: 2;
  display: block;
}
.detail-image-slider img {
  max-width: 100%;
  border-radius: 0px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  max-width: 510px;
}
.blog-details-arrow{
    overflow: hidden;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 16px auto;
}
.slider-arrow {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 50%;
    line-height: 20px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.arrowBtn{
    color: var(--primary--color);
    font-size: 16px;
     font-weight: bold;
         margin: 0 4px;
}
.slider-arrow svg{
      width: 80px;
  height: auto;
    color: var(--primary--color);
    fill: var(--primary--color);
}
.slider-arrow-left { left: 16px; }
.slider-arrow-right { right: 16px; }
.slider-arrow-left-top,.slider-arrow-right-bottom{
    top: 94%;
    
}
.slider-dots {
  position: absolute;
  left: 0; right: 0; bottom: 20%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 20;
}
.slider-dots span {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #bfc6d1;
  opacity: 0.5;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.slider-dots span.active {
  background: #163c6b;
  opacity: 1;
}
.total{
    line-height: 80px;
}
.total-top{
    top: -2%;
}
.total-top em,.total-bottom em{
    font-style: normal;
}
.total-bottom{
    bottom: -2%;
}

/* tab */
.news-block-thumbnail .blog-details-arrow{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}
.news-block-thumbnail .slider-arrow {
    display: flex;
    align-items: center;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)); */
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    color: var(--primary--color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: auto;
    /* box-shadow: 0 8px 25px rgb(0 0 0 / 14%), 0 4px 10px rgb(0 0 0 / 22%); */
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0.3;
}
.news-block-thumbnail .slider-arrow:hover{
    opacity: 1;
}
.news-block-thumbnail .slider-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary--color), #0d7bb8);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.news-block-thumbnail .slider-arrow:hover::before {
    opacity: 1;
}

.news-block-thumbnail .slider-arrow:hover svg {
    color: white;
}
.news-block-thumbnail .arrowBtn{
    display: none;
}
.news-block-thumbnail .slider-arrow svg{
    fill: currentColor;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.news-block-thumbnail .slider-arrow-left { 
    left: 20px;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.8)); */
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.news-block-thumbnail .slider-arrow-left::before {
    background: linear-gradient(135deg, var(--primary--color), var(--primary--color));
}

.news-block-thumbnail .slider-arrow-left:hover {
    background: linear-gradient(135deg, var(--primary--color), var(--primary--color));
    color: white;
}

.news-block-thumbnail .slider-arrow-right { 
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 255, 240, 0.8));
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.news-block-thumbnail .slider-arrow-right::before {
    background: linear-gradient(135deg, var(--primary--color), var(--primary--color));
    color: white;
}

.news-block-thumbnail .slider-arrow-right:hover {
    /* background: linear-gradient(135deg, #4ecdc4, #44a08d); */
    color: white;
}
.news-block-thumbnail .slider-arrow-left-top,.news-block-thumbnail .slider-arrow-right-bottom{
    display: none;
}

/* 脉冲动画效果 */
@keyframes pulse-left {
    0% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 
                    0 4px 10px rgba(255, 107, 107, 0.1),
                    0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 
                    0 4px 10px rgba(255, 107, 107, 0.1),
                    0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 
                    0 4px 10px rgba(255, 107, 107, 0.1),
                    0 0 0 0 rgba(255, 107, 107, 0);
    }
}

@keyframes pulse-right {
    0% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 
                    0 4px 10px rgba(78, 205, 196, 0.1),
                    0 0 0 0 rgba(78, 205, 196, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 
                    0 4px 10px rgba(78, 205, 196, 0.1),
                    0 0 0 10px rgba(78, 205, 196, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 
                    0 4px 10px rgba(78, 205, 196, 0.1),
                    0 0 0 0 rgba(78, 205, 196, 0);
    }
}

.news-block-thumbnail .slider-arrow-left:hover {
    /* animation: pulse-left 1.5s infinite; */
}

.news-block-thumbnail .slider-arrow-right:hover {
    /* animation: pulse-right 1.5s infinite; */
}

/* 图标旋转效果 */
.news-block-thumbnail .slider-arrow-left:active svg {
    transform: scale(0.9) rotate(-5deg);
}

.news-block-thumbnail .slider-arrow-right:active svg {
    transform: scale(0.9) rotate(5deg);
}
.news-block-thumbnail .slider-dots {
  position: absolute;
  left: 0; right: 0; bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 20;
}
.news-block-thumbnail .slider-dots span {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #bfc6d1;
  opacity: 0.5;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.news-block-thumbnail .slider-dots span.active {
  background: #163c6b;
  opacity: 1;
}
.news-block-thumbnail .total{
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 5px
}
.news-block-thumbnail .total-bottom{
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    background: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    line-height: inherit;
}

/* 新的页面计数器样式 */
.news-block-thumbnail .image-counter {
    text-align: center;
    margin: 15px 0;
    padding: 8px 16px;
    background: rgba(25, 149, 210, 0.1);
    border-radius: 20px;
    color: var(--primary--color);
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(25, 149, 210, 0.2);
}

.news-block-thumbnail .image-counter em {
    font-style: normal;
    font-weight: 600;
    color: var(--primary--color);
}

/* 缩略图样式 - 原版样式 */
.news-block-thumbnail .thumbnail-gallery {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.news-block-thumbnail .thumbnail-item {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary--color), #0d7bb8) border-box;
}

.news-block-thumbnail .thumbnail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 149, 210, 0.2), rgba(13, 123, 184, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.news-block-thumbnail .thumbnail-item:hover {
    transform: translateY(-8px) scale(1.1);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); */
    border-color: var(--primary--color);
}

.news-block-thumbnail .thumbnail-item:hover::before {
    opacity: 1;
}

.news-block-thumbnail .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-block-thumbnail .thumbnail-item:hover img {
    transform: scale(1.05);
}

.news-block-thumbnail .thumbnail-item:active {
    transform: translateY(-4px) scale(1.05);
}

/* 缩略图选中状态 */
.news-block-thumbnail .thumbnail-item.active {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 15px 30px rgba(225, 20, 20, 0.4),
                    0 8px 15px rgba(0, 0, 0, 0.3);
    border: 4px solid #e11414;
    background: white;
}

.news-block-thumbnail .thumbnail-item.active::before {
    opacity: 0.3;
    background: linear-gradient(135deg, rgba(25, 149, 210, 0.4), rgba(13, 123, 184, 0.4));
}

.news-block-thumbnail .thumbnail-item.active img {
    transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
    .news-block-thumbnail .detail-image-slider {
        border-radius: 0
    }
    .news-block-thumbnail .detail-image-slider img{
        max-width: 100%;
    }
    /* .detail-image-slider{
        min-height: 500px;
    } */
    .news-block-thumbnail .total-bottom{
        bottom: 0.3%;
    }
    
    /* 移动端轮播图按钮调整 */
    .news-block-thumbnail .blog-details-arrow {
        padding: 0 10px;
    }
    .news-block-thumbnail .slider-arrow {
        width: 50px;
        height: 50px;
        backdrop-filter: blur(8px);
    }
    .news-block-thumbnail .slider-arrow-left { 
        left: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .news-block-thumbnail .slider-arrow-right { 
        right: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* 移动端简化动画效果 */
    .news-block-thumbnail .slider-arrow-left:hover,
    .news-block-thumbnail .slider-arrow-right:hover {
        animation: none;
        /* transform: scale(1.05); */
    }
    
    /* 移动端页面计数器适配 */
    .news-block-thumbnail .image-counter {
        margin: 10px 0;
        padding: 6px 12px;
        font-size: 12px;
        margin-left: 50%;
        transform: translateX(-50%);
        display: inline-block;
    }
    
    /* 移动端缩略图适配 */
    .news-block-thumbnail .thumbnail-gallery {
        margin-top: 0;
        padding: 15px;
    }
    
    .news-block-thumbnail .thumbnail-container {
        gap: 15px;
        padding: 10px 0;
    }
    
    .news-block-thumbnail .thumbnail-item {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
    
    .news-block-thumbnail .thumbnail-item:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* 移动端选中状态 */
    .news-block-thumbnail .thumbnail-item.active {
        transform: scale(1.2);
        box-shadow: 0 15px 30px rgba(225, 20, 20, 0.4),
                    0 8px 15px rgba(0, 0, 0, 0.3);
        border: 4px solid #e11414;
        position: relative;
    }
    
    .news-block-thumbnail .thumbnail-item.active::after {
        content: '';
        position: absolute;
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        border: 2px solid #e11414;
        border-radius: 12px;
        animation: pulse-border 2s infinite;
    }
    
    @keyframes pulse-border {
        0% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.05);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
}

@media(max-width: 576px) { 
    
    /* 超小屏幕页面计数器优化 */
    .news-block-thumbnail .image-counter {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    /* 超小屏幕缩略图优化 */
    .news-block-thumbnail .thumbnail-gallery {
        margin-top: 0;
        padding: 10px;
    }
    
    .news-block-thumbnail .thumbnail-container {
        gap: 8px;
        /* justify-content: flex-start; */
    }
    
    .news-block-thumbnail .thumbnail-item {
        width: 60px;
        height: 60px;
        border-radius: 6px;
        flex-shrink: 0;
    }
    
    /* 超小屏幕选中状态 */
    .news-block-thumbnail .thumbnail-item.active {
        transform: scale(1.15);
        box-shadow: 0 12px 25px rgba(225, 20, 20, 0.4),
                    0 6px 12px rgba(0, 0, 0, 0.3);
        border: 3px solid #e11414;
    }
    
    .news-block-thumbnail .thumbnail-item.active::after {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-width: 1.5px;
        border-radius: 8px;
    }

}

/* ====================================
   专用于 detail_thumbnail.blade.php 的样式
   ==================================== */

/* 缩略图容器 - detail_thumbnail专用 */
.news-block-thumbnail .thumb-gallery {
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.news-block-thumbnail .thumb-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(25, 149, 210, 0.3) transparent;
}

.news-block-thumbnail .thumb-container::-webkit-scrollbar {
    height: 6px;
}

.news-block-thumbnail .thumb-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.news-block-thumbnail .thumb-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary--color), #0d7bb8);
    border-radius: 3px;
}

.news-block-thumbnail .thumb-item {
    display: block;
    position: relative;
    width: 60px;
    height: 80px;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
   transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
  
}

.news-block-thumbnail .thumb-item::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 149, 210, 0.2), rgba(13, 123, 184, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1; */
}
@keyframes jump {
    0% {
        
        transform: translateY(-8px);
    }
    50% {
        
        transform: translateY(-4px);
    }
    100% {
       
        transform: translateY(-8px);
    }
}
.news-block-thumbnail .thumb-item:hover {
    /* transform: translateY(-8px) scale(1.1); */
    border-color: var(--primary--color);
    opacity: 1;
    animation: jump 2s ease-in-out infinite;
}

.news-block-thumbnail .thumb-item:hover::before {
    opacity: 1;
}

.news-block-thumbnail .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-block-thumbnail .thumb-item:hover img {
    transform: scale(1.05);
}

.news-block-thumbnail .thumb-item:active {
    transform: translateY(-4px) scale(1.05);
}

/* 缩略图选中状态 - detail_thumbnail专用 */
.news-block-thumbnail .thumb-item.active {
    opacity: 1;
}

.news-block-thumbnail .thumb-item.active::before {
    opacity: 0.3;
    background: linear-gradient(135deg, rgba(25, 149, 210, 0.4), rgba(13, 123, 184, 0.4));
}

.news-block-thumbnail .thumb-item.active img {
    transform: scale(1.1);
}

/* 移动端适配 - detail_thumbnail专用 */
@media only screen and (max-width: 767px) {
    .news-block-thumbnail .thumb-gallery {
        margin-top: 0;
        padding: 15px;
    }
    
    .news-block-thumbnail .thumb-container {
        gap: 15px;
        padding: 10px 0;
    }
    
    .news-block-thumbnail .thumb-item {
        width: 40px;
        height: 53.3333px;
        border-radius: 8px;
    }
    
    /* 移动端选中状态 - 醒目效果 */
    .news-block-thumbnail .thumb-item.active {
        transform: scale(1.2);
        box-shadow: 0 15px 30px rgba(225, 20, 20, 0.4),
                    0 8px 15px rgba(0, 0, 0, 0.3);
        border: 4px solid #e11414;
        position: relative;
    }
    
    .news-block-thumbnail .thumb-item.active::after {
        content: '';
        position: absolute;
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        border: 2px solid #e11414;
        border-radius: 12px;
        animation: pulse-border-thumb 2s infinite;
    }
    
    @keyframes pulse-border-thumb {
        0% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.05);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    .news-block-thumbnail .detail-image-slider .slider-item.active{
        width: 100%
    }
}

/* 超小屏幕适配 - detail_thumbnail专用 */
@media(max-width: 576px) {
    .news-block-thumbnail .thumb-gallery {
        margin-top: 0;
        padding: 10px;
    }
    
    .news-block-thumbnail .thumb-container {
        gap: 8px;
    }
    
    .news-block-thumbnail .thumb-item {
        width: 40px;
        height: 53.333px;
        border-radius: 6px;
        flex-shrink: 0;
    }
    
    /* 超小屏幕选中状态 */
    .news-block-thumbnail .thumb-item.active {
        transform: scale(1.15);
        box-shadow: 0 12px 25px rgba(225, 20, 20, 0.4),
                    0 6px 12px rgba(0, 0, 0, 0.3);
        border: 3px solid #e11414;
    }
    
    .news-block-thumbnail .thumb-item.active::after {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-width: 1.5px;
        border-radius: 8px;
    }
}


@media (max-width: 375px) {
    .news-block-thumbnail .thumb-item {
        width: 45px;
        height: 60px;
    }
}

.detail-title{
        font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
}
/* pagenation */
.pagination {
    margin: 30px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination li {
        position: relative;
    display: inline-block;
    margin: 0 9px;
    padding: 4px 14px;
    border: 1px solid rgb(202, 202, 202);
    text-align: center;
    z-index: 1;
    transition: all 500ms ease;
}

.pagination li a {
    position: relative;
    display: inline-block;
    /* font-size: 16px; */
    font-family: var(--text-font);
    color: var(--title);
    padding: 0;
	border: none;
    font-weight: 500;
    text-align: center;
    z-index: 1;
    transition: all 500ms ease;
}
.pagination li.active{
  border: 1px solid #E5E5E5;
    background: var(--primary--color);
}
.pagination li.active a,.pagination li.active span{
    color: #fff;
}
/* pagenation */
.post-pagination {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  padding: 10px 20px !important;
}

.post-pagination li {
  position: relative;
  display: inline-block;
}

.post-pagination li a,
.post-pagination li span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: #ffffff;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  z-index: 1;
  transition: all 500ms ease;
}

.post-pagination li a.current {
  background: var(--primary--color);
  color: #fff;
}

.post-pagination li:hover a {
  background: var(--primary--color);
  color: #fff;
}