/**/


/**/

.fa_pTitle {
    margin-bottom: calc(2vw + 20px);
}

.fa_pTitle h2 {
    font-size: var(--f40);
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    /* margin-top: 20px; */
}

.fa_pTitle h5 {
    font-size: var(--f20);
    color: var(--main-color);
    font-weight: 500;
}


/**/

.fa_Pagecnt {
    overflow: hidden;
    min-height: 300px;
}

.fa_cntWrap .fa_wrapper {
    max-width: calc(1300px + 10vw);
}

.fa_Pagecnt img {
    max-width: 100%;
}

.fa_Pagecnt .fa_content {
    margin-top: 3vw;
    width: 100%;
    overflow: hidden;
    line-height: 1.8;
    color: #555;
    min-height: 200px;
    font-size:16px;
}

.fa_Pagecnt .fa_content table {
    width: 100%;
}

.fa_Pagecnt .fa_content table td {
    border: #eee solid 1px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.fa_Pagecnt .fa_content table tr:nth-child(odd) {
    background: #f5f5f5;
}

.fa_Pagecnt .fa_Ndtitle h1 {
    color: #333;
    font-size: var(--f30);
    text-align: center;
    line-height: 2;
    font-weight: 500;
}

.fa_Pagecnt .fa_summ {
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: #eee solid 1px;
    display: flex;
    justify-content: space-between;
}

.fa_Pagecnt .fa_summ span {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    color: #999;
}

.fa_Casedt .fa_title {
    margin-bottom: calc(2vw + 10px);
}

.fa_Casedt .fa_title h1 {
    font-size: var(--f36);
    color: #000;
}

.fa_Casedt .fa_title p {
    font-size: 16px;
    color: #777;
    margin-top: var(--f20);
    font-weight: 400;
}

.fa_Casedt .fa_bg {
    background-attachment: fixed;
    width: 100%;
    height: 0%;
    background-size: 100%;
    padding-bottom: 30%;
}

.fa_Casedt .fa_content>h3 {
    font-size: 2rem;
    margin-bottom: var(--f40);
}

.fa_Casedt .fa_content .fa_cnt {
    font-size: 16px;
    line-height: 2;
}

.fa_Casedt .fa_dt_page {
    border: none;
}

.fa_case_dz {
    background: url(../images/dzbg.jpg);
    background-attachment: fixed;
    text-align: center;
}

.fa_case_dz h5 {
    color: #fff;
    font-size: var(--f36);
    margin-bottom: 20px;
}

.fa_case_dz p {
    font-size: var(--f18);
    color: #fff;
    margin-bottom: calc(3vw + 20px);
}

.fa_case_dz .fa_link a {
    display: inline-block;
    width: 180px;
    line-height: 50px;
    padding: 0 10px;
    border: #fff solid 1px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    transition: all 0.5s;
}

.fa_case_dz .fa_link a:hover {
    background: var(--main2-color);
    color: #fff;
    border-color: var(--main2-color);
}

@media screen and (max-width: 768px) {
    
.fa_Pagecnt .fa_content {
    font-size:14px;
}
    .fa_Pagecnt .fa_content table td {
        padding: 3px;
        white-space: nowrap;
        /* 自适应宽度*/
        word-break: keep-all;
        /* 避免长单词截断，保持全部 */
        white-space: pre-line;
        word-break: break-all !important;
        word-wrap: break-word !important;
        display: table-cell;
        vertical-align: middle !important;
        white-space: normal !important;
    }
    .fa_Pagecnt .fa_summ {
        margin: 15px 0;
        font-size: 12px;
        padding-bottom: 10px;
        border: none;
        background: #f5f5f5;
        padding: 5px 5px;
    }
    .fa_Pagecnt .fa_summ span {
        font-size: 12px;
        width: auto;
        margin: 0 5px;
    }
    .fa_Casedt .fa_bg {
        background-attachment: revert;
    }
    .fa_Casedt .fa_case_td {
        flex-wrap: wrap;
    }
    .fa_Casedt .fa_case_td dl {
        width: 50%;
        margin-top: 30px;
    }
    .fa_Casedt .fa_case_td dl dt .fa_ico {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    .fa_Casedt .fa_case_td dl dd h6 {
        font-size: 16px;
    }
    .fa_Casedt .fa_case_td dl dd p {
        font-size: 14px;
    }
}

/**/
.fa_Case{
    
    background: #f6f3f2;
}
.fa_Case .fa_li{
    position:relative;
    display:block;
    background:#fff;
    border-radius: 15px;
    padding: 10px;
    transition:all 0.5s;
}
.fa_Case .fa_li:hover{
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.fa_Case .fa_Img{
    padding-bottom:50%;
    border-radius:15px;
}
.fa_Case .fa_li .fa_tit{
    /* margin-top:30px; */
    position:relative;
    padding: 20px;
}
.fa_Case .fa_li .fa_tit h3{
    font-size:var(--f20);
    font-weight:500;
    color:#333;
    margin-bottom:10px;
    transition:all 0.5s;
}
.fa_Case .fa_li:hover .fa_tit h3{
    color:var(--main-color);
}
.fa_Case .fa_li .fa_tit p{
    
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color:#999;
    font-size:14px;
    line-height:20px;
    max-height:40px;
}

.fa_Case .fa_li .fa_tit .fa_link span{
    display:inline-block;
    padding:5px 20px;
    background:rgba(223, 73, 27,0.1);
    color:var(--main-color);
    font-size:14px;
    margin-top:20px;
    border-radius: 500px;
    transition:all 0.5s;
}

.fa_Case .fa_li:hover .fa_tit .fa_link span{
    background:var(--main-color);
    color:#fff;
}

@media screen and (max-width: 768px) {
    .fa_Case .fa_li{
        width:100%;
        display:block;
        margin:10px 0!important;
    }
    .fa_Case .fa_li .fa_tit{
        padding-left:5px;
        padding-right:5px;
    }
}
/**/

.fa_News .fa_li {
    background: #fff;
    transition: all 0.5s;
    display: block;
    border-bottom: #eee solid 1px;
    padding-bottom: 30px;
    position: relative;
}

.fa_News .fa_li .fa_Img {
    padding-bottom: 55%;
    border-radius: 10px;
}

.fa_News .fa_li .fa_sum {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #999;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    margin: 10px 0 0;
}

.fa_News .fa_tit {
    display: flex;
    margin-top: 30px;
}

.fa_News .fa_date {
    width: 70px;
    background: #fff;
    border: #eee solid 1px;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    transition: all 0.5s;
}

.fa_News .fa_date p:nth-child(1) {
    font-size: var(--f36);
    color: #aaa;
    font-family: "Youth";
    font-weight: 300;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.5s;
}

.fa_News .fa_date p:nth-child(2) {
    font-size: 12px;
    color: #aaa;
    font-family: "Youth";
    font-weight: 300;
    line-height: 1;
    transition: all 0.5s;
}

.fa_News .fa_tt {
    width: calc(100% - 70px);
    padding-left: 20px;
}

.fa_News .fa_tt h4 {
    font-size: var(--f18);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #333;
    transition: all 0.5s;
}

@media screen and (min-width: 769px) {
    .fa_News .fa_li:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        transition: all 0.5s;
        height: 1px;
        background: var(--main-color);
        width: 0;
    }
    .fa_News .fa_li:hover:before {
        width: 100%;
    }
    .fa_News .fa_li:hover .fa_tt h4 {
        color: var(--main-color);
    }
    .fa_News .fa_li:hover .fa_date {
        border-color: var(--main-color);
        background: #fef2e0;
    }
    .fa_News .fa_li:hover .fa_date p {
        color: var(--main-color);
    }
}

@media screen and (max-width: 768px) {
    .fa_News .fa_li {
        width: 100%;
        margin: 10px 0!important;
        padding-bottom: 10px;
    }
    .fa_News .fa_li .fa_tit {
        margin-top: 10px;
    }
    .fa_News .fa_li .fa_date {
        width: 60px;
        padding: 10px 2px;
    }
    .fa_News .fa_li .fa_tt {
        width: calc(100% - 60px);
        padding-left: 10px;
    }
    .fa_News .fa_li .fa_date p:nth-child(1) {
        font-size: 24px;
    }
    .fa_News .fa_li .fa_date p:nth-child(2) {
        font-size: 12px;
    }
    .fa_News .fa_li .fa_sum {
        font-size: 12px;
        line-height: 18px;
        height: 36px;
        margin-top: 5px;
    }
}


/**/

.fa_Search .fa_li {
    background: #f5f5f5;
}

.fa_Search .fa_li .fa_Img {
    padding-bottom: 70%;
}

.fa_Search .fa_li .fa_tit {
    padding: 15px 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    color: #333;
    text-align: center;
}


/**/

.fa_Pro .fa_li {
    display: block;
    background: #f2f2f2;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.5s;
    border: #f2f2f2 solid 1px;
}

.fa_Pro .fa_li .fa_Img {
    padding-bottom: 66.66666666666667%;
    border-radius: 10px;
}

.fa_Pro .fa_li .fa_tit {
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    margin-top: 5px;
}

.fa_Pro .fa_li .fa_tit h3 {
    font-size: var(--f18);
    color: #333;
    transition: all 0.5s;
}

@media screen and (min-width: 769px) {
    .fa_Pro .fa_li .fa_link {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        content: "";
        transition: all 0.5s;
        display: flex;
        background: linear-gradient(45deg, rgba(228, 77, 38, 0.8), rgba(241, 101, 41, 0.9));
        align-items: center;
        justify-content: center;
        opacity: 0;
    }
    .fa_Pro .fa_li:hover .fa_link {
        opacity: 1;
    }
    .fa_Pro .fa_li .fa_link i {
        display: block;
        width: 40px;
        height: 40px;
        position: relative;
    }
    .fa_Pro .fa_li .fa_link i:before,
    .fa_Pro .fa_li .fa_link i:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 2px;
        background: #fff;
        transition: all 0.5s;
    }
    .fa_Pro .fa_li:hover .fa_link i:before {
        transform: rotate(90deg);
        transition-delay: 0.3s;
    }
    .fa_Pro .fa_li:hover .fa_tit h3 {
        color: var(--main-color);
    }
    .fa_Pro .fa_li:hover {
        background: #fff4e3;
    }
}

@media screen and (max-width: 768px) {
    .fa_Pro .fa_li {
        padding: 0;
        background: #fff;
        border: none;
    }
    .fa_Pro .fa_li .fa_tit {
        background: transparent;
        padding: 10px 0;
    }
    .fa_Pro .fa_li .fa_tit h3 {
        font-size: 14px;
    }
}


/**/

.fa_Prodt {}

.fa_Prodt .fa_top {
    width: 100%;
}

.fa_Prodt .fa_top_l .fa_Img {
    padding-bottom: 100%;
    background: #1c2029;
}

.fa_Prodt .fa_top_l .fa_sml_swp .swiper-slide {
    border: transparent solid 2px;
    transition: all 0.8s;
}

.fa_Prodt .fa_top_l .fa_sml_swp .swiper-slide-thumb-active {
    border-color: var(--main-color);
}

.fa_Prodt .fa_top_l {
    /* border: #eee solid 1px; */
}

.fa_Prodt .fa_top_l .fa_sml_swp {
    border-top: #eee solid 1px;
    /* padding: 0 30px; */
    position: relative;
}

.fa_Prodt .fa_top_l .fa_dtimg_btn>div {
    position: absolute;
    z-index: 20;
    font-size: 3vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    top: 0;
    bottom: 0;
    cursor: pointer;
    height: 100%;
    /* width: 28px; */
    padding: 20px;
    opacity: 0.2;
    color: #fff;
}

.fa_Prodt .fa_top_l .fa_dtimg_btn>div:hover {
    color: var(--main-color);
    opacity: 1;
}

.fa_Prodt .fa_top_l .fa_dtimg_btn .fa_btn_l {
    left: 0;
}

.fa_Prodt .fa_top_l .fa_dtimg_btn .fa_btn_r {
    right: 0;
}

.fa_Prodt .fa_dt_r .fa_pro_cateinfo {
    background: #f5f5f5;
    padding: 15px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    border-top: #eee solid 2px;
    margin-top: 20px;
}

.fa_Prodt .fa_dt_r .fa_pro_cateinfo a {
    color: inherit;
    color: #222;
    margin-left: 5px;
}

.fa_Prodt .fa_dt_r .fa_pro_cateinfo a:hover {
    color: var(--main-color);
}

.fa_Prodt .fa_dt_r .fa_pro_tit b {
    font-size: var(--f36);
    color: #000;
    font-weight: 500;
}

.fa_Prodt .fa_dt_r .fa_pro_sum {
    font-size: 16px;
    color: #222;
    line-height: 2;
    margin-bottom: 15px;
    font-weight: 400;
    margin-top: 14px;
}

.fa_Prodt .fa_dt_r .fa_pro_cate {
    padding: 15px;
    border-top: #ddd solid 1px;
    border-bottom: #ddd solid 1px;
}

.fa_Prodt .fa_dt_r .fa_pro_link {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.fa_Prodt .fa_dt_r .fa_pro_link a {
    display: block;
    background: var(--main-color);
    color: #fff;
    padding: 0px 20px;
    line-height: 50px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.5s;
    width: calc((100% - 10px) / 2);
    text-align: center;
}

.fa_Prodt .fa_dt_r .fa_pro_link a i {
    margin-right: 5px;
    font-size: 16px;
}

.fa_Prodt .fa_dt_r .fa_pro_link a:hover {
    color: #fff;
    background: var(--main-color);
}

.fa_Prodt .fa_dt_r .fa_pro_gg li {
    border-top: #eee solid 1px;
    padding: 10px 0;
    display: flex;
}

.fa_Prodt .fa_dt_r .fa_pro_gg li p {
    font-size: 16px;
    color: #222;
    font-weight: 400;
}

.fa_Prodt .fa_dt_r .fa_pro_gg li p:nth-child(1) {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
    width: 160px;
}

.fa_Prodt .fa_dt_r .fa_pro_gg li p:nth-child(2) {
    width: calc(100% - 160px);
}

.fa_Prodt .fa_content {
    width: 100%;
}

.fa_Prodt .fa_content .fa_tab_tit {
    font-size: 0;
    border-bottom: #eee solid 1px;
}

.fa_Prodt .fa_content .fa_tab_tit span {
    display: inline-block;
    font-size: var(--f24);
    color: #000;
    line-height: var(--f70);
    font-weight: 400;
}

.fa_Prodt .fa_content .fa_tab_content {
    width: 100%;
    padding: 30px 0vw;
}

.fa_Prodt .fa_content .fa_tab_content h3 {
    font-size: var(--f24);
    color: var(--main-color);
    margin-bottom: 20px;
}

.fa_Prodt .fa_content .fa_tab_content h3:after {
    content: "";
    display: block;
    margin-top: 20px;
    height: 2px;
    width: 50px;
    background: var(--main2-color);
}

.fa_Prodt .fa_content .fa_tab_content .fa_content_item {
    display: none;
    width: 100%;
}

.fa_Prodt .fa_content .fa_tab_content .fa_content_item.fa_on {
    display: block;
}

.fa_Prodt .fa_content img {
    display: block;
}

.fa_Prodt .fa_content .fa_tab_content img {
    max-width: 100% !important;
    height: auto;
}

.fa_Prodt .fa_content .fa_tab_content video {
    width: 100% !important;
    height: auto;
}

.fa_Xgpro {
    position: relative;
    background: #f5f5f5;
    border-bottom: #e5e5e5 solid 1px;
}

.fa_Xgpro .fa_ttbox {
    font-size: var(--f30);
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
    border-left: var(--main-color) solid 4px;
    padding-left: 15px;
    line-height: 1;
}

.fa_Xgpro .fa_swplist {
    position: relative;
}

.fa_Xgpro .swiper-slide-active {
    height: auto;
}

.fa_Xgpro .fa_it {
    background: #fff;
    display: block;
    height: 100%;
}

.fa_Xgpro .fa_it .fa_Img {
    padding-bottom: 80%;
}

.fa_Xgpro .fa_it .fa_tt {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

@media screen and (min-width: 769px) {
    .fa_Prodt .fa_top .fa_top_l {
        width: 50%;
        padding-right: 5vw;
    }
    .fa_Prodt .fa_top .fa_top_l>div {
        position: sticky;
        top: 120px;
    }
    .fa_Prodt .fa_top .fa_dt_r {
        width: 50%;
    }
}

@media screen and (max-width: 769px) {
    .fa_Prodt .fa_grid2 {
        margin-top: 0 !important;
        padding: 0;
        width: 100%;
    }
    .fa_Prodt .fa_comm_r {
        /* padding: 10px 10px; */
    }
    .fa_Prodt .fa_top>div {
        width: 100%;
    }
    .fa_Prodt .fa_top .fa_top_l {
        border: none;
        background: #f3f3f3;
    }
    .fa_Prodt .fa_top .fa_dt_r .fa_pro_cateinfo {
        font-size: 12px;
        background: #f5f5f5;
        padding: 10px 20px;
    }
    .fa_Prodt .fa_top .fa_dt_r {
        margin-top: 30px;
        padding: 0;
    }
    .fa_Prodt .fa_top .fa_dt_r .fa_pro_tit b {
        font-size: 18px;
    }
    .fa_Pro .fa_li .fa_link i {
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 40px;
    }
    .fa_Prodt .fa_top .fa_dt_r .fa_pro_link a {
        line-height: 36px;
        padding: 0 20px;
        margin-top: 30px;
    }
    .fa_Prodt .fa_content .fa_tab_tit span {
        line-height: 40px;
        padding: 0;
    }
    .fa_Prodt .fa_content .fa_tab_content {
        padding: 20px 0;
    }
    .fa_Xgpro .fa_it .fa_tt {
        font-size: 12px;
        padding: 10px;
    }
    .fa_Xgpro .fa_boxbtn {
        margin-top: 20px;
    }
}

.fa_mask {
    position: fixed;
    z-index: 99;
    background: rgba(0, 0, 0, 0.2);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    height: 100%;
    overflow-y: scroll;
    display: none;
}

.fa_mask.fa_on {
    display: flex !important;
}

.fa_mask .fa_wrapBox {
    background: #fff;
    max-width: 900px !important;
    padding: 0 !important;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.fa_mask .fa_wrapBox .fa_title {
    /* background: var(--main-color); */
    /* padding:10px 50px 10px 10px; */
    position: relative;
}

.fa_mask .fa_wrapBox .fa_title .e_icon {
    color: #fff;
    position: absolute;
    font-size: 30px;
    right: 0;
    top: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    z-index: 998;
}

i.e_icon {}

.fa_mask .fa_wrapBox .fa_title span {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    line-height: 24px;
}

.fa_mask .fa_wrapBox .fa_content {
    padding: 0;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxpro {
    display: flex;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxpro .fa_left {
    width: 110px;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxpro .fa_left .fa_Img {
    padding-bottom: 100%;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxpro .fa_right {
    width: calc(100% - 110px);
    padding-left: 30px;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxpro .fa_right h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxword {
    padding: 15px;
    border: #ddd solid 1px;
    margin: 20px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxinput p {
    text-align: center;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxinput textarea {
    display: block;
    width: 100%;
    border: #ddd solid 1px;
    margin-bottom: 10px;
    line-height: 36px;
    padding: 0 10px;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxinput input {
    display: block;
    width: 100%;
    border: #ddd solid 1px;
    margin-bottom: 10px;
    line-height: 36px;
    padding: 0 10px;
}

.fa_mask .fa_wrapBox .fa_content .fa_boxinput button {
    display: inline-block;
    background: var(--main-color);
    padding: 0 20px;
    border: none;
    color: #fff;
    font-size: 14px;
    line-height: 36px;
    border-radius: 5px;
}


/*anli*/

.fa_Download .fa_li {
    background: #f5f5f5;
    padding: 2vw;
    display: flex;
}

.fa_Download .fa_li .fa_l {
    width: 60px;
}

.fa_Download .fa_li .fa_l .fa_ico {
    font-size: 20px;
    color: #fff;
    background: var(--main-color);
    border-radius: 500px;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.fa_Download .fa_li .fa_box {
    width: calc(100% - 80px);
    padding-left: 3vw;
}

.fa_Download .fa_li h3 {
    font-size: var(--f20);
    color: #000;
}

.fa_Download .fa_li p {
    margin: 10px 0;
    color: #666;
    font-size: 14px;
}

.fa_Download .fa_li .fa_link span {
    display: inline-block;
    font-size: 14px;
    background: #ccc;
    padding: 0 30px;
    line-height: 40px;
    border-radius: 5px;
    color: #fff;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .fa_Download .fa_li .fa_l {
        display: none;
    }
    .fa_Download .fa_li {
        padding: 20px;
    }
    .fa_Download .fa_li .fa_box {
        width: 100%;
    }
    .fa_Download .fa_li .fa_link span {
        margin-top: 5px;
        line-height: 30px;
    }
}


/**/


/**/

.fa_career .fa_libox img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.fa_career h2.fa_list_tt {
    font-size: var(--f30);
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: var(--f40);
}

.fa_career .fa_list {
    background: #f5f5f5;
    /* border:#ddd solid 1px; */
    border-top: none;
    border-bottom: none;
    margin-bottom: 5vw;
}

.fa_career dl {
    display: block;
    border-bottom: #ddd solid 1px;
    color: #666;
}

.fa_career dl.fa_ttli {
    background: #fff;
    color: #000;
    background: #eee;
    font-size: 18px;
}

.fa_career dl dt {
    display: flex;
}

.fa_career dl dt .fa_btn {
    font-size: 18px;
    color: #777;
    transition: all 0.5s;
    cursor: pointer;
}

.fa_career dl.fa_on dt .fa_btn {
    transform: rotate(180deg);
}

.fa_career dl dt span {
    display: block;
    color: inherit;
    padding: 20px;
    font-weight: 400;
}

.fa_career dd {
    background: #fff;
    padding: 30px;
    display: none;
}

.fa_career dd .fa_pp span {
    display: inline-block;
    margin-right: 3vw;
}

.fa_career .fa_libox h3 {
    font-size: var(--f36);
    color: #333;
    font-weight: 400;
}

.fa_career .fa_libox p {
    margin-top: var(--f40);
    color: #777;
    line-height: 2;
    font-size: 16px;
}

.fa_career .fa_libox {
    margin-bottom: 5vw;
}

@media screen and (min-width: 769px) {
    .fa_career dl dt span:nth-child(-n+4) {
        width: calc((100% - 80px) / 4);
    }
    .fa_career .fa_libox {
        display: flex;
        align-items: center;
    }
    .fa_career .fa_libox .fa_left {
        width: 50%;
    }
    .fa_career .fa_libox .fa_right {
        width: 50%;
        padding-left: 5vw;
    }
}

@media screen and (max-width: 768px) {
    .fa_career dl dt span:nth-child(1) {
        width: calc(100% - 30px);
    }
    .fa_career dl dt span {
        padding: 10px;
        font-size: 14px;
        font-weight: 500;
    }
    .fa_career dl dt span.fa_btn {
        text-align: right;
        font-size: 14px;
        font-weight: 600;
    }
}


/**/

.fa_partner {
    background: linear-gradient(#ecf3fe, #fff);
}

.fa_partner .fa_li {
    border: #eee solid 1px;
    background: #fff;
    padding: 20px 20px;
}

.fa_partner .fa_li .fa_Img {
    padding-bottom: 40%;
}

.fa_partner .fa_link {
    text-align: center;
    margin-top: calc(2vw + 10px);
}

.fa_partner .fa_link a {
    display: inline-block;
    width: 180px;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    padding: 0 10px;
    transition: all 0.5s;
}

.fa_partner .fa_link a:hover {
    background: var(--main2-color);
}


/**/

.fa_Honor .fa_li {
    padding: 5px;
    background: #fff;
    border: #eee solid 1px;
    padding: 20px;
}

.fa_Honor .fa_li .fa_Img {
    padding-bottom: 80%;
    /* background: #fff; */
}

.fa_Honor .fa_li .fa_tit {
    padding: 0 10px;
    text-align: center;
    color: #333;
    font-size: 16px;
    /* background: #e4cda3; */
    margin-top: 20px;
}

.fa_text_w * {
    color: #fff;
}


/**/

.fa_contact {
    position: relative;
}
.fa_contact dl{
    display:flex;
    width:100%;
    margin-top: 30px;
}
.fa_contact dl dt{
    width:50px;
    font-weight:normal;
    
}
.fa_contact dl dt i{
    width:100%;
    padding:10px;
    border:var(--main-color) solid 1px;
    color:var(--main-color);
    font-size:24px;
    border-radius:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}
.fa_contact dl dd{
    padding-left:20px;
    width:calc(100% - 50px);
}
.fa_contact dl dd h6{
    font-size:14px;
    color:#666;
}

.fa_contact dl dd p{
    font-size:var(--f18);
    color:#333;
    margin-top:5px;
    font-weight: 400;
}

.fa_contact dl dd p a{
    font-weight:500;
}
.fa_contact .fa_titbox{
    margin-bottom:30px;
    padding-bottom: 30px;
    border-bottom: #eee solid 1px;
}
.fa_contact .fa_titbox h4{
    color:var(--main-color);
    font-size: var(--f36);
}
.fa_contact .fa_titbox h6{
    font-size:var(--f18);
    color:#333;
    margin-top:10px;
}
.fa_message .fa_form div{
    
        border-radius:5px;
        overflow:hidden;
}
.fa_message .fa_form input {
    background: #fff;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    border: none!important;
    box-shadow: none!important;
    width: 100%;
}

.fa_message .fa_form textarea {
    background: #fff;
    padding: 10px 20px;
    line-height: 30px;
    font-size: 14px;
    border: none!important;
    box-shadow: none!important;
    width: 100%;
    display: block;
}

.fa_message .fa_form button {
    display: block;
    padding: 0 30px;
    background: var(--main-color);
    color: #fff;
    line-height: 40px;
    border: none!important;
    box-shadow: none!important;
    margin: 0;
    width: 180px;
    font-size: 14px;
        border-radius:5px;
}

.fa_message .fa_form h4{
    font-size:var(--f20);
    color:#333;
    margin-bottom:20px;
}
.fa_message{
    background:#f6f3f2;
    padding:calc(2vw + 10px);
    border-radius:20px;
}
.fa_pagefoot{
    position:relative;
}
.fa_pagefoot .fa_Img{
    height:40vh;
    max-height:400px;
    
}
.fa_pagefoot .fa_tit{
    position:absolute;
    left:0;
    right:0;
    top:50%;
    transform:translateY(-50%);
    text-align:center;
}

.fa_pagefoot .fa_tit h6{
    font-size:var(--f36);
    color:#fff;
}
.fa_pagefoot .fa_tit h6:after{
    display:block;
    content:"";
    height:2px;
    background:var(--main-color);
    margin:20px auto 0;
    width:50px;
}
@media screen and (min-width: 769px) {
   .fa_contact .fa_wrapper{
       display:flex;
   }
    .fa_contact .fa_left{
        width:50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-right: 5vw;
    }
    .fa_contact .fa_right{
        width:50%;
    }
    .fa_message .fa_form form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .fa_message .fa_form form>div {
        width: 100%;
        margin-top: 10px;
    }
    .fa_message .fa_form form>div:nth-last-child(-n+2) {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .fa_message{
        border-radius:10px;
        margin-top:30px;
    }
}


/**/

.fa_video .fa_li {
    padding: 10px;
    border: #ddd solid 1px;
}

.fa_video .fa_Img {
    padding-bottom: 60%;
}

.fa_video .fa_link {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    opacity: 0;
    font-size: 30px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.fa_video .fa_info {
    padding: 20px 0;
}

.fa_video .fa_info h3 {
    font-size: var(--f20);
    color: #333;
}

.fa_video .fa_info p {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.fa_video .fa_li:hover .fa_link {
    opacity: 1;
}

.fa_link_a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    display: block;
    z-index: 10;
}


/**/

.fa_Faq .fa_wrapper {
    max-width: 1200px;
}

.fa_Faq .fa_li {
    position: relative;
    border-bottom: #eee 1px dashed;
    padding: 10px 0;
}

.fa_Faq .fa_li .fa_tt {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    /* border-bottom: #eee solid 1px; */
    align-items: center;
    padding-left: 40px;
}

.fa_Faq .fa_li .fa_tt h6 {
    font-size: 16px;
    color: #333;
    position: relative;
    width: calc(100% - 50px);
}

.fa_Faq .fa_li .fa_tt:before {
    content: "问";
    text-transform: uppercase;
    color: #fff;
    background: #999;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 12px;
    transform: translateY(-50%);
}

.fa_Faq .fa_li .fa_tt span {
    font-size: 20px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: all 0.5s;
    /* width: 50px; */
    text-align: right;
    /* transform-origin: center center; */
}

.fa_Faq .fa_li.fa_on .fa_tt span {
    transform: rotate(180deg);
}

.fa_Faq .fa_li .fa_cnt {
    display: none;
    /* padding:10px 0; */
    padding-left: 40px;
    position: relative;
}

.fa_Faq .fa_li .fa_cnt:before {
    content: "答";
    text-transform: uppercase;
    color: #fff;
    background: var(--main-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
}

.fa_Faq .fa_li .fa_cnt>div {
    font-size: 15px;
    line-height: 2;
    background: #f5f5f5;
    padding: 20px;
}


/**/

.fa_Formbox .fa_form input {
    background: #f5f5f5;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    border: none!important;
    box-shadow: none!important;
    width: 100%;
}

.fa_Formbox .fa_form textarea {
    background: #f5f5f5;
    padding: 10px 20px;
    line-height: 30px;
    font-size: 14px;
    border: none!important;
    box-shadow: none!important;
    width: 100%;
    display: block;
}

.fa_Formbox .fa_form button {
    display: block;
    padding: 0 30px;
    background: var(--main-color);
    color: #fff;
    line-height: 40px;
    border: none!important;
    box-shadow: none!important;
    margin: 0 auto;
    width: 180px;
    font-size: 14px;
}

.fa_Formbox .fa_form .fa_ttbox {
    margin-bottom: 20px;
    margin-top: 3vw;
}

.fa_Formbox .fa_form .fa_ttbox h2 {
    font-size: var(--f30);
    color: #333;
}

.fa_Formbox .fa_form .fa_ttbox h2:after {
    content: "";
    display: block;
    margin: 20px auto 0;
    height: 3px;
    background: var(--main-color);
    width: 50px;
}

.fa_Formbox .fa_form .fa_sum {
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
    color: #888;
}

.fa_form .fa_ckc {
    position: relative;
}

.fa_form .fa_ckc img {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    bottom: 0;
    height: 100%;
}

@media screen and (min-width: 769px) {
    .fa_Formbox .fa_form form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .fa_Formbox .fa_form form>div {
        width: calc((100% - 10px) / 2);
        margin-bottom: 10px;
    }
    .fa_Formbox .fa_form form>div:nth-last-child(-n+3) {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .fa_Formbox .fa_form form>div {
        margin-bottom: 10px;
    }
}


/**/

.fa_Advbox {}
.fa_Advbox .fa_adv01{
    background-image: url(../images/advbg01.jpg);
}
.fa_Advbox .fa_adv01 .fa_pic {
    border-radius: 5vw 1vw;
    overflow: hidden;
}
.fa_Advbox .fa_ttbox {
    margin-bottom:calc(2vw + 20px);
}
.fa_Advbox .fa_ttbox h3 {
    font-size: var(--f36);
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
}

.fa_Advbox .fa_ttbox h4 {
    font-size: var(--f24);
    color: var(--main-color);
}

.fa_Advbox .fa_adv01 .fa_cnt {
    margin-top: calc(2vw + 20px);
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.fa_Advbox .fa_adv02 {
    background-color: #fef3e1;
    background-image: url(../images/advbg02.jpg);
}

.fa_Advbox .fa_adv02 .fa_it {
    background: linear-gradient(45deg, #fef6e8, #fff);
    padding: 30px;
    position: relative;
    border-radius: 20px;
}

.fa_Advbox .fa_adv02 .fa_it span {
    display: block;
    width: 60px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 0.5;
    border-radius: 500px;
    padding: 10px;
    transition: all 0.5s;
}

.fa_Advbox .fa_adv02 .fa_it span img {
    width: 100%;
    transition: all 0.5s;
}

.fa_Advbox .fa_adv02 .fa_it h6 {
    font-size: var(--f20);
    color: var(--main-color);
    margin-bottom: 15px;
}

.fa_Advbox .fa_adv02 .fa_it li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #444;
}

.fa_Advbox .fa_adv02 .fa_it li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50px;
}
.fa_Advbox .fa_adv03{
    
    background-image: url(../images/advbg03.jpg);
}
.fa_Advbox .fa_adv03 .fa_it span{
    display: inline-block;
    width:50%;
    max-width:60px;
}
.fa_Advbox .fa_adv03 .fa_it span img{
    width:100%;
}
.fa_Advbox .fa_adv03 .fa_it{
    background: rgba(255,255,255,0.6);
    padding: 30px;
    border: rgba(223, 73, 27,0.2) solid 1px;
    transition:all 0.5s;
    border-radius:10px;
    box-shadow: 0px 10px 23px 0px rgba(0,0,0,0.1);
}

.fa_Advbox .fa_adv03 .fa_it:hover{
    background:#fef9f1;
}
.fa_Advbox .fa_adv03 .fa_it h6{
    font-size:var(--f20);
    margin-top:30px;
    margin-bottom:10px;
    transition:all 0.5s;
}

.fa_Advbox .fa_adv03 .fa_it:hover h6{
    color:var(--main-color);
}
.fa_Advbox .fa_adv03 .fa_it  .fa_sum{
    font-size:14px;
    color:#666;
}
.fa_Advbox .fa_adv04 .fa_it{
    display:flex;
        align-items:flex-start;
}
.fa_Advbox .fa_adv04 .fa_it .fa_tit{
    width:calc(100% - 70px);
    padding-left:calc(10px + 1.5vw);
}
.fa_Advbox .fa_adv04 .fa_it .fa_ico{
    width:70px;
    padding:10px;
    background:var(--main-color);
    border-radius:500px;
}
.fa_Advbox .fa_adv04 .fa_it .fa_tit h6{
    color:var(--main-color);
    font-size:var(--f22);
}
.fa_Advbox .fa_adv04 .fa_it .fa_tit p{
    font-size:16px;
    color:#666;
    margin-top: 5px;
}
@media screen and (min-width: 769px) {
    .fa_Advbox .fa_adv01 .fa_wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        ;
    }
    .fa_Advbox .fa_adv01 .fa_left {
        width: 45%;
        position: relative;
    }
    .fa_Advbox .fa_adv01 .fa_right {
        width: 50%;
        padding-right: 5vw;
    }
    .fa_Advbox .fa_adv01 .fa_left:before {
        content: "";
        position: absolute;
        left: -5vw;
        width: 10vw;
        height: 6vw;
        top: -2vw;
        background: linear-gradient(90deg, transparent, var(--main-color));
        border-radius: 0 500px 500px 0;
    }
    .fa_Advbox .fa_adv01 .fa_left:after {
        content: "";
        position: absolute;
        right: -5vw;
        width: 10vw;
        height: 6vw;
        bottom: -2vw;
        background: linear-gradient(90deg, var(--main-color), transparent);
        border-radius: 500px 0 0 500px;
    }
    .fa_Advbox .fa_adv01 .fa_cnt {
        /* padding-left: 5vw; */
        position: relative;
    }
    .fa_Advbox .fa_adv02 .fa_list { 
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 30px;
    }
    .fa_Advbox .fa_adv02 .fa_list .fa_it {
        width: calc((100% - 40px) / 4);
        margin: 10px 0;
        padding-bottom: 90px;
    }
    .fa_Advbox .fa_adv02 .fa_it:hover span {
        background: var(--main-color);
        opacity: 1;
    }
    .fa_Advbox .fa_adv02 .fa_it:hover span img {
        filter: brightness(100);
    }
    .fa_Advbox .fa_adv03 .fa_list,.fa_Advbox .fa_adv04 .fa_list {
        display:flex;
        justify-content:space-between;
        flex-wrap:wrap;
    }
    .fa_Advbox .fa_adv03 .fa_it{
        width:calc((100% - 100px) / 5);
    }
    .fa_Advbox .fa_adv04 .fa_it{ 
        width:calc((100% - 100px) / 4);
    }
}

@media screen and (max-width: 768px) {
    .fa_Advbox .fa_adv01 .fa_left {
        margin-top: 20px;
    }
    .fa_Advbox .fa_adv01 .fa_cnt {
        font-size: 14px;
    }
    .fa_Advbox .fa_adv02 .fa_it {
        border-radius: 10px;
        margin-top: 20px;
    }
    .fa_Advbox .fa_adv02 .fa_it li {
        font-size: 14px;
    }
    .fa_Advbox .fa_ttbox h4 {
        font-size: 16px;
    }
    .fa_Advbox .fa_adv03 .fa_it{
        padding:20px;
        margin-bottom:20px;
    }
    .fa_Advbox .fa_adv03 .fa_it h6{
        font-size:16px;
    }
    .fa_Advbox .fa_adv03 .fa_it p{
        font-size:14px;
    }
    .fa_Advbox .fa_adv04 .fa_it{
        margin-top:20px;
        background: #fcf9f4;
        padding: 20px;
        border-radius: 15px;
    }
        
    .fa_Advbox .fa_adv04 .fa_it .fa_tit{
        width:calc(100% - 50px);
    }
    .fa_Advbox .fa_adv04 .fa_it .fa_ico{
        width:50px;
    }
    .fa_Advbox .fa_adv04 .fa_it .fa_tit h6{
        font-size:16px;
    }
    .fa_Advbox .fa_adv04 .fa_it .fa_tit p{
        font-size:14px;
    }
}