.headtoparea{
    background: #252628;
    overflow: hidden;
    position: relative;
}
.headtoparea::before{
    content: "";
    position: absolute;
    width:65%;
    height:100%;
    background-color: #FF3C00;
    top:0;
    left:-20px;
    overflow: hidden;
    transform: skew(-25deg);
    z-index: 0;
}
.headcontent{
    position: relative;
    width:95%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    font-size:16px;
    color:white;
    height: 40px;
    align-items: center;
}
.headtopleft{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 520px;
}

.headtopright{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width:280px;
}

.headtopright img{height:25px;}
.circleimg{border-radius: 50%;}


.navbararea{
    width:100%;
    background-color: white;
    position: sticky;
    top:0;
    z-index: 999;
}
.navconten{
    width:95%;
    max-width: 1200px;
    margin:auto;
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    font-size: 16px;
    align-items: center;
}
.navlogo img{
    height: 70px;
    padding: 5px 0;
}
.navmenu{
    width:60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menuitem{
    position: relative;
    color:#555;
    text-decoration: none;
    height:70px;
    line-height: 70px;
    width:80px;
    text-align: center;
}

.menuactive::after{
    position: absolute;
    content: "";
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    width:100%;
    height:3px;
    background: #FF3C00;
    /*
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transform: all 0.3s ease-in;
    -o-transform: all 0.3s ease-in;
    */
}

/* 备用
.submenu{
  width: 235px;
  position: absolute;
  top: 100px;
  background: #fff;
  transition: .3s;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  padding: 10px 20px 10px 5px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  height:auto;
}
.navmenu div:hover .submenu{
  position: absolute;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.submenu p{
    height:40px;
    line-height: 40px;
    margin:8px;
}
*/
.promenu{
    display: none;
}
.promenuitem{
    height:40px;
    line-height: 40px;
    width:100%;
    margin: 3px 0;
    text-align: center;
}
.promenuitem:hover{
    background: #f3f3f3;
}
.mvmenu{
    display: none;
    font-size:28px;
    color: #555;
}

/********mobile terminal *********/
.mobmenubar{
    z-index: 9999;
}
.mmenuitem{
    width:100%;
    height:40px;
    line-height:40px;
    background:white;
    border-bottom: solid 1px #f3f3f3;
    padding-left:15px;
}
.mmenusubitem{
    padding-left:36px;
    background: #f5f5f5;
}
.closemobbar{
    height:50px;
    line-height:50px;
    font-size:30px;
    width:100%;
    text-align:right;
    padding-right:10px;
    background:#f3f3f3;
}
/***修改系统默认值**/
html.pushbar_locked .pushbar_overlay {
    z-index:1;
}

/*******搜索**********/
.search-popup{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0,0,0,0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}
.search-popup{
    width: 100%;
}
.search-active .search-popup{
    transform: translateY(0%);
    margin-top: 0;
}
.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: #FF3C00;
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    height: 70px;
    line-height: 70px;
    text-align: center;
}
.search-popup .close-search i{
    position: relative;
    font-size: 30px;
    color: #ffffff;
}
.search-active .search-popup .close-search{
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}
.search-popup .formrow{
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin:-35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.search-active .search-popup .formrow{
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}
.search-popup .form-group{
    position:relative;
    margin:0px; 
    overflow: hidden;
}
.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]{
    position:relative;
    display:block;
    font-size:18px;
    line-height: 50px;
    color:#000000;
    height:70px;
    width:92%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
    font-weight:500;
    text-transform:capitalize;
    border:none;
}
.search-popup .form-group input[type="submit"], .search-popup .form-group button {
    position: absolute;
    right: 0;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: white;
    width: 8%;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
    color: #000000;
}
.search-popup input::placeholder,
.search-popup textarea::placeholder{
    color:#000000;
}
.search-popup .close-search.style-two{
    position: absolute;
    right: 25px;
    left: auto;
    color:#ffffff;
    width:auto;
    height:auto;
    top:25px;
    margin:0px;
    border:none;
    background:none !important;
    box-shadow:none !important;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
.search-popup .close-search.style-two i{
    font-size:20px;
    color:#ffffff;
}
.header-src-btn {
    float: right;
    position: relative;
    margin-top: -27px;
}
/*
.search-box-btn.search-box-outer {
    margin-top: 27px;
    margin-left: 11px;
}
.search-box-btn.search-box-outer i {
    font-size: 18px;
    color: #FF3C00;
    cursor: pointer;
}
.uk-sticky-fixed .search-box-btn.search-box-outer i {
    background: transparent!important;
    color: #fff;
}
*/
.search-box-outer i {
    font-size: 18px;
    color: #FF3C00;
    cursor: pointer;
}

@media screen and (max-width:800px){
    .headtoparea,.navmenu{
        display: none;
    }
    .mvmenu{
        display: block;
    }
}
