.home-menus {
    padding-bottom: 0
}

.home-menus .row {
    margin-right: -5px;
    margin-left: -5px;
}

.home-menus .row .col-md-3,
.home-menus .row .col-md-6 {
    padding-right: 5px;
    padding-left: 5px;
}

.home-menu-item {
    display: block;
    margin-bottom: 20px;
}

.home-menu-item,
.home-menu-item:hover,
.home-menu-item:focus {
    color: #333;
    text-decoration: none;
}

.home-menu-text {
    padding: 22px;
    border-radius: 4px;
    background: #FFF;
}

.home-menu-text:hover {
    box-shadow: 0 0 10px 0 rgba(80, 90, 109, .16);
}

.home-menu-text h4 {
    font-size: 18px;
    font-weight: bold;
    /* letter-spacing: 1px; */
    line-height: 1.3em;
    margin: 0
}

.home-menu-text p {
    line-height: 30px;
    color: #888;
    margin: 0;
}

.home-menu-sale:hover {
    box-shadow: 8px 8px 20px 0 rgb(82 90 246 / 40%);
}

.home-menu-sale .home-menu-text {
    background: linear-gradient(to bottom, #525af6 0%, rgba(82, 90, 246, 0.85) 100%);
}

.home-menu-sale h4 {
    color: #FFF;
    font-size: 20px;
    line-height: 1.5em;
    padding: 13px 0;
}

/* 产品列表样式 */
.products {
    /* padding-top: 80px; */
    /* padding-bottom: 70px; */
}

.product-box {
    position: relative;
    border: 1px solid #e6e9f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.04);
}

.product-box:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.08);
    border-color: #1062fe;
}

.product-box.active {
    border-color: #1062fe;
    box-shadow: 0px 5px 15px rgba(16, 98, 254, 0.3);
}

.product-title {
    margin-bottom: 15px;
}

.product-title h4 {
    font-size: 18px;
    font-weight: bold;
    color: #2a2d48;
    margin: 0 0 10px 0;
}

.product-price {
    margin-bottom: 20px;
    height: 36px;
    /* 确保没有价格时，高度保持一致 */
}

.product-price p {
    font-size: 23px;
    font-weight: bold;
    color: #7159ff;
    margin: 0;
    line-height: 1;
}

.product-price p .currency {
    font-size: 16px;
    margin-right: 2px;
}

.product-price p .period {
    font-size: 12px;
    color: #666;
    font-weight: normal;
    margin-left: 2px;
}

.product-description {
    margin-top: 15px;
    color: #666;
    margin-bottom: 15px;
}

.product-description p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 8px 0;
    color: #777;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    min-height: 150px;
}

.product-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #444;
    font-size: 14px;
}

.product-features li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: #7159ff;
    border-radius: 50%;
    margin-right: 8px;
}

.product-features.empty {
    position: relative;
}

.product-features.empty:after {
    content: "暂无数据";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: #999;
    font-size: 14px;
    transform: translateY(-50%);
}

.product-actions {
    text-align: center;
    margin-top: 20px;
}

.product-actions .btn {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: none;
    transition: all 0.3s ease;
}

.product-actions .btn-primary {
    background-color: #7159ff;
    border-color: #7159ff;
    color: #fff;
}

.product-actions .btn-primary:hover {
    background-color: #5f47d6;
    border-color: #5f47d6;
}

.product-actions .btn-outline {
    background-color: transparent;
    border: 1px solid #1062fe;
    color: #1062fe;
}

.product-actions .btn-outline:hover {
    background-color: #1062fe;
    color: #fff;
}

/* 服务模块样式 */
.services {
    /* padding-bottom: 70px; */
}

.service-box {
    text-align: center;
    border-radius: 4px;
    border: 1px solid #e6e9f0;
    border-top: 3px solid #e6e9f0;
    box-shadow: 0px 5px 10px 0px rgb(205 210 218 / 50%);
    margin-bottom: 30px;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all ease-in-out 0.15s;
    transition: all 0.15s ease-in-out;
    overflow: hidden;
    position: relative;
    min-height: 380px
}

.service-box:hover,
.service-box-active {
    border-top: 3px solid #1062fe;
    box-shadow: 0px 5px 10px 0px rgba(16, 98, 254, 0.5);
}

.service-box .hot {
    padding: 0 70px;
    right: -50px;
    top: 13px;
    height: 38px;
    line-height: 38px;
    position: absolute;
    color: #FFF;
    font-weight: bold;
    font-size: 18px !important;
    background: linear-gradient(-45deg, #FFC457, #FF4952);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.server-title {
    padding-top: 40px;
}

.server-title h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-top: 10px;
}

.server-text {
    padding: 20px 50px 30px;
}

.server-text p {
    color: gray;
    font-size: 16px;
    line-height: 24px;
}

.btn-service {
    color: #1062fe;
    font-size: 16px;
    border: 1px solid #1062fe;
    border-radius: 0;
    padding: 0.5em 2.2em;
    margin-top: 20px;
    background-color: #FFF;
}

.btn-service:hover {
    color: #FFF;
    border-color: #1062fe;
    background-color: #1062fe;
}

.service-box:hover .btn-service {
    color: #FFF;
    border-color: #1062fe;
    background-color: #1062fe;
}

/* 特性模块样式 */
.features {
    color: #FFF;
    padding: 100px 0 70px;
    background: url(./web/ojwyun_www/tt/img/bg_home.png) 0 0 no-repeat;
    background-color: #2a2d48;
}

.feature-box {
    border-radius: 4px;
    padding: 30px 20px 20px 20px;
    margin-bottom: 30px;
    background: #FFF;
    transition: all .15s;
}

.feature-box:hover {
    box-shadow: 0px 5px 15px 0px rgba(182, 182, 182, 0.9);
}

.feature-icon {
    color: #FFF;
}

.feature-body {
    color: gray;
    font-size: 16px;
    line-height: 24px;
}

.feature-body h4 {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.partner-box {
    text-align: center;
    border: 1px solid #e6e9f0;
    border-radius: 4px;
    transition: all .15s;
    padding: 10px 15px;
    min-height: 128px;
    margin-bottom: 30px;
}

@media (max-width: 970px) {
    .partner-box {
        min-height: 88px;
    }
}

.partner-box:hover {
    border: 1px solid transparent;
    box-shadow: 0px 5px 10px 0px rgb(205 210 218 / 50%);
}

.partner-box img {
    width: 100%;
}

/* 新闻模块样式 */
.home-news {
    padding-top: 100px;
    padding-bottom: 70px;
    background: #f9f9f9;
}

.home-new-box {
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e6e9f0;
    border-radius: 4px;
    transition: all .15s;
    background: #FFF;
}

.home-new-box a:hover {
    color: #333
}

;

.home-new-box:hover {
    border: 1px solid transparent;
    box-shadow: 0px 5px 10px 0px rgb(205 210 218 / 50%);
}

.home-new-box-title {
    color: #333;
}

.home-new-box-title h4 {
    font-size: 18px;
    font-weight: bold;
    border-left: 3px solid #e6e9f0;
    padding-left: 8px;
}

.home-new-box:hover h4 {
    border-left: 3px solid #1062fe;
}

.home-new-box-title h4 span {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    float: right;
}

.home-new-box-text {
    color: gray;
    font-size: 16px;
    line-height: 24px;
}

.home-new-box-more {
    color: #1062fe;
    font-size: 16px;
}

/* 页脚样式 */
.footer-new {
    padding-top: 70px;
    padding-bottom: 24px;
    background-color: #242a37;
}

.footer-item h4 {
    color: #FFF;
    margin-top: 0;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .footer-item h4 {
        padding-bottom: 20px;
        border-bottom: 1px solid #666;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.footer-item ul {
    padding: 0;
    list-style-type: none;
}

.footer-item ul li {
    margin-bottom: 12px;
}

.footer-item ul a {
    color: #FFF;
    font-size: 16px;
    opacity: 0.5;
}

.footer-bottom {
    border-top: 1px solid #3b3f42;
    margin-top: 50px;
    padding-top: 24px;
}

.footer-bottom .footer-bottom-text {
    color: #FFF;
    opacity: 0.5;
    font-size: 16px;
    line-height: 24px
}

.footer-bottom .footer-bottom-payimg {
    text-align: right;
}

.footer-bottom .footer-bottom-payimg img {
    height: 24px;
}

@media (max-width: 767px) {
    .footer-bottom .footer-bottom-payimg {
        text-align: left;
    }

    .footer-bottom .footer-bottom-payimg img {
        margin-top: 20px;
        margin-left: 0;
        margin-right: 10px;
    }
}

/* 杂项 */
.gray {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

/* 浮动蒙版 */
.float_mask {
    position: fixed;
    z-index: 19999;
    width: 100%;
    right: 0;
    bottom: 0;
    height: 105px;
}

.float_layer {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #071828;
    filter: alpha(opacity=80);
    opacity: 0.80;
}

.float_content {
    position: relative;
    z-index: 2;
    width: 1005px;
    height: 100%;
    margin: 0 auto;
    padding-left: 70px;
}

.float_bg,
.float_close {
    float: left;
}

.float_bg {
    position: relative;
    width: 820px;
    height: 135px;
    margin-top: -27px;
}

.float_slogan {
    position: absolute;
    background: url("/web/ojwyun_www/tt/img/bg_act_ie6.png") 0 0 no-repeat;
}

.float_slogan {
    left: 0;
    bottom: 0;
    width: 820px;
    height: 135px;
    cursor: pointer;
}

.float_close {
    width: 60px;
    margin-top: 30px;
}

.float_close a {
    display: block;
    width: 53px;
    height: 52px;
    margin-left: 7px;
    background: url("/web/ojwyun_www/tt/img/close.png") 0 0 no-repeat;
    _background: url("/web/ojwyun_www/tt/img//close_ie6.png") 0 0 no-repeat;
    -webkit-transition: all 400ms;
}

/* 响应式导航样式 */
@media (max-width: 1199px) {
    .navbar-header {
        float: none;
    }

    .navbar-toggle {
        margin-top: 15px !important;
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin: 7.5px -15px;
    }

    .navbar-nav>li {
        float: none;
    }

    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-text {
        float: none;
        margin: 15px 0;
    }

    /* since 3.1.0 */
    .navbar-collapse.collapse.in {
        display: block !important;
    }

    .collapsing {
        overflow: hidden !important;
    }
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
    max-height: 100%;
}

.homenav .navbar-right>li>a:hover {
    color: #1062fe;
}

@media (max-width: 768px) {
    .homenav .navbar-nav>li>a {
        line-height: 20px !important;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar-nav .open .dropdown-menu {
        background-color: #253650;
    }

    .navbar-nav .open .dropdown-menu>li>a {
        line-height: 26px;
    }

    .homenav .navbar-right {
        margin-top: 20px !important;
    }
}

@media (max-width: 1199px) {
    .homenav .navbar-nav {
        margin-top: 20px;
        margin-left: 0;
        min-width: 150px
    }

    .homenav .navbar-nav>li.open {
        font-weight: bold;
    }

    .homenav .navbar-nav>li>.dropdown-menu {
        left: 15px;
    }

    .homenav .navbar-nav>li>a {
        line-height: 50px;
    }

    .homenav .navbar-nav>li>a .f-line {
        display: none;
    }

    .homenav .navbar-right {
        padding-top: 20px;
        margin-top: 40px;
        margin-bottom: 30px;
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
    }

    .homenav .navbar-right>li>.btn {
        width: 120px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* Banner样式 */
.banner-home {
    padding: 80px 0;
    color: #FFF;
    background: linear-gradient(0deg, #031974, #1934a7) !important;
}

.banner-home-text h1 {
    font-size: 50px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 30px;
}

.banner-home-text h3 {
    opacity: .9;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.5;
}

.banner-home-text ul {
    padding: 0;
    list-style-type: none;
}

.banner-home-text ul li {
    opacity: .9;
    font-size: 23px;
    font-weight: bold;
    padding-bottom: 10px;
}

.banner-btn .btn-banner {
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    border: 1px solid #1062fe;
    border-radius: 0;
    padding: 0.5em 2.2em;
    margin-top: 15px;
    background-color: #1062fe;
}

.banner-btn .btn-banner-white {
    background-color: transparent;
    border: 1px solid #FFF;
    margin-left: 25px;
}

.banner-form {
    text-align: center;
    color: #333;
    padding: 30px;
    background: #FFF;
    box-shadow: 0 0 5px 5px rgb(255 255 255 / 10%);
    border-radius: 4px;
}

.banner-form h1 {
    font-size: 30px;
    font-weight: bold;
    margin: 15px 0 40px;
}

.banner-form .form-group input {
    font-size: 16px;
    box-shadow: none;
    height: 50px;
    border: 1px solid #ddd
}

.banner-form .btn-register-account {
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    padding: 13px 0;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #1062fe;
    background-color: #1062fe;
}

/* 轮播控件样式 */
.carousel-control .glyphicon-menu-left,
.carousel-control .glyphicon-menu-right {
    display: block
}

.slide-item {
    padding-top: 30px;
}

@media (max-width: 767px) {
    .slide-item {
        height: 400px
    }
}

.slide-item .text {
    color: #fff;
    padding-top: 100px;
}

@media (max-width: 767px) {
    .slide-item .text {
        padding-top: 40px;
    }
}

.slide-item .text h1 {
    font-size: 50px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 25px;
}

.slide-item .text p {
    opacity: .8;
    font-size: 22px;
    line-height: 35px;
    margin-top: 0;
}

@media (max-width: 767px) {
    .slide-item .text p {
        font-size: 20px;
    }
}

.slide-item .text ul {
    padding: 0;
    list-style-type: none;
}

.slide-item .text ul li {
    opacity: .8;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 5px;
}

.slide-item .img {
    padding-top: 50px;
    text-align: right;
}

@media (max-width: 767px) {
    .slide-item .img {
        display: none;
    }
}

.slide-item .img img {
    height: 350px;
}

.slide-item .btn-banner {
    display: inline-block;
    color: #FFF;
    font-size: 18px;
    border: 1px solid #1062fe;
    border-radius: 0;
    padding: 0.5em 2.2em;
    margin-top: 60px;
    background-color: #1062fe;
}

.slide-item .btn-banner-white {
    background-color: transparent;
    border: 1px solid #FFF;
    margin-left: 25px;
}

@media (max-width: 767px) {
    .slide-item .btn-banner {
        margin-top: 20px;
    }
}

/* 新闻资讯板块样式 */
.news-section {
    padding: 80px 0;
    background-color: #f8fafb;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid #e6e9f0;
    padding-bottom: 30px;
}

.news-title h2 {
    font-size: 32px;
    font-weight: bold;
    color: #2a2d48;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.news-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.news-more .more-link {
    color: #1062fe;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.news-more .more-link:hover {
    color: #0041cc;
    text-decoration: none;
}

.news-more .more-link:after {
    content: " →";
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.news-more .more-link:hover:after {
    transform: translateX(3px);
}

.news-item {
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 8px;
    padding: 30px 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    height: 200px;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #1062fe;
}

.news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 15px;
}

.news-item-title {
    flex: 1;
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    max-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    position: relative;
    padding-left: 15px;
}

.news-item-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 20px;
    background-color: #1062fe;
    border-radius: 2px;
}

.news-item-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.news-item-title a:hover {
    color: #1062fe;
    text-decoration: none;
}

.news-item-date {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    background: #f5f7fa;
    padding: 6px 14px;
    border-radius: 12px;
    border: 1px solid #e6e9f0;
    flex-shrink: 0;
}

.news-item-content {
    color: #666;
    line-height: 1.7;
    flex: 1;
    overflow: hidden;
}

.news-item-content p {
    margin: 0;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100%;
    color: #555;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .news-title h2 {
        font-size: 24px;
    }
    
    .news-item {
        height: auto;
        min-height: 180px;
    }
    
    .news-item-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .news-item-date {
        align-self: flex-start;
    }
    
    .news-item-content p {
        -webkit-line-clamp: 3;
    }
    
    .news-section {
        padding: 50px 0;
    }
}

/* 渐变横幅样式 */
.gradient-banner {
    position: relative;
    overflow: hidden;
}

.gradient-banner-content {
    position: relative;
    z-index: 2;
}

.gradient-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .gradient-banner {
        padding: 60px 0 !important;
    }
    
    .gradient-banner-content h1 {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }
    
    .gradient-banner-content p {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    .gradient-banner-content p:last-of-type {
        margin-bottom: 30px !important;
    }
    
    .gradient-banner-btn {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .gradient-banner {
        padding: 40px 0 !important;
    }
    
    .gradient-banner-content h1 {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    
    .gradient-banner-content p {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }
    
    .gradient-banner-content p:last-of-type {
        margin-bottom: 25px !important;
    }
    
    .gradient-banner-btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

/* 新闻网格布局样式 */
.news-section-grid {
    padding: 80px 0;
    background: #ffffff;
}

.news-grid-item {
    background: #ffffff;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0;
    padding: 0 0 20px 0;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    height: 100px;
    display: flex;
    flex-direction: column;
}

.news-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-bottom-color: #1062fe;
}

.news-grid-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 5px;
    padding-top: 5px;
}

.news-grid-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-grid-title a:hover {
    color: #1062fe;
    text-decoration: none;
}

.news-grid-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    height: 44.8px; /* 固定高度，确保2行内容的一致高度 (14px * 1.6 * 2 = 44.8px) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 5px;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .news-section-grid {
        padding: 60px 0;
    }
    
    .news-grid-item {
        padding: 0 0 18px 0;
        margin-bottom: 20px;
        height: auto;
    }
    
    .news-grid-title {
        font-size: 15px;
        height: auto;
        line-height: 1.4;
        margin: 0 0 10px 0;
        -webkit-line-clamp: 1;
    }
    
    .news-grid-title a {
        color: #333;
    }
    
    .news-grid-title a:hover {
        color: #1062fe;
    }
    
    .news-grid-content {
        font-size: 13px;
        height: 39px; /* 固定高度，确保2行内容的一致高度 (13px * 1.5 * 2 = 39px) */
        line-height: 1.5;
        -webkit-line-clamp: 2;
    }
}