body{
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    overflow-x: hidden;
}
/*== home ==*/
.home{
	
	background: url(../berner/bg_01.jpg) no-repeat;
	background-size: cover;
    position: relative;
    padding: 0;
    z-index: 0;
}

.home::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    /*background: url("../berner/dot-overlay.png") repeat scroll 0 0;*/
}
.da-slider {
	margin: 0 auto;
	min-height: 550px;
	overflow: hidden;
	position: relative;
	z-index: 1000;
	width: 100%;
	-webkit-transition: background-position 1s ease-out 0.3s;
	transition: background-position 1s ease-out 0.3s;
}
.top{margin-top:50px;}
.da-slide a{border-radius:10px;border:none;}
.da-slide{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	text-align: left;
}
.da-slide-current{
	z-index: 1000;
}
.da-slider-fb .da-slide{
	left: 100%;
}
.da-slider-fb  .da-slide.da-slide-current{
	left: 0px;
}
.da-slide h2,
.da-slide p,
.da-slide .da-link,
.da-slide .da-img{
	position: absolute;
	opacity: 0;
	left: 110%;
}
.da-slider-fb .da-slide h2,
.da-slider-fb .da-slide p,
.da-slider-fb .da-slide .da-link{
	left: 10%;
	opacity: 1;
}
.da-slider-fb .da-slide .da-img{
	left: 60%;
	opacity: 1;
}
.da-slide h2 {
	color: #fff;
	font-size: 50px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	top: 60px;
	font-family: "microsoft yahei", Tahoma, arial, sans-serif;
	width: 50%;
	z-index: 10;
}
.da-slide p {
	color: #eee;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	overflow: hidden;
	height: 140px;
	top: 180px;
	width: 45%;
}
.da-slide .da-img{
	text-align: center;
	height:480px;
	/*width:570px;
	width: 30%;
	top: 100px;
	line-height: 320px;*/
	left: 110%; /*60%*/
}
.da-slide .da-link {
	background-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	color: #fff;
	font-size: 15px;
	line-height: 30px;
	padding: 8px 22px;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	top: 60%;
}

.da-slide .da-link:hover {
	color: #eee;
	background-color: rgba(255, 255, 255, 0.7);
}

.da-dots{
	width: 100%;
	position: absolute;
	text-align: center;
	left: 0px;
	bottom: 20px;
	z-index: 2000;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.da-dots span {
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	height: 15px;
	margin: 5px;
	position: relative;
	width: 15px;
}

.da-dots span.da-dots-current:after{
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
}
.da-arrows{
	-moz-user-select: none;
	-webkit-user-select: none;
}
.da-arrows span {
	cursor: pointer;
	opacity: 1;
	position: absolute;
	top: 50%; 
	-webkit-transition: opacity 0.4s ease-in-out-out 0.2s;
	transition: opacity 0.4s ease-in-out-out 0.2s;
}
.da-slider:hover .da-arrows span{
	opacity: 1;
}

.da-arrows span i {
	color: rgba(255, 255, 255, 0.5);
	font-size: 45px;
	opacity: 1;
	position: relative;
	z-index: 2000;
}

.da-arrows span.da-arrows-prev{
	left: 15px;
}
.da-arrows span.da-arrows-next{
	right: 15px;
}

.da-slide-current h2,
.da-slide-current p,
.da-slide-current .da-link{
	left: 10%;
	opacity: 1;
}
.da-slide-current .da-img{
	left: 60%;
	opacity: 1;
}
/* Animation classes and animations */

/* Slide in from the right*/
.da-slide-fromright h2{
	-webkit-animation: fromRightAnim1 0.6s ease-in-out 0.8s both;
	animation: fromRightAnim1 0.6s ease-in-out 0.8s both;
}
.da-slide-fromright p{
	-webkit-animation: fromRightAnim2 0.6s ease-in-out 0.8s both;
	animation: fromRightAnim2 0.6s ease-in-out 0.8s both;
}
.da-slide-fromright .da-link{
	-webkit-animation: fromRightAnim3 0.4s ease-in-out 1.2s both;
	animation: fromRightAnim3 0.4s ease-in-out 1.2s both;
}
.da-slide-fromright .da-img{
	-webkit-animation: fromRightAnim4 0.6s ease-in-out 0.8s both;
	animation: fromRightAnim4 0.6s ease-in-out 0.8s both;
}
@-webkit-keyframes fromRightAnim1{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@-webkit-keyframes fromRightAnim2{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@-webkit-keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	1%{ left: 10%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@-webkit-keyframes fromRightAnim4{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 60%; opacity: 1; }
}

@keyframes fromRightAnim1{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@keyframes fromRightAnim2{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	1%{ left: 10%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@keyframes fromRightAnim4{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 60%; opacity: 1; }
}
/* Slide in from the left*/
.da-slide-fromleft h2{
	-webkit-animation: fromLeftAnim1 0.6s ease-in-out 0.6s both;
	animation: fromLeftAnim1 0.6s ease-in-out 0.6s both;
}
.da-slide-fromleft p{
	-webkit-animation: fromLeftAnim2 0.6s ease-in-out 0.6s both;
	animation: fromLeftAnim2 0.6s ease-in-out 0.6s both;
}
.da-slide-fromleft .da-link{
	-webkit-animation: fromLeftAnim3 0.4s ease-in-out 1.2s both;
	animation: fromLeftAnim3 0.4s ease-in-out 1.2s both;
}
.da-slide-fromleft .da-img{
	-webkit-animation: fromLeftAnim4 0.6s ease-in-out 0.6s both;
	animation: fromLeftAnim4 0.6s ease-in-out 0.6s both;
}
@-webkit-keyframes fromLeftAnim1{
	0%{ left: -110%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim2{
	0%{ left: -110%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim3{
	0%{ left: -110%; opacity: 0; }
	1%{ left: 10%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim4{
	0%{ left: -110%; opacity: 0; }
	100%{ left: 60%; opacity: 1; }
}

@keyframes fromLeftAnim1{
	0%{ left: -110%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@keyframes fromLeftAnim2{
	0%{ left: -110%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@keyframes fromLeftAnim3{
	0%{ left: -110%; opacity: 0; }
	1%{ left: 10%; opacity: 0; }
	100%{ left: 10%; opacity: 1; }
}
@keyframes fromLeftAnim4{
	0%{ left: -110%; opacity: 0; }
	100%{ left: 60%; opacity: 1; }
}
/* Slide out to the right */
.da-slide-toright h2{
	-webkit-animation: toRightAnim1 0.6s ease-in-out 0.6s both;
	animation: toRightAnim1 0.6s ease-in-out 0.6s both;
}
.da-slide-toright p{
	-webkit-animation: toRightAnim2 0.6s ease-in-out 0.3s both;
	animation: toRightAnim2 0.6s ease-in-out 0.3s both;
}
.da-slide-toright .da-link{
	-webkit-animation: toRightAnim3 0.4s ease-in-out both;
	animation: toRightAnim3 0.4s ease-in-out both;
}
.da-slide-toright .da-img{
	-webkit-animation: toRightAnim4 0.6s ease-in-out both;
	animation: toRightAnim4 0.6s ease-in-out both;
}
@-webkit-keyframes toRightAnim1{
	0%{ left: 10%;  opacity: 1; }
	100%{ left: 100%; opacity: 0; }
}
@-webkit-keyframes toRightAnim2{
	0%{ left: 10%;  opacity: 1; }
	100%{ left: 100%; opacity: 0; }
}
@-webkit-keyframes toRightAnim3{
	0%{ left: 10%;  opacity: 1; }
	99%{ left: 10%; opacity: 0; }
	100%{ left: 100%; opacity: 0; }
}
@-webkit-keyframes toRightAnim4{
	0%{ left: 60%;  opacity: 1; }
	30%{ left: 55%;  opacity: 1; }
	100%{ left: 100%; opacity: 0; }
}

@keyframes toRightAnim1{
	0%{ left: 10%;  opacity: 1; }
	100%{ left: 100%; opacity: 0; }
}
@keyframes toRightAnim2{
	0%{ left: 10%;  opacity: 1; }
	100%{ left: 100%; opacity: 0; }
}
@keyframes toRightAnim3{
	0%{ left: 10%;  opacity: 1; }
	99%{ left: 10%; opacity: 0; }
	100%{ left: 100%; opacity: 0; }
}
@keyframes toRightAnim4{
	0%{ left: 60%;  opacity: 1; }
	30%{ left: 55%;  opacity: 1; }
	100%{ left: 100%; opacity: 0; }
}
/* Slide out to the left*/
.da-slide-toleft h2{
	-webkit-animation: toLeftAnim1 0.6s ease-in-out both;
	animation: toLeftAnim1 0.6s ease-in-out both;
}
.da-slide-toleft p{
	-webkit-animation: toLeftAnim2 0.6s ease-in-out 0.3s both;
	animation: toLeftAnim2 0.6s ease-in-out 0.3s both;
}
.da-slide-toleft .da-link{
	-webkit-animation: toLeftAnim3 0.6s ease-in-out 0.6s both;
	animation: toLeftAnim3 0.6s ease-in-out 0.6s both;
}
.da-slide-toleft .da-img{
	-webkit-animation: toLeftAnim4 0.6s ease-in-out 0.5s both;
	animation: toLeftAnim4 0.6s ease-in-out 0.5s both;
}
@-webkit-keyframes toLeftAnim1{
	0%{ left: 10%;  opacity: 1; }
	30%{ left: 15%;  opacity: 1; }
	100%{ left: -50%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim2{
	0%{ left: 10%;  opacity: 1; }
	30%{ left: 15%;  opacity: 1; }
	100%{ left: -50%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim3{
	0%{ left: 10%;  opacity: 1; }
	100%{ left: -50%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim4{
	0%{ left: 60%;  opacity: 1; }
	70%{ left: 30%;  opacity: 0; }
	100%{ left: -50%; opacity: 0; }
}

@keyframes toLeftAnim1{
	0%{ left: 10%;  opacity: 1; }
	30%{ left: 15%;  opacity: 1; }
	100%{ left: -50%; opacity: 0; }
}
@keyframes toLeftAnim2{
	0%{ left: 10%;  opacity: 1; }
	30%{ left: 15%;  opacity: 1; }
	100%{ left: -50%; opacity: 0; }
}
@keyframes toLeftAnim3{
	0%{ left: 10%;  opacity: 1; }
	100%{ left: -50%; opacity: 0; }
}
@keyframes toLeftAnim4{
	0%{ left: 60%;  opacity: 1; }
	70%{ left: 30%;  opacity: 0; }
	100%{ left: -50%; opacity: 0; }
}

@media (max-width: 785px) { 
    .da-slide .da-img{
        display: none;
    }
    
    .da-slide h2{
        white-space: normal;
        font-size: 40px;
    }
    
    .da-slide h2,
    .da-slide p{
        width: 80%;
    }
}
/***/
/* modal */
.modal-dialog .modal-content {
  background:white;
  text-align: center;
  padding: 50px;
  position: relative;
}

.btn:focus {
  outline: none;
}

.modal-header {
  border-bottom: 0px;
}

.modal-dialog .close {
  color: #f1c11a;
  font-size: 40px;
  font-weight: 300;
  text-shadow: none;
  opacity: 1;
  position: absolute;
  top: 40px;
  right: 40px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  width: 36px;
  height: 36px;
  line-height: 35px;
  text-align: center;
}
.modal-dialog .close:focus {
  outline: none;
}

.modal-dialog form {
  padding: 20px;
}
.modal-dialog form input {
  height: 55px;
}
.modal-dialog form .form-control {
  background: transparent;
  border: 1px solid #f0f0f0;
  border-radius: 0px;
  box-shadow: none;
  font-size: 20px;
  color: #2F2F2F;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.modal-dialog form input[type="submit"] {
  background: #026fbf;
  color: #fff;
  text-transform: uppercase;
  margin-top: 30px;
  border-radius:30px;
}
.modal-dialog form input[type="submit"]:hover {
  background: #003366;
  border-color: transparent;
  color: #ffffff;
  border-radius:30px;
}

.modal-dialog .close {
  font-size: 35px;
  width: 25px;
  height: 25px;
  line-height: 25px;
}
.modal-dialog p{font-size:24px;color:#3366CC;}
/***/
/*.wrap_content .wrap_form{
    padding: 0 60px;
    margin-top: 40px;
}
.wrap_content .wrap_form div{
    position: relative;
}
.wrap_content .wrap_form div input{
    width:316px;
    height:42px;
    border-radius:4px;
    border:1px solid rgba(204,204,204,1);
    padding-left: 42px;
    font-size: 14px;
    font-weight: 200;
}
.wrap_content .wrap_form form div input:focus{
    outline: none;
    border: 1px solid #4bc3a1;
}
.wrap_content .wrap_form form div input:focus~.iconfont{
    color: #4bc3a1;
}
.wrap_content .wrap_form form div p.erro_tip{
    font-size:14px;
    font-weight:400;
    color:rgba(255,76,76,1);
    line-height:14px;
    margin-top: 6px;
    margin-bottom: 12px;
    visibility: hidden;
}
.wrap_content .wrap_form form div.wrap_code input{
    width: 186px
}*/
.wrap_content .wrap_form form div .iconfont{
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 20px;
    color: #c0c0c0;
}
.wrap_content .wrap_form form div .get_code{
    width:120px;
    height:42px;
    background:rgba(255,255,255,1);
    border-radius:4px;
    border:1px solid rgba(204,204,204,1);
    font-size:16px;
    color: rgba(102,102,102,1);
    line-height: 42px;
    text-align: center;
    display: block;
    float: right;
    cursor: pointer;
}
.wrap_content .wrap_form form div .get_code:hover{
    border:1px solid rgba(0,199,159,1);
    color: rgba(0,199,159,1);
}
.wrap_content .wrap_form form div .can_cli:hover{
    color: rgba(102,102,102,1);
    border:1px solid rgba(204,204,204,1);
}
.interest p{
    font-size:18px;
    color:rgba(102,102,102,1);
    line-height:14px;
	text-align:left;
}
.wrap_content .wrap_form form div.interest p.erro_tip{
    color: rgba(255,76,76,1);
}
.wrap_content .wrap_form form div.interest .wrap_type{
    margin-top: 10px;
}
.wrap_type span{
    display: inline-block;
    padding-left: 28px;
    position: relative;
    margin-left: 44px;
    font-size:16px;
    cursor: pointer;
    line-height: 30px;
	
}
.wrap_content .wrap_form form div.interest .wrap_type span.crm{
    margin-left: 27px;
}
.wrap_content .wrap_form form div.interest .wrap_type span.video{
    margin-left: 56px;
    position: relative;
}
.wrap_content .wrap_form form div.interest .wrap_type span.video img{
    position: absolute;
    width: 30px;
    height: 15px;
    right: -14px;
    top: -10px;
}
.wrap_content .wrap_form form div.interest .wrap_type span:hover::before{
    border:1px solid rgba(0,199,159,1);
}
.wrap_content .wrap_form form div.interest .wrap_type span.active:hover::before{
    border: none;
}
.wrap_content .wrap_form form div.interest .wrap_type span.first{
    margin-left: 0;
}
.wrap_content .wrap_form form div.interest .wrap_type span.two_row{
    margin-top: 10px;
}
.wrap_content .wrap_form form div.interest .wrap_type span::before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius:4px;
    border:1px solid rgba(217,217,217,1);
    left: 0;
    top: 0;
}
.wrap_content .wrap_form form div.interest .wrap_type span.active::after{
    content: "";
    display: inline-block;
    width: 10px;
    height: 4px;
    transform: rotate(-45deg);
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    left: 5px;
    top: 6px;
}
.wrap_content .wrap_form form div.interest .wrap_type span.active::before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    top: 0;
    background:rgba(0,174,131,1);
    left: 0;
    position: absolute;
    border: none;
}
.wrap_content .wrap_form .btn{
    display: block;
    height:44px;
    background:rgba(0,199,159,1);
    border-radius:4px;
    cursor: pointer;
    line-height: 44px;
    text-align: center;
    font-size:18px;
    color: #fff;
    margin-top: 40px;
}
.wrap_content .wrap_form .btn:hover{
    background: #20b289;
}
.wrap_content .wrap_form p.explain{
    font-size:16px;
    color:rgba(102,102,102,1);
    line-height: 16px;
    text-align: center;
    margin-top: 16px;
}