/* ==================== indexNew.html 页面样式 ==================== */

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #1D77CE;
}

.container {
    width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    display: block;
}

/* ==================== 顶部导航 ==================== */
.new-header {
    width: 100%;
}

.new-header-top {
    background-color: #0B5AA7;
    height: 110px;
    position: relative;
}

.new-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-top: 15px;
}

.new-logo-area {
    display: flex;
    align-items: center;
}

.new-logo-img {
    height: 50px;
    width: auto;
}

.new-logo-text {
    color: #fff;
    font-size: 22px;
    letter-spacing: 4px;
    margin-left: 12px;
    white-space: nowrap;
}

.new-search-area {
    display: flex;
    align-items: center;
}

.new-search-input {
    width: 200px;
    height: 34px;
    border: 1px solid #fff;
    border-right: none;
    border-radius: 17px 0 0 17px;
    padding: 0 14px;
    background-color: transparent;
    color: #fff;
    font-size: 13px;
    outline: none;
}

.new-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.new-search-btn {
    width: 50px;
    height: 34px;
    border: 1px solid #fff;
    border-left: none;
    border-radius: 0 17px 17px 0;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.new-search-btn img {
    width: 18px;
    height: 18px;
}

.new-login-area {
    display: flex;
    gap: 16px;
}

.new-login-link {
    color: #fff;
    font-size: 13px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    transition: all 0.3s;
}

.new-login-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* 导航栏 */
.new-nav {
    background-color: #ededed;
    border-bottom: 2px solid #ddd;
}

.new-nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 0;
}

.new-nav-item a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s;
    white-space: nowrap;
}

.new-nav-item.active a,
.new-nav-item a:hover {
    background-color: #1469BC;
    color: #fff;
}

/* ==================== 轮播新闻区域 ==================== */
.news-carousel-section {
    padding: 30px 0 40px;
    background-color: #fff;
}

.news-carousel-wrapper {
    display: flex;
    gap: 20px;
}

.carousel-big {
    flex: 0 0 60%;
    height: 380px;
    overflow: hidden;
    border-radius: 4px;
}

.swiper-container-news {
    width: 100%;
    height: 100%;
}

.swiper-container-news .swiper-slide {
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.slide-overlay {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 25px 30px 20px;
    position: relative;
}

.slide-date {
    position: absolute;
    top: -55px;
    left: 20px;
    background-color: #fff;
    color: #333;
    width: 52px;
    height: 54px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
}

.slide-date small {
    font-size: 11px;
    font-weight: normal;
    color: #666;
}

.slide-title {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slide-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.carousel-side-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.side-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1D77CE;
}

.side-list-header h3 {
    font-size: 18px;
    color: #1D77CE;
    font-weight: bold;
}

.more-link {
    font-size: 13px;
    color: #1D77CE;
}

.side-news-item {
    /*display: flex;*/
    gap: 12px;
    /*padding: 20px;*/
    background-color: #fff;
    transition: background 0.3s;
}

.side-news-item:hover {
    background-color: #f8fbff;
}

.side-news-item:first-of-type .side-date {
    position: static;
    flex-shrink: 0;
    font-size: 24px;
    color: #1D77CE;
}

.side-date-inline {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}
.side-news-Top{
    border-bottom: 1px solid #E0E5EA;
    padding-bottom: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.side-news-info {
    flex: 1;
    min-width: 0;
}

.side-news-title {
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.6;
}

.side-news-desc {
    font-size: 12px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 2px;
}

.side-news-with-img {
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background-color: #fafafa;
    border-radius: 4px;
    border-bottom: none;
    flex: 1;
}

.side-news-thumb {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 3px;
}

/* ==================== 公司动态 ==================== */
.company-news-section {
    padding: 45px 0;
    /*background-color: #f5f7fa;*/
    background-image: url("../img/Container (3).png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 35px;
}

.section-title {
    font-size: 26px;
    color: #333;
    font-weight: bold;
    display: inline-block;
    position: relative;
}

.title-line {
    width: 50px;
    height: 6px;
    background-color: #1D77CE;
    margin: 10px auto 0;
    border-radius: 2px;
}

.company-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 30px;
    margin-bottom: 30px;
}

.company-news-item {
    background-color: transparent;
    padding: 18px 5px;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.company-news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.c-news-line{
    width: 48px;
    height: 3px;
    background: #1267BB;
    display: block;
    margin-bottom: 10px;
}
.c-news-date {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #1D77CE;
    margin-bottom: 8px;
}

.c-news-title {
    font-size: 16px;
    color: #333;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*white-space: nowrap;*/
    line-height: 1.6;
    display: -webkit-box;
    /* 2. 限制显示的行数为 2 行 */
    -webkit-line-clamp: 2;
    /* 3. 设置子元素的排列方向为垂直方向 */
    -webkit-box-orient: vertical;
    /* 4. 超出部分隐藏 */
    overflow: hidden;
}

.company-news-item:hover .c-news-title {
    color: #1D77CE;
}

.view-more-btn-wrap {
    text-align: center;
    margin-top: 15px;
}

.view-more-btn {
    display: inline-block;
    padding: 10px 70px;
    border: 1px solid #1D77CE;
    color: #1D77CE;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background-color: #1D77CE;
    color: #fff;
}

/* ==================== 通知公开 + 信息公开 ==================== */
.info-disclose-section {
    padding: 45px 0;
    /* 蓝色背景带纹理 */
    /*background-color: #1565A8;*/
    background-image: url("../img/Container (4).png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /*background-image:*/
    /*    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),*/
    /*    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);*/
}

.info-disclose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.info-col {
    background-color: rgba(21, 85, 160, 0.4);
    border-radius: 6px;
    padding: 25px;
}

.info-col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 12px;
}

.info-col-header h3 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.col-more {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.col-more:hover {
    color: #fff;
}

.info-featured {
    margin-bottom: 18px;
    border-radius: 4px;
    overflow: hidden;
}

.info-featured img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list-full {
    margin-top: 10px;
}

.info-list-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.info-list-full a .info-list-item{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.info-list-full a:last-child .info-list-item {
    border-bottom: none;
}

.info-list-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: color 0.3s;
}

.info-list-item:hover .info-list-title{
    color: #6DE4FFFF;
}
.ImagesNews{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.ImagesNews >div{
    width: 100%;
    height: 174px;
    padding: 10px 20px;
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    background: #f5f5f5;
}
.info-list-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    align-self: flex-start;
    display: flex;
    align-items: center;
}
.aptImg{
     display: none;
}
.imgNews-info:hover{
     background-color:#0B5AA7FF!important;
}
.imgNews-info:hover .side-news-item{
    background-color:#0B5AA7FF!important;
}
.imgNews-info:hover small{
     color: #fff!important;
}
.imgNews-info:hover .side-date{
    color: #fff!important;
}
.imgNews-info:hover .side-news-title{
    color: #fff!important;
}
.imgNews-info:hover .side-news-desc{
    color: #fff!important;
}
.imgNews-info:hover .aptImg{
     display: block;
}
.imgNews-info:hover .eptImg{
    display: none;
}
/* ==================== 预留栏目名称 - 图标导航 ==================== */
.service-icons-section {
    padding: 50px 0;
    /*background: linear-gradient(180deg, #f0f3f8 0%, #fff 100%);*/
    position: relative;
    background-image: url("../img/Frame 427319502.png");
    background-repeat: no-repeat;
}

.service-icons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/foot_bg.png');
    background-size: cover;
    opacity: 0.03;
    pointer-events: none;
}

.service-title-wrap,
.links-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.service-main-title,
.links-main-title {
    font-size: 26px;
    color: #1D77CE;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 50px;
    height: 6px;
    background-color: #1D77CE;
    margin: 10px auto 0;
    border-radius: 2px;
}

.service-icons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-group {
    background-color: transparent;
    border-radius: 8px;
    padding: 30px 20px;
}

.service-group-title {
    text-align: left;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #DBDBDB;

}
.service-group-title-line{
    width: 112px;
    height: 4px;
    background-color:#1267BBFF;
    position: relative;
    top: 18px;
}
.service-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 15px;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.service-icon-item:hover {
    transform: translateY(-4px);
}

.service-icon-circle {
    width: 64px;
    height: 64px;
    /*border-radius: 50%;*/
    /*background: linear-gradient(135deg, #e8f2ff 0%, #d0e5f9 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    /*border: 2px solid #c5ddf2;*/
    transition: all 0.3s;
}

.service-icon-item:hover .service-icon-circle {
    /*background: linear-gradient(135deg, #1D77CE 0%, #1469BC 100%);*/
    border-color: #1D77CE;
}

.service-icon-circle img {
    /*width: 32px;*/
    /*height: 32px;*/
    object-fit: contain;
    /*filter: brightness(0.8);*/
    transition: filter 0.3s;
}

.service-icon-item:hover .service-icon-circle img {
    /*filter: brightness(0) invert(1);*/
}

.service-icon-item span {
    font-size: 13px;
    color: #555;
    transition: color 0.3s;
}

.service-icon-item:hover span {
    color: #1D77CE;
}

/* ==================== 友情链接 ==================== */
.friend-links-section {
    padding: 45px 0;
    background-color: #FFF;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.link-item {
    display: block;
    text-align: center;
    padding: 12px 15px;
    background-color: rgba(3,58,112,0.08);
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.link-item:hover {
    background-color: #1D77CE;
    color: #fff;
    border-color: #1D77CE;
}

/* ==================== 页脚 ==================== */
.new-footer {
    background: linear-gradient(135deg, #0a3a6e 0%, #0B4881 50%, #0d5a96 100%);
    padding: 40px 0;
    color: #A9B7CF;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    /*height: 65px;*/
    /*filter: brightness(0) invert(0.85);*/
}

.footer-qrcode {
    text-align: center;
}

.footer-qrcode img {
    width: 95px;
    height: 95px;
    border-radius: 4px;
    background: #fff;
    padding: 4px;
    margin-bottom: 6px;
}

.footer-qrcode p {
    font-size: 12px;
    color: #A9B7CF;
}

.footer-right {
    text-align: right;
}

.footer-contact-title {
    font-size: 16px;
    color: #82BCF5;
    margin-bottom: 10px;
}

.footer-right p {
    font-size: 13px;
    line-height: 2;
}

/* ==================== 响应式 ==================== */

/* ---------- 平板 (≤1024px) ---------- */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    /* 轮播区域 */
    .ImagesNews {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    .ImagesNews > div {
        height: 200px !important;
    }

    /* 公司动态 */
    .company-news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    /* 通知公开+信息公开 */
    .info-disclose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* 服务图标 */
    .service-icons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-items {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 友情链接 */
    .links-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 页脚 */
    .footer-content {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ---------- 手机横屏 / 小平板 (≤768px) ---------- */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 12px;
    }

    /* ---- 头部 ---- */
    .new-header-top {
        height: auto;
        padding: 10px 0;
    }

    .new-header-inner {
        flex-wrap: wrap;
        height: auto;
        padding-top: 0;
        gap: 10px;
    }

    .new-logo-area {
        width: 100%;
        justify-content: center;
    }

    .new-logo-img {
        height: 36px;
    }

    .new-logo-text {
        font-size: 16px;
        letter-spacing: 2px;
        margin-left: 8px;
    }

    .new-search-area {
        width: 100%;
        justify-content: center;
        padding: 5px 0;
    }

    .new-search-input {
        width: 70%;
        max-width: 260px;
    }

    .new-login-area {
        width: 100%;
        justify-content: center;
        padding-bottom: 8px;
        gap: 10px;
    }

    .new-login-link {
        font-size: 12px;
        padding: 4px 10px;
    }

    /* 导航栏 - 横向滚动 */
    .new-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .new-nav-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        white-space: nowrap;
    }

    .new-nav-item a {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* ---- 轮播新闻 ---- */
    .news-carousel-section {
        padding: 15px 0 20px;
    }

    .ImagesNews {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .ImagesNews > div {
        height: auto !important;
        width: 100% !important;
        min-height: 160px;
    }

    .ImagesNews > div:first-child,
    .ImagesNews > div:last-child {
        height: 220px !important;
    }

    .side-news-Top {
        flex-direction: row;
    }

    .side-news-title {
        font-size: 13px;
    }

    .side-news-desc {
        font-size: 11px;
    }

    /* ---- 公司动态 ---- */
    .company-news-section {
        padding: 25px 0;
        background-size: cover;
    }

    .section-title-wrap {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .company-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .company-news-item {
        padding: 12px 10px;
    }

    .c-news-date {
        font-size: 12px;
    }

    .c-news-title {
        font-size: 13px;
    }

    .view-more-btn {
        padding: 8px 40px;
        font-size: 13px;
    }

    /* ---- 通知公开+信息公开 ---- */
    .info-disclose-section {
        padding: 25px 0;
        background-size: cover;
    }

    .info-col {
        padding: 18px 15px;
        border-radius: 4px;
    }

    .info-col-header h3 {
        font-size: 17px;
    }

    .col-more {
        font-size: 12px;
    }

    .info-featured img {
        height: 140px;
    }

    .info-list-title {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

    .info-list-time {
        font-size: 11px;
    }

    .info-list-item {
        padding: 8px;
    }

    /* ---- 服务图标 ---- */
    .service-icons-section {
        padding: 30px 0;
    }

    .service-title-wrap,
    .links-title-wrap {
        margin-bottom: 25px;
    }

    .service-main-title,
    .links-main-title {
        font-size: 20px;
    }

    .service-group {
        padding: 15px 8px;
    }

    .service-group-title {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .service-items {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px 8px;
    }

    .service-icon-circle {
        width: 48px;
        height: 48px;
    }

    .service-icon-circle img {
        width: 28px;
        height: 28px;
    }

    .service-icon-item span {
        font-size: 11px;
    }

    /* ---- 友情链接 ---- */
    .friend-links-section {
        padding: 25px 0;
    }

    .links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .link-item {
        padding: 10px 8px;
        font-size: 12px;
    }

    /* ---- 页脚 ---- */
    .new-footer,
    .footer {
        padding: 25px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-qrcode img {
        width: 80px;
        height: 80px;
    }

    .footer-qrcode p {
        font-size: 11px;
    }

    .footer-right {
        text-align: center;
    }

    .footer-contact-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .footer-right p {
        font-size: 11px;
        line-height: 1.8;
    }
}

/* ---------- 手机竖屏 (≤480px) ---------- */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* 头部 */
    .new-logo-img {
        height: 30px;
    }

    .new-logo-text {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .new-search-input {
        width: 65%;
        height: 30px;
        font-size: 12px;
    }

    .new-search-btn {
        width: 40px;
        height: 30px;
    }

    .new-login-link {
        font-size: 11px;
        padding: 3px 8px;
    }

    .new-nav-item a {
        padding: 8px 10px;
        font-size: 12px;
    }

    /* 轮播 */
    .ImagesNews > div:first-child,
    .ImagesNews > div:last-child {
        height: 180px !important;
    }

    .side-date {
        font-size: 18px;
    }

    .side-date small {
        font-size: 10px;
    }

    /* 公司动态 */
    .section-title {
        font-size: 18px;
    }

    .company-news-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .company-news-item {
        padding: 10px;
    }

    .c-news-title {
        font-size: 12px;
    }

    .c-news-title + .c-news-title {
        font-size: 11px !important;
    }

    /* 通知公开 */
    .info-col-header h3 {
        font-size: 15px;
    }

    .info-list-title {
        font-size: 11px;
    }

    .info-featured img {
        height: 120px;
    }

    /* 服务图标 - 3列 */
    .service-main-title,
    .links-main-title {
        font-size: 18px;
    }

    .service-group-title {
        font-size: 15px;
    }

    .service-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px 8px;
    }

    .service-icon-circle {
        width: 42px;
        height: 42px;
    }

    .service-icon-circle img {
        width: 24px;
        height: 24px;
    }

    .service-icon-item span {
        font-size: 10px;
    }

    /* 友情链接 - 2列 */
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .link-item {
        padding: 8px 6px;
        font-size: 11px;
    }

    /* 页脚 */
    .footer-logo {
        height: 35px;
    }

    .footer-qrcode img {
        width: 65px;
        height: 65px;
    }

    .footer-right p {
        font-size: 10px;
        line-height: 1.7;
    }

    .footer-contact-title {
        font-size: 13px;
    }
}
