body {
	padding-top: 100px;
}
.max_header {
	height: 80px;
}
.list-block {
	width: 10px;
	height: 10px;
	margin-top: 6px;
	border-radius: 2px;
	background-color: #03378C;
	transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}

.h-hidden{
	display: none;
}

.width-5{
	width: 4%;
}
.width-95{
	width: 96%;
}
.float-right{
	float: right;
}
.shadow{
	box-shadow: 0 5px 20px rgba(0,0,0,.1);
	border-radius: 3px;
}
.h-text-center{
	text-align: left;
}

.h-line-6 {
	overflow: hidden;
	word-break: break-all;
	text-overflow: ellipsis; 
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
}

.home-top-bg {
	height: 486px;
	background-repeat: no-repeat;
	background-position: 80% 50%;
	background-size: cover;
}

.home-top-bg-text {
	color: white;
}

.home-top-img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container,
.container-fluid {
}

.content {
	margin-top: 20px;
	padding: 25px;
}

.border-bottom {
	border-bottom: 1px solid #ccc;
	padding-bottom: 23px;
	margin-bottom: 10px;
}

.container-title-h {
	border-left: 2px solid #03378C;
	padding-left: 10px;
	height: 24px;
	line-height: 24px;
}

.container-tips-h {
	margin: 20px 0;
}

.container-content-h {
	border-bottom: 1px solid #ccc;
}


.center-btn{
	padding: 8px 20px;
	border-radius: 5px;
}

/*  color */
.red {
	color: #F03C3C;
}
.gray{
	color: #999;
}
.gray-6{
	color: #666;
}
/* font */
.bold {
	font-weight: 900;
}

.size-14 {
	font-size: 12px;
	font-family: PingFangSC-Regular;
}

.size-16 {
	font-size: 14px;
	font-family: PingFangSC-Regular;
}

.size-18 {
	font-size: 16px;
	font-family: PingFangSC-Regular;
}

.size-20 {
	font-size: 16px;
	font-family: PingFangSC-Regular;
}

.size-22 {
	font-size: 18px;
	font-family: PingFangSC-Regular;
}

.size-24 {
	font-size: 22px;
	font-family: PingFangSC-Semibold;
}

.size-28 {
	font-size: 22px;
	font-family: PingFangSC-Regular;
}
.size-44 {
	font-size: 28px;
	font-family: PingFangSC-Medium;
}

.line-height-30{
	line-height: 34px;
}

.line-height-40{
	line-height: 40px;
}


/* flex */
.h-flex {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.h-flex-auto {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}

.h-col-center {
	align-items: center;
}

.h-row-start {
	align-items: flex-start;
}

.h-row-end{
	justify-content: flex-end;
}

.h-row-around {
	justify-content: space-around;
}

.h-row-center {
	justify-content: center;
}
.row-reverse{
	flex-direction: row-reverse;
}
.flex-column{
	flex-direction: column;
}
.flex-column-reverse{
	flex-direction: column-reverse;
}

/* padding margin */

.h-p-0 {
	padding: 0;
}

.h-p-3 {
	padding: 3px;
}
.h-p-10 {
	padding: 10px;
}
.h-p-r-15{
	padding-right: 15px;
	padding-left: 0;
}
.h-p-10-20 {
	padding: 10px 20px;
}

.h-p-30-15 {
	padding: 30px 15px;
}

.h-m-t-10 {
	margin-top: 10px;
}

.h-m-t-20 {
	margin-top: 20px;
}

.h-m-t-30 {
	margin-top: 30px;
}

.h-m-t-50 {
	margin-top: 50px;
}

.h-m-t-100 {
	margin-top: 80px;
}

.h-m-b-20 {
	margin-bottom: 20px;
}

.h-m-b-30 {
	margin-bottom: 30px;
}

.h-m-l-10 {
	margin-left: 10px;
}

.h-p-tb-bottom {
	padding: 20px 0 10px;
}


/* img */
.img-max {
	max-width: 100% !important;
	height: auto;
}

/* 按钮样式 */
button {
	border: 0;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
	padding: 10px 40px;
	border-radius: 2px;
	color: white;
	outline: none;
	position: relative;
	min-width: 150px;
}

button:before {
	content: '';
	display: block;
	background: linear-gradient(to left, rgba(5, 45, 109, 0) 50%, rgba(5, 45, 109, 0.4) 50%);
	background-size: 210% 100%;
	background-position: right bottom;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	border-radius: 2px;
	transition: all 1s;
	-webkit-transition: all 1s;
}

.blue {
	background-color: #03378C;
}

.blue:hover:before {
	background-position: left bottom;
}

@media (max-width: 992px) {
	body{
		padding-top: 60px;
	}
	.row-reverse {
		flex-direction: row;
	}
	.h-text-center{
		text-align: left;
	}
	/* font */
	.size-14 {
		font-size: 12px;
		font-family: PingFangSC-Regular;
	}
	
	.size-16 {
		font-size: 14px;
		font-family: PingFangSC-Regular;
	}
	
	.size-18 {
		font-size: 15px;
		font-family: PingFangSC-Regular;
	}
	
	.size-20 {
		font-size: 16px;
		font-family: PingFangSC-Regular;
	}
	
	.size-22 {
		font-size: 17px;
		font-family: PingFangSC-Regular;
	}
	
	.size-24 {
		font-size: 18px;
		font-family: PingFangSC-Semibold;
	}
	
	.size-28 {
		font-size: 20px;
	}
	.size-44 {
		font-size: 26px;
		font-family: PingFangSC-Medium;
	}
	
	.line-height-30{
		line-height: 32px;
	}
	
	/* padding margin */
	.h-p-0 {
		padding: 0;
	}
	
	.h-p-3 {
		padding: 3px;
	}
	
	.h-m-t-10 {
		margin-top: 10px;
	}
	
	.h-m-t-20 {
		margin-top: 20px;
	}
	
	.h-m-t-30 {
		margin-top: 30px;
	}
	.h-m-t-50 {
		margin-top: 30px;
	}
	
	.h-m-b-20 {
		margin-bottom: 20px;
	}
	
	.h-m-b-30 {
		margin-bottom: 25px;
	}
	
	.h-m-l-10 {
		margin-left: 10px;
	}
	
	.h-p-tb-bottom {
		padding: 20px 0 10px;
	}
}

@media (max-width: 768px) {
	.row-reverse {
		flex-direction: row;
	}
	.list-block {
		width: 6px;
		height: 6px;
		margin-top: 4px;
		border-radius: 1px;
		background-color: #03378C;
		transform:rotate(45deg);
		-ms-transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
	}
	.home-top-bg {
		height: 336px;
		background-repeat: no-repeat;
		background-position: 80% 50%;
		background-size: cover;
	}
	/* flex */
	.h-xs-flex {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.h-xs-row-center {
		justify-content: center;
	}
	/* 按钮样式 */
	button {
		border: 0;
		text-transform: uppercase;
		font-size: 12px;
		font-weight: bold;
		padding: 6px 20px;
		border-radius: 6px;
		color: white;
		outline: none;
		position: relative;
		min-width: 100px;
	}
	
	button:before {
		content: '';
		display: block;
		background: linear-gradient(to left, rgba(5, 45, 109, 0) 50%, rgba(5, 45, 109, 0.4) 50%);
		background-size: 210% 100%;
		background-position: right bottom;
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		border-radius: 6px;
		transition: all 1s;
		-webkit-transition: all 1s;
	}
	/* font */
	.size-14 {
		font-size: 10px;
		font-family: PingFangSC-Regular;
	}
	
	.size-16 {
		font-size: 12px;
		font-family: PingFangSC-Regular;
	}
	
	.size-18 {
		font-size: 12px;
		font-family: PingFangSC-Regular;
	}
	
	.size-20 {
		font-size: 12px;
		font-family: PingFangSC-Regular;
	}
	
	.size-22 {
		font-size: 14px;
		font-family: PingFangSC-Regular;
	}
	
	.size-24 {
		font-size: 16px;
		font-family: PingFangSC-Semibold;
	}
	
	.size-28 {
		font-size: 18px;
		font-family: PingFangSC-Regular;
	}
	.size-44 {
		font-size: 20px;
		font-family: PingFangSC-Medium;
	}
	
	.line-height-30{
		line-height: 22px;
	}
	
	.m-b-20{
		margin-bottom: 20px;
	}
	
	/* padding margin */
	.h-p-0 {
		padding: 0;
	}
	
	.h-m-0{
		margin: 0;
	}
	
	.h-p-3 {
		padding: 0px;
	}
	
	.h-m-t-10 {
		margin-top: 10px;
	}
	
	.h-m-t-20 {
		margin-top: 10px;
	}
	
	.h-m-t-30 {
		margin-top: 26px;
	}
	
	.h-m-t-50 {
		margin-top: 30px;
	}
	
	.h-m-b-20 {
		margin-bottom: 16px;
	}
	
	.h-m-b-30 {
		margin-bottom: 20px;
	}
	
	.h-m-t-100 {
		margin-top: 26px;
	}
	
	.h-m-l-10 {
		margin-left: 0;
	}
	
	.h-p-tb-bottom {
		padding: 16px 0 6px;
	}
	.border-bottom {
		border-bottom: none;
		padding-bottom: 20px;
		margin-bottom: 0;
	}
	.border-bottom-xs {
		border-bottom: 1px solid #CCCCCC;
		padding-bottom: 10px;
	}
	.content {
		margin-top: 10px;
		padding: 15px;
	}
	.h-text-center{
		text-align: center;
	}
	.flex-column{
		flex-direction: column;
	}
	.flex-column-reverse{
		flex-direction: column;
	}
	.center-btn{
		padding: 3px 5px;
		border-radius: 2px;
	}
}


/* 主页 */
/* 轮播图管理 */
.swiper-container {
	width: 100%;
	height: auto;
}
.dr-bg .swiper-pagination-bullet {
	background: #fff;
	opacity: 1 !important;
}

.dr-swiper-box {
	/* max-height: 100vh; */
}

.dr-bg .swiper-pagination-bullet-active {
	opacity: 1;
	background: #fdbe13;
	width: 24px;
	border-radius: 8px;
}

.dr-bg .swiper-slide {
	height: 100% !important;
}

.dr-start-ty {
	padding: 1rem 3rem;
	font-family: PingFangSC-Semibold;
	font-size: 1.5rem;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	background-color: #03378c;
	border: none;
	margin-top: 2.5rem;
}

.swiper-item-title {
	font-family: PingFangSC-Semibold;
	font-size: 4rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 72px;
}

.swiper-item-content {
	font-family: PingFangSC-Light;
	font-size: 1.6rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 2.2rem;
	margin-top: 2rem;
	max-height: 11rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}


/* 视频播放区 */
.dr-index-vedio-container {
	height: 100vh;
}

.dr-vedio-box {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
}

.dr-walk-school {
	opacity: 0.9;
	font-family: PingFangSC-Medium;
	font-size: 3.25rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 72px;
	text-align: center;
}

.dr-video-play {
	text-align: center;
}

.dr-video-play img {
	width: 8.63rem;
	height: 3.88rem;
}


/* 金牌教练 */
.dr-gold-title {
	font-family: PingFangSC-Semibold;
	color: #333333;
	text-align: center;
	font-size: 3.25rem;
	line-height: 74.35px;
	margin: 2rem 0;
	font-weight: 900;
	text-align: center;
	margin: 0 20px;
}

.dr-menu-gold-title {
	font-family: PingFangSC-Semibold;
	color: #333333;
	text-align: center;
	font-size: 3.25rem;
	line-height: 74.35px;
	font-weight: 400 !important;
	margin: 2rem 0;
	text-align: center;
	margin: 0 20px;
}

.dr-gold-avatar {
	width: 100%;
	height: 15rem;
}

.dr-gold-item {
	box-sizing: border-box;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.17);
	margin-bottom: 30px;
}

.dr-gold-item-content {
	height: 8rem;
	padding: 0 10px;
}

.dr-gold-item-content-name {
	font-family: PingFangSC-Regular;
	font-size: 16px;
	color: #333333;
	line-height: 42.67px;
}

.dr-gold-item-content-detail {
	font-family: PingFangSC-Regular;
	font-size: 0.8rem;
	color: #999999;
	line-height: 1.6rem;
	letter-spacing: -0.01rem;
}

.dr-gold-item-detail {
	border-top: 1px solid #F2F2F2;
	height: 2.75rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: PingFangSC-Regular;
	font-size: 12px;
	color: #666666;
	line-height: 1.1rem;
}

.dr-gold-item-detail img {
	height: 10px;
}

.dr-gold-box:hover .dr-gold-item-detail {
	background: #305B9F;
	color: #fff;
	-webkit-transition: all .4s cubic-bezier(1, 0, 0, 1);
	transition: all .4s cubic-bezier(1, 0, 0, 1);
}



/* 兼容ipad */
@media screen and (max-width: 992px) {
	.dr-nav-box {
		height: 60px;
	}

	.dr-index-content {
		margin-top: 60px;
	}
}

/* 移动端 */
@media screen and (max-width: 767px) {
	.h-p-r-15{
		padding-right: 0;
	}
	.swiper-item-title{
		font-size: 3.25rem;
	}
	.swiper-item-content{
		font-size: 1.3rem;
	}
	.dr-walk-school {
		font-size: 3rem;
	}
	.dr-gold-avatar{
		height: 20rem;
	}
	.dr-gold-item-detail{
		height: 4rem;
	}
	.dr-gold-item-content{
		height: 10rem;
	}
	.dr-gold-item-content-name {
		font-size: 2rem;
	}
	.dr-gold-item-content-detail{
		margin-top: 1rem;
		font-size: 1.2rem;
	}
	.dr-gold-title{
		font-size: 2.3rem;
	}
	.dr-menu-gold-title{
		font-size: 2.3rem;
	}
}


/* 服务承诺 */
.dr-promise-box {
	width: 100%;
	background: #FFFFFF;
	border: 10px solid rgba(3, 55, 140, 0.13);
	font-family: PingFangSC-Light;
	font-size: 1.3rem;
	color: #333333;
	letter-spacing: 0;
	line-height: 2.5rem;
	padding: 1.25rem 2.44rem;
}

.dr-promise-box ul {
	padding-left: 0;
}


/* 考试计划 */
.table>tbody>tr.info>td,
.table>tbody>tr.info>th,
.table>tbody>tr>td.info,
.table>tbody>tr>th.info,
.table>tfoot>tr.info>td,
.table>tfoot>tr.info>th,
.table>tfoot>tr>td.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>thead>tr.info>th,
.table>thead>tr>td.info,
.table>thead>tr>th.info {
	background-color: #E8F0FA;
	;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
	padding: 12px;
}

.table {
	text-align: center;
}

.table .info {
	font-family: PingFangSC-Medium;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.85);
	line-height: 22px;
}

.dr-yy-exam-box {
	text-align: center;
}
.table-responsive{
	font-size: 1.3rem;
}
.dr-yy-exam-box button {
	border: 2px solid #03378C;
	font-family: Montserrat-Bold;
	font-size: 1.5rem;
	color: #03378C;
	background: #fff;
	letter-spacing: 0;
	text-align: center;
	margin-top: 1rem;
	padding: 0.5rem 2rem
}

/* 学车班型 */
.dr-stduycar-item {
	margin-bottom: 2rem;
	padding: 0 15px;
}

.dr-stduycar-item:hover {
	color: blue !important;
}

.dr-stduycar-item img {
	width: 100%;
	height: auto;
}

.dr-studycar-detail {
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.14);
}

.dr-studycar-detail-title {
	font-family: PingFangSC-Semibold;
	font-size: 1.7rem;
	color: #333333;
	text-align: center;
	line-height: 4rem;
	font-weight: 900;
}

.dr-studycar-detail-content {
	font-family: PingFangSC-Regular;
	font-size: 1.1rem;
	color: #666666;
	line-height: 1.8rem;
	text-align: center;
}
.dr-stduycar-item:hover .dr-studycar-detail-title, .dr-stduycar-item:hover .dr-studycar-detail-content {
	color: #03378C;
}
.dr-online{
	background: #fff;
	border: 2px solid #03378C;
	font-family: Montserrat-Bold;
	color: #03378C;
	letter-spacing: 0;
	padding: 0.65rem 1.5rem;
}

.pl-5 {
	padding-left: 10px;
}

.pr-5 {
	padding-right: 10px;
}

.dr-class-detail-box{
	text-align: center;
}
.dr-class-detail-box button{
	background: #03378C;
	border-radius: 4px;
	border-radius: 4px;
	font-family: PingFangSC-Semibold;
	font-size: 1.5rem;
	color: #FFFFFF;
	text-align: center;
	margin-top: 1rem;
	padding: 1rem 2rem;
	border: none;
}
.dr-title-border{
	border-bottom: 3px solid #03378C;
	width: 50px;
	margin: auto;
	position: relative;
	top: -10px;
}

.swiper-pagination1, .swiper-pagination2, .swiper-pagination3{
	text-align: center;
}

#swiper-container1 .swiper-pagination-bullet-active {
	background: #fdbe13 !important;
}

#swiper-container2 .swiper-pagination-bullet-active {
	background: #fdbe13 !important;
}

#swiper-container3 .swiper-pagination-bullet-active {
	background: #fdbe13 !important;
}

/* 大屏的适配的 媒体查询代码 >1200px */
@media screen and (min-width: 1200px) {

	#swiper-container2 .swiper-slide,
	#swiper-container1 .swiper-slide {
		width: 25% !important;
		padding: 0 15px;
	}
	.col-md-1-2,
	.col-md-1-4{
		float: left;
	}
}

@media (min-width:992px) {
	.col-md-1-2,
	.col-md-1-4{
		float: left;
	}
	.col-md-1-2{
		width: 20%;
	}
	.col-md-1-4{
		width: 11%;
	}
}


/* 中等屏幕  992-1200*/
@media screen and (min-width: 992px) and (max-width: 1200px) {

	#swiper-container2 .swiper-slide,
	#swiper-container1 .swiper-slide {
		width: 25% !important;
		padding: 0 15px;
	}
}


/* 小屏幕  768-992 pad*/
@media screen and (min-width: 768px) and (max-width: 992px) {

	#swiper-container2 .swiper-slide,
	#swiper-container1 .swiper-slide {
		width: 50% !important;
		padding: 0 15px;
		text-align: center;
	}
}


/* 超小屏幕  <768px 手机*/
@media screen and (max-width: 767px) {

	#swiper-container2 .swiper-slide,
	#swiper-container1 .swiper-slide {
		width: 100% !important;
		padding: 0 15px;
		text-align: center;
	}
}
