@charset "utf-8";
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@font-face {
    font-family: "SAIC-REGULAR";
    src: url("../saicfont/SOURCEHANSANSCN-REGULAR.OTF");
    font-display: swap;
}

@font-face {
    font-family: "SAIC-MEDIUM";
    src: url("../saicfont/SOURCEHANSANSCN-MEDIUM.OTF");
    font-display: swap;
}

@font-face {
    font-family: "SAIC-LIGHT";
    src: url("../saicfont/SOURCEHANSANSCN-LIGHT.OTF");
    font-display: swap;
}

@font-face {
    font-family: "SAIC-HEAVY";
    src: url("../saicfont/SOURCEHANSANSCN-HEAVY.OTF");
    font-display: swap;
}

@font-face {
    font-family: "SAIC-EXTRALIGHT";
    src: url("../saicfont/SOURCEHANSANSCN-EXTRALIGHT.OTF");
    font-display: swap;
}

@font-face {
    font-family: "SAIC-BOLD";
    src: url("../saicfont/SOURCEHANSANSCN-BOLD.OTF");
    font-display: swap;
}

@font-face {
    font-family: "Gotham-Light";
    src: url("../saicfonten/GOTHAM-LIGHT.SVG");
    font-display: swap;
}

@font-face {
    font-family: "Gotham-Book";
    src: url("../saicfonten/GOTHAM-BOOK.TTF");
    font-display: swap;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th,
td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

ul, ol {
    list-style: none;
}

body {
    font-family: "Gotham-Light", "SAIC-REGULAR";
    font-size: 12px;
    /*line-height: 1.5;*/
    color: #666;
    background: #fff;
    margin-top: 60px;
    box-sizing: border-box;
    min-height: calc(100vh - 60px);
    /*display: flex;*/
    /*flex-direction: column;*/
}

input::-ms-clear,
input::-ms-reveal {
    display: none;
}

img {
    vertical-align: top;
    border: 0;
}

.body-container-flex {
    flex: 1;
    min-height: calc(100vh - 182px);
}

::-moz-selection {
    background: #2db7f5;
    color: #fff;
}

::selection {
    background: #2db7f5;
    color: #fff;
}

a {
    color: #000;
    background: transparent;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

a:hover {
    color: #408ed6;
}

a:active {
    color: #408ed6;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

a[disabled] {
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

.headerMob{
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
}
.headerMob .logo {
    display: block;
    /* 设置行内元素为块状元素才能设置宽高 */
    width: 156px;
    height: 12px;
    /* 设置宽高才能显示背景 */
    background-image: url(../images/icon/logo-mob.png);
    /* 相对位置是相对于css文件的位置而不是html */
    background-size: 100%;
    background-repeat: no-repeat;
}
.mobBanner{
    width: 100%;
}
.nav-trigger {
    width: 24px;
    height: 24px;
    background: url(../images/icons/menu.png);
    background-size: 100%;
    background-repeat: no-repeat;
    /*background-position: 50% 50%;*/
}
.headerPC{
    margin-top: -60px;
    box-shadow: 2px 3px 4px 0px #4C54590D;
}
.headerPC .iconlogo{
    width: 520px;
    display: block;
    padding: 28px 68px;
}
.headerPC .banner1{
    width: 100%;
    display: block;
}
.headerPC .colms{
    width: 80%;
    margin: 0 auto;
    padding: 38px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerPC .item{
    width: 120px;
    height: 100px;
    display: flex;flex-direction: column;align-items: center;justify-content: center;
}
.headerPC .item >img{
    width: 54px;
    height: 54px;
}
.headerPC .item >div{
    text-align: center;
    font-size: 24px;
    margin-top: 13px;
}
.headerPC .item.current{
    color: #208ECF;
    font-weight: 500;
}
.line2ellipsis{
    display: -webkit-box; /* 必须结合弹性盒子 */
    -webkit-box-orient: vertical; /* 设置盒子方向为垂直 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 添加省略号 */
    -webkit-line-clamp: 2; /* 限制显示的行数为 2 行 */
    line-height: 1.5; /* 可选：设置行高以控制高度 */
}
.line1ellipsis{
    display: -webkit-box; /* 必须结合弹性盒子 */
    -webkit-box-orient: vertical; /* 设置盒子方向为垂直 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 添加省略号 */
    -webkit-line-clamp: 1; /* 限制显示的行数为 2 行 */
}


.footer .footer-icp {
    background: #4589FC;
    color: #fff;
    font-size: 20px;
    height: 70px;
    text-align: center;
    width: 100%;
    display: flex;align-items: center;justify-content: center;
}











.nav-list {
    font-family: "SAIC-MEDIUM";
    position: fixed;
    z-index: 99997;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 109, 255, 0.95);
    /*padding: 48% 15px 0;*/
    /*overflow-y: scroll;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-list .nav-header {
    /*position: fixed;*/
    /*top: 8px;*/
    /*right: 15px;*/
    /*left: 15px;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 100%;
    padding: 8px 15px;
    /*background: rgba(14, 109, 255, 0.9);*/
    /*background-color: rgba(14, 109, 255, 0.9);*/
    /*z-index: 99998;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-list .nav-header .nav-logo {
    width: 157px;height: 12px;margin-top: 4px;
}

.nav-list .nav-header .nav-close {
    width: 24px;
}

.nav-list .menu {
    padding: 120px 15px 8px;
    box-sizing: border-box;
    height: 0;
    flex: 1;
    overflow: auto;
    display: flex;
    width: 100%;
    justify-content: center;
}

.nav-list .menu li {
    border-bottom: 0.5px solid #ffffff;
    color: #fff;
}

.nav-list .menu a {
    color: #fff;
    padding-left: 6px;
}

.nav-list .menu_head {
    width: 100%;
    padding: 24px 0px 14.5px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    margin: 0px;
    background-image: url(/2025autoshow/assets/images/icons/pro_plus.png);
    background-size: 14px 14px;
    background-position: right 26px;
    background-repeat: no-repeat;
}

.nav-list .current {
    border-left: 4px solid #fff;
    font-weight: 700 !important;
    /*font-family: "SAIC-BOLD" !important;*/
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 半透明背景 */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* 从顶部开始对齐 */
    z-index: 1001;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#overlay.visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none;
}








.wrap {
    padding: 0 16px;
}

.homSwiper {
    width: 100%;
    height: calc(100vh - 60px);
}
.homSwiper .swiper-pagination {
    bottom: 26px;
}
.homSwiper .swiper-pagination-bullet {
    width: 12px;height: 12px;border-right: 6px;
    background: #E3EAED;
    margin: 0 6px !important;
    opacity: 1;
}

.homSwiper .swiper-pagination-bullet-active {
    width: 12px;height: 12px;border-right: 6px;
    background: #159BDB;
}

.homSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: pink; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.homSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homSwiper .swiper-slide .swiper-button-container {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 116px;
    width: 78%;
}

.swiper-button-container a {
    display: inline-block;
    line-height: 32px;
    width: 126px;
    border-radius: 29px;
    font-size: 12px;
}

.swiper-button-container a:first-of-type {
    background: #fff;
    color: #0066ff;
}

.swiper-button-container a:last-of-type {
    color: #fff;
    background: #0066ff;
}

.swiper-button-container .only-w {
    width: 190px;
    margin: auto;
    background: #fff !important;
    color: #0066ff !important;
}

.swiper-button-container .only-b {
    width: 190px;
    margin: auto;
    color: #fff !important;
    background: #0066ff !important;
}



.news-center {
    padding-top: 50px;
    padding-bottom: 162px;
}

.news-center .swiper-pagination {
    margin-top: 30px;
    position: static;
}

.news-center .swiper-pagination-bullet {
    border-radius: 4px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    background: #a8a8a8;
    opacity: 50%;
    width: 6px;
    height: 6px;
}

.news-center .swiper-pagination-bullet-active {
    width: 23px;
    background: #0066ff;
    opacity: 1;
}

.news-center .news-cards {
    font-family: "Gotham-Book", "SAIC-MEDIUM";
    background: #ffffff;
    padding: 16px 12px;
    margin-top: 28px;
}

.news-center .news-cards .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-center .news-cards .top .date {
    display: flex;
    flex-direction: column;
}

.news-center .news-cards .top .date .day {
    color: #868686;
    font-size: 24px;
    line-height: 24px;
}

.news-center .news-cards .item {
    color: #000;
    padding-top: 16px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-center .news-cards .swiper-btn {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.news-center .news-cards .swiper-btn span {
    background: -webkit-linear-gradient(top, #1697ff, #004ce7);
    /*设置线性渐变*/
    /*为了支持更多的浏览器*/
    -webkit-background-clip: text;
    /*背景被裁剪到文字*/
    -webkit-text-fill-color: transparent;
    /*设置文字的填充颜色*/
}

.news-center .news-cards .swiper-btn img {
    width: 20px;
}

.news-center .news-cards .link {
    display: block;
    margin-top: 16px;
    margin-bottom: 9px;
    color: #0066ff;
}

.news-center .news-cards img {
    width: 100%;
    height: auto;
}

.news-center .news-other {
    font-family: "Gotham-Book", "SAIC-MEDIUM";
    background: #fff;
    margin-top: 10px;
    padding: 12px;
    display: flex;
}

.news-center .news-other .title {
    font-size: 14px;
    color: #000;
    max-height: 42px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-center .news-other .poster {
    margin-right: 10px;
    width: 109px;
    height: 66px;
}

.news-center .news-other .info a {
    font-family: "Gotham-Light", "SAIC-REGULAR";
    color: #3575ee;
}

.news-center .news-other .info {
    display: flex;
}

.news-center .news-other .clock {
    width: 12px;
}

.news-center .news-other .time {
    display: flex;
    align-items: center;
}

.wrap .wrap-title {
    position: relative;
    font-family: "Gotham-Light", "SAIC-MEDIUM";
    text-align: center;
    color: #000;
    font-size: 20px;
    line-height: 30px;
    /* font-weight: 900; */
}

.wrap .wrap-title::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background: #0066ff;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    /* 根据需要调整边框的位置 */
    margin-top: 2px;
    /* 根据需要调整边框与文本的距离 */
}

.announcement {
    height: 796px;
    padding-top: 90px;
    padding-bottom: 124px;
    background: url(../images/product/announcement.png) no-repeat center center;
    background-size: 100% 100%;
}

.announcement .announcement-list {
    margin-top: 44px;
    margin-bottom: 60px;
}

.announcement .announcement-item {
    padding: 21px 9px;
    margin-bottom: 18px;
    box-shadow: 0 2px 4px rgba(239, 239, 239, 0.5), /* 下方阴影 */ 0 -2px 4px rgba(239, 239, 239, 0.5), /* 上方阴影 */ 2px 0 4px rgba(239, 239, 239, 0.5), /* 右侧阴影 */ -2px 0 4px rgba(239, 239, 239, 0.5);
    /* 左侧阴影 */
    display: flex;
    align-items: center;
    min-height: 20px;
    position: relative;
    background: #ffffff;
}

.announcement .announcement-item .date {
    width: 19%;
    font-size: 12px;
    text-align: center;
    padding-right: 7px;
}

.announcement .announcement-item .date .day {
    font-size: 18px;
}

.announcement .announcement-item .title {
    position: relative;
    padding-left: 10px;
    font-size: 14px;
    font-family: "Gotham-Light", "SAIC-MEDIUM";
    color: #222222;
    max-width: 71%;
    padding-top: 12px;
    border-left: 1.5px solid #dedede;
    margin-right: 14px;
}

.announcement .announcement-item .title::before {
    position: absolute;
    top: 0;
    content: "";
    width: 14px;
    height: 2px;
    background: #0066ff;
}

.announcement .announcement-item .btn {
    position: absolute;
    right: 16px;
    width: 14px;
    height: 9px;
}

.announcement .announcement-item .btn img {
    width: 100%;
}

.announcement .look-more {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.announcement .look-more span {
    line-height: 100%;
    font-size: 15px;
    background: -webkit-linear-gradient(top, #1697ff, #004ce7);
    /*设置线性渐变*/
    /*为了支持更多的浏览器*/
    -webkit-background-clip: text;
    /*背景被裁剪到文字*/
    -webkit-text-fill-color: transparent;
    /*设置文字的填充颜色*/
    margin-right: 10px;
}

.announcement .look-more img {
    width: 16px;
    height: 10px;
}

.brands {
    padding-top: 144px;
    padding-bottom: 142px;
    background: url(../images/product/logos.png) no-repeat center center;
    background-size: cover;
}

.brands .brands-list {
    margin-top: 56px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 8px 10px;
    /* 上下边距为8px，左右边距为10px */
}

.brands .brand-item {
    background: #fff;
    box-shadow: 0 2px 2px rgba(193, 193, 194, 0.5), /* 下方阴影 */ 0 -2px 2px rgba(193, 193, 194, 0.5), /* 上方阴影 */ 2px 0 2px rgba(193, 193, 194, 0.5), /* 右侧阴影 */ -2px 0 2px rgba(193, 193, 194, 0.5);
    /* 左侧阴影 */
}

.brands .brand-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body {
    padding: 30px 20px;
}

.body .title {
    font-family: "SAIC-BOLD";
    color: #0066ff;
    font-size: 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid #0066ff;
}

.body p {
    text-indent: 2em;
    /* 缩进两个字符宽度 */
    font-size: 14px;
    line-height: 2;
    color: #000;
    padding-top: 23.5px;
}

.body .hidden {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.body .show {
    display: block;
    opacity: 1;
}

#goBack > .goBack {
    width: 52px;
    height: 14px;
    margin: 0 auto;
    display: block;
}

/* 新闻标题 */
.news-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    padding-bottom: 6px;
    position: relative;
    margin-bottom: 17px;
    margin-top: 50px;
}

.news-title:after {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #0066ff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.news-detail {
    display: flex;
    justify-content: space-between;
    margin: 0 115px 70px;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0066ff;
    align-items: center;
}

.swiper-body2 > .swiper-pagination2 {
    bottom: -38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-body2 > .swiper-pagination2 > .swiper-pagination-bullet-active {
    width: 23px;
    height: 8px;
    border-radius: 4px;
    display: inline-block;
}

.nav-list .menu_body .menu-li-item.last {
    display: flex;
    flex-wrap: wrap;
}

.nav-list .menu_body .menu-li-item.last > .item-title {
    margin-right: 38px;
    margin-top: 16px;
}

.book-font {
    font-family: "Gotham-Book", "SAIC-MEDIUM";
}
/* 针对小屏幕（如手机） */
@media (max-width: 768px) {
    .pc{
        display: none !important;
    }
    .homSwiper {
        width: 100%;
        height: 0;
    }
    .homSwiper .swiper-pagination {
        bottom: 0px !important;
    }
    .homSwiper .swiper-pagination-bullet {
        width: 6px;height: 6px;
        background: #c9c8c8;
        margin: 2px !important;
    }
    .homSwiper .swiper-pagination-bullet-active {
        width: 6px;height: 6px;
        background: #fff;
    }
    .footer .footer-icp {
        font-size: 12px;
        height: 62px;
    }
    .rotatePanination .swiper-pagination-bullet {
        width: 8px;height: 8px;border-radius: 2px;
        background: #D6E1E6;
        margin: 0 6px !important;
        opacity: 1;
        transform: rotate(45deg); /* 旋转 45 度 */
        transform-origin: center;
    }

    .rotatePanination .swiper-pagination-bullet-active {
        width: 10px;height: 10px;border-right: 2px;
        background: #fff;
    }
    .rotatePanination.blue .swiper-pagination-bullet{
        background: #C3E0FF;
    }
    .rotatePanination.blue .swiper-pagination-bullet-active{
        background: #458CFF;
    }
    .headerInfo{
        width: 88%;
        color: #000000;
        margin-top: 46px;
        margin-left: 4%;
        background-image: url(../images/oicon/mob_title.png);
        background-repeat: no-repeat;
        background-size: contain;
        font-size: 18px;
        background-position: bottom;
        padding-bottom: 13px;
        padding-left: 31px;
        font-weight: 600;
    }
    /* 分页按钮样式 */
    .indpagination {
        display: flex;
        justify-content: center;
        margin: 38px 0 60px;
    }
    .indpagination button {
        margin: 0 18px;
        padding:0;
        border: none;
        color: #000;
        background-color: #fff;
        cursor: pointer;
        font-size: 20px;
    }
    .indpagination button.active {
        color: #000;
    }
    .indpagination button.disabled {
        color: #989898;
        pointer-events: none;
    }
    .indpagination .page-info{
        font-size: 20px;color: #000;
    }
    .indpagination .page-info span{
        margin: 0 18px;
    }
    .detailWraper{
        position: relative;
    }
    .detailWraper .backList{
        width: 78px;height: 14px;margin: 50px auto 60px;
        display: block;
    }
}
/* 针对大屏幕（如桌面） */
@media (min-width: 769px) {
    .mob{
        display: none !important;
    }
    .headerInfo{
        width: 36%;
        margin-top: 46px;
        margin-left: 5%;
        color: #000000;
        background-image: url(../images/oicon/pc_title.png);
        background-repeat: no-repeat;
        background-size: contain;
        font-size: 36px;
        background-position: bottom;
        padding-bottom: 0.6%;
        padding-left: 6%;
        font-weight: 600;
    }
    .rotatePanination .swiper-pagination-bullet {
        width: 14px;height: 14px;border-radius: 2px;
        background: #D6E1E6;
        margin: 0 6px !important;
        opacity: 1;
        transform: rotate(45deg); /* 旋转 45 度 */
        transform-origin: center;
    }

    .rotatePanination .swiper-pagination-bullet-active {
        width: 12px;height: 12px;border-right: 6px;
        background: #fff;
    }
    .rotatePanination.blue .swiper-pagination-bullet{
        background: #C3E0FF;
    }
    .rotatePanination.blue .swiper-pagination-bullet-active{
        background: #458CFF;
    }
    /* 分页按钮样式 */
    .indpagination {
        display: flex;
        justify-content: center;align-items: center;
        margin: 90px 0 80px;
    }
    .indpagination button {
        padding: 0;
        border: none;
        background: #EEF6FF;
        cursor: pointer;
        font-size: 18px;
        color: #000;
        margin-right: 14px;
        width: 26px;
        height: 26px;
        display: flex
        align-items: center;
        justify-content: center;
    }
    .indpagination button.active {
        background: #1890FF;
        color: white;
    }
    .indpagination button.disabled {
        color: #aaa;
        pointer-events: none;
    }
    .indpagination .text {
        width: auto;
        height: auto;
        background: transparent;
    }
    .indpagination input {
        width: 58px;
        padding: 5px;
        text-align: center;
        margin-right: 18px;
        border: 1px solid #D8DCE4;
        padding: 0;
        height: 26px;
        font-size: 18px;
    }
    .detailWraper{
        position: relative;
    }
    .detailWraper .backList{
        width: 108px;height: 20px;margin: 100px auto 80px;
        display: block;
    }
    .detailWraper .backList.absolute{
        position: absolute;
        width: 138px;height: 48px;
        right: 10%;
        top: -100px;
    }
}