body{
    font-size: 14px;
}
/*公共样式*/
.baseWidth {
    width: 1400px;
    margin: 0 auto;
}
/*banner样式*/
.banner {
    width: 100%;
}
.banner .img {
    /*background: url("../images/news_banner_bg.jpg") no-repeat;*/
    background-size: 100% 100%;
    height: 533px;
    padding: 0.1px;
}
.banner  .banner-text {
    width: 100%;
    margin-top: 170px;
}
.banner  .banner-text p {
    color: #fff;
    text-align: center;
}
.banner  .banner-text > .en-title {
    font-family: 'Light';
    font-size: 20px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85) !important;
}
.banner  .banner-text > .cn-title {
    font-size: 48px;
    font-weight: 100;
}
/*banner的盒子样式*/
.new-box {
    margin: -200px auto 0;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.new-box > a {
    display: block;
}
.new-box > a > .box {
    display: flex;
}
.box-img {
    overflow: hidden;
    width: 100%;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}
.box-img img {
    border-top-left-radius: 20px;
    height: 100%;
    width: 100%;
}
.box-text {
    padding: 50px;
}
.box-text > p:nth-child(1) {
    color: #0162d0;
    font-size: 20px;
}
.box-text .title {
    font-size: 40px;
    margin: 35px 0;
    color: #000;
}
.box-text .content {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}
.box-text .time {
    color: #b2b2b2;
    margin-top: 80px;
}
.new-box:hover {
    background-color: #126bae;
}
.new-box:hover > a p {
    color: #fff;
}
.new-box:hover > a .content,
.new-box:hover > a .time {
    opacity: 0.7;
}
.box-img > img {
    object-fit: cover;
	transform: scale(1.05);
}
.new-box:hover .box-img > img {
    transform: scale(1.1);
    transition: transform 0.3s;
}

/*选项卡样式*/
section {
    padding-top: 132px;
}
section .card-head {
    display: flex;
    justify-content: center;
    gap: 50px;
}
section .card-head a {
    color: #888;
    font-size: 24px;
    transition: color 0.3s;
    padding-bottom: 10px;
    background: linear-gradient(to right,#0162d0, #0162d0) no-repeat left bottom;
    background-size: 0px 1px;
}
section .card-head a:hover:not(.card-active) {
    color: #0162d0 !important;
    background: linear-gradient(to right,#0162d0, #0162d0) no-repeat left bottom;
    background-size: 100% 1px;
    transition: all 800ms;
}
.card-active {
    color: #0162d0 !important;
    border-bottom: 1px solid #0162d0;
}
.card .content {
    background: #f8fbff url(../images/new_bg.png) no-repeat;
    background-size: 100% 100%;
    margin-top: 60px;
    padding: 70px 0 90px;
}
.card .content > div {
    display: none;
}
.card-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.card-list li {
    box-shadow: -3px 1px 10px #ccc;
    border-radius: 20px;
    margin-bottom: 50px;
    background-color: #fff;
	/* width:31.07%; */ 
}
.card-list li .card-img{
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.card-list li .card-img img {
    /*height: 100%;*/
    object-fit: cover;
    display: block;
    transform-origin: center;
    transition: transform 0.2s ease;
    width: 100%;
	height:auto;
}
.card-list li:hover {
    background: url(../images/new_item_bg.png) -20px 0 no-repeat;
    background-size: 110% 110%;
}
.card-list li:hover .card-text p {
    color: #fff;
}
.card-list li:hover .card-img img {
    transform: scale(1.05);
}
.card-list li a {
    display: block;
    color: #000;
    height: 100%;
}
.card-list li .card-text {
    width: 360px;
    padding: 0px 20px;
}
.card-list li .card-text p {
    font-size: 16px;
	line-height: 28px;
    transition: color .2s;
}
.card-list li .card-text .card-title {
    color: #010000;
    font-weight: 600;
    font-size: 18px;
    margin: 25px 0 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.card-list li .card-text .main-text {
    color: #666;
}
.card-list li .card-text .card-time {
    color: #888;
    margin: 50px 0;
}
.show {
    display: block !important;
}

/*响应式*/
@media screen and (max-width: 1410px) {
    .baseWidth {
        width: 900px;
    }
    .banner .new-box .box-img {
        width: 50%;
    }
    .banner .new-box .box-text {
        width: 50%;
    }
    .banner .new-box .title {
        font-size: 30px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .card-list li {
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 980px) {
    /*.banner .new-box {
        width: 75%;
    }*/
    .baseWidth {
        width: 700px;
    }
    .card-list li {
        width: 48%;
    }
    .card-list li .card-text {
        width: 87%;
    }
    .new-box > a > .box {
        flex-direction: column;
    }
    .banner .new-box .box-img {
        width: 100%;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0 !important;
    }
    .banner .new-box .box-text {
        width: 90%;
    }
    .banner .new-box .title {
        font-size: 24px;
    }
    /*盒子文字*/
    .banner .new-box .box-text {
        padding: 35px;
    }
    .box-text p:nth-child(1) {
        font-size: 16px;
    }
    .new-box > a p {
        padding-right: 30px;
    }
}
@media screen and (max-width: 720px) {
    .baseWidth {
        width: 90%;
    }
    section .card-head {
        gap: 25px;
    }
    section .card-head a {
        font-size: 18px;
    }
    .card-list {
        flex-direction: column;
    }
    .card-list li {
        /*width: 444px;*/
        width: 100%;
    }
}
@media screen and (max-width: 560px) {
.box-text .time{margin-top:40px}
.card-list li .card-text p{font-size:14px}
    .banner .banner-text > .en-title{font-size: 14px}
    .banner .banner-text > .cn-title{font-size: 28px}
    .new-box {
        margin-top: -50px;
    }
    section {
        padding-top: 70px;
    }
    .banner .img {
        height: 350px;
    }
    .card-list li {
        width: 100%;
    }
    .banner .new-box .title {
        margin: 10px 0;
        font-size: 22px;
    }
    .box-text p:nth-child(1) {
        font-size: 14px;
    }
   
}
@media screen and (max-width: 390px) {
    .banner .banner-text{margin-top: 100px}
    .banner .img{height: 250px}
    .banner .banner-text > .cn-title {font-size: 28px}
    .banner .banner-text > .en-title {font-size: 14px}
    .new-box{margin-top: -70px}
    section .card-head {
        gap: 15px;
    }
    section .card-head a {
        font-size: 14px;
    }
    .card .content {
        margin-top: 30px;
        padding-top: 30px;
    }
}