
/* CSS Document */

/* 产品展示 */
body{
    background: url(../image/about-nybg.png) repeat-y top;
    background-size: 100%;
}
.nav-ny{
    background-color: #fff;
    height: 50px;
    margin-bottom: 40px;
}
.nav-ny ul li{
    position: relative;
    line-height: 50px;
}
.nav-ny ul li a{
    color: #6c806f;
    padding: 20px 2vw;
    font-weight: bold;
}
.nav-ny ul li::before{
    content: '';
    display: block;
    background: url(../image/t-tea.png) no-repeat center;
    background-size: 100% 100%;
    margin-left: .75vw;
    width: 12px;
    height: 16px;
    position: absolute;
    top: 50%;
    opacity: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.nav-ny ul li.active::before{
    opacity: 1;
}
.nav-ny ul li:hover::before {
    opacity: 1;
}
.about-nybox,.culture-nybox,.join-nybox{
    background: #fff;
    padding: 60px 2vw;
    text-align: center;
    margin-bottom: 120px;
}
.about-ny h1,.culture-ny h1,.join-ny h1{
    font-size: 1.5rem;
    color: #374539;
    margin-bottom: 40px;
}
.about-ny p,.culture-ny p,.join-ny p{
    font-size: .875rem;
    color: #526655;
    line-height: 36px;
}
.about-ny img,.culture-ny img,.join-ny img{
    width: 750px;
    margin: 20px;
}
