﻿header {
    position: fixed;
    box-sizing: border-box;
    border-bottom: 2px solid #ed7102;
    z-index: 99;
    top: 0;
    width: 100%;
    display: block;
    background-color: #fff;
    height: auto;
}

.tel:hover {
    color: #cd2828;
    transition: 0.3s ease-in-out;
}

/* .hour {
    font-size: 19px;
    line-height: 1;
} */

.logoword {
    font-size: 19px;
}

.header-top-box {
    width: 1200px;
    max-width: 100%;
    display: flex;
    align-items: center;
    font-size: 0;
    padding: 5px 0;
    margin: 0 auto;
    box-sizing: border-box;
}


.header-title {
    font-size: 16px;
    letter-spacing: 3px;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.header-title b {
    font-size: 20px;
    font-weight: bold;
}

.header-title span {
    font-size: 16px;
    color: #ed7102;
    font-weight: bold;
}

.header-title i {
    font-size: 30px;
    color: #cd2828;
}

.header-logo {
    width: 360px;
    display: inline-block;
    vertical-align: middle;
}

.header-phone {
    width: 360px;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    font-size: 18px;
    letter-spacing: 2px;
}

.header-phone a {
    font-family: 'Teko';
    font-size: 30px;
    color: #ed7102;
    transition: all .3s linear;
    vertical-align: bottom;
    line-height: 30px;
}

.header-menu-box {
    width: calc(100% - 720px);
    display: inline-block;
    vertical-align: middle;
    position: relative;
    text-align: center;
}

.header-menu {
    width: 100%;
    display: block;
    font-size: 0;
}

.header-menu li {
    font-size: 18px;
    display: inline-block;
    box-sizing: border-box;
    border-top: 0;
    border-bottom: 0;
    min-width: 100px;
    padding: 0 5px;
    text-align: center;
    height: 46px;
    line-height: 46px;
    position: relative;
    transition-delay: 0s;
    border-top: 0;
}

.header-menu li a {
    width: 100%;
    display: block;
    position: relative;
    z-index: 3;
    transition: all .3s linear;
}

.header-menu-list-mask {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ed7102;
    transform: scale(0, 1);
    transition: all .3s linear;
}

/*----------------------------------*/
.rwd-menu {
    width: 50px;
    height: 50px;
    position: relative;
    top: 0;
    right: 2.5%;
    z-index: 99999;
    display: none;
    float: right;
}

.rwd-menu span {
    width: 35px;
    display: block;
    margin: 0 auto;
    height: 4px;
    background-color: #000;
    position: relative;
}

#index .rwd-menu span {
    background-color: #ed7102;
}

.rwd-menu span:nth-child(even) {
    margin: 6px auto;
    transition: all .4s linear;
}

.rwd-menu span:nth-child(1) {
    transform: scale(1);
    transform-origin: left;
    transition: all .4s linear;
    margin-top: 10px;
}

.rwd-menu span:nth-child(3) {
    transform: scale(1);
    transform-origin: right;
    transition: all .4s linear;
}

.rwd-menu span:nth-child(4) {
    top: -22px;
    transform: scale(0) rotate(-45deg);
}

.rwd-menu.active span:nth-child(odd) {
    transform: scale(0);
    transition: all .4s linear;
    transition-delay: 0;
}

.rwd-menu.active span:nth-child(2) {
    transform: rotate(45deg);
    transition: all .4s linear;
}

.rwd-menu.active span:nth-child(4) {
    transform: scaleX(1) rotate(-45deg);
    transition-delay: 0.3s;
}

.rwd-menu.active span {
    background-color: #FFF;
}