html {
    font-size: 16px;
}
body {
    color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
ul, li {
    /* list-style: none; */
    padding: 0;
}
a {
    color: #000;
    transition: all 0.3s ease;
}
a:hover,
a:focus {
    text-decoration: none;
}
a:focus {
    outline: none;
}
.btn {
    padding: 8px 32px;
}
.btn:hover {
    background-color: #ced4da;
}

/*-- Menu Toggle --*/
.navbar-toggler {
    background-color: transparent;
    border: none;
    padding: 0;
    text-transform: uppercase;
    color: #23252a;
    font-size: 18px;
    line-height: 19px;
    font-weight: 600;
}
.navbar-toggler .bar {
    text-indent: -9999px;
    position: relative;
    display: block;
    float: left;
    height: 3px;
    width: 30px;
    background-color: #23252a;
    margin: 8px 15px 8px 0;
}
.navbar-toggler .bar::before, .navbar-toggler .bar::after {
    content: "";
    position: absolute;
    left: 0;
    height: 3px;
    width: 30px;
    background-color: #23252a;
}
.navbar-toggler .bar::before {
    top: -8px;
}
.navbar-toggler .bar::after {
    bottom: -8px;
}

/* Navbar */
.tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
.tm-navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    top:0 ;
    background-color: transparent;
    transition: all 0.3s ease;
}

.tm-navbar.scroll {
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

.navbar-brand {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.navbar-brand:hover,
.tm-navbar.scroll .navbar-brand:hover {
    color: #3496d8;
}

.navbar-brand img{
    width: 80px;
    height: 72px;
}

.tm-navbar.scroll .navbar-brand {
    color: #8f8f8f;
}

.nav-item {
    list-style: none;
}

.tm-nav-link {
    color: white;
}


.tm-navbar.scroll .tm-nav-link:hover,
.tm-navbar.scroll .tm-nav-link.current,
.tm-nav-link:hover {
    color: #C19A6C;
}

.navbar-toggler {
    padding-left: 10px;
    padding-right: 10px;
}

.navbar-toggler-icon {
    color: white;
    padding-top: 6px;
}

.tm-navbar.scroll .navbar-toggler-icon {
    color: #8f8f8f;
}


.tm-section-pad-top {
    padding-top: 135px;
}
.tm-text-primary {
    color: #000000;
}
.tm-font-big {
    font-size: 1.25rem;
}
.tm-btn-primary {
    font-size: 0.8rem;
    color: black;
    background-color: white;
    padding: 5px 55px;
    border: 1px solid black;
    border-radius: 0;
}
.tm-btn-primary:hover,
.tm-btn-primary:focus {
    color: black;
    background-color: #D2C7BA;
}
.navbar-brand {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}
.tm-nav-link {
    color: black;
    font-weight: 400;
    font-size: 1em;
}
@media (min-width: 768px) {
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}
/* Hero */
#hero {
    background-image: url(../img/the-town-bg-01.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    height: 100vh;
    min-height: 375px;
    position: relative;
    background-size: cover;
}
/*@media (min-height: 830px) {
    #hero {
        background-position: center -210px;
    }
}*/
/*@media (min-height: 680px) and (max-height: 829px) {
    #hero {
        background-position: center -300px;
    }
}*/
/*@media (min-height: 500px) and (max-height: 679px) {
    #hero {
        background-position: center -400px;
    }
}*/
/*@media (max-height: 499px) {
    #hero {
        background-position: center -450px;
    }
}*/
.tm-hero-text-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.tm-hero-text-container-inner {
    margin-top: -90px;
}
.tm-hero-title {
    font-size: 3.5rem;
    text-shadow: 2px 2px 2px #333;
}
.tm-section-title {
    font-size: 2.6rem;
    font-weight: 300;
}
.tm-intro-text {
    font-size: 1.5rem;
    line-height: 1.4;
}
.tm-intro-next {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
}

/* Work */
.tm-work-description {
    max-width: 650px;
    width: 100%;
    font-size: 1.1rem;
    line-height: 2;
    font-style: italic;
}
#work .work-area {
    position: relative;
    display: block;
    overflow: hidden;
}
#work .work-area::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #000;
    bottom: 0px;
    left: 0;
    opacity: 0.75;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}
#work .work-area:hover:before {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
#work .work-area .work-img {
    display: block;
}
#work .work-area .work-content-inner {
    text-align: center;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}
#work .work-area .work-content-inner p,
#work .work-area .work-content-inner h3 {
    font-weight: 400;
    color: #ffffff;
}
#work .work-area .work-content-inner .work-title h3 {
    font-size: 28px;
}
#work .work-area .work-content-inner .work-more p {
    font-size: 16px;
    font-weight: 300;
    border-bottom: 1px solid white;
    display: inline;
    padding-bottom: 5px;
}
.work-more a {
    color: #fff;
}
.footer {
    padding-bottom: 3rem;
}
.footer .menu {
    margin-top: 2rem;
}
.footer ul.menu {
    display: flex;
    margin-left: 20px;
}
.footer ul.menu li {
    list-style-type: circle;
}
.footer .menu li {
    margin-right: 40px;
}
/* pages */
.pages {
    margin-top: 90px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.pages {
    background-color: #d2c7ba;
    color: #000000;
}
.pages2{
    background-color: #f4f3f2;
}
.pages2 .row > div{
    padding-left: 0;
    padding-right: 0;
}
.pages2 .row img{
    width: 100%;
}
.panel {
    min-height: 550px;
    padding-bottom: 20px;
    padding-top: 20px;
}
.panel-title{
    font-size: 2.5rem;
    font-weight: 400;
}

.panel-title::after {
    margin-left: auto;
    margin-right: auto;
    background: #000;
    content: '';
    height: 1px;
    width: 35px;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.panel-info {
    left: 0;
    margin: auto;
    position: relative;
    right: 0;
    top: 150px;
}
.panel-info2 {
    display:flex;
    justify-content:center;
    align-items: center;
    height: 100%;
}
.panel-copy {
    width: 70%;
    margin: 0 auto;
    line-height: 2;
}

.u-lineDouble--vertical::before {
    background: #fff;
    content: '';
    height: 0;
    width: 1px;
}
.u-lineDouble--vertical::after {
    background: #fff;
    bottom: 0px;
    content: '';
    height: 0;
    width: 1px;
}
.u-lineDouble--vertical::before, .u-lineDouble--vertical::after { 
    display: block;
    height: 100px;
    background: #000;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
}
.u-lineDouble--vertical::before {
    top: -120px;
}
.u-lineDouble--vertical::after {
    bottom: -120px;
}

@media (max-width: 1366px) {

    .panel-info {
        top: 100px;
    }

    .u-lineDouble--vertical::before {
        top: -90px;
    }
    .u-lineDouble--vertical::after {
        bottom: -90px;
    }

    .u-lineDouble--vertical::before, .u-lineDouble--vertical::after { 
        height: 80px;   
    }
}




#document {
    background-color: #F4F3F2;
}
.document {
    padding-top: 80px;
    padding-bottom: 90px;
}
.document-header {
    color: #363432;
    font-weight: 100;
    font-size: 3.5rem;
    line-height: 1.09375em;
    text-align: center;
}
.document-header::after {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}
.document-header::after {
    margin-left: auto;
    margin-right: auto;
    background: #000;
    content: '';
    height: 1px;
    width: 35px;
}
.document-content .document-title{
    margin-top: 2rem;
    margin-bottom: 2rem;
}



@media (max-height: 480px) {
    .tm-hero-text-container-inner {
        margin-top: -40px;
    }
    .tm-intro-next {
        bottom: 20px;
    }


}

/*mobile menu*/
@media (max-width: 767px) {
    .tm-btn-submit {
        margin-left: 20px;
        margin-top: 0;
    }
    .navbar-nav {
        text-align: center;
    }
    .navbar-collapse {
        background-color: rgb(255, 255, 255);
        padding: 10px;
        border-radius: 3px;
    }
    .navbar-collapse .nav-link {
        color: #8f8f8f;
    }

    .panel-info2{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .panel-info {

    }

    .tm-section-title {
        font-size: 1.6rem;
    }.tm-work-description {
        font-size: 1rem;
    }
}


@media (max-width: 350px) {
    .panel-info {
        top: 70%;
    }
}



.banner-huoban{
    background: url(../img/partner.jpg) no-repeat center ;
    background-size:cover;
}
.banner-txt{ margin: 0 auto; padding-top: 200px; }
.banner-txt .tit{ font-size: 3.5em; text-align: center; color: #fff; letter-spacing: .3em;}
.banner-txt .cnt{ font-size: 1.3em; text-align: center; color: #fff; letter-spacing: .3em; line-height: 2em;}


.color_1{ height: 700px; 
          background:rgba(73,104,143, 0.5); /* 一些不支持背景渐变的浏览器 */  
          background:-moz-linear-gradient(top, rgba(73,104,143, 0.5), rgba(147,194,229, 0.5));  
          background:-webkit-gradient(linear, 0 0, 0 bottom, from(#49688F), to(rgba(147,194,229, 0.5)));  
          background:-o-linear-gradient(top, rgba(73,104,143, 0.5), rgba(147,194,229, 0.5)); 
}
.color_2{ height: 700px; 
          background:rgba(177,94,74, 0.5); /* 一些不支持背景渐变的浏览器 */  
          background:-moz-linear-gradient(top, rgba(177,94,74, 0.5), rgba(217,155,137, 0.5));  
          background:-webkit-gradient(linear, 0 0, 0 bottom, from(#B15E4A), to(rgba(217,155,137, 0.5)));  
          background:-o-linear-gradient(top, rgba(177,94,74 0.5), rgba(217,155,137, 0.5)); 
}
.color_3{ height: 700px; 
          background:rgba(161,87,120, 0.5); /* 一些不支持背景渐变的浏览器 */  
          background:-moz-linear-gradient(top, rgba(161,87,120, 0.5), rgba(227,166,196, 0.5));  
          background:-webkit-gradient(linear, 0 0, 0 bottom, from(#A15778), to(rgba(227,166,196, 0.5)));  
          background:-o-linear-gradient(top, rgba(161,87,120, 0.5), rgba(227,166,196, 0.5)); 
}
.color_4{ height: 700px; 
          background:rgba(59,117,114, 0.5); /* 一些不支持背景渐变的浏览器 */  
          background:-moz-linear-gradient(top, rgba(59,117,114, 0.5), rgba(139,202,195, 0.5));  
          background:-webkit-gradient(linear, 0 0, 0 bottom, from(#3B7572), to(rgba(139,202,195, 0.5)));  
          background:-o-linear-gradient(top, rgba(59,117,114, 0.5), rgba(139,202,195, 0.5)); 
}
.color_5{ height: 700px; 
          background:rgba(174,73,93, 0.5); /* 一些不支持背景渐变的浏览器 */  
          background:-moz-linear-gradient(top, rgba(174,73,93, 0.5), rgba(236,155,173, 0.5));  
          background:-webkit-gradient(linear, 0 0, 0 bottom, from(#AE4A5E), to(rgba(236,155,173, 0.5)));  
          background:-o-linear-gradient(top, rgba(174,73,93, 0.5), rgba(236,155,173, 0.5)); 
}



.color_11{ height: 700px; 
           background: rgba(212,217,221, 0.5); /* 一些不支持背景渐变的浏览器 */  
           background:-moz-linear-gradient(top, rgba(212,217,221, 0.5), rgba(247,247,245, 0.5));  
           background:-webkit-gradient(linear, 0 0, 0 bottom, from(#D4D9DD), to(rgba(247,247,245, 0.5)));  
           background:-o-linear-gradient(top, rgba(212,217,221, 0.5), rgba(247,247,245, 0.5)); 

}


.color_12{ height: 700px; 
           background:rgba(52,52,52, 0.8); /* 一些不支持背景渐变的浏览器 */  
           background:-moz-linear-gradient(top, rgba(52,52,52, 0.8), rgba(7,5,12, 0.5));  
           background:-webkit-gradient(linear, 0 0, 0 bottom, from(#343436), to(rgba(7,5,12, 0.5)));  
           background:-o-linear-gradient(top, rgba(52,52,52, 0.8), rgba(7,5,12, 0.5)); 
}




.pinpai{  
    padding-top:.7em; padding-bottom:.7em; text-align: center; color:#dbdbdb ; font-size: 3.5em;
    background-color: #3D260D;
}


@media (max-width: 1366px){
    .pinpai{
        font-size: 2.5em;
    }
    .banner-txt .tit{
        font-size: 2.5em;
    }
    .banner-txt .cnt{
        font-size: 1.1em;
        line-height: 1.5;
        padding: 0 2em;
    }
}
@media (max-width: 1366px){
    .banner-txt{
        padding-top: 100px
    }
    
}

.color-txt{ padding-top: 200px;}
.color-txt .plogo img{ width: 120px;}  
.color-txt .plogo-intro{ font-size: 1.3em; text-align: center; color: #fff; letter-spacing: .3em; line-height: 2em;}  
.color-txt .plogo-intro a{ font-size: 1.3em; text-align: center; color: #fff; letter-spacing: .3em; line-height: 2em;}  
.color-txt .plogo-intro a:hover{text-decoration: underline;}  
.plogo{position: relative; margin-left: -60px; left:0%; margin-bottom: 30px;}
.plogo-intro{ position: relative;  left:50%; }
.color-txt .logo5 img{ width: 170px;}  






.color_11 .plogo-intro,.color_11 .plogo-intro a{
    color: #000;
}


.banner-txt .tit,.banner-txt .cnt{ color: #dbdbdb;}