.wave {
	width: 58px;
	height: 12px;
	margin: 0 auto;
}

/* ========== */
/* = COLOR = */
/* ========== */
.color-default { color: #268cf0;}

/* ========== */
/* = BUTTONS = */
/* ========== */
.button {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 178px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	overflow: hidden;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
	background-color: #268cf0;
	-webkit-box-shadow: -6px 5px 15px rgba(41,89,137,.2);
	-moz-box-shadow: -6px 5px 15px rgba(41,89,137,.2);
	box-shadow: -6px 5px 15px rgba(41,89,137,.2);
}

.button span {
	display: block;
	-webkit-transition: all ease .4s;
	transition: all ease .4s;
}

.button .hover {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0,100%);
    opacity: 0;
}

.button .hover-i {
    position: relative;
    display: inline-block;
    font-style: normal;
   -webkit-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0,10px);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out
}

.button:hover .default { opacity: 0;}

.button:hover .hover {
	opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.button:hover .hover-i {
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}


.button {
	color: #fff;
	background: #2b9eff;
}
.button .hover {
	background: #fff;
    color: #2b9eff;
}


.more-button {
	position: relative;
	display: inline-block;
	width: 294px;
	height: 59px;
	line-height: 57px;
	font-size: 20px;
	text-align: center;
	overflow: hidden;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-border-radius: 29px 30px 30px 29px/29px 29px 30px 30px;
	-moz-border-radius: 29px 30px 30px 29px/29px 29px 30px 30px;
	border-radius: 29px 30px 30px 29px/29px 29px 30px 30px;
	-webkit-box-shadow: 1px 1px 9px rgba(0,0,0,.07);
	-moz-box-shadow: 1px 1px 9px rgba(0,0,0,.07);
	box-shadow: 1px 1px 9px rgba(0,0,0,.07);
	 -webkit-transition: all ease .4s;
    transition: all ease .4s;
}

.more-button span {
	display: block;
	-webkit-transition: all ease .4s;
	transition: all ease .4s;
}

.more-button .hover {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
   -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0,100%);
    opacity: 0;
}

.more-button .hover-i {
    position: relative;
    display: inline-block;
    font-style: normal;
    -webkit-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0,10px);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out
}



.more-button:hover .hover {
	opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.more-button:hover .hover-i {
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.more-button-1 {
	color: #2b9eff;
	background: #fff;
}

.more-button-2 {
	color: #2b9eff;
	border: 1px solid rgba(255,255,255,.4);
}


.more-button-1 .hover {
	background: #2b9eff;
    color: #fff;
}

.more-button-2 .hover {
	color: #2b9eff;
	background: #fff;
}

.more-button-2:hover .default { background: #fff; transition-delay: .2s;}








/*.more-button span {
	position: relative;
	z-index: 2;
}*/

/*.more-button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0 0 0 0;
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
}

.more-button:after {
    content: '';
     position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0 0 0 0;
     -webkit-transition: all ease .4s;
    transition: all ease .4s;
}

.more-button:hover:before {
  border-width: 180px 0 0 180px;
}
.more-button:hover:after {
  border-width: 0 180px 180px 0;
}

.more-button-1 {
	color: #2b9eff;
	background: #fff;
}

.more-button-1:before {
	 border-color: transparent transparent transparent #2b9eff;
}

.more-button-1:after {
	border-color: transparent #2b9eff transparent transparent;
}

.more-button-1:hover { color: #fff;}
*/

/*.more-button-2 {
	color: #2b9eff;
	border: 1px solid rgba(255,255,255,.4);
}

.more-button-2:before {
	 border-color: transparent transparent transparent #fff;
}

.more-button-2:after {
	border-color: transparent #fff transparent transparent;
}

.more-button-2:hover { color: #2b9eff;}*/

/* ========== */
/* = POPUP = */
/* ========== */
.popup-wrap { display: none;}

.popup-bg {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 10000;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.get-modal {
	width: 600px;
	background: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


.get-modal-head {
	position: relative;
	padding: 60px 15px 15px;
	font-size: 12px;
	text-align: center;
	color: #fff;
	background: #268cf0;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.get-modal-head img {
	position: absolute;
	left: 50%;
	top: -52px;
	z-index: 10;
	margin-left: -52px;
}

.get-modal-body {
	padding:32px 8% 36px;
	color: #fff;
}

.get-form-list>li {
	float: left;
	padding: 11px;
	width: 50%;
}


.get-form-item .iptxt {
	display: block;
	padding: 7px 30px 7px 10px;
	height: 34px;
	line-height: 18px;
	width: 100%;
	font-size: 14px;
	background: none;
	color: #000;
	font-family: "微软雅黑";
	border: 1px solid #d2d2d2;
	border-radius: 5px;
}

.get-form-item .iptxt.building {
	background: url(../../images/building_ico.png) no-repeat right 10px center;
}

.get-form-item .iptxt.name {
	background: url(../../images/name_ico.png) no-repeat right 10px center;
}

.get-form-item .iptxt.phone {
	background: url(../../images/phone_ico.png) no-repeat right 10px center;
}

.get-form-item .iptxt::-webkit-input-placeholder { 
	color: #000; 
	opacity: .5;
} 
.get-form-item .iptxt:-moz-placeholder { 
	color: #000; 
	opacity: .5;
} 
.get-form-item .iptxt::-moz-placeholder { 
	color: #000; 
	opacity: .5;
} 
.get-form-item .iptxt:-ms-input-placeholder { 
	color: #000; 
	opacity: .5;
} 

.get-form-item .ipbtn {
	width: 100%;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border: 0;
	color: #fff;
	font-family: "微软雅黑";
	-webkit-border-radius: 19px/18px;
	-moz-border-radius: 19px/18px;
	border-radius: 19px/18px;
	-webkit-box-shadow: 4px 7px 15px rgba(41,89,137,.2);
	-moz-box-shadow: 4px 7px 15px rgba(41,89,137,.2);
	box-shadow: 4px 7px 15px rgba(41,89,137,.2);
}

.get-form-item select { width: 100%;}

.get-form-item .submitBtn-1 { background: #268cf0;}
.get-form-item .submitBtn-2 { background: #c4c5c6;}


.ui-multiselect.mySelect.ui-multiselect-menu { padding: 0;}

.ui-multiselect.mySelect .ui-multiselect-checkboxes li { padding: 5px;}

.ui-multiselect.mySelect {
	position: relative;
	border: 1px solid #d2d2d2;
	padding: 0 25px 0 10px;
	height: 34px;
	line-height: 32px;
	font-size: 14px;
	color: #222;
	border-radius: 5px;
	background: #fff;
	overflow: hidden;
}

.ui-multiselect.mySelect .ui-icon {
	position: absolute;
	top: 3px;
	right: 10px;
	height: 100%;
	background: url(/images/select_bg.png) no-repeat left center; 
}

.ui-multiselect.mySelect.ui-state-active .ui-icon, 
.ui-multiselect.mySelect .ui-button:active .ui-icon { background: url(/images/select_bg.png) no-repeat left center;}

.ui-icon-triangle-1-s { background-position: 0 0;}

.ui-multiselect.mySelect span:nth-child(2) { 
	display: block;
	color: #000; 
	opacity: .5;
}

.ui-multiselect.mySelect .ui-multiselect-checkboxes label { padding-left: 5px;}

.ui-multiselect-checkboxes label input {
	-webkit-appearance:checkbox;
}




@media (max-width:640px){
	.get-modal { width: 90%;}
	.get-modal-head { padding: 0.8rem 15px 15px;}
	.get-modal-body { padding: 20px 10px;}
	
	.get-modal-head img {
		margin-left: -0.693333rem;
		top: -0.693333rem;
		width: 1.386666rem;
		height: 1.386666rem;
	}
	
	.get-form-list>li { width: 100%;}
}
