﻿
.swiper-container {
    width: 100%;
    height: 100vh;
}

.swiper-pagination {
    margin-bottom: 50px;
}

.swiper-container .swiper-lazy{
    animation:img-scale 30s infinite;
}

@keyframes img-scale{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.imags-wrap{
    padding: 80px 0 110px;
    background-image: url('../image/map.png');
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    opacity: 0;
}

.imags-wrap div img{
    width: 100%;
    height: 100%;
}

.imags-wrap>div {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px auto;
}
.imags-wrap>div>div{
    width: 200px;
    height: 200px;
}
.imags-wrap>div>div>a{
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.mask-animation{
    animation: mask-motion 1s cubic-bezier(0.86, 0, 0.07, 1) .5s 1 alternate forwards;
}

.img-animation{
    animation: mask-img-motion 1s cubic-bezier(0.86, 0, 0.07, 1) .5s 1 alternate forwards;
}

.imags-wrap>div>div img{
    margin:0;
	padding:0;
	width:100%;
	height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: transform .5s;
}

.imags-wrap>div>div img:hover{
    transform: scale(1.2);
}

.header .header-box .logo-index {
    display: none;
}

.news {
    width: 1200px;
    margin: 30px auto 135px;
}
.news .title {
    width: 290px;
    height: 50px;
    margin: -58px auto 130px;
    border: 2px solid #ebeaeb;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.news .title span {
    display: inline-block;
    width: 70px;
    height: 1px;
    background-color: #f1cfbf;
}

.news .title h2 {
    /* font-size: 13px; */
    color: #c8262a;
}
.news .details {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
}

.news .details ul>li{
    padding: 10px 0;
    transition: all .8s;
	font-size: 18px;
}

.news .details ul>li:hover{
    transform: translateX(10px);
    color: #c9262a;
}

.news .details ul>li:hover a{
    color: #c9262a;
}

.news .details ul>li>span{
    margin-right: 30px;
    display: inline-block;
    padding: 10px 0;
    border-bottom: 1px solid #f1cfbf;
}

.news .details>div{
    width: 375px;
    position: relative;
    overflow: hidden;
	height: 200px;
}

.news .details>div img{
    opacity: 0;
    transition: transform .5s;
}

.news .details>div img:hover{
    transform: scale(1.2);
}
.swiper-pagination-bullet-active{
background-color: #c9262a!important;
}
