@media(min-width:769px) {

    /* 隐藏折叠菜单按钮 */
    .menu-btn {
        display: none;
    }

    /* 让 Logo+标题 容器“消失”，内部元素成为导航条直接子元素 */
    .logo-title-group {
        display: contents;
    }

    .navbar {
        padding: 1rem 2rem !important;
    }
}

@media(max-width:768px) {

    /* 导航条微调：减小内边距 */
    .navbar {
        padding: 1rem;
    }

    /* Logo+标题 容器纵向排列，成为一个整体 */
    .logo-title-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* 隐藏搜索输入框，仅显示图标 */
    .search-input {
        display: none;
    }

    .logo img {
        max-width: 150px !important;
    }

    .site-title {
        font-size: 1rem !important;
    }
}

.navbar {
    -webkit-box-shadow: 0 5px 10px -5px rgba(48, 143, 173, 0.38);
    -moz-box-shadow: 0 5px 10px -5px rgba(48, 143, 173, 0.38);
    box-shadow: 0 5px 10px -5px rgba(48, 143, 173, 0.38);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 防止元素挤在一起的最小间距 */
}

/* 折叠菜单按钮样式 */
.menu-btn {
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
    /* 防止被压缩 */
}

.logo img {
    max-width: 200px;
}

.menu-btn:hover {
    color: #007bff;
}

/* Logo 样式：固定尺寸，防止压缩 */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* 网站标题样式 */
.site-title {
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
    flex-shrink: 0;
    margin: unset;
    color: var(--color-primary);
}

/* Logo+标题 嵌套容器：控制手机端/电脑端的布局表现 */
.logo-title-group {
    flex-shrink: 0;
}

/* 搜索区域容器 */
.search-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* 搜索输入框样式 */
.search-input {
    outline: none;
    transition: all 0.3s ease;
    background-image: linear-gradient(white, white),
    linear-gradient(to bottom, rgb(146, 0, 142), rgb(223, 96, 46));
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    border-radius: 30px;
    width: 200px;
    padding: 0.75rem calc(2rem + 5px) 0.75rem 10px;
    color: var(--color-primary);
}

/* 输入框聚焦高亮：提升交互体验 */
.search-input:focus {
    background-image: linear-gradient(white, white),
    linear-gradient(to bottom, rgb(223, 96, 46), rgb(146, 0, 142));
}

/* 搜索图标样式 */
.search-icon {
    background: linear-gradient(to right, rgb(223, 96, 46), rgb(146, 0, 142));
    -webkit-background-clip: text;
    /* 兼容webkit内核浏览器 */
    background-clip: text;
    /* 让图标文字透明，显示背景渐变 */
    color: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.search-btn {
    background: none;
    border: none;
    right: 0;
}

@media(min-width:769px) {}

.category-box {
    background: #c9e9f2;
    border: 1px dashed #3088a3;
    /*padding: 5px;*/
    margin: 1rem 0 1rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.category-box ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    list-style: none;
    padding-inline-start: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-box ul li {
    margin: 0 5px;
    padding: 0 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;

}

.category-box ul li a {
    /*background-color:azure;*/
    height: 20px;
    display: block;
    padding: 5px 10px;
    color: #3088a3;
    border: 2px solid #3088a3;
    border-radius: 5px;
    text-decoration: none;
    background-color: #e6f9fd;
    transition: background-color 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.category-box ul li a.active {
    background: #3088a3;
    color: #fff;
}

.box-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0 1rem;
    width: 100%;
    position: relative;
}

.box-list-piece {
    grid-template-columns: 1fr 2fr 1fr;
}


.box-list .box-piece {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1rem;
}

.box-list .box {
    box-sizing: border-box;
    border-radius: 1rem;
    background: white;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.box-list .box .title {
    height: 1rem;
    line-height: 0.4rem;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: bold;
    background: #3088a3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.box-list .box .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: block;
    width: 55px;
    height: 3px;
    border-radius: 2px;
    /*background-color: red;*/
    transition: width .3s
}

.box-list .box:hover .title::after {
    width: 100%;
}

.box-list .box .title a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    color: white;
    font-size: 0.95rem !important;
}

.box-list .box .title a img {
    max-height: 2rem;
    max-width: 2rem;
    margin-right: 0.5rem;
    filter: hue-rotate(90deg);
    filter: drop-shadow(2px 2px 4px white);
}

.box-list .box .intro {
    padding: 0.5rem;
    font-size: 12px;
    color: #4b4c4f;
    line-height: 1.3rem;
    text-align: center;
}

.box-list .box ul {
    /*height: 350px;*/
    list-style: none;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    padding: 0 1rem;
    overflow-x: auto;
    scrollbar-width: thin;

}

.box-list .box ul {
    scrollbar-width: 3px;
}

.box-list .box ul::-webkit-scrollbar {
    width: 3px;
}

.box-list .box ul::-webkit-scrollbar-track {
    background: transparent;
}


.box-list .box ul li {
    padding: 4.6px 0;
    border-bottom: 1px dashed #f6f6f6;
    font-size: 1rem;
}

.box-list .box ul li a {
    color: #272727;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    font-size: 13.8px;
    font-family: Roboto, sans-serif;
    /*font-weight: 550;*/
}

.box-list .box ul li a img {
    vertical-align: middle;
    width: 16.6px;
    height: 16.6px;
    margin-right: 5px;
    border-radius: 50%;
}


.box-list .box .more-btn a {
    text-decoration: none;
    color: black;
    font-weight: 300;
    font-size: 13px;
    line-height: 30px;
}

.box-list .more-btn {
    background-image: linear-gradient(to top, white, rgba(255,255,255,0.6));
    position: absolute;
    /*background: white;*/
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    text-align: center;
    padding: 0.5rem 0;
    z-index: 9999;
}

.box-list .more-btn a {
    width: calc(100% - 6rem);
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}

.box-list .box ul li.row-line {
    display: flex;
    align-items: center;
    gap: 8px;
    counter-increment: number;
}

.box-list .box ul li.row-line::before {
    content: counter(number);
    display: inline-block;
    width: 20px;
    vertical-align: top;
    margin: 3px 3px 0 0;
    text-align: right;
    color: #4b4c4f;
    font-size: 11px;
    font-weight: 300;
    line-height: 18px;
    border: 1px solid #e3e3e3;
    border-radius: 50%;
    text-align: center;
}

.box-list .box ul li.row-line>a.star-link {
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-list .box ul li.row-line .info {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
    max-width: 11em;
}



.box-list .box ul li.row-line>a.visit-icon {
    flex: 0 0 auto;
    width: 22px !important;
    height: 22px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
}

.box-list .box ul li.row-line>a.visit-icon:hover {
    transform: translateZ(0) scale(1.06);
}

.box-list .box ul li.row-line>a.visit-icon img {
    width: 16px;
    height: 16px;
    display: block;
}

@media(max-width:768px) {
    .box-list {
        grid-template-columns: 1fr;
    }

    .page-box-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-box-list li{
        width:50% !important;
        float:left;
    }

    /*.page-box-list ul {*/
    /*    display:grid;*/
    /*    grid-template-columns: repeat(2,1fr);*/
    /*    column-gap: 5px;*/
    /*    width:calc(100% - 2rem) !important;*/
    /*    overflow: hidden;*/
    /*}*/
    /*.page-box-list ul li.row-line{*/
    /*    max-width:calc(100% - 5px) !important;*/
    /*    overflow: hidden;*/
    /*    gap:6px;*/
    /*}*/

    .box-piece {
        grid-template-columns: 1fr !important;
        grid-template-rows: unset !important;
    }

    .box-list .box ul {
        /*height: 320px !important;*/
    }

    .box-list .more-btn {
        width: 100%;
    }
}

.footer {
    background: #3088a3;
    text-align: center;
    color: white;
    font-weight: 300;
    padding: 2rem;
    font-size: 1.1rem;
}

.nav-box {
    position: fixed;
    top: 65px;
    left: 0;
    bottom: 0;
    width: 100vw;
    display: none;
    z-index: 9999;
    grid-template-columns: repeat(2, 1fr);
}

.nav-box ul {
    list-style: none;
    overflow-y: auto;
    /*隐藏滚动条*/
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
}

.nav-box ul:first-child li {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-box ul:first-child li.active {
    background: #3088a3;
}

.nav-box ul:first-child li.active a {
    color: white;
    text-shadow: 3px 3px 3px #3088a3;
}

.nav-box ul:last-child li {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #afd8e375;
}

.nav-box ul li:last-child {
    border-bottom: unset;
}

.nav-box ul a {
    text-decoration: none;
    display: block;
    /*溢出省略号*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-box ul:first-child {
    background: #111010d1;
}

.nav-box ul:first-child a {
    color: white;
    font-size: 14px;
    padding-left: 16px;
}

.crumb-box {
    width: 100%;
    margin-bottom: 1rem;
    color: #3088a3;
}

.crumb-box a {
    background: #e6f9fd;
    border: 1px solid #85b1bd;
    color: #3088a3;
    border-radius: 7px;
    text-decoration: none;
    padding: 6px 8px;
    font-weight: 500;
    font-size: 13px;
}

.crumb-box .home {
    padding: 5px 10px;
    border: 1px solid #3088a3;
    border-radius: 5px;
    text-decoration: none;
    background: #3088a3;
    color: #fff;
}

i {
    margin: 0 0.3rem;
}

.crumb-box i:first-child {
    margin-left: unset;
}

.page-container {
    background: #4b5050;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.page-container .page-header {
    background: #303030;
    padding: 1rem;
}

.page-container .page-header .title {
    font-size: 1.5rem;
    color: white;
}

.page-container .page-header .intro {
    color: #ddd;
    font-weight: 300;
}

.page-container .page-top {
    background: #404040;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 1rem;
}

@media(min-width:769px) {
    .page-container .page-top {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .page-container .page-box {
        margin: unset;
    }
}

@media(max-width:1024px) and (min-width:769px) {

    .page-container .page-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.page-container .page-box {
    border-radius: 1rem;
    background: #272727;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: flex-end;
    border: 2px solid #424242;
    text-decoration: none;
    overflow: hidden;
    counter-increment: number;
    margin: 0.25rem 0;
}

.page-content .page-box {
    margin: unset;
}

.page-container .page-content {
    counter-reset: number 3;
}


.page-container .page-box .item-title::before {

    display: inline-block;
    content: counter(number) " .";
    font-weight: 300;
}


.page-container .page-box .item-logo {
    /*width: 100%;*/
    /*padding-bottom: 50%;*/
    width: 100%;
    margin-bottom: 60%;
}

.page-container .page-box .item-logo img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}

.page-container .page-box .item-logo .item-img {
    display: block;
    background: black;
}

.page-container .page-box .item-title {
    z-index: 1;
    background: #606060;
    color: #fff;
    width: calc(100% - 20px);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    max-height: 43px;
    line-height: 20px;
    text-align: center;
    flex-wrap: nowrap;
}

.page-container .page-box .item-icon {
    width: 1rem;
    height: 1rem;
}

.page-container .page-box .item-good-txt {
    z-index: 2;
    background: #fa255e;
    line-height: 18px;
    width: calc(100% - 20px);
    padding: 10px;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: lowercase;
}

.page-container .page-box .item-intro {
    background-color: #272727;
    color: #c5c5c5;
    padding: 0 0.5rem;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.page-container .page-box:hover {
    border: 2px solid #787878;
}

.page-container .page-box:hover .item-logo img {
    transform: scale(1.2);
    filter: blur(3px) brightness(0.9);
    transition: transform 0.5s ease, filter 0s ease;
}

.page-container .page-box:hover .item-good-txt {
    /* background: #464646; */
}

.page-container .page-box .view-box {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: hide 0.5s ease;
    height: 150px;
}

.page-container .page-box .view-box .button {
    padding: 1rem;
    text-align: center;
    width: 100%;
    border-radius: 0.5rem;
    color: white;
}

.page-container .page-box .view-box .button.read {
    background: #3088a3;
}

.page-container .page-box .view-box .button.visit {
    background: #fa255e;
;
    margin-top: 1rem;
}

.page-container .page-box .view-box .read:hover {
    animation: pulse-animation-visit 1s infinite;
}

.page-container .page-box .view-box .visit:hover {
    animation: pulse-animation-review 1s infinite;
}

.page-container .page-box:hover .view-box {
    display: flex;
    animation: show 0.5s ease;
}

.page-container .page-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    padding: 1rem;
}

@media(min-width:1025px) {
    .page-container .page-content {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media(max-width:768px) {
    .page-container .page-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.page-container .page-more {
    padding: 1rem;

}

.page-container .page-more a.btn {
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    border: 2px solid #3088a3;
    padding: 16px 20px;
    color: #3088a3;
    text-decoration: none;
    text-align: center;
    display: block;
}

.page-container .page-more a.btn:hover {
    background: #3088a3;
    color: white;
}

.detail-box {
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: #303030;
    border-left: 2px solid #303030;
    border-right: 2px solid #303030;
    border-right: 2px solid #303030;
    overflow-y: hidden;
}

.detail-box .top-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: black;
}

.detail-box .top-box .carousel {
    flex: 1;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    overflow: hidden;
    height: 250px;
}

.detail-box .top-box .carousel .btn {
    cursor: pointer;
    font-size: 2.4rem;
    color: #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-box .top-box .carousel .btn i {
    color: #e3e3e3;
    margin: unset;
}

.detail-box .top-box .carousel .btn:hover i {
    color: #e3e3e3;
}

.detail-box .top-box .carousel .thumbs-wrapper {
    display: block;
    position: relative;
}

.detail-box .top-box .carousel .thumbs-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 1rem;
    cursor: pointer;
    height: 250px;
    z-index: 1;
}

.detail-box .top-box .carousel .thumbs-wrapper:hover img {
    filter: blur(0px) brightness(0.3);
    transition: filter 0.2s ease;
}

.detail-box .top-box .carousel .view-txt {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    animation: hide 0.5s ease;
}

.detail-box .top-box .carousel .thumbs-wrapper:hover .view-txt {
    display: flex;
    animation: show 0.5s ease;
}

.detail-box .top-box .side-box {
    width: 72px;
    height: 250px;
    padding: 4px 4px 0 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.detail-box .top-box .side-box img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0.5rem;
    margin-bottom: 4px;
    filter: blur(0px) brightness(0.7);
    transition: filter 0.2s ease;
}

.detail-box .top-box .side-box img.active,
.detail-box .top-box .side-box img:hover {
    filter: blur(0px) brightness(1.2);
    transition: filter 0.2s ease;
    transform: scale(1.05);
}

.detail-box .top-box .thumbs {
    width: 240px;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.detail-box .top-box .thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 1rem;
}

.detail-box .top-box .thumbs .btn-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.detail-box .top-box .thumbs .btn-box .btn {
    padding: 0.5rem;
    background: #3088a3;
    color: white;
    border-radius: 0.5rem;
    font-size: 1.2rem;
}

.detail-box .top-box .thumbs .btn-box .btn:hover {
    animation: pulse-animation-visit 1s infinite;
    background: #def3f8;
    border: 2px solid #3088a3;
    color: #3088a3;
}

.detail-box .top-box .thumbs:hover {
    background: #def3f8;
}

.detail-box .top-box .thumbs:hover img {
    opacity: 0.5;
    transform: scale(1.3);
    transition: transform 0.3s ease;
}

.detail-box .top-box .carousel .view-txt {
    display: flex;
    animation: show 0.5s ease;
    position: absolute;
    top: 50%;
    left: 3rem;
    right: 3rem;
    bottom: 0;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.0rem;
    font-weight: bold;
    text-align: center;
    background: #fa255e;
    height: fit-content;
    /*垂直居中*/

    height: fit-content;
    padding: 1rem 1rem;
    transition: transform 0.5s ease;
    transform: translateY(-50%);
    /* width: 100%; */
    /* max-width: 330px; */
    border-radius: 10px;
    height: 15px;
}

.detail-box .intro-box {
    padding: 1rem;
    color: white;
}

.detail-box .intro-box .title-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.detail-box .intro-box .title-box h1 {
    text-decoration: underline;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    font-weight: bold;
    font-size: 3rem;
}

.detail-box .intro-box a {
    text-decoration: none;
    color: #3088a3;
}

.detail-box .intro-box .review {
    padding: 1rem 2rem;
    background: #3088a3;
    letter-spacing: 2px;
    color: white;
    border-radius: 1rem;
    text-decoration: none;
}

.detail-box .intro-box .review:hover {
    animation: pulse-animation-visit 1s infinite;
    background: #def3f8;
    border: 2px solid #3088a3;
    color: #3088a3;
}

.detail-box .intro-box .intro {
    color: #f3f3f3;
    line-height: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-box .intro-box .tags-box {
    background: unset;
}

.detail-box .intro-box a.btn {
    display: block;
    margin-top: 1rem;
    background-color: #fa255e;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    padding: 16px 0;
}

.detail-box .intro-box a.btn:hover {
    background: white;
    color: #fa255e;
}

.detail-container .page-header {
    background: rgba(48, 136, 163, 0.8);
    color: white;
}

.detail-container {
    background: unset;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.detail-box .toolbar {
    display: none;
    height: 36px;
    padding: 8px 15px 8px 15px;
    background: #252525;
    justify-content: center;
    align-items: center;
    position: relative;
}

.detail-box .toolbar .left {
    display: flex;
    gap: 6px;
    width: max-content;
}

.detail-box .toolbar .left .txt {
    padding: 5px 8px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px dashed #606060;
    color: #bbb;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.detail-box .toolbar .right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 5px;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
    justify-content: flex-end;
    margin-left: 20px;
}

.detail-box .toolbar .right .box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 4px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    background: #444;
}

.detail-box .toolbar .right .box .icon-box {
    display: flex;
    font-size: 15px;
    width: 20px;
    height: auto;
    align-items: center;
    justify-content: center;
    color: #707070;
}

.detail-box .toolbar .right .box .txt-box {
    display: flex;
    font-size: 11px;
    width: 100%;
    height: auto;
    max-height: 12px;
    overflow: hidden;
    text-align: center;
    align-items: flex-start;
    justify-content: center;
    color: #bbb;
    text-transform: lowercase;
    font-weight: 400;
    line-height: 12px;
}

.detail-content {
    border-radius: 1rem;
    margin: 1rem 0;
    padding: 1.5rem;
    background: #303030;
    color: white;
}

.detail-content .title {
    background: #aaa;
    color: #282828;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.detail-content .content {
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 20px;
}

.fun-list {
    position: fixed;
    font-size: 1.4rem;
    width: 50px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* 垂直居中 */
    z-index: 9999;
    border-radius: 10px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 0.8rem;
    padding: 0.5rem 0;
}

.fun-list img{
    width:40px;
    height:40px;
}

.bottom-all {
    background-color: #ffffff;
    border: 6px solid #fa255e;
    border-radius: 15px;
    min-height: 120px;
    height: auto;
    color: #fa255e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bottom-all a {
    background: unset;
    color: #fa255e;
    font-size: 30px;
}

.single-page {
    margin: 1rem auto;
}

.single-page h1 {
    color: #fa255e;
    font-size: 22px;
    margin-bottom: 4px;
}

.single-box {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 15px;
    font-size: 15px;
    line-height: 20px;
}

.single-box code {
    background-color: #3a3a3a;
    padding: 15px;
    border-radius: 10px;
    color: white;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    direction: ltr;
    display: block;
    text-align: initial;
}

.single-box .form-box {
    background-color: #3a3a3a;
    padding: 15px;
    border-radius: 10px;
    color: white;
}

.single-box .form-box .form-item {
    padding: 10px 0;
    clear: both;
}

.single-box .form-box .form-item label {
    display: block;
    font-weight: 700;
    font-size: 16px;
    float: none;
    line-height: 1.3;
    margin: 0 0 4px 0;
    padding: 0;
    word-break: break-word;
    word-wrap: break-word;
}

.single-box .form-box .form-item input {
    border: 1px solid #9dc5cf;
    border-radius: 10px;
    cursor: pointer;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 10px;
    color: #333;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    float: none;
    font-size: 16px;
    font-family: inherit;
    padding: 6px 10px;
    height: 38px;
    width: 60%;
    line-height: 1.3;
}

.single-box .form-box .btn-item {
    margin-top: 2rem;
}

.single-box .form-box .btn-item button {
    width: 100%;
    background-color: #FA255E;
    color: #fff;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 16px;
    line-height: 2;
}

.index-article{
    padding:1rem;
    background:white;
    border-radius:1rem;
    text-align: center;
    margin-bottom:1rem;
    line-height:1.1rem;
    font-size:15px;
}
.index-article h2{
    font-size:1.2rem;
    padding-bottom:0.5rem;
    color:#3c8fa7;
    border-bottom:4px solid #3c8fa7;
    border-radius: 1rem;
    font-weight:700;
}
.index-article a{
    padding:5px 10px;
    background: #333;
    color:white;
    text-decoration: none;
    border-radius:8px;
}

.index-article div:last-child{
    margin-top:2rem;
}

@media(max-width:768px) {
    .detail-box .side-box {
        display: none !important;
    }

    .detail-box .thumbs {
        display: none;
    }

    .detail-box .top-box .carousel .view-txt {
        left: 0;
        right: 0;
    }

    .detail-box .toolbar {
        display: flex;
    }
    .single-box .form-box .form-item input{
        width:100%;
    }
}