﻿@charset "utf-8";
/* CSS Document */
.swiper {
	width: 100%;
	height: 100%;
	--swiper-navigation-size: 0; /* 设置按钮大小 */
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
/*	background: #fff;*/
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	position: relative;
}
.swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
	/*	object-fit: cover;*/
}
.swiper-slide a:hover{color: #333;}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	/*	object-fit: cover;*/
}

/*新闻动态*/
.newsSwiper {
	width: 100%;
	height: 100%;
}
.newsSwiper .swiper-button-prev {
	left: 10px;
}
.newsSwiper .swiper-button-next {
	right: 10px;
}
.newsSwiper .swiper-pagination-bullets {
    bottom: 15px;
    left: auto;
    right: 20px;
    width: auto;
}

.newsSwiper .swiper-pagination-bullet {
    margin: 0 6px 0 0;
    width: 8px;
    height: 8px;
    background: none;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 1;
    font-size: 12px;
}

.newsSwiper .swiper-pagination-bullet-active {
    background: #fff;
}

/*pic swiper*/
.picSwiper .swiper-slide a{
	width: 330px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.picSwiper .swiper-slide .imgBox {
	width: 100%;
	height: 180px;
	overflow: hidden;
/*	text-align: center;*/
	background: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.picSwiper .swiper-slide .imgBox img{
	display: inline-block;
	width: 100%;
	height: 100%;
/*	vertical-align: middle;*/
}
/*图片过渡效果*/
.picSwiper .swiper-slide .imgBox img {
	transition: all 2s ease; /*在2s时间内缓缓变化*/
	-webkit-transition: all 2s ease;
}
.picSwiper .swiper-slide .imgBox:hover img {
	transform: scale(1.2, 1.2); /*变形：放大宽高至1.2倍*/
	-ms-transform: scale(1.2, 1.2);
	-webkit-transform: scale(1.2, 1.2);
}
.picSwiper .swiper-slide p {
	font-size: 16px;
	color: #333;
/*	color: #fff;*/
    width:100%;
	height:33px;
	line-height: 33px;
	text-align: right;
	padding:0 15px;
/*	rgba(254, 255, 233, 0.61),  /* 左侧颜色，61%透明度 */
 /*               rgba(221, 29, 14, 0.61)     /* 右侧颜色，61%透明度 */
	background: linear-gradient(
                to right,      /* 渐变方向从左到右 */
		rgb(252,235,223),
		rgb(235,124,110)
            );
}