﻿/*********************************
3. Header
*********************************/
.dropdown:hover>.dropdown-menu
{
    display: block;
    top: 95%;
}
.dropdown>.dropdown-toggle:active
{
    pointer-events: none;
}
.header
{
    box-shadow: 6px 4px 4px #d6d6d66b;
    position: fixed;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1318px;
    height: 70px;
    background: rgba(255,255,255,0);
    z-index: 10;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.header.scrolled
{
    top: 5px;
    box-shadow: 0 20px 49px rgba(0,0,0,.17);
    background: #fff!important;
}
.header_content
{
    width: 100%;/*原代码calc(100% - 279px)*/
    height: 100%;
}
.header_content::before
{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
}/*********************************
3.1 Logo
*********************************/
.logo_container
{
    display: inline-block;
    padding-left: 20px;
}
.logo span
{
    font-family: 'Open Sans',sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #3a3a3a;
    vertical-align: middle;
    text-transform: uppercase;
    margin-left: 3px;
}/*********************************
3.2 Main Nav
*********************************/
.main_nav_container
{
    display: inline-block;
    margin-left: auto;
    padding-right: 40px;
}
.main_nav
{
    margin-top: 7px;
}
.main_nav_item
{
    display: inline-block;
    margin-right: 40px;
}
.main_nav_item
{
    display: inline-block;
    margin-right: 40px;
}
.dropdown
{
    margin-right: 30px;
}
.main_nav_item:last-child
{
    margin-right: 0;
}
.main_nav_item a
{
    font-family: 'Microsoft YaHei','SF Pro Display',Arial,'PingFang SC',sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.main_nav_item a:hover
{
    background: #d2262d;
    color: #fffbfc;
    padding: 10px;
}/*********************************
3.3 Header Side
*********************************/
.header_side
{
    width: 279px;
    height: 100%;
    background: #d2262d;
}
.header_side img
{
    width: 29px;
    height: 29px;
}
.header_side span
{
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding-left: 12px;
}/*********************************
3.4 Hamburger
*********************************/
.hamburger_container
{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    display: none;
    cursor: pointer;
}
.hamburger_container i
{
    font-size: 24px;
    padding: 10px;
    color: #3a3a3a;
}
.hamburger_container:hover i
{
    color: #d2262d;
}/*********************************
4. Menu
*********************************/
.menu_container
{
    position: fixed;
    top: 0;
    right: -50vw;
    width: 50vw;
    height: 100vh;
    background: #fff;
    z-index: 12;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    visibility: hidden;
    opacity: 0;
}
.menu_container.active
{
    visibility: visible;
    opacity: 1;
    right: 0;
}
.menu
{
    position: absolute;
    top: 150px;
    left: 0;
    padding-left: 15%;
}
.menu_list
{
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 1000ms 600ms ease;
    opacity: 0;
}
.menu_container.active .menu_list
{
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.menu_item
{
    margin-bottom: 9px;
}
.menu_item a
{
    font-family: 'Microsoft YaHei','SF Pro Display',Arial,'PingFang SC',sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu_item a:hover
{
    color: #d2262d;
}
.menu_close_container
{
    position: absolute;
    top: 86px;
    right: 79px;
    width: 21px;
    height: 21px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu_close
{
    top: 9px;
    width: 21px;
    height: 3px;
    background: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu_close::after
{
    display: block;
    position: absolute;
    top: -9px;
    left: 9px;
    content: '';
    width: 3px;
    height: 21px;
    background: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu_close_container:hover .menu_close, .menu_close_container:hover .menu_close::after
{
    background: #d2262d;
}/*********************************
4.1 Menu Social
*********************************/
.menu_social_container
{
    margin-top: 100px;
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 1000ms 1000ms ease;
    -moz-transition: all 1000ms 1000ms ease;
    -ms-transition: all 1000ms 1000ms ease;
    -o-transition: all 1000ms 1000ms ease;
    transition: all 1000ms 1000ms ease;
    opacity: 0;
    padding-left: 4px;
}
.menu_social_item
{
    display: inline-block;
    margin-right: 30px;
}
.menu_social_item a i
{
    color: #3a3a3a;
}
.menu_social_item a i:hover
{
    color: #d2262d;
}
.menu_container.active .menu_social_container
{
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}/*********************************
4.2 Menu copyright
*********************************/
.menu_copyright
{
    margin-top: 60px;
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 1000ms 1200ms ease;
    -moz-transition: all 1000ms 1200ms ease;
    -ms-transition: all 1000ms 1200ms ease;
    -o-transition: all 1000ms 1200ms ease;
    transition: all 1000ms 1200ms ease;
    opacity: 0;
    padding-left: 3px;
}
.menu_container.active .menu_copyright
{
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}/*********************************
15. Footer
*********************************/
.footer
{
    width: 100%;
    padding-top: 30px;
    background: #1a1a1a;
    margin-top: 13px;
}
.footer .section_title h1
{
    color: #fff;
}
.qr
{
    width: 100px;
    height: 100px;
}/*********************************
15.1 Newsletter
*********************************/
.newsletter
{
    padding-bottom: 85px;
    border-bottom: solid 2px #4d4e4e;
}
.newsletter_form_container
{
    width: 60%;
    margin-top: 48px;
}
.newsletter_email
{
    width: calc(100% - 164px);
    height: 42px;
    border: none;
    padding-left: 27px;
    font-weight: 500;
    color: #1a1a1a;
}
.newsletter_email:focus
{
    outline: solid 2px #d2262d;
}
.newsletter_submit_btn
{
    width: 164px;
    height: 42px;
    border: none;
    background: #d2262d;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.newsletter_submit_btn:focus
{
    border: solid 2px #fff;
}/*********************************
15.2 Footer Content
*********************************/
.footer_content
{
    padding-bottom: 10px;
    border-bottom: solid 2px #4d4e4e;
}
.footer_content .logo_container
{
    padding-left: 0;
}
.footer_content .logo span
{
    color: #fff;
}
.footer_about_text
{
    margin-top: 24px;
    margin-bottom: 0;
    padding-right: 20px;
}
.footer_column_title
{
    font-size: 18px;
    font-weight: 500;
    color: #fff;/* padding-top: 15px; */
}
@media only screen and (max-width: 991px)
{
    .footer_column_title
    {
        font-size: 15px;
        font-weight: 500;
        color: #fff;
    }
}
.footer_column_content
{
    margin-top: 15px;
}
.footer_list_item
{
    margin-bottom: 11px;
}
.footer_list_item a
{
    font-size: 14px;
    color: #a5a5a5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.footer_list_item a:hover
{
    color: #d2262d;
}
.footer_contact_item
{
    font-size: 14px;
    font-weight: 400;
    color: #a5a5a5;
    margin-bottom: 22px;
}
.footer_contact_item:last-child
{
    margin-bottom: 0;
}
.footer_contact_icon
{
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}
.footer_contact_icon img
{
    width: 100%;
}/*********************************
15.3 Footer Copyright
*********************************/
.footer_bar
{
    padding-top: 19px;
    padding-bottom: 19px;
}
.footer_social .menu_social_item a i
{
    color: #fff;
}
.footer_social .menu_social_item a i:hover
{
    color: #d2262d;
}
.footer_social .menu_social_item:last-child
{
    margin-right: 0;
}
[v-cloak]
{
    display: none;
}
[v-clock]
{
    display: none;
}
