body {
    font-family: 'Noto Sans TC', serif;
    /* color: #221c1d; */
    color: #1c1c1c;
}
a{
    font-weight: 300;
}
p{
    font-weight: 300;
    color: #787878;
}
/*public--------------------------------------------------------------------*/
.publicMenu{
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DDDDDD;
    height: 82px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 49;
    background: #fff;
}
.publicMenu .logo{
    width: 180px;
    margin-left: 15px;
}
.publicMenu .logo svg{
    width: 100px;
    height: auto;
}
.publicMenu .menu>ul li{
    position: relative; 
    cursor: pointer;
}
.publicMenu .menu>ul{
    display: flex;
}
.publicMenu .menu>ul>li{
    padding: 26px 20px;
}
.publicMenu .menu b{
    font-size: 18px; 
    letter-spacing: 1px;
    cursor: pointer;
    display: block;
    position: relative;
    font-weight: 500;
    color: #666;
}
/* .publicMenu .menu b.active{
    color: #c30e22;
} */
/* .publicMenu .menu b::after{
    content: '';
    width: 1px;
    height: 14px;
    background: #ccc;
    position: absolute;
    left: -20px;
    top: 9px;
} */
.publicMenu .menu>ul>li:first-child>b::after{
    display: none;
}
.publicMenu .menu>ul>li:hover>b{
    color: #c30e22;
}
.publicMenu .menu>ul ul{
    position: absolute;
    top: calc(100% - 1px);
    z-index: 1;
    box-shadow: 0px 3px 5px rgb(0 0 0 / 30%);
    left: 50%;
    transform: translateX(-50%);
    background: #c30e22;
    white-space: nowrap;
    top: 100%;
    max-height: 0;
    transition: max-height 0.2s ease-out;
    overflow: hidden;
}
/* .publicMenu .menu>ul ul>li+li{
    border-top: 1px solid rgba(255,255,255,0.5);
} */
.publicMenu .menu>ul ul>li>a{
    padding: 4px 20px;
    /* color: #fff; */
    color: #ffd5d5;
}
.publicMenu .menu>ul ul>li:first-child{
    margin-top: 14px;
}
.publicMenu .menu>ul ul>li:last-child{
    margin-bottom: 14px;
}
/* .publicMenu .menu>ul ul>li:first-child::after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 15px 0 15px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: -10px;
    left: calc(50% - 15px);
} */
.publicMenu .menu>ul li:hover ul{
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}
/* .publicMenu .menu>ul ul>li:hover{
    background: #fff;
} */
.publicMenu .menu>ul ul>li:hover a{
    /* color: #c30e22; */
    color: #fff;
}
.publicMenu #menuButton,
.publicMenu .menuButton{
    display: none;
}
@media (max-width: 1080px) {
    .publicMenu{
        height: 70px;
    }
    .publicMenu .logo{
        width: 140px;
        margin-left: 10px;
    }
    .publicMenu .menu ul{
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1;
    }
    .publicMenu .menu>ul{
        height: 0;
        min-height: 0;
        display: block;
        transition: height .4s;
        overflow-y: auto;
    }
    .publicMenu .menu>ul>li{
        padding: 0 20px 0;
    }
    .publicMenu .menu>ul>li:first-child{
        margin-top: 10px;
    }
    .publicMenu .menu>ul>li:last-child{
        margin-bottom: 20px;
    }
    .publicMenu .menu b{
        font-size: 18px;
        margin: 10px 0 4px;
    }
    .publicMenu .menu>ul>li:hover>b{
        color: #555;
    }
    .publicMenu .menu>ul ul{
        position: relative;
        max-height: none;
        /* background: #fff; */
        box-shadow: none;
    }
    .publicMenu .menu>ul ul>li:first-child{
        margin-top: 5px;
    }
    .publicMenu .menu>ul ul>li:first-child::after{
        display: none;
    }
    .publicMenu .menu>ul ul>li:hover{
        background: none;
    }
    .publicMenu .menu>ul ul>li:hover a{
        color: #fff;
    }
    .publicMenu .menuButton{
        display: block;
        position: relative;
        cursor: pointer;
        border: 1px solid #ddd;
        border-radius: 6px;
        height: 38px;
        width: 45px;
    }
    .publicMenu .menuButton span{
        display: inline-block;
        height: 3px;
        width: 24px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -12px;
        background: #999;
        transform-origin: center center;
        transition: margin .2s .3s, transform .2s .1s
    }
    .publicMenu .menuButton span:nth-child(1){
        margin-top: -8px;
        transform: rotate(0);
    }
    .publicMenu .menuButton span:nth-child(2){
        margin-top: -1px;
        transform: scaleX(1);
    }
    .publicMenu .menuButton span:nth-child(3){
        margin-top: 6px;
        transform: rotate(0);
    }
    .publicMenu .menuButton.active span{
        transition: margin .2s .1s, transform .2s .3s;
    }
    .publicMenu .menuButton.active span:nth-child(1) {
        margin-top: 0;
        transform: rotate(-45deg);
    }
    .publicMenu .menuButton.active span:nth-child(2) {
        margin-top: 0;
        transform: scaleX(0);
    }
    .publicMenu .menuButton.active span:nth-child(3) {
        margin-top: 0;
        transform: rotate(45deg);
    }
    .publicMenu .menuButton.active + ul{
        height: calc(100vh - 70px);
    }
    /* .publicMenu .menuButton.active + ul li+li{
        border-top: 1px solid rgba(255,255,255,0.2);
    } */
}
/*publicMain*/
.publicMain {
    margin-top: 82px;
}
@media (max-width: 1080px) {
    .publicMain {
        margin-top: 70px;
    }
}
/*publicFooter*/
.publicFooter .top{
    /* background: #efefef; */
    background: #c30e22;
    padding: 60px 0 40px;
}
.publicFooter .top .publicContainer{
    justify-content: space-between;
}
.publicFooter .top .contact{
    display: flex;
    /* flex: 0 0 320px; */
    flex: 0 0 300px;
    flex-direction: column;
    /* align-items: center; */
    /* padding-right: 40px;
    margin-right: 40px; */
    padding-right: 30px;
    margin-right: 30px;
}
.publicFooter .top .contact .logo{
    /* margin-bottom: 20px; */
    width: 230px;
    margin-bottom: 10px;
}
.publicFooter .top .contact .text{
    flex-direction: column;
    display: flex;
}
.publicFooter .top .contact .text p{
    display: flex;
    font-size: 14px;
    color: #ffaeae;
}
.publicFooter .top .menu{
    flex: 1 1;
}
.publicFooter .top .menu>ul{
    display: flex;
    justify-content: space-between;
}
.publicFooter .top .menu b{
    margin-bottom: 8px;
    display: block;
    font-size: 17px;
    color: #fff;
    font-weight: 300;
    /* color: #c30e22; */
}
.publicFooter .top .menu a{
    font-size: 14px;
    /* color: #fff; */
    color: #ffaeae;
}
.publicFooter .top .menu a:hover{
    color: #fff;
}
.publicFooter .top .menu ul ul li+li{
    margin-top: 3px;
}
.publicFooter .bottom{
    background: #1c1c1c;
    padding: 10px 0;
    color: #fff;
    font-weight: 300;
}
.publicFooter .bottom .publicContainer{
    justify-content: center;
}
.publicFooter .bottom small{
    text-align: center;
}
@media (max-width: 1080px) {
    .publicFooter .top .menu>ul{
        flex-wrap: wrap;
        max-width: 100%;
        justify-content: flex-start;
    }
    .publicFooter .top .menu>ul>li{
        flex: 0 0 33.333%;
        margin-bottom: 20px;
    }
    
}
@media (max-width: 980px) {
    .publicFooter .top .publicContainer{
        flex-direction: column;
    }
    .publicFooter .top .contact{
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        align-items: center;
        /* border-bottom: 1px solid rgba(0,0,0,.2); */
        padding-bottom: 20px;
        margin-bottom: 20px;
        flex: 1 1;
    } 
    .publicFooter .top .menu>ul>li{
        text-align: center;
    }
}
@media (max-width: 520px) {
    .publicFooter .top .menu>ul>li{
        flex: 0 0 100%;
    }
}
/*publicContainer*/
.publicContainer {
    padding: 0 40px;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
}
@media (max-width: 620px) {
    .publicContainer {
        padding: 0 20px;
    }
}
/*publicTitle*/
.publicTitle{
    color: #c30e22;
    position: relative;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin-bottom: 60px;
}
.publicTitle:after{
    content: '';
    width: 60px;
    height: 2px;
    background: #c30e22;
    position: absolute;
    left: calc(50% - 30px);
    top: 60px;
}
/*fnpage--------------------------------------------------------------------*/
.fnpage .pageTopImg{
    overflow: hidden;
    position: relative;
}
.fnpage .pageTopImg img{
    object-fit: cover;
    height: 400px;
    width: 100%;
}
.fnpage .pageTopImg .title{
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
    width: 100%;
    text-align: center;
}
.fnpage .pageTopImg .title h3{
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,.8);
}
.fnpage .pageTopImg .title i{
    display: block;
    margin-top: -20px;
    font-size: 64px;
    font-weight: 300;
    text-transform:uppercase;
    color: #fff;
    background: -webkit-linear-gradient(#fff 30%, #333 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .6;
}
.fnpage .container{
    width: 90%;
    background-color: #fff;
    margin: 0 auto;
    margin-top: -120px;
    padding: 40px 0;
    /* padding-bottom: 10%; */
    z-index: 1; 
    position: relative;
}
.fnpage .pageUrl{
    display: flex;
    padding: 0;
    width: 90%;
    margin: 0 auto;
}
.fnpage .pageUrl li{
    position: relative;
    color: #999;
}
.fnpage .pageUrl li+li{
    padding-left: 20px;
}
.fnpage .pageUrl li+li::after{
    content: '/';
    position: absolute;
    top: 3px;
    left: 8px;
    color: #ddd;
    font-size: 12px;
}
.fnpage .pageUrl a{
    font-size: 15px;
}
.fnpage .pageUrl li:first-child a{
    display: flex;
    align-items: center;
}
.fnpage .pageUrl li:first-child i{
    background: #ccc;
    /* padding: 3px; */
    margin-right: 3px;
    width: 16px;
    height: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fnpage .pageUrl li:first-child svg{
    width: 10px;
    height: auto;
    fill: #fff;
}
.fnpage .pageUrl li:last-child a{
    color: #1c1c1c;
}
.fnpage .pageUrl a:hover{
    text-decoration: underline;
}
.fnpage .content{
    width: 65%;
    margin: 60px auto 80px;
}
.fnpage .content h4{
    font-size: 36px;
    margin-bottom: 32px;
    color: #c30e22;
    font-weight: 300;
    text-align: center;
}
.fnpage .content h4 b{
    font-size: 36px;
    font-weight: 500;
    color: inherit;
    margin: 0;
    margin-top: -5px;
}
.fnpage .content b{
    margin-top: 36px;
    margin-bottom: 3px;
    color: #666;
}
.fnpage .content .red{
    color: #c30e22;
}
.fnpage .content p{
    line-height: 1.7;
}
.fnpage .content p+p{
    margin-top: 20px;
}
.fnpage .content img+p,
.fnpage .content p+img{
    margin-top: 20px;
}
.fnpage .content img+h4{
    margin-top: 26px;
}
.fnpage .content p+h4{
    margin-top: 58px;
}
@media (max-width: 1080px) {
    .fnpage .container{
        /* width: 100%; */
        padding: 20px 0;
    }
    .fnpage .content{
        width: 100%;
        padding: 0 20px;
        margin: 40px auto 60px;
    }
}
@media (max-width: 680px) {
    .fnpage .pageTopImg .title i{
        font-size: 28px;
        margin-top: -10px;
    }
    .fnpage .container{
        width: 100%;
    }
    .fnpage .pageUrl{
        width: 100%;
        padding: 0 20px;
    }
    .fnpage .content h4,
    .fnpage .content h4 b{
        font-size: 24px;
    }
    .fnpage .content h4{
        margin-bottom: 16px;
    }
}
/*fnhome--------------------------------------------------------------------*/
.fnhome .slide{
    position: relative;
    height: 580px;
    overflow: hidden;
}
.fnhome .slide .control{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.fnhome .slide .control>div{
    cursor: pointer;
    width: 50px;
    height: 48px;
    background: #c30e22;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
.fnhome .slide .control>div:hover{
    background: #dd0e25;
}
.fnhome .slide .control>div svg{
    fill: #fff;
}
.fnhome .slide .control>div+div{
    border-top: 1px solid rgba(255,255,255,0.2);
}
.fnhome .slide li{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out;
}
.fnhome .slide li.active{
    /* z-index: 1; */
    opacity: 1;
    visibility: visible;
}
.fnhome .slide li .text{
    position: absolute;
    /* top: 15%; */
    left: 50%;
    top: 0;
    transform: translateX(calc(-50%));
    color: #fff;
    padding: 20px 40px;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fnhome .slide li .text h2{
    max-width: 540px;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 0 10px rgb(0 0 0 / 60%);
    transform: translateX(10%);
    opacity: 0;
    margin-top: -60px;
}
.fnhome .slide li.active .text h2{
    opacity: 1;
    transform: translateX(0);
    transition: 1s;
    /* position: relative; */
}
/* .fnhome .slide li.active .text h2::after{
    content: '';
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: -10px;
    left: 0;
} */
.fnhome .slide li .text a{
    padding: 15px 20px;
    background: #c30e22;
    max-width: 140px;
    text-align: center;
    margin-top: 25px;
    transform: translateX(30%);
    opacity: 0;
    /* margin-bottom: 20px; */
}
.fnhome .slide li .text a:hover{
    background: #dd0e25;
}
.fnhome .slide li.active .text a{
    opacity: 1;
    transform: translateX(0);
    transition: 1s .3s;
}
.fnhome .slide li img{
    object-fit: cover;
    height: 580px;
}
/* @media (max-width: 1380px) {
    .fnhome .slide li .text{
        top: 0;
        height: 100%;
    }
} */
@media (max-width: 820px) {
    .fnhome .slide li .text{
        text-align: center;
        max-width: 100%;
    }
    .fnhome .slide li .text h2{
        max-width: 100%;
        font-size: 38px;
    }
    .fnhome .slide li .text a{
        margin: 20px auto 0;
    }
}
@media (max-width: 620px) {
    .fnhome .slide li .text{
        padding: 20px 50px;
    }
    .fnhome .slide li .text h2{
        font-size: 28px;
    }
}
.fnhome .container{
    background: #fff;
    width: 65%;
    margin: 120px auto 120px;
}
.fnhome .container .top{
    display: flex;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
}
.fnhome .container .top .text{
    flex: 1 1;
    margin-left: 40px;
}
.fnhome .container .top .text h4{
    font-size: 38px;
    font-weight: 500;
}
.fnhome .container .top .text small{
    margin-top: -0;
    display: block;
    margin-bottom: 30px;
    color: #c30e22;
    font-size: 16px;
}
.fnhome .container .top .text p{
    line-height: 1.8;
}
.fnhome .container .top .text p+p{
    margin-top: 20px;
}
.fnhome .container .top .img{
    flex: 0 0 400px;
}
.fnhome .container .bottom>.text h4{
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    /* padding-left: 15px; */
    /* position: relative; */
}
/* .fnhome .container .bottom>.text h4::after{
    content: '';
    width: 6px;
    height: 26px;
    background: #c30e22;
    position: absolute;
    left: 0;
    top: 9px;
} */
.fnhome .container .bottom>.text p{
    line-height: 1.8;
    margin-bottom: 30px;
}
.fnhome .container .bottom .items{
    display: flex;
    justify-content: space-between;
}
.fnhome .container .bottom .items li{
    width: 31.5%;
    background-color: #F5F5F5;
}
.fnhome .container .bottom .items .text{
    padding: 20px;
}
.fnhome .container .bottom .items h4{
    padding-bottom: 6px;
    /* margin-bottom: 6px;
    border-bottom: 1px solid #ddd; */
    font-size: 18px;
    position: relative;
    /* padding-left: 10px; */
}
/* .fnhome .container .bottom .items h4::after{
    content: '';
    width: 6px;
    height: 18px;
    background: #c30e22;
    position: absolute;
    left: 0;
    top: 5px;
} */
.fnhome .container .bottom .items p{
    font-size: 14px;
    line-height: 1.8;
}
.fnhome .container .bottom .items .red{
    color: #c30e22;
}
@media (max-width: 1280px) {
    .fnhome .container{
        width: 90%;
        padding: 0 40px;
    }
}
@media (max-width: 1080px) {
    .fnhome .container{
        width: 100%;
    }
}
@media (max-width: 920px) {
    .fnhome .container{
        margin: 80px auto;
    }
    .fnhome .container .top{
        flex-direction: column;
    }
    .fnhome .container .top .img{
        flex: 1 1;
        width: 100%;
    }
    .fnhome .container .top .text{
        margin-top: 20px;
        margin-left: 0;
    }
    .fnhome .container .bottom .items{
        flex-direction: column;
    }
    .fnhome .container .bottom .items li{
        width: 100%;
    }
    .fnhome .container .bottom .items li+li{
        margin-top: 40px;
    }
}
@media (max-width: 620px) {
    .fnhome .container{
        margin: 60px auto;
        padding: 0 20px;
    }
    .fnhome .container .top .text{
        margin-top: 10px;
    }
    .fnhome .container .top .text small{
        margin-bottom: 20px;
    }
    .fnhome .container .top .text h4{
        font-size: 28px;
    }
}
/*fnfrom*/
.fnfrom>div{
    position: relative;
}
.fnfrom>div label{
    display: none;
}
.fnfrom>div textarea,
.fnfrom>div input{
    width: 100%;
    padding: 12px;
    border-radius: 3px;
    border: 1px solid #ced4da;
    font-size: 16px;
}
.fnfrom .bottom button{
    border-radius: 0;
    padding: 8px 20px;
    /* display: block; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.42857;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    text-decoration: none;
    color: #666;
    border: 1px solid #ccc;
    text-decoration: none;
    background: #ffffff;
    border-radius: 3px;
}
.fnfrom .bottom button:last-child {
    color: #fff;
    background-color: #c30e22;
    margin-left: 5px;
    border: 1px solid #c30e22;
}
.fnfrom .puplicError{
    left: 0;
    bottom: -16px;
}
.fncontact .fnfrom{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin-bottom: 40px;
}
.fncontact .fnfrom>div{
    width: 30%;
    margin-bottom: 20px;
}
.fncontact .fnfrom>div:nth-child(4),
.fncontact .fnfrom>div:nth-child(5),
.fncontact .fnfrom>div:nth-child(6){
    width: 100%;
}
.fncontact .fnfrom>div textarea{
    min-height: 250px;
}
.fncontact .bottom{
    text-align: right;
}
.fncontact .bottom button:nth-child(1){
    display: none;
}
.fncontact .bottom button:nth-child(2){
    margin-left: 0;
    width: 140px;
}