﻿@charset "utf-8";
/* CSS Document */
/*手机屏幕*/
@media screen and (max-width: 992px) {
	#slider {height: 200px;}
}
@media screen and (min-width: 992px) {
	#slider {height: 314px;}
}
/*home*/
/*Slider*/
#slider {
	position: relative;
	overflow: hidden;
	width: 100%;
/*	height: 314px;*/
	margin: 0 auto;
}
#slider > ul.imgBox {
	list-style: none;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	z-index: -1;
}
#slider .ppt-img {
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 100%;
	height: 100%;
}
#slider .ppt-img img {
	width: 100%;
	height: 100%;
}
#slider .dotBoxWrap{
	width: 100%;
	height: 16px;
	position: absolute;
	bottom: 3px;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
#slider .dotBoxWrap>.dotBox {
	width: 136px;
	height: 16px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
#slider .dotBox > .dot > span {
	cursor: pointer;
	display: inline-block;
	width: 16px;
	height: 16px;
	background-color: white;
	border-radius: 50%;
/*	border: solid 2px #26c;*/
/*	float: left;*/
/*	margin-right: 8px;*/
	box-sizing: border-box;
}
#slider .dotBox > .dot > span.active {
	background-color: #5c8fe0;
}
#slider .dotBox > .dot:last-child > span {
	margin: 0;
}