:root{
    --title--:#606266;
    --h1--:#303133;
    --font--:#909399;
    --green--:#009A53;
    --font--:#606266;
    --yellow--:#FFE71C;
}
body{
    overflow-x:hidden;
}
@font-face {
    font-family:Poppins-Medium;
    src:url('../font/Poppins-Medium.ttf')
}
@font-face {
    font-family:DINPro-Medium;
    src:url('../font/DINPro-Medium.ttf')
}
*{
    box-sizing: border-box;
    padding:0;
    margin:0;
    font-family:'Microsoft YaHei','Arial','PingFang SC';
    outline: none;
}
ul,li{
    list-style: none;
}
a:hover,
a{
    text-decoration: none;
    color:var(--h1--);
}
img{
    border:none;
    max-width:100%;
}
::selection {
    background:var(--green--); 
    color:#fff;
}   
::-moz-selection {
    background:var(--green--); 
    color:#fff;
}  
::-webkit-selection {
    background:var(--green--); 
    color:#fff;
}
.cl{
    clear: both;
}
.containers{
    max-width:1300px;
    margin:0 auto;
}
/* 头部 */
.header{
   height:90px;
   padding:0 60px;
   width:100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: fixed;
   top:0;
   left:0;
   z-index: 999;
   transition: all .3s;
   -webkit-transition: all .3s;
   -moz-transition: all .3s;
   -ms-transition: all .3s;
   -o-transition: all .3s;
}
.scroll.header{
    border-bottom: 0.5px solid #EBEEF5;
    background: #FFF;
} 
@media (max-width:1660px) {
    .header{
        padding:0 30px;
    }
}
.logo{
    width:154px;
    height:80px;
    margin:5px 0;
}
.menu{
    flex:1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.menu ul{
    display: flex;
    align-items: center;
    margin-right:30px;
}
@media (max-width:1660px) {
    .menu ul{
        margin-right:10px;
    }
}
.menu ul li{
    position: relative;
}
.menu ul li::after{
    content: '';
    background: var(--green--);
    border-radius: 2px;
    position: absolute;
    z-index: 22;
    bottom: 0;
    left:50%;
    width:0px;
    height:0px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.menu ul li.active::after,
.menu ul li:hover::after{
    width: 41px;
    height: 3px;
}
.menu ul li a{
    display: block;
    padding:16px 20px;
    color: var(--h1--);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
    letter-spacing: 0.36px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.scroll .menu ul li a{
    color:var(--h1--);
}
@media (max-width:1680px) {
    .menu ul li a{
        padding:16px 14px;
    }
}
.menu ul li.active a{
    color:var(--green--);
}
.code{
    display: flex;
    align-items: center;
}
.code p{
    margin:0 2px;
    position: relative;
}
.code p a{
    display: flex;
    align-items: center;
    justify-content: center;
    height:44px;
}
.code p span{
    display: none;
    position: absolute;
    left:50%;
    bottom: -130px;
    width:120px;
    height:120px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.scroll .code p:hover a img:last-child,
.scroll .code p a img:first-child,
.code p a img:last-child{
    display: none;
}
.scroll .code p:hover a img:first-child,
.scroll .code p a img:last-child{
    display: block;
}
.carousel{
    padding-top: 90px;
    line-height:0;
}
/* 动画 */
.cartoon{
    position: relative;
    left:0;
    top:0;
    width:100vw;
    height:260vh;
}

.firing-img{
    position: fixed;
    height: 100vh;
    width:100vw;
    background: rgba(255, 231, 28, 1);
    transition: all ease-in 0.8s;
    -webkit-transition: all ease-in 0.8s;
    -moz-transition: all ease-in 0.8s;
    -ms-transition: all ease-in 0.8s;
    -o-transition: all ease-in 0.8s;
    z-index: 444;
    
}
.firing-txt{
    width:100%;
    position: absolute;
    z-index: 22;
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 44%;
    transform:translateY(50%);
   -webkit-transform:translateY(50%);
   -moz-transform:translateY(50%);
   -ms-transform:translateY(50%);
   -o-transform:translateY(50%);
}
.firing-txt>img{
    max-width:1278px;
}
@media (max-width:1440px) {
    .firing-txt>img{
        max-width:1000px;
    }
}
.down{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:1rem;
}
.down span{
    color: var(--green--);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.24px;
}
#down{
    animation: rotate 2s linear infinite;
    -webkit-animation: rotate 1s linear infinite;
}
@keyframes rotate {
    0% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
}
    100% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}
.tv{
    position: fixed;
    top:90px;
    left:0;
    width:100vw;
    height:104.5vh;
}
/*@media (max-width:1680px) {*/
/*    .tv{*/
/*        height:94.5vh;*/
/*    }*/
/*}*/
@media (max-width:1440px) {
    .tv{
        height:auto;
    }
}
.tv video{
    width:100vw;
    height:100%;
}
@media (max-width:1440px) {
    .tv video{
        height:auto !important;
    }
}
/* 大豆种植 */
.plant{
    position: relative;
    z-index: 111;
}
.plant-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left:50%;
    top:130px;
    width: 1220px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.plant-box span{
    color: #FFF;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.9px;
}
.plant-desc{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top:20px;
}
.plant-desc p{
    color:#FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; 
    letter-spacing: 0.4px;
}


/* tab */
.tab{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tab span{
    position: relative;
    color:#303133;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.8px;
}
.tab span::before,
.tab span::after{
    content: '';
    width:30px;
    height:3px;
    background: var(--green--);
    position: absolute;
    top:50%;
    left:-40px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.none.tab span::before,
.none.tab span::after{
    display: none;
}
.tab span::after{
    left:auto;
    right:-40px;
}
.tab p{
    margin-top:12px;
    color: #909399;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.48px;
}


/* 安全无忧 */
.safe{
    padding:120px 0;
    position: relative;
    z-index: 111;
}
.safe-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:18px;
}
.safe-main li{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    cursor: pointer;
}
.safe-main li:nth-child(even){
    margin-top:100px;
}
.safe-main li::before,
.safe-main li::after{
    content: '';
    width:100%;
    height:100%;
    position: absolute;
    left:0;
    top:0;
    z-index: 111;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 231, 28, 0.00) 43.41%, #FFE71C 100%);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
.safe-main li::before{
    z-index: 99;
}
.safe-main li::after{
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
.safe-main li img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.safe-main li:hover img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.safe-txt{
    position: absolute;
    z-index: 333;
    top:64%;
    left:0;
    width:100%;
    height:100%;
    padding:54px 12px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    text-align: justify;
}
.safe-main li.active::after{
    opacity: 1;
    background: linear-gradient(0deg, rgba(255, 231, 28, 0.75) 0%, rgba(255, 231, 28, 0.75) 100%); 
}
.safe-main li.active .safe-txt{
    top:0;
}
.safe-txt span{
    display: flex;
    align-items: center;
    min-height: 100px;
    color:var(--h1--);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.12px;
}
.safe-txt p{
    color:var(--h1--);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.64px;
}

/* 豆厨房 */
.kitchen{
    background: #FDE834;
    padding:110px 0 83px 0;
    position: relative;
    z-index: 111;
}
.kitchen .tab p{
    color:var(--green--);
}
#kitchen-swiper{
    padding-top:40px;
}
#kitchen-swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear; /*之前是ease-out*/
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}
.kitchen-box{
    padding-top:50px;
    position: relative;
}
.kitchen-list .kitchen-box{
    padding-top:0px;
}
.kitchen-box a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 8px solid #ffffff;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}
.kitchen-name{
    position: absolute;
    left:50%;
    bottom: -1px;
    width:102%;
    height:66px;
    background: #FFF;
    overflow: hidden;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D3362B;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}
.kitchen-ico{
    position: absolute;
    z-index: 222;
    left:50%;
    top:15px;
    width: 140px;
    height: 84px;
    border-radius: 16px;
    overflow: hidden;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.kitchen-ico::after{
    content: '';
    border-radius: 16px;
    width: 88%;
    height: 88%;
    border:1px solid #EBEEF5;
    position: absolute;
    left:50%;
    top:50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}
.kitchen-ico img{
    height:52px;
}
.kitchen-more{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 148px;
    height: 48px;
    margin:50px auto 0 auto;
    border-radius: 40px;
    border: 1px solid var(--green--);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    color:  var(--green--);
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.72px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.kitchen-more:hover{
    background: var(--green--);
    color:#ffffff;
}
.kitchen-more svg path{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.kitchen-more:hover svg path{
    stroke:#ffffff;
}
.kitchen-box .kitchen-pic{
    width:100%;
    /*height:386px;*/
    /*overflow: hidden;*/
    /*border-radius:16px 16px 40px 40px;*/
}
.kitchen-pic{
    display: flex;
    align-items: center;
    justify-content: center;
}
.kitchen-pic img{
    height:auto;
    width: 100%;
    max-width:none;
}
.kitchen-box .kitchen-pic img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;

}
.kitchen-box:hover .kitchen-pic img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.kitchen-find .kitchen-pic{
    height:360px;
}
.kitchen-find .kitchen-pic img{
    height: 100%;
    width: auto;
    max-width: none;
}
/* 合作伙伴 */
.partner{
    height:724px;
    background: url(../images/partner-bg.jpg) no-repeat center;
    background-size: cover;
    padding:120px 0 110px 0;
    position: relative;
    z-index: 111;
}
.partner .containers{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.partner-side{
    width:400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.partner-side span{
    color: var(--h1--);
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.partner-side em{
    display: block;
    margin-top:16px;
    color: var(--font--);
    font-family: Alibaba PuHuiTi 2.0;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.partner-desc{
    margin-top:26px;
}
.partner-desc p{
    color: var(--h1--);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.partner-desc p b{
    color:var(--green--);
}
.partner-side a{
    margin-top:64px;
    width: 186px;
    height: 48px;
    border-radius: 45px;
    border: 1px solid var(--green--);
    background: var(--green--);
    display: flex;
    align-items: center;
    justify-content: center;
    color:#FFF;
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    line-height: 180%; 
    letter-spacing: 0.72px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.partner-side a:hover{
    background: #ffffff;
    color:var(--green--);
}
.partner-side a svg path{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.partner-side a:hover svg path{
    stroke:var(--green--);
}
.partner-main{
    width:840px;
}
#partner-swiper{
    width:100%;
    height:500px;
}
#partner-swiper .swiper-slide{
    height: calc((100% - 80px) / 5) !important;
}
.partner-pic{
    width: 144px;
    height: 80px;
    border-radius: 8px;
    border: 1px solid #EBEEF5;
    background: #FFF;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.partner-pic>img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.swiper-slide .partner-pic>img{
    max-height: 90%;
}
.partner-pic:hover>img{
    transform: translateY(-200%);
    -webkit-transform: translateY(-200%);
    -moz-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    -o-transform: translateY(-200%);
}
.partner-thumb{
    position: absolute;
    top:120%;
    left:0px;
    width:100%;
    height:100%;
    opacity: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.partner-thumb img{
    width:100%;
    height:auto;
}
.partner-pic:hover .partner-thumb{
    opacity: 1;
    top:0;
}
/* 最新动态 */
.trends{
    height:830px;
    padding-top:130px;
    position: relative;
    z-index: 111;
}
.trends-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.trends-top span{
    color:var(--h1--);
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.571px;
}
.trends-top ul{
    padding:0 10px;
    height: 56px;
    border-radius: 100px;
    background:#F5F6F8;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.trends-top ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 156px;
    height: 44px;
    border-radius: 100px;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.trends-top ul li.active a{
    background: #FFE71C;
    color: var(--green--);
}
.trends-main{
    padding-top:73px;
}
.trends-box{
    width:100%;
    height: 432px;
    overflow: hidden;
    border-radius: 16px;
    border:1px solid #EBEEF5;
    background:#FFF;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.trends-box a{
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: flex-start;
}
.trends-pic{
    width:100%;
    height:262px;
    overflow: hidden;
    border-radius: 16px 16px 0px 0px;
    -webkit-border-radius: 16px 16px 0px 0px;
    -moz-border-radius: 16px 16px 0px 0px;
    -ms-border-radius: 16px 16px 0px 0px;
    -o-border-radius: 16px 16px 0px 0px;
}
.trends-pic img{
    max-width: none;
    height:100%;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.trends-box:hover .trends-pic img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.trends-desc{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding:30px 20px 20px 20px;
}
.trends-desc span{
    color: var(--h1--);
    text-align: justify;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.trends-desc p{
    color: var(--font--);
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.trends-time{
    display: flex;
    align-items: center;
    margin:12px 0;
}
.trends-time em{
    display: flex;
    align-items: center;
    margin-right: 22px;
    color:var(--font--);
    text-align: justify;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.56px;
}
.trends-time em img{
    margin-right:4px;
}
#trends-swiper4,
#trends-swiper3,
#trends-swiper2,
#trends-swiper1{
    padding-bottom: 60px;
}
.trends-side .swiper-pagination-bullet{
    position: relative;
    margin:0 10px !important;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
.trends-side .swiper-pagination-bullet-active::after{
    content: '';
    position: absolute;
    top:50%;
    left:50%;
    width:16px;
    height:16px;
    border:1px solid var(--green--);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}
.trends-side .swiper-pagination-bullet-active{
    background: var(--green--);
}
/* foot */
.foot{
    height:533px;
    background: url(../images/foot-bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    z-index: 111;
}
.foot .containers{
    position: relative;
    height:100%;
}
.foot::after{
    content: '';
    width:100%;
    height:1px;
    background: rgba(255, 255, 255, 0.10);
    position: absolute;
    left:0;
    bottom:96px;
}
.foot-main{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top:50px;
}
.foot-txt{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top:30px;
}
.foot-txt span{
    color: #B3B9C3;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.32px;
}
.foot-txt p{
    color:#B3B9C3;
    font-family: 'DINPro-Medium';
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.foot-tel ul{
    margin-top:24px;
}
.foot-tel ul li{
    display: flex;
    align-items: center;
    margin:8px 0;
    color:#B3B9C3;
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
}
.foot-tel ul li img{
    margin-right:8px;
}
.foot-top{
    display: flex;
    align-items: center;
    padding:20px 0 40px 0;
}
.foot-top>span{
    color:#E4E7ED;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
}
.foot-top a{
    display:flex;
    align-items: center;
    width:200px;
    height:60px;
    background: url(../images/foot-top.jpg) no-repeat center;
    color:#E4E7ED;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-indent: 1.8rem;
}
.foot-top ul{
    display: flex;
    align-items: center;
    margin:0 30px;
}
.foot-top ul li{
    height:60px;
    width:60px;
    background:rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0 10px;
    position: relative;
    cursor: pointer;
}
.foot-top ul li p{
    display: none;
    position: absolute;
    left:50%;
    top:-130px;
    background: #fff;
    width:120px;
    height:120px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.foot-top ul li svg path{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.foot-top ul li:hover svg path{
    fill:var(--green--);
}
.copyright{
    position: absolute;
    width:100%;
    height:100px;
    bottom: 0;
    left:50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.copyright p,
.copyright p a,
.copyright p span{
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.457px;
}
.copyright p a,
.copyright p{
    display: flex;
    align-items: center;
}
.copyright p a:last-child{
    margin-left:20px;
}
.copyright p a{
    padding:0 4px;
}
.copyright p span{
    margin-right:30px;
}
#contact{
    width: 692px;
    height: 235px;
}

/* 产品系列页 */
.page-bar{
    padding-top:90px;
    line-height: 0;
    position: relative;
}
.page-bar .containers{
    position: absolute;
    height:100%;
    width:1300px;
    left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.page-name{
    color:#FFF;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.9px;
    padding-bottom: 100px;
}
.layout{
    background:#F5F5F5;
    padding:60px 0 100px 0;
}
.series{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:50px;
}
.series span{
    color: #303133;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%;
    letter-spacing: 0.9px;
}
.series ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 100px;
    background: #FFF;
    overflow: hidden;
    padding:4px;
}
.series ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    height:50px;
    padding:0 38px;
    margin:0 4px;
    color:var(--h1--);
    font-size: 24px;
    font-style: normal;
    /*font-weight: 400;*/
    line-height: normal;
    letter-spacing: 0.48px;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
}
.series ul li:hover a,
.series ul li.active a{
    color:var(--green--);
    border-radius: 100px;
    background:#FFE71C;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}
.series-list ul{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top:60px;
}
.series-list ul li{
    width: 417px;
    height: 390px;
    background: #ffffff;
    padding:12px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-top:24px;
}
.series-list ul li:nth-child(3n+2),
.series-list ul li:nth-child(3n+1){
    margin-right:24px;
}
.series-list ul li a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.series-list ul li a p{
    width: 393px;
    height: 296px;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.series-list ul li a p img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.series-list ul li:hover a p img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.series-list ul li a span{
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height:80px;
    color: #303133;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}

/* 豆厨房 */
.navbox{
    background: #FFF;
    border-bottom: 1px solid #E4E7ED;
}
.navbox ul{
    height:80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.navbox ul li a{
    position: relative;
    display: flex;
    padding:0 32px;
    color:#606266;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.4px;
}
.navbox ul li.active a,
.navbox ul li a:hover{
    color:var(--green--);
}
.navbox ul li a::after{
    content: '';
    position: absolute;
    right:0;
    top:50%;
    width:1px;
    height:16px;
    background:#E4E7ED;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.navbox ul li:last-child a::after{
    display: none;
}

/* 豆厨房页面 */
.kitchen-list{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.kitchen-list li{
    width:308px;
    margin-top:36px;
}
.kitchen-list li:nth-child(4n+3),
.kitchen-list li:nth-child(4n+2),
.kitchen-list li:nth-child(4n+1){
    margin-right:24px;
}
/* 团队建设 */
.team-list{
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top:40px;
}
.team-list li{
    width: 417px;
    margin-top:24px;
}
.team-list li:nth-child(3n+2),
.team-list li:nth-child(3n+1){
    margin-right:24px;
}
.team-box{
    height: 388px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}
.team-pic{
    width:100%;
    height: 276px;
    overflow: hidden;
}
.team-pic img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.team-box:hover .team-pic img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.team-txt{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding:24px;
    position: relative;
}
.team-txt::after{
    content: '';
    width:48px;
    height:6px;
    background:url(../images/team-more.svg) no-repeat center;
    background-size: cover;
    position: absolute;
    bottom: 30px;
    right:24px;
}
.team-txt span{
    color: var(--h1--);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
}
.team-txt p{
    margin-top:12px;
    color: var(--green--);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.32px;
}
/* 公司新闻 */
.news-list{
    padding-top:40px;
}
.news-list li{
    margin-top:24px ;
    width:100%;
    height:253px;
    border-radius: 16px;
    background: #FFF;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.news-list li:hover{
    box-shadow: 0px 10px 22px 0px rgba(26, 53, 95, 0.08);
}
.news-list li a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding:24px;
}
.news-pic{
    width: 274px;
    height: 205px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}
.news-pic img{
    max-width: none;
    min-height: 100%;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.news-list li:hover .news-pic img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.news-txt{
    width:740px;
    margin-left:30px;
}
.news-txt span{
    color: var(--h1--);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-txt p{
    margin:22px 0;
    color: var(--font--);
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; 
    letter-spacing: 0.36px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-txt .trends-time em{
    color: var(--font--);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.64px;
}
.news-txt .trends-time em img{
    width:20px;
    height:20px;
}
.news-more{
    margin-left:50px;
    width: 142px;
    height: 56px;
    border-radius: 100px;
    border: 1px solid #E4E7ED;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.news-list li:hover .news-more{
    background: var(--green--);
    color:#ffffff;
}
.news-list li:hover .news-txt span{
    color:var(--green--);
}
/* 新闻详情页 */
.bgfff{
    background: #ffffff;
}
.viewlay{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.view-main{
    width:900px;
}
.view-main h1{
    margin:0;
    color:#303133;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.72px;
}
.view-main .trends-time em{
    margin-right: 40px;
}
.view-main .trends-time em:last-child{
    font-weight: 100;
}
.content{
    padding-top:16px;
}
.content,
.content p{
    color: var(--h1--);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 0.36px;
}
.turning{
    margin-top:40px;
    padding-top: 20px;
    height:50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top:1px solid #E2E2E2;
}
.turning li,
.turning li a{
    color:var(--h1--);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.32px;
}
.turning li a{
    display: inline-block;
    width:300px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.turning li{
    display: flex;
    align-items: center;
}
.view-side{
    width:352px;
}
.side-top{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.side-top span{
    color: var(--h1--);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.4px;
}
.side-top p{
    height: 220px;
    width:100%;
    margin:20px 0;
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.view-side ul li{
    padding:16px 0;
    border-bottom: 1px solid #EBEEF5;
}
.view-side ul li a{
    color:#606266;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.view-side ul li:hover a{
    color:var(--green--);
}
/* 联系我们 */
.contact{
    margin-top:60px;
    width:100%;
    height:970px;
    border-radius: 28px;
    background: #FFF;
    padding:50px;
}
.contact-main{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.contact-box{
    width:550px;
}
.contact-top{
    color: var(--h1--);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.64px;
    position: relative;
    padding-bottom:30px;
}
.contact-top::after{
    content: '';
    position: absolute;
    width:100%;
    height:1px;
    background: #E2E2E2;
    left:0;
    bottom: 0;
}
.contact-txt {
    padding-top:10px;
}
.contact-txt li{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top:30px;
}
.contact-txt li span{
    color: var(--h1--);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0.36px;
}
.contact-txt li p{
    margin-top:10px;
    color: #909399;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0.36px;
}
.contact-code{
    display: flex;
    justify-content:space-around;
    padding-top: 86px;
}
.contact-code li p{
    width: 110px;
    height: 110px;
    margin-bottom: 10px;
}
.contact-code li span{
    display: block;
    text-align: center;
    color: var(--h1--);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
}
#contact2{
    margin-top:40px;
    width:1200px;
    height:480px;
}

/* 豆黄金研究院 */
.academy{
    height:650px;
    padding-top:160px;
    background: url(../images/academy-bg.jpg) no-repeat center;
    background-size: cover;
}
.academy-main{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.academy-pic{
    width: 499px;
    height: 330px;
}
.academy-txt{
    width: 748px; 
}
.academy-txt span{
    color: var(--h1--);
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 0.457px;
}
.academy-txt p{
    margin-top:50px;
    color:var(--h1--);
    text-align: justify;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.457px;
}
/* 发明专利 */
.patent{
    position: relative;
    height:1285px;
    padding-top:110px;
}
.patent::before,
.patent::after{
    content: '';
    width: 607px;
    height: 466px;
    position: absolute; 
}
.patent::before{
    background: url(../images/patent-before.png) no-repeat center;
    background-size: cover;
    right:0;
    bottom: 0;
}
.patent::after{
    background: url(../images/patent-after.png) no-repeat center;
    background-size: cover;
    left:0;
    top: 0;
}
.patent .tab p{
    padding-top:16px;
    font-size: 18px;
    line-height: 1.8;
}
.patent-main{
    padding-top:30px;
}
.patent-tag{
    padding-top:28px;
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.patent-tag a{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height:288px;
}
.patent-tag a img{
    max-height: 100%;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
#patent-swiper .swiper-slide{
    height: calc((100% - 20px) / 2) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
#patent-swiper2{
    height:600px;
}
#patent-swiper2 .swiper-slide{
    height: calc((100% - 80px) / 2) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
#patent-swiper2 .swiper-slide:nth-child(8n+1) .patent-befter,
#patent-swiper2 .swiper-slide:nth-child(8n+5) .patent-befter{
    background: url(../images/patent-tag.jpg) no-repeat top center;
    background-size: cover;
}
#patent-swiper2 .swiper-slide:nth-child(8n+4) .patent-befter,
#patent-swiper2 .swiper-slide:nth-child(8n+8) .patent-befter{
    background: url(../images/patent-after.jpg) no-repeat top center;
    background-size: cover;
}
#patent-swiper2 .swiper-slide:nth-child(17) .patent-befter,
#patent-swiper2 .swiper-slide:nth-child(20) .patent-befter{
    background: url(../images/patent-content.jpg) no-repeat top center;
}
#patent-swiper2 .swiper-slide:nth-child(8) .patent-befter,
#patent-swiper2 .swiper-slide:nth-child(16) .patent-befter{
    background: url(../images/patent-tag.jpg) no-repeat top center;
}
#patent-swiper2 .swiper-slide:nth-child(19) .patent-befter,
#patent-swiper2 .swiper-slide:nth-child(21) .patent-befter{
    background: url(../images/patent-after.jpg) no-repeat top center;
}
#patent-swiper2 .patent-tag{
    padding-top:0;
}
#patent-swiper2 .patent-tag a img{
    max-width: 80%;
}
.patent-befter{
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:89px;
    background: url(../images/patent-content.jpg) no-repeat top center;
    background-size: cover;
    color: var(--h1--);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.36px;
}
#patent-swiper .swiper-slide:nth-child(8n+1) .patent-befter,
#patent-swiper .swiper-slide:nth-child(8n+5) .patent-befter{
    background: url(../images/patent-tag.jpg) no-repeat top center;
    background-size: cover;
}
#patent-swiper .swiper-slide:nth-child(8n+4) .patent-befter,
#patent-swiper .swiper-slide:nth-child(8n+8) .patent-befter{
    background: url(../images/patent-after.jpg) no-repeat top center;
    background-size: cover;
}
#patent-swiper .swiper-slide:nth-child(33) .patent-befter,
#patent-swiper .swiper-slide:nth-child(32) .patent-befter,
#patent-swiper .swiper-slide:nth-child(24) .patent-befter{
    background: url(../images/patent-content.jpg) no-repeat top center;
}
#patent-swiper .swiper-slide:nth-child(23) .patent-befter,
#patent-swiper .swiper-slide:nth-child(31) .patent-befter{
    background: url(../images/patent-tag.jpg) no-repeat top center;
}
#patent-swiper .swiper-slide:nth-child(34) .patent-befter,
#patent-swiper .swiper-slide:nth-child(36) .patent-befter{
    background: url(../images/patent-after.jpg) no-repeat top center;
}
.patent-pager{
    position: relative;
    width:200px;
    margin:40px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.patent-pager .swiper-button-next,
.patent-pager .swiper-button-prev{
    width:56px;
    height:56px;
    background:url(../images/patent-pager.svg) no-repeat center;
    background-size: cover;
    opacity: 1;
    text-indent: 1000rem;
}
.patent-pager .swiper-button-next{
    transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
}

/* 直营店  */
.store{
    padding-top:100px;
}
.store-main{
    padding-top:60px;
}
.store_Swiper2{
    margin-top:25px;
}
.store_thumbs{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    width:310px;
    height:152px;
}
.store_thumbs img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.store_thumbs:hover img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.store-pager .swiper-button-next, 
.store-pager .swiper-button-prev{
    width: 30px;
    height: 80px; 
    background: url(../images/store-pager.svg) no-repeat center;
    background-size: cover;
    text-indent: 999rem;
}
.store-pager .swiper-button-next{
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}
.salon{
    padding:120px 0;
    position: relative;
}
#salon{
    position: absolute;
    top:-60px;
}
.salon_Swiper{
    padding-top:60px;
}
.salon_Swiper .trends-box{
    height:auto;
}
.salon_Swiper .trends-pic{
    height:278px;
}
.salon_Swiper .trends-desc{
    padding-top:20px;
}
.salon_Swiper .trends-desc p{
    margin-top:10px;
}
.salon_Swiper .trends-time{
    border-top:1px solid #E4E7ED;
    margin:20px 0 0 0;
    padding-top:20px ;
    width:100%;
    justify-content: space-between;
}
.salon_Swiper .trends-time em{
    margin-right: 0;
}
.salon_Swiper .trends-time em:last-child{
    color:var(--green--);
}

/* 直营店产品 */
.p-t-100{
    padding-top:100px;
}
.store-view{
    display: flex;
    justify-content: center;
}
/* 申请加盟 */
.ask{
    background:url(../images/ask-bg.jpg) no-repeat center;
    background-size: cover;
    height:905px;
    padding:130px 0;
    position: relative;
}
#ask{
    position: absolute;
    top:-60px;
}
.ask-box{
    height: 645px; 
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(2.5px);
    padding-top:60px;
}
.ask-box .tab p{
    margin-top:16px;
}
.ask-sub{
    margin-top:30px;
    width: 240px;
    height: 60px; 
    border-radius: 100px;
    background: var(--green--);
    border:none;
    color:#FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.457px;
}
.ask-main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:46px;
}
.ask-txt{
    width: 320px;
    height: 60px; 
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding:18px;
}   
.ask-txt>span{
    width:40px;
}
.ask-txt select,
.ask-max textarea::placeholder,
.ask-max textarea,
.ask-txt input::placeholder,
.ask-txt input{
    width:190px;
    height:30px;
    border:none;
    color:#909399;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.457px;
    background: none;
}
.ask-txt select{
    width:230px;
    appearance: none;
    -moz-appearance: none;
    background: url(../images/pick-arrow.svg) no-repeat top right;
    background-size: auto;
}
.ask-max .ask-txt{
    width:100%;
    height:auto;
}
.ask-max textarea{
    width:100%;
    height:70px;
    border:none;
    resize:none;
}
.ask-side{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    width:1010px;
}
/* 招商加盟 */
.adva{
    margin-top:65px;
}
.adva-side{
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    height: 345px; 
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.adva-side:hover{
    filter: drop-shadow(0px 4px 50px rgba(12, 36, 99, 0.10));
}
.adva-side::after{
    content: '';
    position: absolute;
    left:0;
    top:0;
    width: 5px;
    height: 0px;
    background:#FFE71C;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.adva .adva-side:nth-child(even)::after{
    left:auto;
    right:0;
}
.adva-side:hover::after{
    opacity: 1;
    height: 100%;
}
.adva .adva-side:nth-child(even){
    flex-direction: row-reverse;
}
.adva-pic{
    width: 668px;
    overflow: hidden;
    height:100%;
    line-height: 0;
}
.adva-pic img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.adva-side:hover .adva-pic img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.adva-txt{
    width:634px;
    display: flex;
    flex-direction:column;
    align-items: flex-start;
    justify-content: center;
    padding:40px;
}
.adva .adva-side:nth-child(even) .adva-txt{
    align-items: flex-end;
}
.adva-txt span{
    color:var(--h1--);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.64px;
    position: relative;
}
.adva-txt span::after{
    content: '';
    position: absolute;
    bottom: 0;
    right:0;
    border-radius: 14px;
    background:#FFE71C;
    width: 36px;
    height: 5px;
    transform: translateX(110%);
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    -o-transform: translateX(110%);
}
.adva .adva-side:nth-child(even) .adva-txt span::after{
    right:auto;
    left:0;
    transform: translateX(-110%);
    -webkit-transform: translateX(-110%);
    -moz-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    -o-transform: translateX(-110%);
}
.adva-txt p{
    max-width: 488px;
    margin-top:30px;
    color:var(--title--);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.36px;
}
.adva .adva-side:nth-child(even) .adva-txt p{
    text-align: right;
}

/* 招商流程 */
.flow{
    height:600px;
    background: url(../images/flow-bg.jpg) no-repeat center;
    padding-top:130px;
}
.flow .tab span{
    color:#52130D;
}
.flow .tab span::before,
.flow .tab span::after{
    background: #52130D;
}
.flow-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:60px;
}
.flow-main li{
    width: 176px;
    height: 213px;
    border-radius: 20px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.flow-main li::after{
    content: '';
    width: 28.018px;
    height: 17.995px;
    background: url(../images/flow-after.svg) no-repeat;
    background-size: cover;
    position: absolute;
    top:50%;
    right:-36px;
}
.flow-main li:last-child::after{
    display: none;
}
.flow-main li p{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    border:1px solid var(--green--);
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    -o-border-radius:50%;
}
.flow-main li p svg{
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.flow-main li:hover p svg{
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}
.flow-main li span{
    display: block;
    margin-top:20px;
    color: var(--h1--);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0.4px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.flow-main li:hover span{
    color:var(--green--);
}
/* 合作伙伴 */
.chumbox{
    background:url(../images/chumbox.jpg) no-repeat center bottom;
    background-size: cover;
}
.chumbox .tab p{
    margin-top:16px;
    color: var(--h1--);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.chumbox .tab p b{
    color:var(--green--);
}
.chum-list{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top:40px;
}
.chum-list li .partner-pic{
    width: 232px;
    height: 129px;
}
.chum-list li{
    margin-top:24px;
    margin-right:35px; 
}
.chum-list li:nth-child(5n+5){
    margin-right:0;
}
.chum-pic{
    margin-top:60px;
}
.chum-more{
    cursor: pointer;
    margin:50px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 238px;
    height: 56px;
    border-radius: 45px;
    border: 1px solid var(--green--);
    background: var(--green--);
    color:#FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.96px;
}
.chum-more:hover{
    color: var(--green--);
    background: #fff;
}
.chum-more,
.chum-more svg path{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.chum-more:hover svg path{
    stroke: var(--green--);
}

/* 客户见证  */
.mt-20{
    margin-top:20px;
}
.proof-list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin:50px 0 30px 0;
}
.proof-side{
    width:620px;
    height:378px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content:flex-start;
}
.proof-side:last-child{
    width:660px;
}
.proof-side li{
    width:320px;
    height:183px;
    overflow: hidden;
    line-height: 0;
}
.proof-side li:nth-child(1),
.proof-side li:nth-child(2){
    margin-bottom: 16px;
}
.proof-side li:nth-child(1),
.proof-side li:nth-child(3){
    margin-right:14px;
}
.proof-side img{
     transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s; 
}
.proof-side img:hover,
.proof-side li:hover img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}

/* 发展历程 */
.develop-lay{
    background-color: linear-gradient(180deg, #F5F6F8 0%, rgba(245, 246, 248, 0.00) 100%);
    background-image:url(../images/develop.jpg);
    background-repeat: no-repeat;
    background-position:center bottom;
    
}
.develop{
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top:120px;
    padding-bottom: 180px;
}
.develop::after{
    content: '';
    width:1px;
    background: #E4E7ED;
    height:calc(100% - 430px);
    position: absolute;
    left:50%;
    top:170px;
    z-index: 111;
}
.develop li{
    height:100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top:-30px;
}
.develop li:nth-child(even){
    justify-content: flex-end;
}
.develop-box{
    width: 590px;
    height: 158px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.develop-box::after{
    content: '';
    width:65px;
    height:16px;
    background: url(../images/develop-after.svg) no-repeat center;
    background-size: cover;
    position: absolute;
    top:50%;
    right:0;
    z-index: 222;
    transform: translateY(-50%) translateX(100%);
    -webkit-transform: translateY(-50%) translateX(100%);
    -moz-transform: translateY(-50%) translateX(100%);
    -ms-transform: translateY(-50%) translateX(100%);
    -o-transform: translateY(-50%) translateX(100%);
}
.develop li:nth-child(even) .develop-box::after{
    right:auto;
    left:0;
    transform: translateY(-50%) translateX(-100%) rotateY(180deg);
    -webkit-transform: translateY(-50%) translateX(-100%) rotateY(180deg);
    -moz-transform: translateY(-50%) translateX(-100%) rotateY(180deg);
    -ms-transform: translateY(-50%) translateX(-100%) rotateY(180deg);
    -o-transform: translateY(-50%) translateX(-100%) rotateY(180deg);
}
.develop li:nth-child(even) .develop-box{
    flex-direction: row-reverse;
}
.develop-pic{
    width: 204px;
    height: 158px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.develop-txt{
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding:26px 32px;
}
.develop li:nth-child(even) .develop-txt{
    align-items: flex-start;
}
.develop-txt span{
    color:var(--green--);
    text-align: right;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: 0.56px;
}
.develop-txt p{
    color: var(--title--);
    text-align: right;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
    letter-spacing: 0.3px;
}

/* 董事长寄语 */
.word{
    height:860px;
    background: url(../images/word-bg.jpg) no-repeat center;
    background-size: cover;
}
.word-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:70px;
}
.word-pic{
    width: 430px;
    height: 573px;
}
.word-txt{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width:750px;
}
.word-txt span{
    color: var(--h1--);
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.word-txt b{
    margin-top:24px;
    color:var(--green--);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
}
.word-desc{
    margin-top:24px;
}
.word-desc p{
    color:var(--h1--);
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.34px;
    margin-bottom: 12px;
}
.story{
    background:url(../images/story-bg.png) no-repeat top center;
    padding:123px 75px 0 75px;
    height:2320px;
}
.story-box{
    width: 1145px;
    height: 1650px; 
    background: #ffffff;
}
.story-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:0 72px;
}
.story-box span{
    margin-top:90px;
    color: var(--h1--);
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 1.8px;
}
.story-txt{
    padding-top: 50px;
}
.story-txt p{
    color:var(--h1--);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.64px;
    margin-bottom: 14px;
}
.story-txt img{
    margin:20px 0;
}

/* 关于豆黄金 */
.about{
    background-image: url(../images/about-bg.jpg);
    background-repeat:no-repeat;
    background-position: center bottom;
    background-color: #ffffff;
}
.about-name{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-name span,
.about-name p{
    color:var(--h1--);
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.9px;
}
.about-name p{
    padding-left:64px;
    position: relative;
}
.about-name p::before{
    content: '';
    width: 56px;
    height: 2px;
    background: var(--h1--);
    position: absolute;
    left:4px;
    top:50%;
}
.info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:60px;
}
.info li{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info li p{
    margin-top:20px;
    color:var(--title--);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.18px;
}
.info li span{
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.info li span b{
    color: var(--green--);
    text-align: center;
    font-family:'DINPro-Medium';
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: .9;
}
.info li span em{
    color:var(--h1--);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height:1;
    letter-spacing: 0.36px;
}
.about-desc{
    margin:50px 0;
}
.about-desc p{
    color:var(--title--);
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.34px;
    margin-bottom: 20px;
}
.about-tv{
    width: 1100px;
    height: 612px;
    margin:0 auto;
}

/* 企业荣誉 */
.honor{
    padding-top:120px;
}
.honor .patent-main{
    padding:50px 0;
}
.room .tab p,
.honor .tab p{
    color:var(--title--);
    margin-top:16px;
    font-size: 18px;
}
/* 企业文化 */
.culture{
    height:850px;
    background: url(../images/culture-bg.jpg) no-repeat center;
    padding-top: 147px;
}
.culture-list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top:60px;
}
.culture-list li{
    width: 325px;
    height: 430px;
    border-left: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.culture-list li:hover{
    height: 465px;
     border-left: 1px solid var(--green--);
    background: var(--green--);
    margin-top:-15px;
    padding-top:15px;
}
.culture-list li::after{
    content: '';
    width: 40px;
    height: 5px;
    position: absolute;
    left:50%;
    bottom: 40px;
    background: var(--green--);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.culture-list li:hover::after{
    background: var(--yellow--);
    bottom: 62px;
}
.culture-pic{
    margin-top:60px;
    width: 116px;
    height: 116px;
    border:1px solid rgba(0, 0, 0, 0.10);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.culture-list li:hover .culture-pic{
    border:1px solid rgba(255, 255, 255, .35);
}
.culture-list li:hover svg path {
    stroke:#ffffff;
}
.culture-list li span{
    margin-top:20px;
    color:var(--green--);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0.48px;
}
.culture-list li p{
    margin-top:20px;
    color: var(--h1--);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; 
    letter-spacing: 0.48px;
}
.culture-list li:hover p,
.culture-list li:hover span{
    color:#ffffff;
}
/* 全自动无菌车间 */
.room{
    padding-top:120px;
}
.room-box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top:64px;
}
.room-box a img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s; 
}
.room-box a:hover img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.room-li{
    width: 312px;
    height: 547px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.room-max{
    width: 648px;
    height:547px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.room-line{
    width: 648px;
    height: 359px;
    overflow: hidden;
}
.room-b{
    width: 648px;
    height: 174px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 0;
}
.room-min{
    width: 317px;
    height: 174px;
    overflow: hidden;
}
.room-top{
    width: 312px;
    height: 267px;
    overflow: hidden;
}


/* 漂浮 */
.drift{
    position: fixed;
    z-index: 999;
    right:0;
    top:50%;
    width: 96px;
    height: 480px;
    filter: drop-shadow(0px 4px 24px rgba(17, 26, 50, 0.08));
    -webkit-filter: drop-shadow(0px 4px 24px rgba(17, 26, 50, 0.08));
    background: #fff;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    padding-top:10px;
}
.drift-pic{
    height:50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.drift-max{
    height:80px;
}
.drift-pic svg:first-child{
    display: none;
}
.drift li a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height:92px;
    position: relative;
}
.drift li a span{
    color:var(--font--);
    text-align: center;
    font-family: Alibaba PuHuiTi 2.0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0.28px;
}
.drift li:hover .drift-pic svg:first-child{
    display: block;
}

.drift li:hover .drift-pic svg:last-child{
    display: none;
}
.drift li:hover a span{
    color:var(--green--);
}
.drift li a p{
    display: none;
    position: absolute;
    width:120px;
    height:120px;
    top:50%;
    right:100px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.drift li a:hover p{
    display: block;
}
.rotate-circle{
    display: none !important;
}
#contact2>div>div:nth-child(2),
#contact>div>div:nth-child(2){
    display: none !important;
}


.pager {
    display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	width:100%;
}
.pagination{
    padding:4rem 0 2rem 0;
    display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
    display:flex;
}
.pager li span,  .pager li a {
    padding:10px 16px;
    background: #ffffff;
    color: #909399;
    border-top: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-bottom: 1px solid #E4E7ED;
    border-radius: 4px;
    margin:0 4px;
    transition:all .2s;
    -webkit-transition:all .2s;
    -moz-transition:all .2s;
    -ms-transition:all .2s;
    -o-transition:all .2s;
}
.pager li:last-child a,
.pager li:last-child span{
    border-right: 1px solid #E4E7ED;
}
.pager li a:hover,
.pagination > .active > span {
	background:var(--green--);
	color:#fff;
    border-top: 1px solid var(--green--);
    border-left: 1px solid var(--green--);
    border-bottom: 1px solid var(--green--);
}
.pagination > .disabled > span {
	background: white !important;
	color:#909399;
}


.pick-area{display:inline-block;position:relative;font-size:14px;text-decoration: none;cursor:default;}

.pick-show{position:relative;padding:0 8px;height:36px;line-height:36px;border-radius: 3px;;}
.pick-show span{float:left;display:inline-block;max-width:100px;height:24px;line-height:24px;padding: 0 3px;margin-top:6px;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;color:#333;cursor:pointer;}
.pick-show span:hover{color:#fff!important;border-radius:3px;}
.pick-show span.pressActive{background:#7894D4;color:#fff!important;border-radius:3px}
.pick-show em.pick-arrow{position:absolute;top:14px;right:8px;display: block;border:8px solid #999;border-left:8px solid transparent;border-right:8px solid transparent;border-bottom:8px solid transparent;}
.pick-show i{float:left;display:inline-block;padding:0 3px;color:#333;font-style:normal;}

.pick-list{display:none;position:absolute;line-height:36px;margin:0;padding:0;background:#fff;z-index:999999999;overflow-y:auto;overflow-x:hidden;border:1px solid #dedede;border-top:none;}
.pick-list li{margin:0;padding-left:8px;list-style: none;color:#888;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;}
.pick-list li:hover{color:#fff;font-weight:bold;}
.pick-arrow{
    width:22px;
    height:22px;
    border:none !important;
    background: url(../images/pick-arrow.svg) no-repeat top center;
    background-size: auto;
    margin-top:-10px;
}

.sy-mask {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    left: 0;
    top: 0;
    z-index: 1000
}

.sy-alert {
    position: fixed;
    display: none;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    width: 400px;
    max-width: 90%;
    max-height: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9999;
    padding:5px;
}

.sy-alert.animated {
    -webkit-animation-duration: .3s;
    animation-duration: .3s
}

.sy-alert .sy-title {
    text-align: center;
    color: #333;
    line-height: 2;
    font-size: 24px;
    border-bottom: 1px solid #eee;
    padding: 0 12px
}

.sy-alert .sy-content {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    overflow-y: auto
}

.sy-alert .sy-btn {
    height: 50%;
    border-top: 1px solid #eee;
    overflow: hidden
}

.sy-alert .sy-btn button {
    float: left;
    border: 0;
    color: #333;
    cursor: pointer;
    background: #fff;
    width: 50%;
    line-height: 45px;
    font-size: 15px;
    text-align: center
}

.sy-alert .sy-btn button:nth-child(1) {
    color: #888;
    border-right: 1px solid #eee
}

.sy-alert.sy-alert-alert .sy-btn button {
    float: none;
    width: 100%
}

.sy-alert.sy-alert-tips {
    text-align: center;
    width: 150px;
    background: rgba(0, 0, 0, 0.7)
}

.sy-alert.sy-alert-tips .sy-content {
    padding: 8px;
    color: #fff;
    font-size: 14px
}

.sy-alert.sy-alert-model .sy-content {
    text-align: left
}

.sy-alert.sy-alert-model .sy-content .form .input-item {
    margin-bottom: 12px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.sy-alert.sy-alert-model .sy-content .form .input-item input {
    display: block;
    position: relative;
    width: 100%;
    border: 1px solid #eee;
    padding: 10px;
    box-sizing: border-box
}
.sy-alert.sy-alert-model .sy-content .form .input-item select{
    padding: 10px 5px;
    border: 1px solid #eee;
    box-sizing: border-box;
    display: inline;
    width:32%;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .getcode {
    border: 0;
    top: 0;
    right: 0;
    position: absolute;
    background: 0;
    line-height: 37px;
    color: #f60;
    width: 100px;
    text-align: center
}
.tsm {
    background: #333;
    font-size: 13px;
    color: #fff;
    margin: 20px;
    margin-top: 0px;
    padding: 12px;
    line-height: 25px;
}
.tsm .p2 {
    margin-top: 12px;
}
.btns {
    padding: 20px;
}
.btns div {
    display: block;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    background: #0CC;
    color: #fff;
    margin-bottom: 12px;
    width: 100%;
}


.fare-box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width:1172px;
    margin:0 auto;
    padding-bottom: 60px;
}

.fare-pic{
    width: 464px;
    height:562px;
    overflow: hidden;
    border-radius: 12px;
}
.fare-pic img{
    
    width:100%;
}
.fare-view{
    width: 645px;
}





