/*页面主体内容的宽度*/
.pageWidth {
    width: 1200px;
    margin: 0 auto;
}

.section {
    overflow: hidden;
    position: relative;
}

/* 页面公共按钮-start */
.submitButton {
    width: 272px;
    height: 48px;
    background: linear-gradient(94deg, #FD915F 0%, #FE6462 100%);
    box-shadow: 2px 4px 10px rgba(254, 100, 98, 0.2);
    border-radius: 10px;
    font-size: 20px;
    color: #fff;
    border: none;
    display: block;
    cursor: pointer;
    text-align: center;
}

/* 页面公共按钮-end */

/*错误信息提示-start*/
.errorTips {
    position: fixed;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    width: 500px;
    top: 50%;
    margin-top: -20px;
    left: 50%;
    margin-left: -250px;
    z-index: 9999;
    border-radius: 5px;
    display: none;
}

/*错误信息提示-end*/

/*css3-多选、单选框样式-start*/
.formGlobal .form-radio {
    display: flex;
}

.formGlobal label {
    /*flex布局让子元素水平垂直居中*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 18px;
    color: #181818;
}

.formGlobal label:last-child {
    margin-right: 0;
}

.formGlobal input[type=radio] {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    width: 17px;
    height: 17px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #DFDFDF;
    position: relative;
    text-align: center;
    margin-right: 8px;
}

.formGlobal input[type=radio]:checked::after {
    content: "\2713";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    background: #FE7060;
    border: 1px solid #FE7060;
    line-height: 15px;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
}

.formGlobal input[type=radio],
.formGlobal input[type=radio]:checked::after {
    border-radius: 5px;
}

/*css3-多选、单选框样式-end*/

/**整屏切换动画-切换焦点-start*/
/* #fp-nav {
    position: fixed;
    z-index: 20;
    right: 30px;
    bottom: 400px;
    font-size: 12px;
} */

#fp-nav li {
    position: relative;
    padding-right: 20px;
    margin-bottom: 10px;
    line-height: 12px;
    height: 12px;
}

#fp-nav li a {
    position: absolute;
    top: 3px;
    right: 0;
    width: 12px;
    height: 12px;
    color: #8F9DA4;
    text-decoration: none;
    text-align: right;
    /* border: 1px solid rgba(235, 108, 108, 0.5); */
    border: 1px solid #FD7825;
    border-radius: 50%;
}

#fp-nav li .active {
    background: #FD7825;
}

#fp-nav span {
    display: none;
}

.fp-tooltip {
    display: none;
    padding-right: 5px;
    background: url("../../common/images/sliderRight.png") right center no-repeat;
    font-size: 12px;
    color: #fff;
    position: relative;
    z-index: 10;
}

.fp-tooltip p {
    padding: 6px 10px;
    background: #FD7825;
    /* box-shadow: 0px 0px 10px rgba(43, 43, 43, 0.2); */
    border-radius: 5px;
    color: #fff;
}

#fp-nav li:hover .fp-tooltip {
    display: block;
}

#fp-nav li.liType a {
    border: 1px solid #fff;
}

#fp-nav li.liType .active {
    background: #fff;
}

#fp-nav li.liType .fp-tooltip {
    color: #FD7825;
}

#fp-nav li.liType .fp-tooltip p {
    background: #fff;
    color: #FD7825;
}

#fp-nav li.liType .fp-tooltip {
    background: url("../../common/images/sliderRight1.png") right center no-repeat;
}

/**整屏切换动画-切换焦点-end*/

/*header样式-start*/
header {
    height: 70px;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 100;
    width: 100%;
    /* overflow: hidden; */
}

.headerHeight {
    height: 70px;
}

header .headerDiv {
    position: relative;
    height: 70px;
    width: 100%;

}

header .pageWidth {
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
}

header .headerBg {
    background: rgba(255, 255, 255, 1);
    position: absolute;
    top: -300px;
    left: 0;
    height: 70px;
    width: 100%;
    /* box-shadow: 0px 3px 10px rgba(190, 190, 190, 0.30); */
    box-shadow: 0px 3px 10px 1px rgba(255, 187, 168, 0.1);
}


/* header .headerBg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #BFBFBF;
    box-shadow: 0px 3px 6px rgba(159, 159, 159, 0.16);
    filter: blur(6px);
} */

header .logo .img1 {
    display: block;
}

header .logo .img2,
header .logo .img3 {
    display: none;
}

header .logoActive .img1,
header .logoActive .img3 {
    display: none;
}

header .logoActive .img2 {
    display: block;
}

header .logo img {
    /* width: 134px; */
}

/**顶部固定-start*/
.headerFixed {
    position: fixed;
}

.headerFixed .headerBg {
    top: 0;
}

.headerFixed .headerNav li a {
    color: #929292;
}

/* .headerFixed .headerNav li a.active,
.headerFixed .headerNav li a:hover {
    color: #FD7825;
}

.headerFixed .headerNav .bottomLine {
    position: absolute;
    bottom: 0;
    background-color: #FD7825;
    transition: all 0.3s ease;
    height: 1px;
    width: 36px;
} */

/**顶部固定-end*/

.headerNav {
    margin-left: auto;
    display: flex;
    height: 38px;
    align-items: center;
}

.headerNav li {
    float: left;
}

.headerNav li a {
    display: inline-block;
    /* margin-left: 78px; */
    font-size: 16px;
    color: #88776F;
    padding: 4px 28px;
    border-bottom: 1px solid transparent;
}

.headerNav li a.active,
.headerNav li a:hover {
    color: #FD7825;
    /* border-bottom: 1px solid #fff; */
}

.headerNav ul {
    position: relative;
}

.headerNav .bottomLine {
    position: absolute;
    /* left: 39px; */
    bottom: 0;
    background-color: #FD7825;
    transition: all 0.3s ease;
    height: 1px;
    width: 36px;
}

.headerNav a img {
    position: relative;
    top: 5px;
}

/* .headerNav.navActive li a {
    color: #929292;
} */

/* .headerNav.navActive li a.active,
.headerNav.navActive li a:hover {
    color: #FD7825;
}

.headerNav.navActive .bottomLine {
    position: absolute;
    bottom: 0;
    background-color: #FD7825;
    transition: all 0.3s ease;
    height: 1px;
    width: 36px;
} */

.headerNav .createAccountBtn {
    width: 90px;
    height: 35px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: 39px;
    background: linear-gradient(90deg, #FF925E 0%, #FF6363 100%);
    color: #fff;
    transition: all 0.3s ease;
}

.headerNav .createAccountBtn:hover {
    box-shadow: 0px 6px 8px rgba(255, 99, 99, 0.3);
}

/* 首页-创建账号按钮 */
.agent .headerNav .createAccountBtn,
.aboutUs .headerNav .createAccountBtn {
    width: 90px;
    height: 35px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: 39px;
    background: #fff;
    color: #FF7461;
}

.agent .headerNav .createAccountBtn:hover,
.aboutUs .headerNav .createAccountBtn:hover {
    box-shadow: 0px 6px 8px rgba(253, 219, 168, 0.3);
}

.agent .headerNav.navActive .createAccountBtn,
.aboutUs .headerNav.navActive .createAccountBtn {
    width: 90px;
    height: 35px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: 39px;
    background: linear-gradient(90deg, #FF925E 0%, #FF6363 100%);
    color: #fff;
}

/*header样式-end*/

/*右侧固定浮窗-start*/
.sliderNavRight {
    position: fixed;
    bottom: 180px;
    right: 0;
    width: 112px;
    height: 130px;
    background: #FD7825;
    box-shadow: 0px 0px 10px rgba(43, 43, 43, 0.2);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.sliderNavRight .sliderItem {
    position: relative;
}

.sliderNavRight .sliderItem:nth-child(3) {
    display: none;
}

.sliderNavRight .returnTop {
    text-align: center;
}

.sliderNavRight .sliderItem .name {
    background: #FD7825;
    position: relative;
    z-index: 100;
}

.sliderNavRight .sliderItem:first-child .name {
    border-top-left-radius: 10px;
}

.sliderNavRight .sliderItem:last-child .name {
    border-bottom-left-radius: 10px;
}

.sliderNavRight .sliderItem .name>a {
    margin: 0 auto;
    display: flex;
    height: 41px;
    align-items: center;
    width: 90px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px;
    position: relative;
    z-index: 100;
    background: #FD7825;
}

.sliderNavRight .sliderItem:last-child .name>a {
    border-bottom: none;
}

.sliderNavRight .sliderItem .name>a img {
    margin-right: 2px;
}

.sliderNavRight .sliderItem>.sliderShow {
    position: absolute;
    top: 0;
    right: -132px;
    padding-right: 5px;
    width: 133px;
    background: url("../images/sliderRight.png") 127px center no-repeat;
    transition: all 0.5s ease;
}

.sliderNavRight .sliderItem:hover>.sliderShow {
    right: 112px;
}

.sliderNavRight .sliderItem .itemBg {
    width: 127px;
    background: #FD7825;
    /* box-shadow: 0px 0px 10px rgba(43, 43, 43, 0.2); */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    position: relative;
    z-index: 10;
}

.sliderNavRight .sliderItem .phoneSliderShow {
    top: 50%;
    margin-top: -15px;
}

.sliderNavRight .sliderItem .wxSliderShow {
    top: 50%;
    margin-top: -94px;
    background: url("../images/sliderRight.png") 127px 90px no-repeat;
}

.sliderNavRight .phoneSliderShow .itemBg {
    height: 30px;
}

.sliderNavRight .wxSliderShow .itemBg {
    height: 152px;
}

.sliderNavRight .sliderItem .phone img {
    width: 15px;
    margin-right: 5px;
}

.sliderNavRight .sliderItem .phone {
    color: #fff;

}

.sliderNavRight .sliderItem .ewm {
    text-align: center;
}

.sliderNavRight .sliderItem .ewm p {
    margin-top: 7px;
    color: #fff;
    font-size: 12px;
}

/*右侧固定浮窗-end*/

/* footer-start */
.footerTop {
    height: 135px;
    background: #4E4E4E;
}

.footerTop .pageWidth {
    padding-top: 23px;
}

.footerNav {
    display: flex;
    height: 19px;
    align-items: center;
    margin: 0 0 16px 0;
}

.footerNav .logo a {
    font-size: 20px;
    font-weight: bold;
    color: #FD7825;
}

.footerNavItem {
    margin-left: auto;
    display: flex;
    height: 38px;
    align-items: center;
}

.footerNav li {
    float: left;
}

.footerNav li a {
    display: inline-block;
    line-height: 26px;
    margin-left: 58px;
    font-size: 16px;
    color: #FD7825;
    border-bottom: 1px solid transparent;
}

.footerNav li a.active,
.footerNav li a:hover {
    border-bottom: 1px solid #FD7825;
}

.footerDiv .aboutUs h4 {
    font-size: 18px;
    color: #F8F8F8;
    margin-bottom: 6px;
}

.footerDiv .aboutUs p {
    font-size: 14px;
    color: #D2D2D2;
    line-height: 21px;
}

footer .Copyright {
    font-size: 12px;
    color: #848484;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #292929;
}

footer .Copyright a {
    display: inline-block;
    color: #848484;
}

footer .Copyright a:hover {
    color: #FD7825;
}

/* footer-end */

/*了解更多按钮-start*/
.moreButton {
    display: flex;
    height: 44px;
    line-height: 44px;
    background: linear-gradient(90deg, #FF925E 0%, #FF6363 100%);
    border-radius: 22px;
    font-size: 16px;
    color: #fff;
    width: 135px;
    text-indent: 22px;
    transition: width 0.3s ease;
    position: relative;
}

.moreButton img {
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 22px;
}

.moreButton:hover {
    width: 150px;
}

/*了解更多按钮-end*/

/**返回顶部-start*/
.pageReturnTop {
    position: fixed;
    bottom: 240px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
    background: linear-gradient(90deg, #FF925E 0%, #FF6363 100%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 8px rgba(168, 168, 168, 0.5);
    opacity: 0;
}

.pageReturnTop img {
    width: 25px;
}

/**返回顶部-end*/


/* 提交成功弹窗-start */
.postSuccessLayout {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 110;
}

.postSuccessDiv {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 120;
}

.postSuccessLayout .layBg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    z-index: 110;
}

.postSuccessLayout .successBg {
    width: 413px;
    height: 316px;
    padding-top: 77px;
    position: relative;
    margin: 0 auto;
    z-index: 150;
}

.postSuccessLayout .successBg .ico img {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -82.5px;
}

.postSuccessLayout .successCon {
    width: 413px;
    height: 290px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(187, 187, 187, 0.2);
    border-radius: 20px;
    text-align: center;
}

.postSuccessLayout .successCon .title {
    padding-top: 85px;
    font-size: 28px;
    color: #181818;
    font-weight: bold;
    margin-bottom: 13px;
}

.postSuccessLayout .successCon p {
    font-size: 16px;
    color: #979797;
    line-height: 27px;
    margin-bottom: 35px;
}

.postSuccessLayout .submitButton {
    width: 272px;
    height: 48px;
    margin: 0 auto;
}

/* 提交成功弹窗-end */

/*SUT云支付合作意向申请表-start*/
.contactUsLayout {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.contactUsDiv {
    /* position: fixed; */
    width: 100%;
    height: 100%;
    /* top: 0;
    left: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* z-index: 110; */
}

.contactUsLayout .layBg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    z-index: 80;
}

.contactUsLayout .contactUsBg {
    width: 440px;
    height: 370px;
    background: #FFF;
    box-shadow: 0px 0px 15px rgba(187, 187, 187, 0.2);
    border-radius: 20px;
    padding: 40px 80px 50px 50px;
    position: relative;
    z-index: 130;
}

.contactUsLayout .contactUsBg .closeLayout {
    position: absolute;
    top: 17px;
    right: 17px;
}

.contactUsLayout .title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #181818;
}

.contactUsLayout .title p {
    font-size: 12px;
    color: #979797;
    margin: 5px 0 10px 0;
}

.contactUsLayout .formItem {
    display: flex;
    height: 47px;
    align-items: center;
    margin-bottom: 30px;
}

.contactUsLayout .form-role {
    margin-bottom: 15px;
}

.contactUsLayout .formItem .name {
    flex-basis: 60px;
    font-size: 18px;
    color: #181818;
    text-align: right;
    margin-right: 10px;
}

.contactUsLayout .form-input {
    height: 45px;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.contactUsLayout .form-input input {
    height: 45px;
    border: none;
    border-radius: 5px;
    text-indent: 15px;
    width: 100%;
}

.contactUsLayout .form-name .form-input {
    width: 204px;
    margin-right: 12px;
}

.contactUsLayout .form-phone .form-input {
    width: 358px;
}

.contactUsLayout .form-input input {
    color: #181818;
}

.contactUsLayout .submitButton {
    width: 272px;
    height: 48px;
    margin-left: 100px;
}

/*SUT云支付合作意向申请表-end*/