html,
body {
    /* height: 100%;
    font-family: 'Noto Sans SC', 'Source Han Sans CN', Arial, sans-serif;
    margin: 0 !important;
    padding: 0 !important; */
}
html body {
  margin: 0px auto!important;
  /* max-width: 1920px; */
  min-width: 320px;
  font-size: 16px;
  font-family: 思源黑体 CN, "微软雅黑", "Microsoft YaHei", "SimSun", "宋体", sans-serif;
  background-color: #fff;
  color: #666666;
  overflow-x: hidden;
}
a {
    text-decoration: none;
    color: #161616;
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.img-contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.us-background{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.flex-c-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-c-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex{
    display: flex;
}
.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}
.flex-ac{
    display: flex;
    align-items: center;
}
.flex-p-ab{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
}
.list-box{
    padding-top: 60px;
}
.list-box-item{
    width: 31.5%;
    margin-right: 1.8%;
    aspect-ratio: 48 / 47;
    background-color: #F9F9F9;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}
.list-box-item-text .title-name{
    color: rgb(102, 102, 102);
    font-size: 22px;
}
.list-box-item-img{
    overflow: hidden;
    padding: 5px;
    height: 80%;
}
.list-box-item-text{
    flex: 1;
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.single-line {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 分页容器样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px auto 80px auto;
}

/* 分页项的样式 */
.pagination li {
    list-style-type: none;
    margin: 0 5px;
}

/* 链接样式 */
.pagination a {
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #dce0e0;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* 当前页样式 */
.pagination .active a {
    background-color: #FEB627;
    color: #fff;
    border-color: #FEB627;
}

/* 鼠标悬停效果 */
.pagination a:hover {
    background-color: #FEB627;
    color: #fff;
    border-color: #FEB627;
}
/* 阴影盒子 */
.shadow{
    box-shadow: 1px 1px 30px 10px rgba(0,0,0,0.3);
}
/* 图片上的透明遮层 */
.black-view{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    left: 0;
    top: 0;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* pc端导航 */
/* 响应式调整 */
ul,
ol {
    list-style: none
}

.nav-header {
    position: relative;
    z-index: 9999;
    border-bottom: 1px solid #ddd;
    height: 0px;
    box-sizing: border-box;
    background: linear-gradient(#0055C0, rgba(0, 49, 74, 0.8), rgba(0, 49, 74, 0.1));
}

.wrap {
    width: 1223px;
    margin: 0 auto;
}

#nav {
    display: flex;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    width: 230px;
    overflow: hidden;
}

.logo a {
    display: block;
}

.logo a img {
    max-width: 100%;
}

ul.nav {
    display: inline-flex;
    flex: 1;
    padding-left: 2%;
    justify-content: flex-end;
}

li.nav-item {
    /* flex: 1; */
}

li.nav-item>a {
    display: block;
    text-align: center;
    line-height: 88px;
    font-size: 16px;
    width: fit-content;
    box-sizing: border-box;
    padding: 0 30px;
    position: relative;
    color: white;
    white-space: nowrap;
}

li.nav-item>a::before {
    width: 40px;
    display: none;
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-width: 1px;
    border-style: solid;
    border-color: white;
    position: absolute;
}

li.nav-item.right>a {
    padding: 0;
}

li.nav-item:hover>a,
li.nav-item.active>a {
    color: white;
}

li.nav-item:hover>a::before,
li.nav-item.active>a::before {
    display: block;
}

/* 二级菜单 */
.subMenu {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 99vw;
    height: 50px;
    background-color: #fff;
    color: black;
}

.subMenu>ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.subMenu>ul>li>a {
    display: block;
    padding: 0 18px;
    text-align: center;
    line-height: 50px;
    color: black;
}

.subMenu>ul>li>a:hover {
    color: black
}

.black-background {
    display: none;
    width: 100vw;
    height: 88px;
    background-color: black;
    position: absolute;
    top: 0;
}

.left-nav {
    z-index: 99999999;
    position: fixed;
    right: 0;
    top: 50%;
    width: 56px;
    height: 130px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-image: url("/template/pc/skin/img/Group 318.png"); */
    display: flex;
    flex-direction: column;
}

.left-nav>div {
    width: 100%;
    height: 100%;
    flex: 1;
}

@media(max-width: 1367px) {
    .nav-header .wrap {
        width: 100%;
    }

    .nav-item-6 {
        padding-right: 0%;
    }
}

@media(max-width: 1367px) {
    .nav-header .wrap {
        width: 100%;
    }

    .nav-item-6 {
        padding-right: 0%;
    }

    li.nav-item>a {
        padding: 0 10px;
    }
}

@media(max-width: 1024px) {
    .nav-header {
        display: none;
    }

    .black-background {
        display: none !important;
    }
}

@media(min-width: 1025px) {
    .mobile-nav {
        display: none;
    }
}

@media(max-width: 1025px) {
    .mobile-nav {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 999;
    }

    #banner {
        margin-top: 50px;
    }
}

@media(max-width: 768px) {
    .dropdown-menu {
        border: none;
        border-top: 1px #e3e3e3 solid;
        text-align: center;
    }

}

/* 手机端底部导航 */
@media(min-width: 1025px) {
    .mob-footer {
        display: none;
    }
}

.mob-footer {
    background: #312f35;
}

.mob-footer .logo-box {
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mob-footer .content-box {
    padding: 0 20px;
    line-height: 2;
}

.mob-footer .content-box .r1 h5 {
    font-size: 22px;
    color: #f0f0f0;
}

.mob-footer .content-box .c0 {
    font-size: 18px;
    color: #f0f0f0;
}

@media(max-width: 1024px) {
    .pad-flex-column{
        flex-direction: column;
    }
    .pad-row{
        width: 100%!important;
    }
}
@media(max-width: 768px) {
    .m-flex-column{
        flex-direction: column;
    }
    .m-row{
        width: 100%!important;
    }
    .list-box-item{
        width: 100%;
    }
}
.no-wrap-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%; /* 设置一个具体的宽度或根据实际情况调整 */
}
.toggle:hover .s1{
    display: none;
}
.toggle .s2{
    display: none;
}
.toggle:hover .s2{
    display: block;
}
.line-text{
    font-size: 18px;
    line-height: 2;
}
.line-2 {
overflow:hidden; 

text-overflow:ellipsis;

display:-webkit-box; 

-webkit-box-orient:vertical;

-webkit-line-clamp:2; 
}

@media (max-width: 768px) {
    .pagination > li:not(:first-child):not(:last-child) {
      display: none;
    }
}

