.head_new {
    background-image: url(../images/head_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 0;
}
.head_new.fixed {
	padding-top: 90px;
}
.head_new.fixed .head_top {
    background: #979797;
    height: 90px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
.head_logo {
    padding-top: 18px;
}
.head_menu ul.nav>li {
    display: inline-block;
}
.head_menu ul.nav>li>a {
    display: inline-block;
    padding: 0 15px;
    line-height: 90px;
    font-size: 12px;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
}
.head_menu ul.nav>li:hover>a {
    background: #000;
    color: #fff;
}
.head_menu ul.nav>li.active>a {
    color: #fff;
}
.head_menu ul.nav>li.parent>a:after {
    font-family: "FontAwesome";
    content: " \f107";
}
.head_menu ul.nav ul {
	visibility: hidden;
	opacity: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #282828;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    z-index: 999;
    width: 500px;
}
.head_menu ul.nav li:hover ul {
	visibility: visible;
	opacity: 1;
}
.head_menu ul.nav ul li {
    padding: 0 14px;
    border-right: solid 1px #3a3a3a;
    border-bottom: solid 1px #3a3a3a;
    width: 33.333333%;
}
.head_menu ul.nav ul li:hover {
	background: #000;
}
.head_menu ul.nav ul li a {
    display: block;
    padding: 20px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.head_social {
    padding-top: 28px;
}
.head_social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.head_social li {
    float: left;
}
.head_social li:nth-child(1n+2) {
    padding-left: 10px;
}
.head_social li a {
    width: 30px;
    height: 30px;
    line-height: 31px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: #333;
    display: block;
    font-size: 18px;
}
.head_social li a:hover {
	opacity: .8;
}

.head_title {
    float: right;
    width: calc(100% - 250px);
    text-align: center;
    padding: 40px 0;
}
.head_title h1 {
    font-weight: 600;
    font-size: 36px;
    margin: 0;
}

.head_form {
    float: right;
    width: calc(100% - 250px);
}
.head_form_left {
    float: left;
    width: 55%;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    padding-top: 25px;
}
.head_form_p {
    padding-bottom: 64px;
}
.head_form_tel {
    font-weight: 700;
}
.head_form_tel a {
    color: #ffbb00;
}
.head_form_tel span {
    font-size: 20px;
    font-weight: initial;
    position: relative;
}
.head_form_tel span:after {
    display: block;
    content: "";
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: -50px;
    right: -84px;
    background: url(../images/arrow-min.png) no-repeat;
    background-size: 100%;
}

.head_form_right {
    padding: 16px;
    border: solid 1px #333333;
    border-radius: 8px;
    width: 40%;
    float: right;
    margin-bottom: 18px;
}
.head_form_title {
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 30px;
    color: #333333;
}
.head_form_right .formControlLabel {
    display: none;
}
.head_form_right .formBody {
    width: 100%;
}
.head_form_right input, .head_form_right textarea {
    padding: 8px;
    border: solid 1px #333333;
    border-radius: 0;
    font-family: "Open Sans",sans-serif;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 18px;
    margin-bottom: 30px;
}
.head_form_right textarea {
    height: 75px;
}
.head_form_right button {
    background: #FFBB00;
    color: #333333;
    font-size: 20px;
    font-weight: 600;
    border: solid 1px #333333;
    height: 50px;
    width: 100%;
}

.head_tip {
    width: 225px;
    float: left;
    height: 550px;
    position: relative;
}
.head_tip img {
    max-height: 100%;
    position: absolute;
    bottom: 0;
}
.open_hidd_menu, .head_tel {
    display: none;
}

@media screen and (max-width:1199px){
	.head_new.fixed {
		padding-top: 60px;
	}
	.head_new.fixed .head_top, .head_top {
        height: 60px;
    }
    .head_logo {
        padding-top: 8px;
    }
    .head_menu_open {
        float: right;
        font-size: 30px;
        padding-top: 18px;
        cursor: pointer;
    }
    .head_menu_open:before {
        font-family: FontAwesome;
        content: "\f0c9";
    }
    .open_hidd_menu {
	    display: block;
	}
    .head_top_left {
        float: right;
    }
    .head_social {
        padding-top: 15px;
    }
    .head_menu {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -100%;
        width: 100%;
        background: #000;
        z-index: 9999;
        -webkit-transition:all 0.3s;
        -moz-transition:all 0.3s;
        transition:all 0.3s;
    }
    .head_menu.active {
        left: 0;
    }
    .head_menu ul.nav {
        padding: 40px 10px 20px;
    }
    .head_menu ul.nav>li {
        display: block;
    }
    .head_menu ul.nav>li>a {
        padding: 10px;
        font-size: 14px;
        text-transform: uppercase;
        color: #fff;
        font-weight: 500;
        line-height: 28px;
        display: block;
    }
    .head_menu ul.nav>li.parent>a {
        padding-right: 50px;
    }
    .head_menu li>a:before {
        font-family: FontAwesome;
        content: "\f105";
        margin-right: 8px;
    }
    .head_menu ul.nav>li.parent>a:after {
        display: none;
    }
    .head_menu ul.nav ul {
        visibility: visible;
        opacity: 1;
        background: transparent;
        display: none;
        position: relative;
        z-index: initial;
        width: initial;
        padding-left: 15px;
    }
    .head_menu ul.nav ul li {
        padding: 0;
        border-right: 0;
        border-bottom: 0;
        width: 100%;
    }
    .head_menu ul.nav ul li a {
        font-weight: 500;
        padding: 10px;
        font-size: 14px;
    }
    .head_menu_close {
        position: absolute;
        top: 15px;
        right: 15px;
        border-radius: 100%;
        width: 25px;
        height: 25px;
        line-height: 23px;
        text-align: center;
        font-size: 16px;
        border: 1px solid #fff;
        color: #fff;
        cursor: pointer;
    }
    .head_menu_close:before {
        content: "\f00d";
        font-family: FontAwesome;
    }
    .open_hidd_menu {
        position: absolute;
        top: 0;
        right: 0;
        line-height: 48px;
        height: 49px;
        width: 49px;
        text-align: center;
        cursor: pointer;
        font-size: 22px;
        color: #fff;
    }
    .open_hidd_menu.active {
        color: #00b247;
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .head_form_tel span {
        margin: 10px 53px 0 0;
    }
}

@media screen and (max-width:992px){
    .head_logo {
        width: 160px;
    }
    .head_top_left {
        width: initial;
    }
    .head_form_tel a {
        display: block;
        margin: 10px;
    }
}
@media screen and (max-width:767px){
    .head_logo {
        float: left;
    }
    .head_menu_open {
        padding-right: 15px;
    }
    .head_social {
        display: none;
    }
    .head_tel {
        display: block;
        float: left;
        padding-top: 18px;
    }
    .head_tel a {
        font-weight: 700;
        color: #ffbb00;
    }
    .head_form_left {
        width: 100%;
        font-size: 20px;
        text-align: left;
    }
    .head_form {
        padding-right: 15px;
        width: calc(100% - 180px);
    }
    .head_form_p {
        padding-bottom: 0;
        margin: 0;
    }
    .head_form_tel a {
        display: initial;
        margin: 0;
    }
    .head_form_tel span {
        margin: 0;
    }
    .head_form_tel span:after {
        display: none;
    }
    .head_form_right {
        padding: 10px;
        width: 100%;
        margin-bottom: 0;
    }
    .head_form_title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .head_form_right input, .head_form_right textarea {
        padding: 0 8px;
        height: 30px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    .head_title {
        width: calc(100% - 180px);
        padding: 20px 0;
    }
    .head_title h1 {
        font-size: 30px;
    }
    .head_tip {
        width: 180px;
        height: 420px;
    }
}
@media screen and (max-width:479px){
    .head_logo {
        padding: 14px 0 0 10px;
        width: 130px;
    }
    .head_menu_open {
        padding-right: 8px;
    }
    .head_title {
        width: 100%;
        padding: 10px 0 20px;
    }
    .head_title h1 {
        font-size: 24px;
    }
    .head_form {
        padding-right: 8px;
        width: calc(100% - 100px);
    }
    .head_form_left {
        padding-top: 0;
    }
    .head_form_tel a {
        display: block;
    }
    .head_tip {
        width: 100px;
        height: 340px;
    }
    .head_form_left, .head_form_tel span {
        font-size: 16px;
        line-height: initial;
    }
    .head_form_right button {
        font-size: 18px;
        height: 40px;
    }
}

















