.banner {
    background: url(../../static/ywjs_smgq/bt-bj.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 240px;
    position: relative;

    transition: all .7s;
    -ms-transition: all .7s;
    -moz-transition: all .7s;
    -webkit-transition: all .7s;
    -o-transition: all .7s;

    filter: alpha(opacity=0);
    opacity: 0;
}

.banner .content-box {
    transition: all .7s;
    -ms-transition: all .7s;
    -moz-transition: all .7s;
    -webkit-transition: all .7s;
    -o-transition: all .7s;
}

.banner h1 {
    color: #fff;
    font-size: 54px;
    line-height: 240px;
    font-weight: lighter;
    /*font-family: "Microsoft YaHei";*/
}

.overview {
    margin-top: 140px;
}

.overview-item:nth-child(1) {
    /*width: 699px;*/
    background: url(../../static/ywjs_smgq/gs-bj.png) no-repeat;
    padding: 70px 80px;
  	background-color:#005096;
}

.overview-item:nth-child(2) {
    width: 699px;
    /*height: 455px;*/
}

.overview-item:nth-child(2) img {
    width: 699px;
    height: 100%;
  	object-fit: cover;
}
.text-content>span{
	display: inline-block;
    text-align: justify;
}
.overview .text-content {
    margin-top: 20px;
    font-weight: lighter;
    font-size: 19px;
    line-height: 36px;
    color: #fff;
}

.switch-bar {
    margin-top: 100px;
    height: 215px;
    grid-template-areas:
        'bar1 bar2 bar3';
}

.switch-bar>div {
    height: 100%;
    grid-template-areas:
        'bar1 bar2 bar3';
    position: relative;
}


.padding-top-20 {
    padding-top: 20px;
}

.padding-top-28 {
    padding-top: 28px;
}

.padding-top-30 {
    padding-top: 30px;
}

.font-26 {
    font-size: 26px;
}

.font-color-333 {
    color: #333;
}

#scroll-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33%;
    height: 2px;
    background-color: #005096;

    transition: left .3s;
    -ms-transition: left .3s;
    -moz-transition: left .3s;
    -webkit-transition: left .3s;
    -o-transition: left .3s;
}

.content-list {
    padding-top: 60px;
    padding-bottom: 100px;
    background-color: #f8fafd;
}

.content-list>div {
    display: none;

    transition: all .3s;
    -ms-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.list-item--active {
    display: block !important;
}

.content-list__item {
    padding: 40px 80px;
    border: 1px solid #eceef2;
    border-bottom: transparent;
    background-color: #fff;
}

.item-title {
    padding-left: 40px;
    padding-right: 80px;
    width: calc(100% - 390px);
}

.title-nounderline {
    font-size: 26px;
    line-height: 82px;
}

.item-image img {
    display: block;
    width: 390px;
    height: 260px;
    size: 100%;
    object-fit: cover;
}

.content-list__item:last-child {
    border-bottom: 1px solid#eceef2 !important;
}

.bar-item {
  /* 移除 transition: transform; 因为 bar-item 本身不进行 transform 变换 */
  padding-top: 40px;
  /* 为 box-shadow 添加过渡效果，使其平滑出现和消失 */
  transition: box-shadow 0.25s ease;
}

.bar-item:hover {
  /* 鼠标悬浮时，box-shadow 应用到 bar-item 自身，它不会随内部元素放大 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 默认状态下图片和文字不放大，并添加 transform 的过渡效果 */
.bar-item img,
.bar-item .bar-text {
  transform: scale(1); /* 默认不放大 */
  transition: transform 0.25s ease; /* 为放大效果添加平滑过渡 */
}

/* 当鼠标悬浮在 bar-item 上时，才放大内部的图片和文字 */
.bar-item:hover img,
.bar-item:hover .bar-text {
  transform: scale(1.1); /* 鼠标悬浮时放大 */
}

.bar-item .bar-text-active{
	color:#005096 !important
}

.anchor{
	z-index: -1;
    width: 100%;
    height: 1px;
    position: relative;
    top: -340px;
}
/* 重写底部样式 */
.footer {
    margin-top: 0 !important;
}


@media screen and (max-width: 751px) {
    .content-container .switch-bar .grid-box a div {
        padding-top: 0;
    }
}