/* common 公共样式 */

main {
    animation: main_menu_item 0.4s ease-out;
}

@keyframes main_menu_item {
    0% {
        -webkit-transform: translate(0, 30px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        opacity: 1;
    }
}

input:focus {
    border-color: #dbb76b;
    outline: none;
    box-shadow: none;
}

input {
    border: 1px solid #979797;
    border-radius: 4px;
    padding: 12px 24px;
}

.blockBor {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #eaebee 50%, #ffffff 100%);
    margin-left: 20px;
    position: absolute;
    right: 0;
    top: 0;
}

.sectionGrayBg {
    background-color: rgba(245, 247, 250, 1);
}

.sectionWhiteBg {
    background-color: rgb(255, 255, 255);
}

.h-group h1 {
    font-size: 32px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #ddb96c;
    line-height: 45px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.h-group h2 {
    font-size: 16px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #6d7278;
    line-height: 22px;
    letter-spacing: 1px;
}

.piercedBtnClass,
.bespreadBtnClass {
    border-radius: 4px;
    padding: 10px 32px 10px 16px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    position: relative;
    border: 1px solid #ddb96c;
}

.piercedBtnClass::after,
.bespreadBtnClass::after {
    content: '>';
    position: absolute;
    right: 16px;
    font-size: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.clearfix::after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    visibility: hidden;
    opacity: 0;
    clear: both;
}


/* 镂空按钮 */

.piercedBtnClass {
    border: 1px solid #ddb96c;
    padding: 10px 32px 10px 16px;
    color: #ddb96c;
}


/* 铺满按钮 */

.bespreadBtnClass {
    color: #fff;
    background: #ddb96c;
}

.textH2Indeent {
    text-indent: 32px;
}


/* header */

header {
    position: fixed;
    left: 0;
    top: 0;
    height: 110px;
    z-index: 2000;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
}

header .line {
    height: 2px;
    border: none;
    background: #ddb96c 45%;
}

.headerScroll {
    /* background-color: #FFFFFF; */
    color: rgba(47, 49, 49, 1);
    /* box-shadow: 0px 10px 50px 0px rgba(39, 39, 39, 0.11); */
    background: #fafafa;
}

.headerScroll .headNavLi a,
.headerScroll .headNavLi span {
    color: rgba(47, 49, 49, 1);
}

.backIconClass {
    display: none;
}

.whiteIconClass {
    display: inline-block;
}

.headerScroll .headNavLi .backIconClass {
    display: inline-block;
}

.headerScroll .headNavLi .whiteIconClass {
    display: none;
}

.headerScroll .inner span {
    color: #ddb96c;
}

.headerScroll .headNavLi.active a {
    /* color: #007AFF !important; */
}

header .logo {
    margin-top: 38px;
    margin-bottom: 14px;
}

header .logo .logoA {
    width: 251px;
    height: 59px;
    background-repeat: no-repeat;
    background-size: cover;
}

header .logo a.act1 {
    display: block;
    background-image: url(/assets/img/logoplus.png);
}

.headerScroll a.act1 {
    display: none !important;
}

header .logo a.act2 {
    display: none;
    background-image: url(/assets/img/logo.png);
}

.headerScroll a.act2 {
    display: block !important;
}

header .nav {
    margin-top: 28px;
}

header .nav .inner {
    margin-right: 32px;
}

header .nav span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

header .innerIcon {
    width: 92px;
    height: 12px;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-size: cover;
}

div .innerIcon.act1 {
    display: block;
    background-image: url(/assets/img/phone.gif);
}

.headerScroll .innerIcon.act1 {
    display: none !important;
}

header .innerIcon.act2 {
    display: none;
    background-image: url(/assets/img/phone.gif);
}

.headerScroll .innerIcon.act2 {
    display: block !important;
}

header ul.headNav {
    flex-wrap: nowrap;
}

header ul.headNav li.headNavLi {
    margin-right: 32px;
    overflow: hidden;
    height: 33px;
}

header ul.headNav li:last-child {
    margin-right: 0;
}

header ul.headNav li a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

header .headNavLi .spanNav {
    position: relative;
    display: inline-block;
    transition: all ease-out 0.3s;
}

header .headNavLi .spanNav:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #ddb96c;
    content: attr(data-title);
    transform: translateY(150%);
}

header .headNavLi .downNavIcon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-left: 4px;
}

header .headNavLi .upNavIcon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-left: 4px;
    transform: translateY(200%);
    z-index: 20;
    display: none;
}

header .headNavLi:hover .upNavIcon {
    display: inline-block;
}

header .headNavLi:hover .downNavIcon {
    display: none;
}

header .headNavLi .ipos {
    position: relative;
}

header .headNavLi .ipos i {
    display: none;
    position: absolute;
    margin-top: 8px;
    left: 50%;
    margin-left: -22px;
    width: 44px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

header .headNavLi:hover .ipos i {
    background: #ddb96c;
}

header li.active.headNavLi .ipos i {
    display: block;
}

header .selected .ipos i {
    display: block;
}

.headerScroll .selected .spanNav {
    /* color:#DDB96C; */
}

.headerScroll .selected .ipos i {
    background: #ddb96c;
}

header .headNavLi:hover .spanNav {
    transform: translateY(-150%);
}

header .headNavMenu {
    display: none;
    position: absolute;
    left: 0;
    background: #f1f2f5;
    color: #2f3131;
    padding-top: 20px;
    margin-top: 11px;
    box-shadow: inset 0px 10px 50px -15px rgba(39, 39, 39, 0.11);
}

header .headNavMenu .navSonLi {
    display: none;
    margin-bottom: 12px;
}

header .atLeft {
    padding-right: 24px;
    position: relative;
    width: 50%;
}

header .atLeft::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgb(109, 117, 122, 0.2);
    height: 100%;
    width: 1px;
}

header .atRight {
    padding-left: 24px;
    width: 50%;
}

header img.case-tab-img {
    width: 100%;
    padding: 5px;
    background: #fff;
    transition: all 0.3s linear;
    border-radius: 4px;
}

header img.case-tab-img:hover {
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.2), -8px -8px 20px 0 #fff;
    transition: all 0.3s linear;
}

header .atRight ul {
    /* border-left: 1px solid rgba(109, 117, 122, 0.2); */
}

header .navSonLi .atRight .title {
    margin-left: 30px;
}

header .navSonLi .innerLi {
    position: relative;
    width: 274px;
    min-height: 72px;
    padding: 10px;
    align-items: flex-start;
    overflow: hidden;
    flex-wrap: nowrap;
}

header .navSonLi .innerLi img {
    width: 48px;
    margin-right: 10px;
    flex-shrink: 0;
}

header .atLeft .innerLi h1,
header .atRight .innerLi h1 {
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
}

header .atLeft .innerLi h1 {
    color: #ddb96c;
}

header .atRight .innerLi h1 {
    color: #01438d;
}

header .navSonLi .innerLi h2 {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(109, 117, 122, 1);
    /* white-space: nowrap; */
}

.case-nav-info {
    margin-top: 24px;
    border-top: 1px solid #e2e3e4;
    margin-top: 24px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    display: none;
}

.case-nav-info a.moreCaseA {
    color: #6c7479 !important;
    font-size: 14px;
    font-weight: 400;
}

.case-nav-info:hover a.moreCaseA {
    color: #dbb76b !important;
}

header .navSonLi .innerLi .iconGo {
    /* display: none; */
    opacity: 0;
    flex-shrink: 0;
    margin-left: 8px;
    width: 16px;
    height: 13px;
    background-image: url(/assets/img/menu_hoverRight.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 100;
    transition: all ease-out 0.2s;
}

header .navSonLi .innerLi .otherIcon {
    /* display: none; */
    opacity: 0;
    flex-shrink: 0;
    margin-left: 24px;
    width: 16px;
    height: 13px;
    background-image: url(/assets/img/menu_hoverRight2.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 100;
    transition: all ease-out 0.2s;
}

header .navSonLi .menuLi.active {
    background: linear-gradient(0deg, #ffffff 0%, #f3f5f8 100%);
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.2), -8px -8px 20px 0 #fff;
    border-radius: 4px;
    transition: all 0.3s linear;
    transform: translateY(-5px);
}

.product-li-content .caseSecondItem {
    padding: 8px 8px 0px 8px;
    border-radius: 4px;
}

.product-li-content .coreShadow {
    background-color: #fff;
    transition: all 0.3s linear;
    /* border: 4px solid #fff; */
}

.product-li-content .coreShadow:hover {
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.2), -8px -8px 20px 0 #fff;
    transition: all 0.3s linear;
}

header .navSonLi .menuLi.active .iconGo {
    transform: translateX(-4px);
    /* display: block; */
    opacity: 1;
}

header .navSonLi .menuLi.active .otherIcon {
    transform: translateX(-4px);
    /* display: block; */
    opacity: 1;
}

header .navSonLi .atRight .innerLi,
header .navSonLi .atLeft .innerLi {
    display: block;
}

header .navSonLi .atRight ul {
    /* padding-left: 30px; */
}

header .navSonLi ul {
    flex-wrap: wrap;
    justify-content: space-between;
}

header .navSonLi li {
    /* margin-left: 9px; */
    margin-top: 20px;
}

header .navSonLi li.anotherActive {
    background: linear-gradient(0deg, #ffffff 0%, #f3f5f8 100%);
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.1), -8px -8px 20px 0 #fff;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid #fff;
    transform: translateY(-5px);
}

header .navSonLi em {
    display: block;
    width: 2px;
    height: 11px;
    background-color: #ddb96c;
    margin-right: 5px;
}

.head-show {
    animation: a_menu_item_show 0.4s ease-out both;
    animation-delay: 0.2s;
}

@keyframes a_menu_item_show {
    0% {
        -webkit-transform: translate(0px, -30px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        opacity: 1;
    }
}

.head-bg-show {
    animation: a_menu_item_bg_show 0.3s ease-out both;
    /* animation-delay:.2s; */
}

@keyframes a_menu_item_bg_show {
    0% {
        -webkit-transform: translate(0px, -30px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        opacity: 1;
    }
}


/* 改版样式s */

.product-nav-title {
    font-size: 14px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #6d757a;
    line-height: 20px;
    position: relative;
    padding-left: 8px;
    margin-bottom: 28px;
}

.product-nav-title::before {
    content: '';
    width: 2px;
    height: 11px;
    background-color: #dbb76b;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.product-li-content {
    display: flex;
    margin-bottom: 12px;
}

.a-li-info {
    cursor: pointer;
    width: 33.3%;
}

.product-li-content .moreBtnProd {
    border-radius: 4px;
    padding: 10px 32px 10px 16px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    position: relative;
    background-color: #ddb96c;
    color: #ffffff;
    display: inline;
    position: relative;
    bottom: 28px;
    left: 40px;
}

.product-li-content .moreBtnProd::after {
    content: '>';
    position: absolute;
    right: 16px;
    font-size: 15px;
}

.product-li-content .p-left-content,
.product-li-content .p-right-content {
    /* width: 50%; */
    cursor: pointer;
}

.product-li-content .p-left-content {
    border-radius: 4px;
    /* padding: 0 10px; */
    margin: 10px;
    height: 93%;
    position: relative;
}

.product-li-content .p-right-content {
    /* padding: 0 10px; */
    height: 93%;
    margin: 10px;
}

.product-li-content .cCenterInfo {
    /* padding: 0 10px; */
    height: 93%;
    margin: 10px;
    position: relative;
}

@media (max-width: 1180px) {
    .product-li-content .p-left-content {
        height: 87%;
    }
    .product-li-content .p-right-content {
        height: 87%;
    }
    .product-li-content .cCenterInfo {
        height: 87%;
    }
}

.product-li-content .cCenterInfo::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgb(109, 117, 122, 0.2);
    height: 100%;
    /* width: 1px; */
}

.product-li-content .cCenterInfo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(109, 117, 122, 0.2);
    height: 100%;
    /* width: 1px; */
}

.caseTopContent {
    position: relative;
}

.caseTopContent .case-bg-img {
    width: 100%;
    /* border: 4px solid #fff; */
    position: absolute;
}

.caseTopContent .case-text-c {
    position: relative;
    z-index: 20;
    padding: 34px 24px;
}

.case-text-c .case-t-h2 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    line-height: 45px;
    letter-spacing: 2px;
    margin-bottom: 9px;
}

.case-text-c .case-t-h3 {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 20px;
    letter-spacing: 1px;
}

.product-li-content .p-left-content img {
    width: 100%;
}

.product-li-content .p-right-content img {
    width: 100%;
}


/* 改版样式e */


/* header */


/* main */


/* banner è½®æ’­ */

main {
    position: relative;
}

#closeBanner {
    width: 32px;
    height: 32px;
    display: block;
    background-image: url(/assets/img/banner_close.png);
    position: absolute;
    right: 14px;
    top: 16px;
    /* z-index: 2000; */
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.maskVideoBox {
    width: 61.6%;
    height: 16.3%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.z2000 {
    z-index: 2000;
}

#play {
    width: 48px !important;
    height: 48px !important;
    /* margin-left: -32px !important; */
    padding: 0 !important;
    top: 55%;
    z-index: 100;
    cursor: pointer;
    position: static;
    margin-left: 0;
}

.maskVideoBox video {
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: 100% !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
}

.bannerTop {
    height: 648px;
    position: relative;
    overflow: hidden;
}

.swiperbannerTop {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.bannerTop img.banBgImg {
    /* object-fit: cover;
	position: absolute;
	left: 50%;
	top: 0; */
    margin: 0 auto;
    width: 1920px;
    height: 648px;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -960px;
}

.swiperbannerTop img {
    width: 1920px;
    height: 400px;
    /* margin-left: -960px; */
}

.b-play-container {
    object-fit: cover;
    position: absolute;
    z-index: 9999;
    left: 0;
    top: 60%;
    width: 100%;
    text-align: center;
}

.bannerTop video {
    width: 1920px;
    height: 648px;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -960px;
}

.bannerTop .bgTempClass {
    width: 1920px;
    height: 648px;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -960px;
}

.bannerTop .bgTempClass video {
    margin-left: 0;
}

.bannerTop .mask {
    /* background: rgba(0, 0, 0, 0.4); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

#myswiper1 {
    position: relative;
    height: 648px;
}

.swiperbannerTop #myswiper1 {
    height: 400px !important;
}

#myswiper1 .swiper-wrapper {
    position: relative;
}

#myswiper1 .swiper-wrapper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background: rgba(216, 216, 216, 1);
    border-radius: 0;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ddb96c;
}


/* 
.bannerTop p {
	text-align: center;
	position: absolute;
	z-index: 1000;
}

.swiperbannerTop p {
	text-align: center;
	position: absolute;
	z-index: 1000;
} */

.b-container-text {
    width: 100%;
    position: absolute;
    top: 32%;
    /* left: 0%; */
    height: auto;
    text-align: center;
    z-index: 9999;
    padding: 0 15px;
}

.b-container-text p.text1 {
    margin-bottom: 12px;
}

.tibs {
    opacity: 0;
    transition: all 0.4s;
}

.danru {
    /* æ·¡å…¥æ•ˆæžœ */
    opacity: 1;
    transform: translateY(-10px);
}

.text1 {
    top: 268px;
    font-size: 52px;
    font-weight: 600;
    color: #dbb76b;
}

.text2 {
    top: 342px;
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.content-img {
    width: 100%;
}

.swiperTxt1 {
    font-weight: 600;
    font-size: 52px;
    top: 200px;
    color: #ffffff;
}

.pTxt1 {
    font-weight: 600;
    font-size: 52px;
    color: #ffffff;
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.pTxt2 {
    font-size: 28px;
    font-weight: 400;
    top: 260px;
    color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.swiperTxt2 {
    font-size: 28px;
    font-weight: 400;
    top: 290px;
    color: #ffffff;
}

.btnCall {
    position: absolute;
    z-index: 1000;
    left: 50%;
    margin-left: -60px;
    top: 492px;
    width: 120px;
    height: 46px;
    background: #dbb76b;
    border-radius: 4px;
}

.btnCall a {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}

.swiperImg {
    width: 1920px;
    height: 648px;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -960px;
}


/* banner è½®æ’­ */


/* å›ºå®šçš„æ‚¬æµ® è”ç³»æ–¹å¼ banner  */

.bannerCall {
    position: fixed;
    top: 35%;
    right: 10px;
    z-index: 100;
}

.innerBox {
    width: 108px;
    height: 351px;
    background-image: url(/assets/img/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.innerBox p {
    text-align: right;
}

.innerBox p span {
    cursor: pointer;
    color: #ddb96c;
}

.innerBox .item1 {
    margin-top: -6px;
}

.innerBox .item2 i {
    display: block;
    width: 19px;
    height: 16px;
    background-image: url(/assets/img/i08.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 4px;
}

.innerBox .item2 span {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    margin-top: 4px;
}

.innerBox .phoneNumber {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    margin-top: 7px;
}

.innerBox .phoneNumber::selection {
    color: 1c6bff;
    background-color: #ffffff;
}

.innerBox .item3 {
    margin-top: 17px;
}

.innerBox .item3 a {
    margin: 0 auto;
    display: block;
    width: 84px;
    height: 26px;
    line-height: 26px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 12px 0px rgba(28, 107, 255, 0.5);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 400;
    color: #ddb96c;
}

.innerBox .mar {
    margin-top: 11px !important;
}

.innerBox .item4 {
    margin: 0 auto;
    margin-top: 12px;
    width: 88px;
    height: 88px;
}

.innerBox .item4 img {
    width: 95%;
}

.callWe {
    position: fixed;
    right: 5px;
    top: 35%;
    z-index: 100;
}


/* 联系客户模块 s */

.lianxiwomen {
    position: fixed;
    right: 5px;
    bottom: 8%;
    z-index: 9999;
}

.lianxibg {
    width: 150px;
    height: 275px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 12px 60px 0px rgba(39, 39, 39, 0.1);
    border-radius: 10px;
    padding: 20px 10px 0 10px;
    position: relative;
    /* animation:myfirst 5s forwards; */
}


/* @keyframes myfirst
{
	from {background: red;}
	to {background: yellow;}
} */

.l-containe-info {
    position: fixed;
    right: 5px;
    bottom: 0;
    z-index: 9999;
}

#showLinePage {
    display: none;
    /* margin-top:482px; */
    width: 140px;
}

.lianxitx {
    display: block;
    width: 106px;
    height: 106px;
    background-image: url(/assets/img/IM_head.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
}

.lianxiNub {
    height: 41px;
    background: rgba(245, 247, 250, 1);
    border-radius: 5px;
}

.dianhua {
    display: block;
    width: 16px;
    height: 12px;
    background-image: url(/assets/img/IM_phone.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 8px;
}

.lianxiA {
    height: 36px;
    border-radius: 5px;
    display: block;
    margin-top: 8px;
    cursor: pointer;
}

.lianxiA1 {
    background-color: #ddb96c;
}

.lianxiA2 {
    background-color: #3aca71;
}

.imcode {
    display: none;
    position: absolute;
    top: 56%;
    left: -130px;
    transform: translateY(-50%);
    width: 122px;
    height: 158px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 10px 50px 0px rgba(39, 39, 39, 0.1);
    border-radius: 8px;
}

.lianxiA2:hover .imcode {
    display: block;
}

.lianxiA3 {
    background-color: #ee685d;
}

.im01 {
    display: block;
    width: 13px;
    height: 12px;
    background-image: url(/assets/img/IM_01.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 10px;
}

.im02 {
    display: block;
    width: 15px;
    height: 12px;
    background-image: url(/assets/img/IM_watch.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 10px;
}

.im03 {
    display: block;
    width: 13px;
    height: 14px;
    background-image: url(/assets/img/IM_money.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 10px;
}


/* 弹出输入框 s */


/* .sectionFrom.mobilePhone {
    display: none!important;
} */

.sectionFrom {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9000000;
    background: #9696968f;
    left: 0;
    top: 0;
    display: none;
}

.sectionFrom .from-container {
    position: fixed;
    top: 50%;
    width: 910px;
    height: 620px;
    background: #ffffff;
    left: 50%;
    z-index: 30;
    display: flex;
    /* padding: 65px 32px 34px 32px; */
    border-radius: 8px;
    transform: translate(-50%, -50%);
}

.sectionFrom .from-container .user-login-left {
    background: linear-gradient( rgb(249 218 150) 0%, rgb(233 172 44 / 97%) 100%);
    width: 400px;
    height: 100%;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 0 40px;
    color: #fff;
}

.sectionFrom .from-container .user-login-left h1 {
    font-weight: normal;
    line-height: 3px;
    margin: 0;
    padding-top: 120px;
    padding-bottom: 2px;
    color: #fff;
    text-align: inherit;
}

.sectionFrom .from-container .user-login-left p {
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 30px;
    padding-top: 30px;
    color: #fff;
}

.sectionFrom .from-container .user-login-left .companyImg {
    object-fit: scale-down;
    width: 100%;
}

.sectionFrom .from-container .user-login-right {
    padding: 0 48px;
    width: 56%;
}

.sectionFrom .from-container .user-login-right h2 {
    font-weight: normal;
    font-size: 25px;
    padding-top: 170px;
}

.user-login-right label {
    margin: 35px 0;
    background: #f5f7fa;
    border: 1px solid transparent;
    width: 95%;
    display: block;
}

.user-login-right label input {
    border-color: transparent;
    background: transparent;
    padding: 15px 16px;
    width: 100%;
    font-size: 16px;
}

.user-login-right .f-btn-c {
    background: linear-gradient(90deg, rgb(249 218 150) 0%, rgb(233 172 44 / 97%) 100%);
    text-align: center;
    padding: 15px 24px;
    margin: 65px 0;
    border-radius: 4px;
    cursor: pointer;
    width: 95%;
}

.user-login-right .f-btn-c span {
    font-size: 16px;
    font-family: AlibabaPuHuiTi-Regular, AlibabaPuHuiTi;
    font-weight: 400;
    color: #ffffff;
    line-height: 22px;
    margin-left: 4px;
    vertical-align: middle;
}

.user-login-right .problem {
    margin: 0 auto;
    text-align: center;
    margin-top: 160px;
}

.sectionFrom img.colseIocn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.from-container h1 {
    font-size: 32px;
    font-weight: bold;
    color: #dbb76b;
    line-height: 44px;
    text-align: center;
    margin-bottom: 32px;
}

.contactFrom label {
    display: block;
    margin-bottom: 24px;
    background: #f5f7fa;
    padding: 15px 24px;
    border-radius: 4px;
    border: 1px solid transparent;
    position: relative;
}

.contactFrom label.errorClass {
    border-color: red;
    color: red;
}

.errPhoneText {
    display: none;
}

.contactFrom label.errorClass .errPhoneText {
    position: absolute;
    bottom: -21px;
    right: 32px;
    color: red;
    display: block;
}

.contactFrom label.errorClass input {
    color: red;
}

.contactFrom label span {
    margin-right: 24px;
    width: 100px;
    display: inline-block;
}

.contactFrom label input {
    border-color: transparent;
    background: transparent;
}

.contactFrom .f-btn-c {
    background: #dbb76b;
    text-align: center;
    padding: 15px 24px;
    border-radius: 4px;
    cursor: pointer;
}

.contactFrom .f-btn-c img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.contactFrom .f-btn-c span {
    font-size: 16px;
    font-family: AlibabaPuHuiTi-Regular, AlibabaPuHuiTi;
    font-weight: 400;
    color: #ffffff;
    line-height: 22px;
    margin-left: 4px;
    vertical-align: middle;
}

.contactFrom input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #f5f7fa inset !important;
    /*  -webkit-text-fill-color: #fff !important; */
}

.down-info-c {
    text-align: center;
}

.down-info-c img.palacImg {
    width: 176px;
    height: 154px;
    margin-bottom: 32px;
}

.down-info-c h2 {
    font-size: 32px;
    font-family: AlibabaPuHuiTi-Bold, AlibabaPuHuiTi;
    font-weight: bold;
    color: #dbb76b;
    line-height: 44px;
    margin-bottom: 60px;
}

.down-info-c p.down-remind-text {
    font-size: 16px;
    font-family: AlibabaPuHuiTi-Regular, AlibabaPuHuiTi;
    font-weight: 400;
    color: #6d7278;
    line-height: 22px;
    margin-bottom: 16px;
}

.down-info-c p.down-remind-text span {
    color: #dbb76b;
}

.down-info-c .f-btn-c {
    background: #dbb76b;
    text-align: center;
    padding: 15px 24px;
    border-radius: 4px;
}

.down-info-c .f-btn-c img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.down-info-c .f-btn-c span {
    font-size: 16px;
    font-family: AlibabaPuHuiTi-Regular, AlibabaPuHuiTi;
    font-weight: 400;
    color: #ffffff;
    line-height: 22px;
    margin-left: 4px;
    vertical-align: middle;
}

.fromInputMark {
    display: block;
}

.fromDownMark {
    display: none;
}


/* å›ºå®šçš„è”ç³» banner  */


/* main */


/* footer */

footer {
    /* padding-bottom: 12px; */
    position: relative;
}

footer div.Box {
    padding-top: 48px;
}

footer ul.flexR li {
    margin-right: 112px;
}

footer ul.flexR li:last-child {
    margin-right: 0;
}

footer ul.flexR li dl dt {
    font-size: 16px;
    font-weight: 500;
    color: rgba(47, 49, 49, 1);
    line-height: 22px;
}

footer ul.flexR li dl dd {
    font-size: 14px;
    font-weight: 400;
    color: rgba(144, 146, 152, 1);
    line-height: 20px;
    margin-top: 16px;
}

footer ul.flexR li dl dd a:hover {
    color: #ddb96c;
}

footer ul.flexR li dl dd a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(144, 146, 152, 1);
    line-height: 20px;
    /* margin-top: 16px; */
}

footer ul.flexR li dl dd:nth-child(2) {
    margin-top: 24px;
}

footer hr {
    margin-top: 40px;
    border: none;
    height: 1px;
    background-color: #edeff1;
}

footer .footerEnd {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(144, 146, 152, 1);
    line-height: 17px;
}

footer dd.phoneNumber2 {
    /* color: #DDB96C !important; */
}

footer .colorActive {
    /* color: #DDB96C !important; */
}

footer .footerBanner {
    position: relative;
    height: 298px;
    overflow: hidden;
}

footer .footerBanner img {
    height: 298px;
    width: 100%;
    object-fit: cover;
}

footer .footerBanner div.w100 {
    position: absolute;
    z-index: 100;
    top: 72px;
    text-align: center;
}

footer .footerBanner p {
    font-size: 32px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

footer .footerBanner button {
    cursor: pointer;
    margin-top: 40px;
    width: 120px;
    height: 46px;
    background: #dbb76b;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}


/* footer */

.pc {
    display: block;
}

.Box {
    width: 1200px;
}

.img-box {
    width: 1400px;
    margin: 0 auto;
}

.isurl {
    background-color: #fafafa;
    font-size: 14px;
    font-weight: 400;
    color: rgba(47, 49, 49, 1);
    padding: 16px 0;
}

.innerH1 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #ddb96c;
    line-height: 45px;
}

.innerP {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    color: rgba(109, 117, 122, 1);
    line-height: 33px;
    margin-top: 8px;
}

@media screen and (max-width: 1250px) {
    .Box {
        width: 96% !important;
    }
}

@media screen and (max-width: 1050px) {
    .Box {
        width: 1050px !important;
    }
}

@media screen and (max-width: 1050px) {
    html {
        width: 1050px !important;
    }
}

@media screen and (max-width: 1050px) {
    body {
        width: 1050px !important;
    }
}

@media screen and (max-width: 1050px) {
    header {
        width: 1050px !important;
        position: absolute;
    }
}

@media screen and (max-width: 1050px) {
    main {
        width: 1050px !important;
    }
}

@media screen and (max-width: 1050px) {
    footer {
        width: 1050px !important;
    }
}

body {
    background-color: #ffffff;
    position: relative;
}


/* è¯¦æƒ…æ–°é—»æ ‡é¢˜ */

.urlTitle {
    padding: 16px 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(47, 49, 49, 1);
    line-height: 20px;
    background-color: #fafafa;
}


/* .Box a {
    color: #2f3131;
} */

.urlTitle span {
    color: #ddb96c;
}

.t-text-a {
    color: #2f3131;
}

.back_to_top {
    display: none;
}

.mobile-dom {
    display: none;
}

.mobile-img {
    display: none;
}

.web-img {
    display: block;
}

.web-dom {
    display: block;
}

.mobile-b-a {
    display: none;
}

.tabContainer {
    display: none;
}

.themeClassColor {
    /* color: #DBB76B!important; */
}


/* 页面输入框 s */

footer .footer-btn-container {
    background-color: #ffffff;
    /* padding: 15px 55px 21px 55px; */
    margin-bottom: 15px;
    background-image: url('/assets/img/apply-form-bg.png');
    /* width: 100%;
	object-fit: cover; */
    background-size: cover;
    height: 209px;
    position: relative;
    /* display: none; */
}

.fromMarkImg {
    z-index: 1000;
    width: 96px;
    height: auto;
    position: fixed;
    bottom: 60px;
    margin: 24px 0;
    cursor: pointer;
    display: none;
}

.footer-btn-container .rightFormImg {
    width: 201px;
    height: 203px;
    position: relative;
    top: -46px;
}

.footer-btn-container .right-f-info {
    position: absolute;
    top: 50%;
    left: 264px;
    transform: translateY(-50%);
}

.footer-btn-container .right-f-info h2 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-btn-container .right-f-info p {
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #ffffff;
}

.footer-btn-container .left-f-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.left-f-info .form-content {
    width: 270px;
    margin-right: 62px;
    /* position: absolute;
    bottom: 38px;
    right: 60px; */
}

.left-f-info .close-img-c {
    position: absolute;
    right: 0;
    top: 0;
}

.left-f-info .close-img-c img {
    width: 38px;
    height: 38px;
    cursor: pointer;
}

.footer-btn-content {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}

@media (max-width: 1200px) {
    .footer-btn-content {
        width: 100%;
    }
}

.form-content .phoneInputContent {
    background-color: #ffffff;
    border-radius: 4px;
    height: 38px;
    line-height: 38px;
    display: flex;
    margin-bottom: 8px;
}

.phoneInputContent .inputTitle {
    font-size: 14px;
    font-family: AlibabaPuHuiTi-Regular, AlibabaPuHuiTi;
    font-weight: 400;
    color: #242425;
    padding-left: 16px;
    /* padding-right: 27px; */
}

.form-content .phoneInputContent .inputText {
    border: 1px solid #fff;
    padding: 0 12px;
}

.form-content .btm-sumbt {
    height: 38px;
    line-height: 38px;
    background: linear-gradient( 90deg, rgba(255, 230, 176, 0.6) 0%, rgba(255, 178, 14, 0.12) 100%);
    border-radius: 4px;
    border: 1px solid rgba(254, 241, 214, 0.3);
    /* filter: blur(2px); */
    border-radius: 4px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
}

.form-content input:focus {
    border-color: #ffffff;
    outline: none;
    box-shadow: none;
}

.blockClassIm {
    display: block !important;
}

.fadeMarkClass {
    opacity: 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
    top: 50px;
}

.fadeInClass {
    opacity: 1;
    top: 0;
}

.relation-link {
    background-color: #fff;
    padding: 14px 0;
    margin: 12px 0;
    border-top: 2px solid #edeff1;
}

.relation-link .Box {
    padding-top: 0;
}

.section-content {
    display: flex;
}

.relation-link .line-left-text {
    font-size: 14px;
    line-height: 16px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #2f3131;
    margin-right: 24px;
}

.line-right-c {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.line-right-c .a-item {
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #6d757a;
    margin-right: 32px;
    margin-bottom: 16px;
}

.line-right-c .a-item:hover {
    color: #dbb76b;
}

.bannerPcText {
    display: block;
}

.bannerMobileText {
    display: none;
}


/* 去掉底部循环 */

.fBannerInfo {
    display: none !important;
}

.templeBlock {
    display: block;
}

.baiduBBridge {
    cursor: pointer;
}