﻿@charset "utf-8";




/*轮播*/

.m-carousel {
	position: relative;
	overflow: hidden
}

.m-carousel-list {
	overflow-y: hidden;
	width: 100%;
	height: 425px;
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease
}

.m-carousel-list li {
	float: left;
	width: 100%;
	height: 425px;
	
	overflow: hidden;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: auto 100%
}

.m-carousel-list li a {
	display: block;
	height: 100%
}

.m-carousel-list .m-carousel-title {
	font-size: 56px;
	font-weight: 700;
	padding-top: 220px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, .1)
}

.m-carousel-list .m-carousel-note {
	color: hsla(0, 0%, 100%, .8);
	font-size: 24px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, .1)
}

.m-carousel-list .m-carousel-btn {
	display: inline-block;
	width: 218px;
	height: 40px;
	line-height: 40px;
	background: -webkit-linear-gradient(right, #36e4ff, #5bbdff);
	background: linear-gradient(-90deg, #36e4ff, #5bbdff);
	border-radius: 4px;
	margin-top: 32px
}

.c-carousel-dot {
	position: absolute;
	bottom: 48px;
	left: 0;
	width: 100%;
	text-align: center
}

.c-carousel-dot span {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	border-radius: 6px;
	background: #4d4d4d;
	background: hsla(0, 0%, 100%, .3);
	cursor: pointer;
	-webkit-transition: width .3s ease, background .3s ease;
	transition: width .3s ease, background .3s ease
}

.c-carousel-dot span:hover {
	background: #666;
	background: hsla(0, 0%, 100%, .4)
}

.c-carousel-dot span.active {
	width: 23px;
	background: #fff;
	cursor: default
}





