html {
    background-color: #def3f8;
    scrollbar-width: thin; 
    scrollbar-color: #ddd #fff;
}

::-webkit-scrollbar {
    width: 12px; 
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Inter-Regular-optimized.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Inter-Medium-optimized.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Inter-Bold-optimized.woff2') format('woff2');
    font-display: swap;
}

body {
    font-family: "Inter", sans-serif;
}
.apps {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    row-gap: 5px;
}

.apps a {
    display: block;
    width: 90%;
    /* height: calc(100% / 1 * 1) !important; */
    text-decoration: none;
}

.apps a img {
    display: block;
    margin: 0 auto;
    width: 90%;
    height:auto;
    border-radius: 12px;
}

.apps a h5 {
    display: block;
    text-align: center;
    color: #080707;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
}
.container {
    margin: 0 auto;
    padding: 0;
    width: 1200px;
}

.header {
    width: 100%;
    /*padding-top: 1rem;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    width: 12%;

}


.header .website_intro {
    width: 30%;
    font-size: 1.2rem;
    color: #3088a3;
    font-weight: 300;
}

.header .search {
    background: url("../images/search-bg.png") no-repeat;
    background-size: contain;
    width: 246.72px;
    height: 42px;
    line-height: 42px;
    position: relative;
}

.header .search .btn {
    position: absolute;
    right: 73px;
    top: 7px;
    height: 30px;
    width: 30px;
}

.header .search .input {
    position: absolute;
    top: 0;
    border: none;
    width: calc(100% - 50px);
    height: 100%;
    background: none;
    line-height: 57px;
    padding: 0 10px;
    font-size: 18px;
    font-weight: 300;
    color: #3088a3;
}

.header .search .input:focus {
    outline: none;
}

.header .logo img {
    /*position: absolute;*/
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
}

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

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

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

.tags-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;
}

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

.header+.crumb-box {
    margin-top: 1rem;
}

.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-category {
    width: 100%;
    background: #4b5050;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

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

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

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

.page-category .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;
}

.page-category .page-box .item-logo {
    /*width: 100%;*/
    /*padding-bottom: 50%;*/
    width: 100px;
    height: 100px;
}

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

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

.page-category .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-category .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-category .page-box .item-intro {
    background-color: #272727;
    color: #c5c5c5;
        padding: 0.5rem;
    height: 58px;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

.page-category .page-box:hover .item-logo img {
    transform: scale(1.7);
    filter: blur(4px) brightness(0.3);
    transition: transform 0.5s ease, filter 0s ease;
}

.page-category .page-box:hover .item-good-txt {
    background: #464646;
}

.page-category .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: 50%;
}

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

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

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

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

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

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

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

}
.page-category .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-category .page-more a.btn:hover
{
    background:#3088a3;
    color:white;
}

.page-category.page-detail {
    background: unset;
    box-shadow: 0px 0px 20px #3088a3;
    filter: brightness(1.2);
}

.page-detail .page-header {
    background: rgba(48, 136, 163, 0.8);
    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 {
    background: #e3e3e3;
    border-radius: 0.5rem;
    color: #303030;
    margin: unset;
}

.detail-box .top-box .carousel .btn:hover i {
    background: #3088a3;
    animation: pulse-animation-visit 1s infinite;
    border-radius: 0.5rem;
    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 .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-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: 0.9rem;
    line-height: 1.5rem;
}

.star-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.star-link .info{
    display: flex;
    align-items: center;
    gap: 6px;
}

.star-link .star{
    color: gold;
    font-size: 13px;
    margin-left: 10px;
}
.pic-list {
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: #c5e7f0;
    padding: 1rem;
    border: 1px dashed #5ca2b7;
}

.pic-list .box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}

.pic-list .box .item {
    border-radius: 1rem;
    padding: 4px;
    border: 7px solid #3088a3;
    height: 180px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background: #111;
    z-index: 1;
    overflow: hidden;
}

.pic-list .box .item::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(17 239 239) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: none;
    z-index: -1;
}

.pic-list .box .item:hover::after {
    animation: borderGlowExpand 2s infinite ease-out;
}

@keyframes borderGlowExpand {
    0% {
        opacity: 0.6;
        transform: scale(0.5);
    }
    70% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.pic-list .box .item .txt {
    width: 80%;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    background: rgba(84, 148, 165, .8);
    color: white;
    font-size: 1.0rem;
    font-weight: 550;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.pic-list .more-btn {
    margin-top: 0.5rem;
    background: #def3f8;
    border-radius: 1rem;
    padding: 0.5rem;
    border: 1px solid #85b1bd;
}

.pic-list .more-btn a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #3088a3;
    font-size: 0.9rem;
}

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

.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: 0.2rem;*/
/*    line-height: 0.4rem;*/
/*    padding: 1rem;*/
/*    border-bottom: 3px solid #f28705;*/
/*    font-size: 0.95rem;*/
/*    font-weight: bold;*/
/*    background: #3088a3;*/
/*    color: white;*/
/*}*/

/*.box-list .box .title a{*/
/*    text-decoration: none; */
/*    color: inherit;         */
/*}*/

.box-list .box .title {
    height: 0.2rem;                   /* 保留原来的高度 */
    line-height: 0.4rem;              /* 保留行高 */
    padding: 1rem;                    /* 保留内边距 */
    border-bottom: 3px solid #f28705; /* 保留底部边框 */
    font-size: 0.95rem;               /* 保留字体大小 */
    font-weight: bold;                /* 保留字体加粗 */
    background: #3088a3;              /* 保留背景颜色 */
    color: white;                     /* 保留字体颜色 */
    
    display: flex;                    /* 使用 flex 布局使图标和文字在一行 */
    align-items: center;              /* 垂直居中对齐 */
    justify-content: flex-start;      /* 左对齐 */
}

/* 为标题中的 a 标签添加样式 */
.box-list .box .title a {
    display: flex;                    /* 使用 flex 布局使图标和文字在一行 */
    align-items: center;              /* 垂直居中对齐 */
    text-decoration: none;            /* 去除超链接的下划线 */
    color: white;                     /* 保持文字颜色 */
}

/* 动态添加图标，利用 ::before 伪元素 */
.box-list .box .title a::before {
    content: '';                          /* 使用空内容 */
    display: inline-block;                 /* 设置为内联块元素 */
    width: 24px;                          /* 图标的宽度 */
    height: 24px;                         /* 图标的高度 */
    margin-right: 10px;                   /* 图标与文字之间的间距 */
    background-size: contain;             /* 保持图标比例 */
    background-position: center;          /* 图标居中 */
    background-repeat: no-repeat;         /* 防止图标重复 */
}


.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;
  scrollbar-color: #dedede;
}

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

.box-list .box ul::-webkit-scrollbar-thumb {
  background-color: red;
  border-radius: 4px;
}

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





.box-list .box ul li {
    padding: 5px 0;
    border-bottom: 1px solid #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: 0.9rem;
    font-weight: 550;
}

.box-list .box ul li a .num {
    color: white;
    background: #e1e1e1;
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    line-height: 1.2rem;
}

.box-list .box ul li a img {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 0.3rem;
}

.box-list-piece .box .more-btn {
    
    width: calc(100% - 6rem);
    margin: 0.5rem auto;
    text-align: center;
}

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

.box-list .more-btn {
    background: #e3e3e3;
    margin: 0 auto;
    width: calc(100% - 6rem);
    margin: 0.5rem auto;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(44, 111, 132, 0.0705882353);
    border-radius: 15px;
}

.paginate{
    width:100%;
    display: flex;
    justify-content: space-around;
    margin-top:1rem;
    padding:1rem;
}
.paginate .btn{
    padding:10px 1.5rem;
    font-size:16px;
    font-weight:500;
    background: #3088a3;
    color:white;
    border-radius: 8px;
}

.paginate .btn #page{
    font-size:20px;
    margin:0 1rem;
}

.paginate .btn.disabled{
    background: white;
    color:#666;
    cursor: not-allowed;
    border:1px solid #3088a3;
}

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

@keyframes pulse-animation-visit {
    0% {
        box-shadow: 0 0 0 0px rgba(84, 187, 213, 0.8)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

@keyframes pulse-animation-review {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 82, 129, 0.8)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

@keyframes pulse-animation-carousel-btn {
    0% {
        box-shadow: 0 0 0 0px rgba(227, 227, 227, 0.8)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

    .adsense-list{
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        grid-gap: 1rem;
        width:calc(100% - 2rem);
        background:#303030;
        border-radius: 8px;
        padding:1rem;
        margin-bottom: 1rem;
    }
    .adsense-item{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .adsense-item div{
        display: -webkit-box;
        /*font-size:14px;*/
        font-weight: 300;
        line-height: 1.5rem;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        color:white;
    }
    .adsense-item img{
        width:100%;
        height:auto;
        aspect-ratio: 1 / 1;
        border-radius: 8px;
    }
    /* 行容器：左主链接 + 右放大镜 */
.box-list .box ul li.row-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 覆盖通用规则：主链接不强制 100% 宽，由 flex 决定 */
.box-list .box ul li.row-line > a.star-link {
  flex: 1 1 auto;       /* 占据剩余空间 */
  width: auto !important;
  min-width: 0;         /* 允许内部文本省略 */
  display: flex;        /* 你原来就有 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;
}

/* 右侧放大镜：固定尺寸，避免被通用 a 规则拉伸 */
.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;
  /*border: 1px solid #3088a3;*/
  /*background: #e6f9fd;*/
}

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

.box-list .box ul li.row-line > a.visit-icon img {
  width: 16px;
  height: 16px;
  display: block;
}
/* ==== 修复补丁：防止序号和图标被挤瘦，并让标题省略号 ==== */

/* 1) 让行内左侧信息区可收缩，但不要再限制 max-width */
.box-list .box ul li.row-line .info{
  min-width: 0;              /* 允许内容区域参与收缩 */
  max-width: none;           /* 覆盖掉之前的 11em 限制 */
  overflow: hidden;          /* 搭配省略号 */
  white-space: nowrap;
  text-overflow: ellipsis;   /* 从 clip 改为省略号 */
}

/* 2) 序号固定宽度且不收缩 */
.star-link .info .num{
  flex: 0 0 1.2rem;          /* 固定尺寸，不收缩 */
  min-width: 1.2rem;
  max-width: 1.2rem;
  margin-right: 6px;         /* 与文字间距更贴合 */
}

/* 3) 小图标固定，不收缩（含站点logo/国旗等出现在 .info 内的 img） */
.star-link .info img{
  flex: 0 0 20px;            /* 固定 20px，不收缩 */
}

/* 4) 主链接块保持弹性（若你已有同名规则，这里只是补充确保覆盖） */
.box-list .box ul li.row-line > a.star-link{
  flex: 1 1 auto;
  min-width: 0;              /* 让内部 .info 能正确触发省略号 */
}

    