img {
  width: 100%;
  height: 100%;
  object-fit:cover;
}
.feature {
    width: 100%;
    height: 430px;
    margin-top: 27px;
}
.feature-con {
    width: 1304px;
    height: 100%;
    background: url('../img/feature_bg.png');
    background-size: 100% 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px;
}
.newsBox {
    width: 680px;
    height: 390px;
    position: relative;
    display: flex;
}

/* newsswiper */
.newsSwiper {
    width:  680px;
    height: 390px;
    overflow: hidden;
    position: relative;
}
.swiper-pagination-bullets.newsSwiper-pagination {
    width: auto;
    bottom: 3px;
    right: 0;
    left: auto;
    z-index: 9;
}
.newsSwiper-bullet {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 2px;
    margin-right: 6px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    cursor: pointer;
}
.newsSwiper-bullet-active {
    background:#FB2500;
    color: #fff;
}
.newsSwiper-item {
    width:  680px;
    height: 390px;
    position: relative;
}
.newsSwiper-item-cover {
    width: 100%;
    height: 100%;
}
.newsSwiper-item-title {
    width: 100%;
    padding: 6px 12px;
    font-size: 16px;
    color: #fff;
    font-weight: var(--font-regular-weight);
    line-height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.34);
}
.newsList {
    width: 600px;
    height: 390px;
    padding: 5px 37px;
    position: relative;
}
.newsList-item {
    width: 100%;
    font-size: 18px;
    color: #333333;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow:ellipsis;
    display: block;
    margin-bottom: 22px;
}
.newsList-item:hover {
    color: var(--hover-color);
}
.newsList-more-btn {
    width: 84px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: url('../img/btn-bg.png') 100% 100%;
    font-size: 16px;
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    right: -16px;
}
.slognBar {
  width: 1300px;
  height: 120x;
  margin: 0 auto;
  margin-top: 30px;
}
.slognBar img {
  width: 100%;
  height: 100%;
}

/* column */
.column {
    width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.column-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 130px;
    padding-right: 50px;
}
.column-item {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.column-bar_04 {
    padding-left: 105px;
}
.column-bar_04 .column-item {
    width: calc(100% / 4);
}
.column-miniBar_03 {
    padding-left: 90px;
    padding-right: 20px;
}
.column-miniBar_03 .column-item {
    width: calc(100% / 3);
}
.column-bar_05 {
    padding-left: 60px;
}
.column-bar_05 .column-item {
    width: calc(100% / 5);
}
.column-bar_03 {
    padding-left: 80px;
}
.column-bar_03 .column-item {
    width: calc(100% / 3);
}
.column-bar_02 {
    padding-left: 80px;
}
.column-bar_02 .column-item {
    width: calc(100% / 2);
}


.column-item img {
    display: block;
    width: 80px;
    height: 80px;
}
.column-item span {
    display: block;
    margin-top: 20px;
    font-size: 20px;
    color: #333333;
    font-weight: var(--font-bold-weight);
    text-shadow: 2px 2px 4px #ffffff;
    -webkit-text-shadow: 2px 2px 4px #ffffff;
    text-stroke: 0.2px #FFFFFF;
    -webkit-text-stroke: 0.2px #FFFFFF;
}
.column-item:hover img{
    animation: columnZoomInOut 0.4s ease-in-out forwards;
    /* transform: scale(1.2);
    transition: 0.4s ease-in-out; */
}
.column-item:hover span {
    color: var(--hover-color);
}
@keyframes columnZoomInOut {
  0% {
    transform: scale(1); /* 初始状态：原始大小 */
  }
  100% {
    transform: scale(1.1); /* 结束状态 */
  }
}