/*动画*/
/*new index 动画效果*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
/*左边划入*/
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

/*右边 划入*/
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
/*下边划入*/
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
/*上边划入*/

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
/* opacity 0 到1 */
@-webkit-keyframes opacityFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacityFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.opacityFade {
    -webkit-animation-name: opacityFade;
    animation-name: opacityFade;
}


/*清除外边距*/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, figure, /*结构元素*/
dl, dt, dd, ul, ol, li, /*列表元素*/
fieldset, lengend, button, input, textarea, /*表单元素*/
th, td, /*表格元素*/
pre /*文本格式元素*/
{
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 16px;
}

/*清除内边距*/
ul, ol, menu {
    padding: 0;
}

/*重置列表元素*/
ul, ol {
    list-style: none;
}

/*将字体扶正*/
address, cite, dfn, em, var {
    font-style: normal;
}

/*清下划线*/
a {
    text-decoration: none;
    color: #666666;
}

/*鼠标略过a标签，显示下划线*/
a:hover {
    /*text-decoration: underline;*/
}

/*清浮动*/
.clear:after {
    content: '';
    display: block;
    clear: both;
}
/*隐藏滚动条*/
body { overflow: hidden;
    font-family: "Microsoft YaHei", "微软雅黑", Helvetica, "黑体", Arial, Tahoma;
    /*background: #f5f5f5;*/
    background: #dceef9;
}
.viewBox{
    min-height: 754px;
}

/*表格样式*/

 table {
    width: 100%;
    border-collapse: collapse;
    color: #888888;
    margin-bottom: 1rem;
}

 tr {
    border-bottom: 1px solid #eaeaea;
}

/*#investNew th{
	text-align: left;
}*/

thead tr td{
    font-weight: bold;
}
 th,td {
    box-sizing: border-box;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
}

 tbody tr:hover {
    color: #333;
}

 /*滚动条样式*/
.test{
    width: 50px;
    height: 200px;
    overflow: auto;
    float: left;
    margin: 5px;
    border: none;
}
.scrollbar{
    /*width: 30px;*/
    /*height:30px;*/
    margin: 0 auto;

}
.test-1::-webkit-scrollbar {/*滚动条整体样式*/
    /*width: 10px;     !*高宽分别对应横竖滚动条的尺寸*!*/
    /*height: 10px;*/
}
.test-1::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}
.test-1::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #EDEDED;
}

/*轮播图  css 覆盖*/
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #eaeaea!important;
    /*border:1px solid #007aff;*/
    opacity: 0.5!important;
}
.swiper-pagination-bullet-active {
    width: 9px !important;
    height: 9px!important;
    opacity: 1!important;
    background: #007aff!important;
}
.swiper-pagination1{
    position: absolute!important;
    z-index: 1!important;
    bottom: 10px !important;
    /* left: 50%; */
    width: 100%;
    text-align: center!important;
}
.swiper-pagination1 .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #eaeaea!important;
    /*border:1px solid #007aff;*/
    opacity: 0.5!important;
}
.swiper-pagination1 .swiper-pagination-bullet-active{
    width: 9px !important;
    height: 9px!important;
    opacity: 1!important;
    background: #007aff!important;
}

body{
    position: relative;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn:hover {
    text-decoration: none;
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-cj {
    color: #024394;
    background-color: #ffffff;
    border-color: #024394;
}

.btn-login {
    color: #ffffff;
    background-color: #024394;
}

.btn-cj:hover {
    color: #fff;
    background-color: #024394;
    border-color: #024394;
}

i {
    font-style: normal;
}

a {
    cursor: pointer;
}

input, textarea, button {
    outline: none !important;
}

.btn-cx {
    display: inline-block;
    padding: 3px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #024394;
    color: #fff;
    margin-left: 0.5rem;
}

.btn-cx:hover {
    color: #fff;
    background-color: #024394;
    text-decoration: none;
}

.finished {
    background-color: #b5b5b7;
    color: #fff;
}

.finished:hover {
    color: #fff;
}

.cjcom {
    width: 5rem;
    box-sizing: border-box;
}

.settled {
    color: #ff6d5e;
    border: 1px solid #ff6d5e;
    background-color: #fff;
}

.settled:hover {
    background: #ffefef;
    color: #ff6d5e;
}

.cleared {
    background: #fff;
    border: 1px solid #c9c9c9;
    color: #999;
}

.cleared:hover {
    color: #999;
}

.money {
    text-align: right !important;
}

html {
    font-size: 125%;
    color: #666666;

}

#headerMain {
    width: 100%;
    margin: 0 auto;
    color: #858585;
    font-size: 12px;
    background-color: #ffffff;
    position: fixed;
    top:0;
    z-index: 2;

    /*margin-bottom: 0.7rem;*/
    border-bottom: 1px solid #eee;
}

.headerBox {
    width: 100%;
    margin: 0 auto;
    background-color: #f5f5f5;
    /*border-bottom: 1px solid #eceef7;*/
}

#headerMain .headerTop {
    width: 59rem;
    margin: 0 auto;
    line-height: 1.5rem;
}

.clearfloat {
    zoom: 1;
}

.clearfloat:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}

#headerMain .headerTopL {
    width: 20rem;
    float: left;
}

#headerMain .headerTopL-tel {
    width: 7rem;
    float: left;
    color: #333;
    font-weight: bold;
    padding-left: 1.1rem;
    background: url(../img/index/icon_tel.png) left center no-repeat;
}

#headerMain .headerTopL-wechat {
    position: relative;
    width: 5rem;
    float: left;
    padding-left: 1.3rem;
    background: url(../img/index/weixin.png) left center no-repeat;
    color: #333;
}

#headerMain .headerTopL-wechat img {
    display: none;
    position: absolute;
    top: 2.25rem;
    left: -1rem;
    z-index: 10;
    width: 6.5rem;
    height: 6.5rem;
    padding: 0.5rem;
    background: #fff;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
}

#headerMain .headerTopL-wechat:hover img {
    display: block;
}

#headerMain .headerTopC {
    width: 15rem;
    float: left;
    text-align: center;
}

#headerMain .headerTopR {
    width: 18.5rem;
    float: right;
    text-align: right;
}

#headerMain .headerTopR a {
    /*color: #858585;*/
    font-size: 12px;
}

#headerMain .headerTopR i {
    padding: 0 0.5rem;
    font-style: normal;
    color:#333;
    font-weight: bold;
}

#headerMain .headerNav {
    width:59rem;
    margin: 0 auto;
    /*border-bottom: 1px solid #024394;*/
}

.headerNav .logo {
    width: 15rem;
    display: block;
    float: left;
}

.headerNav .logo img {
    width: 8rem;
    padding:1.3rem 0;
}

a {
    font-family: 微软雅黑;
    text-decoration: none;
}

img {
    vertical-align: middle;
}

.headerNav-ul {
    float: right;
}

.headerNav-ul li {
    font-size: 19px;
    float: left;
    padding: 0.3rem 2.5rem 0 0.4rem;
    /*line-height: 3.3rem;*/
    margin-top: 2rem;
}


.headerNav-ul .activeNav span {
    display: inline-block;
    box-sizing: border-box;
    height: 1.5rem;
    /*line-height: 1.5rem;*/
    color: #024394;
    border-bottom: 2px solid #024394;
}

.headerNav-ul li a {
    width: 100%;
    /*color: #024394;*/
    font-size:16px;
    font-weight: normal;
}

/*li a {
    color: #666;
    text-decoration: none;
    width: 3.rem;
    display: inline-block;
    text-align: center;
    font-weight: bold;
}*/
#footerMain {
    width: 100%;
    /*background: #424142;*/
    background: url("../img/index/footbg.png");
    

}

#footerMain .footerMain {
    width: 59rem;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 20px;
}
.footerMain ul li{
    width: 15%;
    text-align: center;
    /*float: left;*/
}
.footerMain ul li img {
    width: 4rem;
}
.footerMain ul{
    display: flex;
    justify-content:space-between ;
}

#footerMain .footerMain {
    width: 40rem;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 20px;
}

.footerMain .last{
    width: 18rem;
    height: 100px;
    float: left;
    overflow: hidden;
    border:none;
}
.footerMain .last .tel{
    font-size: 35px;
    padding-top: 0.8rem;
    padding-bottom: 1rem;
    padding-left: 3rem;
    background-image: url(../img/index/tel1.png);
    background-repeat: no-repeat;
    background-position: 0rem 0.5rem;
    background-size: 2.5rem;
    line-height: 2rem;
    margin-top: 0.5rem;
}
.footItem .footLogo{
    margin-top: 1.6rem;
}
.footItem ul{
    /*width: 100%;*/
    text-align: center;
    font-size: 12px;
    margin-left: 3.75rem;
}
.footItem ul li{
    line-height: 1.1rem;
    text-align: left;
}

.footItem ul .title{
    font-size: 16px;
    line-height: 1.5rem;
}
.footItem, .footItem a{
    color: #f5f5f7;
    text-decoration: none;
}
.footItem a:hover{
    text-decoration: none;
    color: #007bc7;
}
.footItem .weixin{
    overflow: hidden;
    position: relative;
}
.footItem .weixin > img{
    width: 1.8rem;
    margin-top: 0.8rem;
    background: #717275;
    padding: 5px;
    border-radius: 50%;
}
.wechaBox{
    /*width: 6rem;*/
    display: none;
    position: absolute;
    padding: 5px;
    bottom: -20px;
    right: 2rem;
    z-index: 2;
}
.wechaBox img{
    width: 4rem;
}

.footItem .weixin img:hover{
    background: #007bc7;

}
.footerMain .last .tel:hover{
    color: #007bc7;
    background-image: url(../img/index/telHover.png);

}


.copyrightFooter  .placeman{
    width: 0.8rem;
    margin-top: -5px;
    margin-right: 2px;
}

/*#footerMain .footerMain ul{*/
/*display: flex;*/
/*justify-content: space-between;*/
/*width: 100%;*/
/*margin: 0 auto;*/
/*}*/
/*#footerMain .footerMain ul li {*/
/*width: 15%;*/
/*height: 5rem;*/
/*font-size: 12px;*/
/*color: #fff;*/
/*font-weight: normal;*/
/*text-align: center;*/
/*padding-top: 1.5rem;*/
/*padding-bottom: 1.2rem;*/
/*!* background: rgba(255, 255, 255, 0.2); *!*/
/*background-repeat: no-repeat;*/
/*background-position: 50% 42%;*/
/*}*/
/*#footerMain .footerMain ul li:nth-child(1) {*/
/*background-image: url(../img/index/f1.png);*/
/*}*/
/*#footerMain .footerMain ul li:nth-child(2) {*/
/*background-image: url(../img/index/f2.png);*/
/*}*/
/*#footerMain .footerMain ul li:nth-child(3) {*/
/*background-image: url(../img/index/f3.png);*/
/*}*/
/*#footerMain .footerMain ul li:nth-child(4) {*/
/*background-image: url(../img/index/f4.png);*/
/*}*/

#main-container {
    padding-bottom: 0px;
    background-color: #f5f8fd;
}

#main-container {
    position: relative;
    width: 100%;
    height: auto;
    /*background-color: #fff;*/
}

a:hover {
    text-decoration: underline;
}

.headerNav-ul li a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.close {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    height: 1.3rem;
    width: 1.3rem;
    right: 0;
    top: 0;
    border: 1px solid #a3a3a3;
    color: #004097;
    /* border-radius: 0.65rem; */
    font-size: 14px;
    text-align: center;
    line-height: 1.2rem;
    /* float: right; */
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    cursor: pointer;
    /* background: #004097; */
}

.login_box .login_sbox {
    width: 60rem;
    margin: 0 auto;
    position: relative;
}

.login_box .loginMain {
    box-sizing: border-box;
    position: absolute;
    right: 0px;
    top: 1rem;
    z-index: 2;
    background-color: rgba(68, 68, 68, 0.5);
    min-height: 16rem;
    width: 16rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 6rem;
    padding: 1.25rem;
    padding-top: 2rem;
    border-radius: 0.5rem;
}

.login_box .loginMain h2 {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    line-height: 1.2rem;
    padding-bottom: 0.75rem;
}

.login_box .loginIpt {
    margin-top: 1.25rem;
    width: 100%;
    /*overflow: hidden;*/
    font-size: 14px;
    height: 1.5rem;
    line-height: 1.5rem;
    border-bottom: 1px solid #d8d8d8;
    position: relative;
}

.login_box .loginIpt a {
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.6);
}

.login_box .loginName, .login_box .password {
    border: none;
    background: none;
    width: 10rem;
    color: #ffffff;
}

.login_box input:focus {
    outline: none;
    background: none;
}

.login_box .tipErr {
    color: #f13d45;
    line-height: normal;
}

input:-webkit-autofill {
    /*background-color:none!important;*/
    -webkit-box-shadow: 0 0 0 10rem #fff inset;
}


#my-carousel {
    width: 100%;
    min-width: 59rem;
    margin: 0 auto 0;
    overflow: hidden;
    position: relative;
    /*min-height: 15.55rem;*/
}

#my-carousel2 {
    width: 100%;
    height: 30rem;
}
/*.loginSwiperBox .swiper-slide {*/
/*text-align: center;*/
/*font-size: 18px;*/
/*background: #fff;*/

/*!* Center slide text vertically *!*/
/*display: -webkit-box;*/
/*display: -ms-flexbox;*/
/*display: -webkit-flex;*/
/*display: flex;*/
/*-webkit-box-pack: center;*/
/*-ms-flex-pack: center;*/
/*-webkit-justify-content: center;*/
/*justify-content: center;*/
/*-webkit-box-align: center;*/
/*-ms-flex-align: center;*/
/*-webkit-align-items: center;*/
/*align-items: center;*/
/*}*/

/*【新start】*/
/*下拉菜单*/
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown ul{
    border: 1px solid #eee;
}
.dropdown a{
    text-decoration: none;
}
.dropdown a:hover{
    text-decoration: none;
    color: #004097;
    font-weight:bold;
}
.titleD{
    margin: 0 0.5rem;
    color: #333;
    font-weight: bold;
}
.dropdown-content {
    display: none;
    position: absolute;
    /*left: 3.5rem;*/
    background-color: #fff;
    min-width: 3rem;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    padding: 0px 15px;
    text-align: center;
}
.dropdown:hover .dropdown-content {
    display: block;
}

/*fullPage*/
.fullPage{
    position: fixed;
    width: 100%;
    height:100%;
    z-index:11;
    top:0;
    display: none;

}
.fullPage img{
    width: 100%;
    height:100%;
}
.footer_layer_copy img{
    width: 0.8rem;
    margin-top: -5px;
    margin-right: 2px;
}
/*登录注册悬浮窗【新】*/
#loginRegister{
    display: none;
}
#loginRegister.loginBg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .4);
}
#loginRegister.loginBg .tipMeg {
    /*width: 60rem;*/
    height: 30rem;
    width: 50rem;
    min-height: 24rem;
    background: #024394;
    margin:0 auto;
    margin-top:8rem;
    overflow: hidden;
    position: relative;
    /*border: 10px solid #004097;*/
    /*border-radius: 20px;*/
}

#loginRegister .loginLeft{
    float: left;
    width: 50%;
    height: 100%;
    /* min-height: 24rem; */
    /* background: #fff; */
    background: url(../img/index/lg.png) no-repeat #fff;
    background-position: 0px 508px;
    /*background-size: 38px;*/

}
#loginRegister .loginLeft h1{
    font-size: 15px;
    /* font-weight: bold; */
    padding: 1.5rem 1rem 1rem 2rem;
}
#loginRegister .activeRight{
    float: right;
    width: 50%;
    height: 100%;
    min-height: 24rem;
    background: #024394;
}
.titlep{
    text-align: center;
    /*padding-left: 4rem;*/
    margin-bottom: 0rem;
    margin-top: 4rem;
}
.titlep span{
    display: inline-block;
    width: 7rem;
    font-size: 15px;
}
.titlep span a{
    font-size: 15px;
    color: #024394;
    padding: 5px 3px;
    text-decoration: none;

}
.titlepActive{
    border-bottom: 2px solid #024394;
}


/*登录form*/
#loginRegister #loginForm{
    width: 25rem;
    margin:0 auto;
    padding-top: 4.5rem;
}
/*#loginForm .loginIpt lable{*/
/*display: inline-block;*/
/*width: 6rem;*/
/*font-size: 15px;*/
/*color:#484849;*/
/*text-align: right;*/
/*padding: 10px 0.5rem 10px 0.5rem;*/
/*}*/
#loginForm .loginIpt{
    width: 60%;
    margin:0 auto;
}

#loginForm .loginIpt input{
    width: 83%;
    position: relative;
    height: 18px;
    padding: 8px 8px 8px 40px;
    border: 1px solid #7b7373;
    transition: .3s;
    font-size: 14px;
    color: #666;
    border-radius: 20px;
    /* width: 284px; */
    /*width: 284px;*/
}
#loginForm .loginIpt .tipErr{
    width: 100%;
    height: 1.3rem;
    /* background: red; */
    /*margin-left: 8.2rem;*/
    color: red;
}
#loginForm .loginCbx{
    width: 15rem;
    margin-left: 5.2rem;
    overflow: hidden;
}
#login_button{
    display: block;
    background: #004097;
    margin: 0 auto;
    width: 11.5rem;
    /*margin-left: 7.5rem;*/
    margin-top: 2.3rem;
    height: 1.2rem;
    color: #ffffff;
    line-height: 1.2rem;
    font-size: 16px;
    border-radius: 20px;
}

#txtUserName{
    background: url("../img/index/user.png") no-repeat left;
    -webkit-background-size: 20px;
    background-size: 20px;
    background-position: 15px;
}
#txtPassword{
    background: url("../img/index/pwd.png") no-repeat left;
    -webkit-background-size: 20px;
    background-size: 20px;
    background-position: 15px;
}
/*注册form*/
#loginRegister #registerForm{
    display: none;
    width: 25rem;
    margin:0 auto;
    padding-top: 1.5rem;
}
/*#registerForm .loginIpt lable{*/
/*display: inline-block;*/
/*width: 7rem;*/
/*font-size: 15px;*/
/*color:#484849;*/
/*text-align: right;*/
/*padding: 10px 0.5rem 10px 0.5rem;*/
/*}*/
#registerForm .loginIpt{
    /*display: inline-block;*/
    width: 60%;
    margin:0 auto;
}
#registerForm .loginIpt input{
    width: 83%;
    position: relative;
    height: 18px;
    padding: 8px 8px 8px 40px;
    border: 1px solid #7b7373;
    transition: .3s;
    font-size: 14px;
    color: #666;
    /*width: 284px;*/
    border-radius: 20px;
}
#registerForm .loginIpt .rdiv{
    width: 100%;
    display: inline-block;
}
#registerForm .loginIpt div .megYzm{
    width: 6rem;
    transition: .3s;
    display: inline-block;
}
#registerForm .loginIpt div .getMeg{
    width: 4.5rem;
    height: 22px;
    line-height: 24px;
    /* background: yellow; */
    border: 1px solid #004097;
    color: #004097;
    border-radius: 0px;
    float: right;
}
.registerBg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .4);
    display: none;
}

.zcMeg {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 11;
    width: 20rem;
    height: 10rem;
    margin-left: -10rem;
    margin-top: -5rem;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    text-align: center;
}

.zcMeg span {
    border: none;
}
.zcMeg h2 {
    box-sizing: border-box;
    font-size: 16px;
    padding: 0 0.5rem;
    padding-top: 0.5rem;
    background: #f9f9f9;
    height: 2.5rem;
    line-height: 1.5rem;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
}
.zcMeg p {
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 0 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.2rem;
}
.zcMeg button {
    width: 5rem;
    /*margin-top: 0.75rem;*/
    margin:2rem 0.5rem 0rem 0.5rem;
}


#registerForm .loginIpt .tipErr{
    width: 15rem;
    height: 1.3rem;
    /* background: red; */
    /*margin-left: 9.2rem;*/
    color: red;
}
#registerForm .loginCbx{
    text-align: center;
    /*background: red;*/
    width: 16rem;
    margin-left: 6.8rem;
    overflow: hidden;
}
#registerForm .loginIpt .agreeP{
    font-size: 15px;
}
#registerForm .loginIpt .agree{
    width: 2rem;
    margin-top: -2px;
    margin-bottom: 1px;
    vertical-align: middle;
}
#registerForm .loginIpt div .agreeMent {
    padding: 0rem 1rem;
}

#registerForm .loginIpt div .agreeMent a{
    color: #004097;
}
#regist_button{
    display: block;
    background: #004097;
    margin: 0 auto;
    width: 11.5rem;
    /*margin-left: 8.6rem;*/
    margin-top: 1rem;
    height: 1.2rem;
    color: #ffffff;
    line-height: 1.2rem;
    font-size: 15px;
    border-radius: 20px;
}

#regUser{
    background: url("../img/index/user.png") no-repeat left;
    -webkit-background-size: 20px;
    background-size: 20px;
    background-position: 15px;
}
#regPwd{
    background: url("../img/index/pwd.png") no-repeat left;
    -webkit-background-size: 20px;
    background-size: 20px;
    background-position: 15px;
}
#regPwd2{
    background: url("../img/index/pwd2.png") no-repeat left;
    -webkit-background-size: 20px;
    background-size: 20px;
    background-position: 15px;
}


/*公告*/
.activeRight .activeBox{
    /*margin: 3.7rem 1rem 0 1rem;*/
    overflow:hidden;
    position: relative;

}
.noticeTitle{
    color: #ffffff;
    height: 2rem;
    line-height: 2rem;
    font-size: 16px;
    font-weight: bold;
}
.noticeTitle a{
    display: inline-block;
    font-size: 12px;
    color: white;
    float: right;
    margin-right: 2rem;
}
.newNotice li a{
    color: white;
    /*font-size: ;*/
}
.newNotice li span{
    display: inline-block;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;

}

#forgot {
    box-sizing: border-box;
    width: 100%;
    height: 37rem;
    background: url(../img/login/bg.png) no-repeat;
    padding: 3rem 0;
}

/*忘记密码*/
.forgotCon {
    box-sizing: border-box;
    width: 54rem;
    height: 30rem;
    margin: 0 auto;
    /*margin-top: 45px;*/
    background: #fff;
    font-size: 14px;
    color: #888888;
    text-align: center;
}

.forgotCon > img {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
}

.forgotCon .verify-content {
    width: 26rem;
    margin: auto;
}

.forgotCon p span {
    box-sizing: border-box;
    display: inline-block;
    height: 2.2rem;
    line-height: 2.2rem;
    width: 5rem;
    text-align: right;
    font-size: 16px;
    color: #242424;
    margin-bottom: 0.5rem;
}

.forgotCon .box-phone input {
    box-sizing: border-box;
    height: 2.2rem;
    width: 13.5rem;
    border: 1px solid #c5c5c5;
    border-radius: 0.2rem;
    color: #999;
    padding-left: 0.5rem;
}

.forgotCon .box-yanzhengma input[type=text] {
    box-sizing: border-box;
    height: 2.2rem;
    width: 6.5rem;
    border: 1px solid #c5c5c5;
    border-radius: 0.2rem;
    color: #999;
    padding-left: 0.5rem;
    margin-right: 0.5rem;
}

.forgotCon .box-yanzhengma button {
    box-sizing: border-box;
    height: 2.2rem;
    width: 6.5rem;
}

.forgotCon .verify-content > button {
    box-sizing: border-box;
    width: 14rem;
    height: 2rem;
    margin-top: 1rem;
    margin-left: 4rem;
}

.forgotCon .box-pwd span, .forgotCon .box-repwd span {
    box-sizing: border-box;
    width: 4rem;
    height: 2.2rem;
    line-height: 2.2rem;
    text-align: right;
    font-size: 16px;
    color: #242424;
    margin-bottom: 0.5rem;
}

.forgotCon .box-pwd input, .forgotCon .box-repwd input {
    box-sizing: border-box;
    height: 2.2rem;
    width: 13.5rem;
    border: 1px solid #c5c5c5;
    border-radius: 0.2rem;
    color: #999;
    padding-left: 0.5rem;

}

.forgotCon dt, .forgotCon dd {
    float: left;
    color: #888888;
}

.forgotCon .dd1 {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.forgotCon .dd2 {
    font-size: 12px;
}

.forgotCon dt {
    margin-left: 5rem;
    margin-right: 2rem;
}

.forgotCon .dd2 i, .forgotCon .dd2 a {
    font-size: 14px;
    color: #007bc7;
}

.forgotCon h1 {
    font-weight: normal;
    font-size: 14px;
    color: #f13d45;
    padding-left: 35%;
    text-align: left;
    height: 1rem;
}


/*新end*/
.indexColumn {
    width: 60rem;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

/*.fxjy, .wdzs, .bzzx {*/
/*float: left;*/
/*width: 30%;*/
/*}*/

/*.fxjy p {*/
/*background: url(../img/index/icon_fxjy.png) no-repeat;*/
/*}*/

/*.wdzs p {*/
/*background: url(../img/index/icon_wdzs1.png) no-repeat;*/
/*}*/

/*.bzzx p {*/
/*background: url(../img/index/icon_help.png) no-repeat 0.25rem;*/
/*}*/

/*.indexColumn p {*/
/*margin-bottom: 1.5rem;*/
/*line-height: 1.5rem;*/
/*padding-left: 2rem;*/
/*}*/

/*.indexColumn li a {*/
/*margin-left: 0.25rem;*/
/*display: inline-block;*/
/*max-width: 11rem;*/
/*line-height: 2rem;*/
/*overflow: hidden;*/
/*text-overflow: ellipsis;*/
/*white-space: nowrap;*/
/*}*/

/*.indexColumn ul {*/
/*background: #f7f7f7;*/
/*padding: 0.5rem;*/
/*}*/

/*.indexColumn li {*/
/*font-size: 12px;*/
/*font-weight: normal;*/
/*!*line-height: 2rem;*!*/
/*border-bottom: 1px solid #eaeaea;*/
/*}*/

/*.indexColumn li:last-child {*/
/*border-bottom: none;*/
/*}*/

/*.indexColumn li span {*/
/*float: right;*/
/*display: inline-block;*/
/*line-height: 2rem;*/
/*}*/

.line {
    background-color: #dceef9;
    height: 7px;
}

/*dier部分  轮播图下面 */
.introduce{
    width: 59rem;
    margin: 0 auto;
    position: relative;
}
.introduce a{
    margin: 1rem 0;
    display: block;
    width: 100%;
    cursor: auto;
}
.introduce a img{
    width: 100%;
}
.introduce .moreBtn{
    position: absolute;
    bottom: 0px;
    right: 7px;
    font-size: 12px;
    width: 70px;
    text-align: center;
    padding: 7px 10px 8px;
    display: inline-block;
    margin: 7px 0;
    cursor: pointer;
    background-color:rgba(0,0,0,0);
    color: #004097;
    border-radius: 30px;
    border: 1px solid #004097;
    /*opacity: 0;*/
}
.introduce .moreBtn:hover{
    /*opacity: 0.8;*/
    background: #004097;
    color: #fff;
    text-decoration: none;
}


.cooperate {
    width: 59rem;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}
.cooperateTitle{
    text-align: center;
    font-size: 24px;
    color: #004097;
    /*padding-top: 1rem;*/
}

.cooperate>a{
    display: inline-block;
}
.cooperate>a img {
    /*width: 18.5rem;*/
    /*height: 2.25rem;*/
    float: left;
    margin: 4rem 0rem 4rem 4rem;
}
.cooperate >ul{
    width:100%;
    /*float: right;*/
    margin-top: 0.8rem;
}
.cooperate >ul li {
    padding: 0.5rem 0.5rem 0 0.5rem;
    font-size: 19px;
    float: left;
    /*width: 14.9%;*/
    text-align: center;
    /*padding: 0.3rem 2.5rem 1rem 0rem*/
    /*line-height: 3.3rem;*/
}

.cooperate >ul li img{
    /*width: 100%;*/
    height:2.5rem;
    /*border: 2px solid #eeeff3a1 ;*/
    /*max-width: 6rem;*/
}
.cooperate .coopL{
    /*width: 49rem;*/
    width: 59rem;
    float: left;
}
.cooperate .coopR{
    display: inline-block;
    width: 10rem;
    float: left;
    margin-top: 1.2rem;
}
.gushou  .fuahouSpan{
    height: 40px;
    line-height: 50px;

}
.gushou  .fuahouP{
    height: 22px;
    line-height: 15px;
    font-size: 18px;
    color: #986b03;
    font-weight: bold;
}
.gushou  .fuahouPP{
    height: 23px;
    line-height: 23px;
    font-size: 26px;
    color: #986b03;
    font-weight: bold;
}


.funDes{
    /*padding: 3rem 0 0 3rem;*/
    width: 20rem;
}


/*右边栏*/
.rightTip {
    position: fixed;
    right: 0;
    top: 89%;
    right: 10px;
    /*border: 1px solid #ff4343;*/
    z-index: 9;
    /*background: #fff;*/
}

.rightTip li {
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    /*border-bottom: 1px solid #ff4343;*/
    cursor: pointer;
    margin-bottom: 4px;
}

.rightTip li:last-child {
    border-bottom: none;
}
.rightTip li a{
    display: none;
    width: 28px;
    height: 28px;
    line-height:14px;
    padding:6px 7px;
    color:#fff !important;
    background:#4b5b7d;
    text-align: center;overflow: hidden;
    font-size:12px;
}
.sidbar_hover  a{
    display: inline-block!important;
    text-decoration: none;
}
.rightTip .tipTop {
    /*background: url(../img/index/top.png) no-repeat 50% 50%;*/
    background: url(../img/index/fix-bgImg.png) no-repeat;
    transition: all 0.25s ease 0s;
    background-position: right -176px;
    width: 40px;
    height: 40px;
}

.rightTip .tipTop:hover {
    /*background-position: left 0px;*/
}

.rightTip .tipfxjy {
    background: url(../img/index/fix-bgImg.png) no-repeat;
    transition: all 0.25s ease 0s;
    background-position: right -45px;
}

.rightTip .tipfxjy:hover {
    /*background-position: left -50px;*/
}

.rightTip .tipbzzx {
    background: url(../img/index/fix-bgImg.png) no-repeat;
    transition: all 0.25s ease 0s;
    background-position: right -220px;
}

.rightTip .tipbzzx:hover {
    /*background-position: left -100px;*/
}

.rightTip li a {
    /*display: inline-block;*/
    /*width: 2.5rem;*/
    /*height: 2.5rem;*/
}

/*基金产品*/

.investInfo{
    width: 59rem;
    padding-top: 0rem;
    margin:0 auto;
}
.investInfo .investItem{
    width:100%;
    /*height: 21.85rem;*/
    margin:1rem 0;
    /*background: #c8e2c8;*/
    overflow: hidden;
    border-radius:20px 20px 20px 20px;
}
.investItem .investL{
    float: left;
    width: 49.9%;
    height: 100%;
    /*background: red;*/
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
}
.investItem .investL img{
    width: 100%;
}
.investItem .investL2 img{
    width: 100%;
}
.investItem .investR{
    float: right;
    width: 43%;
    height: 74%;
    /*background: #c8e2c8;*/
    padding: 3.5rem 2rem 2rem 2rem;
}

/*海外*/
.safetyBox{
    overflow: hidden;
}
.saftyInfo{
    width: 59.5rem;
    padding-top: 0rem;
    margin:0 auto;
    /*overflow: hidden;*/
    margin-top: 10px;
}
.saftyInfo .investItem{
    width:100%;
    /*height: 18.8rem;;*/
    margin:1rem 0;
    /*background: #c8e2c8;*/
    overflow: hidden;
    box-shadow: 0px 0px 10px #888888;
    position: relative;
    border-radius: 10px 0 0 10px;
}
.saftyInfo .investItem:hover{
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -webkit-transition: all 0.2s ease-out;
}
.saftyInfo .investL{
    float: left;
    width: 100%;
    height: 100%;
    /*background: red;*/
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
}
.saftyInfo .investL:hover{
    opacity: 0.9;
}
/*.saftyInfo .investL:hover img{*/
/*-webkit-transform: matrix(1.1, 0, 0, 1.1, 0, 0);*/
/*}*/
.saftyInfo .investL img{
    width: 100%;
}
.saftyInfo .investL2 img{
    width: 100%;
}
.saftyInfo .investR{
    float: right;
    width: 67%;
    /*height: 61%;*/
    /*background: #c8e2c8;*/
    padding: 1.5rem 2rem 1.5rem 2rem;
}


.investItem .appointBox{
    position: absolute;
    bottom: 57px;
    right: 30px;
    font-size: 16px;
    width: 100px;
    padding: 7px 10px 8px;
    background: rgba(0,0,0,0);
    /*color: #fff;*/
    text-align: center;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #004097;
}
.investItem .appointBox a{
    color: #004097;
    cursor: pointer;

}
.investItem .appointBox:hover{
    background: #004097;
    color: white;
    cursor: pointer;

}
.investItem .appointBox:hover >a{
    text-decoration: none;
    color: white;
    cursor: pointer;

}

/*保险产品*/

.leakageInfo{
    width: 59rem;
    padding-top: 0rem;
    margin:0 auto;
}
.leakageInfo .investItem{
    width:100%;
    height: 18.8rem;
    margin:1rem 0;
    /*background: #c8e2c8;*/
    overflow: hidden;
    /*border-radius:20px 20px 20px 20px;*/
}
.leakageInfo .investL{
    float: left;
    width: 31.9%;
    height: 100%;
    /*background: red;*/
    border-radius: 0;
    overflow: hidden;
}
.leakageInfo .investL img{
    width: 100%;
}
.leakageInfo .investL2 img{
    width: 100%;
}
.leakageInfo .investR{
    float: right;
    width: 60.7%;
    height: 100%;
    background: yellow;
    padding: 3.5rem 2rem 2rem 2rem;
}


/*预约*/
/*公用*/
.orderBg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .4);
}
.orderBg .tipMeg {
    width: 50rem;
    height: 20rem;
    background: #fff;
    margin:0 auto;
    margin-top:10rem;
    overflow: hidden;
    border: 5px solid #fff;
    position: relative;
    overflow: hidden;
}
.orderBg .tipMeg .tipL
{
    width: 50%;
    height:100%;
    float: left;
}
.orderBg .tipMeg .tipR
{
    width: 50%;
    height:100%;
    float: right;
}
.orderBg .tipMeg .tipL img{
    width:100%;
    height: 100%;
}
.orderForm .orderTitle{
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #004097;
}
.orderForm .loginIpt lable{
    display: inline-block;
    width: 6rem;
    font-size: 20px;
    color:#484849;
    text-align: right;
    padding: 5px 5px 5px 15px;
    font-size: 14px;
}
.orderForm .loginIpt input{
    width: 10.5rem;
    position: relative;
    height: 20px;
    padding: 5px 5px 5px 15px;
    border: 1px solid #7b7373;
    transition: .3s;
    font-size: 14px;
    color: #666;
    border-radius: 5px;

}
.orderForm .loginIpt .tipErr{
    /*width:6rem;*/
    height: 1rem;
    /* background: red; */
    margin-left: 7.9rem;
    color: red;
}
.orderForm .loginIpt .rdiv{
    width: 12rem;
    /*transition: .3s;*/
    display: inline-block;
}
.orderForm .loginIpt .rdiv select{
    padding: 7px 5px 8px 15px;
    width: 5.7rem;
    display: inline-block;
    overflow: auto;
    border-radius: 5px;
}
.orderSubBtn{
    display: block;
    background: #004097;
    margin: 0 auto;
    width: 10.5rem;
    margin-left: 7.2rem;
    margin-top: 0.5rem;
    height: 1rem;
    color: #ffffff;
    line-height: 1rem;
    font-size: 15px;
}
.orderSubBtn:hover {
    /*background: #a27b59;*/
    opacity: 0.8;
    font-size: 15px;
}



/*risk*/
#risk h1 {
    height: 2rem;
    line-height: 2rem;
    padding-left: 2rem;
    border-bottom: 1px solid #eaeaea;
    color: #545454;
    margin-bottom: 0.5rem;
    background: url(../img/newAccount/risk.png) no-repeat 0 50%;
}

#risk > div {
    padding: 0.5rem;
    border: 1px solid #eaeaea;
}

#risk > div > h2 {
    font-weight: normal;
    line-height: 2rem;
    font-size: 14px;
}

#risk > div > h3 {
    color: #024394;
    font-size: 18px;
    line-height: 2rem;
}

#risk > div > p {
    width: 83%;
    line-height: 1rem;
    font-size: 13px;
}

#risk > div > div {
    text-align: right;
    margin-top: 1rem;
}

#risk > div > div a {
    margin-right: 2rem;
    font-size: 13px;
    width: 7rem;
}

#risk > div > div a:hover {
    color: #fff;
}
/*risk  结果*/
.riskbox{
    box-sizing: border-box;
    width: 100%;
    min-height: 37rem;
    background: url(../img/login/bg.png) no-repeat;
    padding: 3rem 0;
}
#risk{
    width: 59rem;
    margin:0 auto;
    background: white;
    /*min-height:20rem;*/
    padding: 2rem;
}
/*risk*/
.registerBox {
    box-sizing: border-box;
    width: 100%;
    height: 37rem;
    background: url(../img/login/bg.png) no-repeat;
    padding: 3rem 0;
}

.registerCon {
    box-sizing: border-box;
    width: 27.5rem;
    height: 30rem;
    margin: 0 auto;
    /*margin-top: 45px;*/
    padding: 1.25rem 1.25rem 0;
    background: #fff;
    font-size: 14px;
    color: #888888;
}

.registerCon > span {
    float: right;
}

.registerCon > span > a {
    color: #024394;
}

.registerCon > h2 {
    font-size: 18px;
    margin-top: 1.5rem;
    color: #242424;
}

.registerCon > div {
    padding: 1rem 2rem;
}

.registerCon .registerIpt {
    line-height: 2rem;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 2rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
    height: 2.05rem;
}

.registerCon .registerIpt input {
    width: 60%;
    color: #888888;
    border: none;
    font-size: 14px;
}

.registerCon .registerIpt:nth-child(5), .registerCon .registerIpt:nth-child(6) {
    padding-left: 0;
}

.registerCon button.get-message, .registerCon .registerIpt img {
    width: 5rem;
    float: right;
    margin-right: 0.25rem;
}

.registerCon .registerCbx input {
    vertical-align: middle;
    margin-right: 0.25rem;
}

.registerCon .registerCbx a {
    color: #024394;
}

.registerCon .registerCbx {
    margin-bottom: 2rem;
}

.registerCon .registerIpt:nth-child(1) {
    background: url(../img/login/phone.png) no-repeat 0 50%;
}

.registerCon .registerIpt:nth-child(2) {
    background: url(../img/login/pwd.png) no-repeat 0 50%;
}

.registerCon .registerIpt:nth-child(3) {
    background: url(../img/login/repwd.png) no-repeat 3px 50%;
}

.registerCon .registerIpt:nth-child(4) {
    background: url(../img/login/empNo.png) no-repeat 0 50%;
}

.registerCon div > button {
    width: 60%;
    margin: 0 20%;
    height: 2rem;
}

.registerCon .registerIpt .get-message {
    color: #ffffff;
    background: #024394;
}

.registerCon .tipErr {
    color: red;
    box-sizing: border-box;
    height: 1rem;
    line-height: 1rem;
    /*float: right;*/
}

.fxpc-result-box p {
    margin: 0 1.5rem 1.5rem;
    text-indent: 2em;
    line-height: 1.5rem;
}


#riskDir {
    width: 60rem;
    margin: 1rem auto;
    font-size: 14px;
}

#riskDir .tip {
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    background-color: #f5f5f5;
    background-image: url(../img/newAccount/tip.png);
    background-repeat: no-repeat;
    background-position: 0.5rem 50%;
    margin-bottom: 1rem;
}

#riskDir .fxpc {
    /*padding: 2.5rem;*/
    border: 1px solid #d8d8d8;
    padding-bottom: 2.5rem;
    background: #fff;

}

#riskDir .fxpc .bigTitle {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #024394;
    height: 5rem;
    line-height: 5rem;

}
.risktitle{
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #024394;
    padding-left: 3.5rem;
}

#riskDir .fxpc-text {
    line-height: 28px;
    text-align: left;
    /*width: 48rem;*/
    margin: 0 auto;
    padding-left: 3.5rem;
}

#riskDir .fxpc dl {
    margin-left: 3.5rem;
    margin-top: 1.5rem;
}

#riskDir .fxpc dt {
    margin-bottom: 1rem;
}

#riskDir .fxpc dd {
    margin-bottom: 0.75rem;
    margin-left: 1rem;
    /* width: 28.5rem; */
    cursor: pointer;
    display: inline-block;
}

#riskDir .btn {
    width: 14rem;
}

#riskDir .fxpc-btn {
    text-align: center;
    margin-top: 2rem;
}

#riskDir .fxpc-result-box {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .4);
    display: none;
}

.fxpc-result-box .fxpc-result {
    position: fixed;
    top: 20%;
    left: 50%;
    width: 29rem;
    margin-left: -14.5rem;
    background-color: #ffffff;
    border-top: 1px solid #c2cbd8;
    border-bottom: 1px solid #ffffff;
}

.fxpc-result-box h2 {
    line-height: 2.25rem;
    color: #004097;
    background-color: #f5f8fd;
    text-align: center;
    font-size: 20px;
    position: relative;
}

.fxpc-result-box h3 {
    font-size: 16px;
    color: #024394;
    font-weight: normal;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.fxpc-result-box p {
    margin: 0 1.5rem 1.5rem;
    text-indent: 2em;
    line-height: 1.5rem;
}


#riskDir .riskBg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .4);
}

#riskDir .tipMeg {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 11;
    width: 20rem;
    height: 10rem;
    margin-left: -10rem;
    margin-top: -5rem;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    text-align: center;
}

#riskDir .tipMeg span {
    border: none;
}

#riskDir .tipMeg h2 {
    box-sizing: border-box;
    font-size: 16px;
    padding: 0 0.5rem;
    padding-top: 0.5rem;
    background: #f9f9f9;
    height: 2.5rem;
    line-height: 1.5rem;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
}

#riskDir .tipMeg p {
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 0 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.2rem;
}

#riskDir .tipMeg button {
    width: 5rem;
    margin-top: 0.75rem;
}

/*联系我们*/
#us {
    overflow: hidden;
    width: 100%;
    height: auto;
    padding: 15px 0 15px 0;
}

#us .page-help {
    box-sizing: border-box;
    width: 54rem;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 0 1px #ccc;
}

#us .help-top h2 {
    line-height: 2.25rem;
    padding-left: 1rem;
    font-size: 18px;
    border-top: 1px solid #007bc7;
}

#us .help-content {
    padding: 2rem;
    border-top: 1px solid #dbdee1;
}

#us .contact-way {
    padding: 0px 2rem 1rem;
    border-bottom: 1px dashed #d7ebf5;
}

#us .contact-way p {
    line-height: 1.6rem;
    color: #595757;
    font-size: 14px;
}

#us .contact-address {
    overflow: hidden;
    padding: 1rem 2rem;
}

#us .contact-address-txt {
    float: left;
    width: 16.5rem;
}

#us .contact-address-txt .txt-title {
    line-height: 2.3rem;
    font-size: 15px;
    color: #48b1df;
}

#us .contact-address-txt p {
    line-height: 1.6rem;
    color: #595757;
    font-size: 14px;
}

#us .contact-address-map {
    float: left;
    /* padding-top: 30px; */
    position: absolute;
    right: 2rem;
    bottom: 2.5rem;
}

#us .contact-address-map img {
    width: 28rem;
    vertical-align: middle;
}

/*footer 菜单 帮助中心*/
.leakage_box{
    width: 100%;
    /*background: url("../img/index/bigBg.png");*/
    /*background:#f5f5f5;*/
}
/*人才招聘banner*/
.recruitment_banner {
    margin: 0 auto;
    height: 12rem;
    background: url(../img/leakage/recruitment.jpg) no-repeat;
    background-position: center;
    background-size:cover ;
}

/*公司介绍banner*/
.helpCenter_banner {
    margin: 0 auto;
    height: 12rem;
    background: url(../img/leakage/helpCenter.jpg) no-repeat;
    background-position: center;
    background-size:cover ;
}

/*联系我们banner*/
.leakage_banner {
    /*width: 100%;*/
    margin: 0 auto;
    height: 12rem;
    background: url(../img/leakage/leakage.jpg) no-repeat;
    background-position: center;
    background-size:cover ;
}
.leakage_info {
    width: 59rem;
    margin: 0 auto;
    font-size: 15px;
}
.leakage_right {
    /*float: right;*/
    /* width: 45rem; */
    margin: 1rem auto;
    padding: 1rem;

    min-height: 24.9rem;
    overflow: hidden;
    background: white;
}

.leakage_right img{
    /*width: 100%;*/
    align-content: center;
}

.nList{
    margin: 3rem 5rem;
    /*background-color: red;*/
    /*height: 10rem;*/

}
.nList p{
    font-size: 18px;
    color: #004294;
    height: 2.5rem;
    line-height: 2.5rem;
    border-bottom:3px solid #ddd6cb;
    padding-left: 10px;

}
.nList ul li{
    font-size: 14px;
    color: #84847f;
    height: 3rem;
    line-height: 3rem;
    border-bottom:1px solid #ddd6cb;

}
.nList ul li a span{
    background: #0279c7;

}
.nList ul li a{
    font-size: 14px;
    color: #84847f;

}


/*.leakage_right i {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 0.5rem;
    background: url(../img/leakage/icon_leakage.png) no-repeat center;
    padding-top: 1rem;
}*/
.activeLeakage {
    border-right: 2px solid #5988ff;
    width: 3.25rem;
}

input:disabled {
    background-color: transparent;
}

/*pad*/
@media screen and (max-width: 1200px) {

    body{
        /*width: 60rem;*/
        position: relative;
    }

    .indexAbout ul {
        display: flex;
        justify-content: space-between;
        width: 60rem;
        margin: 0 auto;
    }

    .indexAbout p {
        text-align: center;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }

    .indexAbout {
        padding-top: 1.5rem;
    }

    .loginIpt span {
        width: 2.5rem;
    }

    .loaninfo_bottom .fwxx ul li em {
        width: 5rem;
    }

    .loan_fxjh p, .loan_sxjh p, .loan_lcrjh p, .loan_hdb > p {
        padding-left: 6.8rem;
    }

    .xjs {
        width: 18% !important;
    }

    .jkqx {
        width: 12% !important;
    }


    .tx ul li {
        height: 5.2rem;
        width: 5.2rem;
    }

    .safetyBgBox .safetyBox .safetyUl li a img {
        width: 9.3rem;
        height: 10.6rem;
    }

    .dzContact .zj dl dt {
        height: 9rem;
    }

    .dzContact .dzBg {
        background-size: cover;
        background-position-x: -15rem;
    }

    .leakage_right img {
        max-width: 792px;
    }

    .homeTop {
        background-size: 130% 100%;
    }

    .rightTip li {
        /*height: 2.85rem;*/
        /*width: 2.85rem;*/
    }

    .layui-input {
        width: 180px !important;
    }

    #headerMain .headerTopL, #headerMain .headerTopC, #headerMain .headerTopR {
        line-height: 1.8rem;
    }

    .nav li {
        line-height: 2.4rem
    }

    .loaninfo_right .cjbtn button {
        width: 5rem;
    }
}

/*将为您跳转至名实集团旗下普惠金融网站*/


.goFXJR {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .4);
    display: none;
}
.goFXJR .zcMeg{
    top: 20%;
}
.btn-ok{
    background: #004097;
}
/*.zcMeg {*/
/*position: fixed;*/
/*top: 50%;*/
/*left: 50%;*/
/*z-index: 11;*/
/*width: 20rem;*/
/*height: 10rem;*/
/*margin-left: -10rem;*/
/*margin-top: -5rem;*/
/*background: #fff;*/
/*border-radius: 0.5rem;*/
/*overflow: hidden;*/
/*text-align: center;*/
/*}*/

/*.zcMeg span {*/
/*border: none;*/
/*}*/
/*.zcMeg h2 {*/
/*box-sizing: border-box;*/
/*font-size: 16px;*/
/*padding: 0 0.5rem;*/
/*padding-top: 0.5rem;*/
/*background: #f9f9f9;*/
/*height: 2.5rem;*/
/*line-height: 1.5rem;*/
/*border-bottom: 1px solid #eaeaea;*/
/*text-align: left;*/
/*}*/
/*.zcMeg p {*/
/*font-size: 14px;*/
/*color: #666;*/
/*text-align: center;*/
/*padding: 0 1.5rem;*/
/*margin-top: 1.5rem;*/
/*line-height: 1.2rem;*/
/*}*/
.goFXJR .zcMeg button {
    width: 5rem;
    margin: 2rem 0.5rem 0rem 0.5rem;
}
.btn-ok{
    color: #fff;
}
.clear{
    border: none!important;
}
/*新需求样式22018/09/13*/
/*分页*/
.page{
    padding-bottom: 15px;
}
.page li {
    font-size: 12px;
    color: #c1c7d8;
    font-weight: normal;
    margin-right: 0.25rem;
    padding: 0.35rem 0.6rem;
    border: 1px solid #dadada;
    border-radius: 0.2rem;
    cursor: pointer;
    line-height: 1rem;
}

.page .page_last, .loaninfo_bottom .page .page_next, .page .page_current {
    color: #007bc7;
    background-color: #ffffff;
    border: 1px solid #dadada;
}

.page li:hover {
    color: #fff;
    background-color: #007bc7;
    border-color: #007bc7;
}

.page li:last-child {
    /*border: none;*/
    /*cursor: none;*/
    padding: 0 0.6rem;
    line-height: 1.75rem;
}

.page li:last-child:hover {
    /*color: #c1c7d8;*/
    /*background-color: #fff;*/
    /*border-color: #fff;*/
}

.page ul {
    display: flex;
    justify-content: center;
}

.page li input[type=text] {
    box-sizing: border-box;
    border-radius: 0.2rem;
    border: 1px solid #dadada;
    width: 1.75rem;
    padding: 0.35rem 0.2rem;
    text-align: center;
    color: #007bc7;
}

/*分页*/
/*基金产品*/
.fundProduct{
    overflow: hidden;
}
#fund{
    width: 59rem;
    margin:0 auto;
    margin-top: 20px;
    /*background: #bedcf5;*/
}
/*nav*/
.blTopNavBox {
    width: 100%;
    margin: 10px 0 0;
}
.blTopNavBox .blTopNav {
    width: 100%;
    font-size: 18px;
    overflow: hidden;
    margin: 0 auto;
    line-height: 32px;
}
.blTopNavBox .blTopNav .blTopSearchBox {
    position: relative;
    width: 430px;
    height: 32px;
    background: white;
    border: 2px solid #004097;
    font-size: 14px;
    float: right;
    text-align: left;
    padding: 0 8px;
    padding-right: 0;
}
.blTopNavBox .blTopNav .blTopSearchType {
    width: 62px;
    text-align: center;
    height: 32px;
    line-height: 32px;
    color: #555;
    border-right: 1px solid #f0f0f0;
    padding-right: 5px;
}
.blTopNavBox .blTopNav .blTopSearchInput {
    border: none;
    width: 310px;
    padding-left: 5px;
    height: 24px;
    line-height: 24px;
    color: #c8c8c8;
    font-size: 14px;
}
.blTopNavBox .blTopNav .blTopSearchBtn {
    color: white;
    background: #004097;
    display: inline-block;
    height: 32px;
    vertical-align: top;
    line-height: 32px;
    padding: 0 5px;
    float: right;
    cursor: pointer;
}
/*检索 框*/
.blFilterBox {
    width: 59rem;
    margin: 0 auto 27px auto;
    font-size: 14px;
    text-align: left;
    overflow: hidden;
    margin-top: 20px;

}
.blFilterBox .title{
    margin: 15px 0;
}
.fillerBox{
    width: 100%;
    overflow: hidden;
    /*background: white;*/
    /*background: #edeff3;*/
}
.filter {
    width: 59rem;
    margin:0 auto;
    font-weight: 500;
    background-color: #fff;
    /*padding-left: 24px;*/
}
.fillerBox .filter li {
    line-height: 38px;
    padding-left: 1rem;
}
.fillerBox .filterName {
    font-weight: bolder;
    color: #555;
    cursor: default;
    margin-right: 18px;
}
.fillerBox .filterOption {
    font-weight: 500;
    color: #555;
    margin-right: 20px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}
.fillerBox .filterOption input {
    display: none;
}
.fillerBox .filterOption input.checked + label {
    /*color: #e96264;*/
    color: #a27b59;
    text-decoration: underline;
}
.filterOption select {
    width: 100px;
    padding: 5px 8px;
    border-radius: 5px;
}
.filterOption label {
    cursor: pointer;
}
.blProductOrderItem input {
    display: none;
}
.blProductOrderItem input.checked + label {
    /*color: #e96264;*/
    color: #a27b59;
    text-decoration: underline;
}

/*fundlist*/
.blProductBox {
    /*background: #f5f5f5;*/
    margin-top: 0px;
    padding: 10px 0;
}
.blProductBox a{
    text-decoration: none;
    cursor: auto;
}
.blProductBox .blProductOrder {
    width: 58rem;
    margin: 0 auto;
    text-align: left;
    color: #555;
    line-height: 16px;
    padding: 0.5rem 0  0.5rem 1rem;
    background: #fff;
}
.blProductBox .blProductOrder .blProductOrderItem {
    margin: 0 15px;
    padding-right: 8px;
    cursor: pointer;
}
.blProductBox .blProductList {
    width: 59.2rem;
    margin: 0 auto;

}
.blProductBox .blProductList .listItem {
    background: white;
    padding: 0px 67px 10px 25px;
    margin: 10px 0 20px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 0 0  20px;
}
.blProductBox .blProductList .listItem:hover {
    background: #fff9ec;
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -webkit-transition: all 0.2s ease-out;

}
.safetyItem:hover {
    /*background: #fff9ec;*/
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -webkit-transition: all 0.2s ease-out;

}

.imgL{
    float: left;
    width: 16%;
}
.contentR{
    float: right;
    width: 80%;
}

/*.blProductBox .blProductList .listText {*/
/*color: #867373;*/
/*}*/
/*背景图*/
.gushou{
    width: 120px;
    height: 120px;
    background: url(../img/fund/gushouBg.png) no-repeat;
    background-position: left;
    background-size: cover;
    /*border-radius: 20%;*/
}
.gushou span{
    display: inline-block;
    width: 2rem;
    text-align: center;
    font-size: 50px;
    color:#000000;
}
.gushou strong{

}
.fushou{
    width: 120px;
    height: 120px;
    background: url(../img/fund/fushouBg.jpg) no-repeat;
    background-position: left;
    background-size: cover;
    /*border-radius: 20%;*/
}
.fushou p{
    padding-top: 85px!important;
}
.blProductBox .blProductList .listTitle {
    font-size: 22px;
    padding: 24px 0 14px;
    font-weight: 500;
    /* width: 600px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    display: block;
    color: #333;
}
.blProductBox .blProductList .features {
    font-size: 16px;
    color: #f70707;
}
.blProductBox .blProductList .listTitle-gm {
    font-size: 18px;
    width: 100%;
    display: inline-block;
    color: #989898;
    padding-bottom: 15px;
    border-bottom: 1px dotted #989898;
}
.blProductBox .blProductList .listTitle-gm .listTitle-dm {
    font-style: normal;
    font-size: 16px;
}
.blProductBox .blProductList .listRow {
    color: #aba9a9;
    font-size: 16px;
    float: left;
    padding: 14px 0 10px;
    font-weight: lighter;
}
.blProductBox .blProductList .listRow font {
    display: inline-block;
    margin-right: 4px;
    font-weight: lighter;
}
.blProductBox .blProductList .box1 {
    width: 8rem;
    height: 110px;
    padding-top: 25px;
}
.blProductBox .blProductList .box2 {
    width:  14rem;
}
.blProductBox .blProductList .box3 {
    width:  13rem;
}
.blProductBox .blProductList .box4 {
    width:  12rem;
    margin-left: 5px;
}
.blProductBox .blProductList .box21 {
    width:  18rem;
}
.blProductBox .blProductList .box31 {
    width:  15rem;
}
.blProductBox .blProductList .percentBox {
    color: #df0407;
    font-weight: 300;
}
.blProductBox .blProductList .appoint {
    position: absolute;
    right: 25px;
    top: 55px;
}
.blProductList .appoint span {
    display: block;
    font-size: 12px;
    color: #706d6d;
    margin-bottom: 5px;
}
.blProductList .appoint .appointBox {
    text-align: center;
    margin: 15px auto;
}
.blProductList .appoint .appointBox .commonBtn {
    font-size: 18px;
    width: 148px;
}
.blProductList .appoint .appointBox .current {
    background: #bdbbbc;
    cursor: default;
}
.blProductBox .blProductList .listText {
    margin: 0;
    padding: 0 0 10px 0;
}
.blProductBox .blProductList .listText-risk {
    margin-left: 42px;
}
.blProductBox .blProductList .level {
    height: 42px;
    position: relative;
}
.blProductBox .blProductList .level .level-box {
    height: 21px;
    width: 225px;
    position: absolute;
    top: 12px;
}
.blProductBox .blProductList .level .level-box .levelText {
    position: absolute;
    font-size: 16px;
    bottom: 5px;
    height: 21px;
    width: 68px;
    text-align: right;
}
.blProductBox .blProductList .level .level-box .level-risk {
    position: absolute;
    height: 14px;
    bottom: 10px;
    width: 150px;
    left: 74px;
    line-height: 14px;
}
.blProductBox .blProductList .level .level-box .level-risk .riskStar {
    display: block;
    float: left;
    margin-right: 5px;
}
.blProductBox .blProductOrder .down {
    color: #004097;
}
.blProductBox .blProductList .appoint .appointBox .commonBtn {
    font-size: 16px;
    width: 100px;
    background: #fff;
    color: #004097;
    text-align: center;
    border-radius: 30px;
    padding: 7px 10px 8px;
    display: inline-block;
    border:1px solid #004097;
    cursor: pointer;
}
.appoint .appointBox .commonBtn:hover{
    /*background: #007bc7!important;*/
    color: #fff!important;;
    background: #004097 !important;
}
/*封闭区  按钮样式*/
.blProductBox .blProductList .appoint .fengbiBtn {
    font-size: 16px;
    width: 100px;
    background: #bfbcbc;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    padding: 7px 10px 8px;
    display: inline-block;
    margin:20px 0;
    /*border:1px solid #004097;*/
}
.blProductBox .blProductList .appoint .fengbiBtn a{
    cursor: none;
    color: #fff;
}
/*.commonBtn:hover {*/
/*background: #5688cc!important;*/
/*!*opacity: 0.8;*!*/
/*}*/

.level span{
    font-size: xx-large;
    /*color: #333;*/
    color: #5b5b5b;
}
.percentBox span{
    color: #333333;
    width: 100%;
    height: 85px;
    line-height: 90px;
    font-size: 18px;

}

.percentBox span strong{
    font-size: 35px;
}
.percentBox p{
    text-align: center;
    color: white;
}
.iconfont {
    font-family: "iconfont";
    /* font-size: 16px; */
    font-style: normal;
}
.riskStar img{
    width: 0.7rem;
}
.starsbox{
    height: 42px;
}
.levelText img{
    width: 0.7rem;
    vertical-align: middle;
    margin-top: -3px;
    margin-left: 2px;
}
.noList{
    height: 250px;
    background: white;
    margin-top: 10px;
    margin-bottom: 20px;
}
.noList img{
    /*margin:0 auto;*/
    width: 100px;
    margin-left: 45.7%;
    margin-top: 7%;
}
.noList p{
    text-align: center;
}
/*基金产品 详情*/
.fundDesBox{
    width: 100%;
    background: #dceef9;
    overflow: hidden;

}
.productInfo{
    width: 59rem;
    margin:0 auto;
    margin-top: 20px;
    overflow: hidden;
    margin-bottom: 10px;

}
.productInfo .title{
    margin: 15px 0;

}
.title .text2{
    color: #004097;
}
.title .text3:hover{
    text-decoration: none;
}

.productInfo_basic .pInfo{
    background: white;
    margin-top: 0.5rem;
}
.orderSection{
    margin-top: 0.5rem;
    background: url("../img/fund/loan_bg.png") no-repeat #fff;
    background-position: 691px 28px;
}
.orderSectionyjs{
    margin-top: 0.5rem;
    background: url("../img/fund/loan_bg_yjs.png") no-repeat #fff;
    background-position: 691px 28px;
}
.orderSectionfbq{
    margin-top: 0.5rem;
    background: url("../img/fund/loan_bg_fbq.png") no-repeat #fff;
    background-position: 691px 28px;
}
.basic_title{
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    border-bottom: 1px solid #eee;
}
.detailInfo{
    overflow: hidden;
    /*后来居上*/
    /*background: #fff;*/
}
.detailInfo .content_left{
    padding: 0 30px;
    width: 35rem;
    /*border-right: 1px dashed #e5e5e5;*/
    float: left;
    box-sizing: border-box;
}
.content_left .con_l_top{
    padding: 60px 0;
    display: flex;
    justify-content: space-around;
}
.content_left .con_l_top .numberP{
    margin-bottom: 14px;
    height: 32px;
    line-height: 32px;
    font-size: 28px;
    color: #004097;
    font-weight: bold;
}
/*.content_left .con_l_top .unitP{*/
/*color: #004097;*/
/*}*/
.con_top1{
    display: inline-block;
}
.text-center{
    text-align: center;
}
.v_line{
    width: 0;
    height: 48px;
    border-left: 1px solid #e5e5e5;
    display: inline-block;
}
.con_l_bottom{
    padding: 12px 0;
    border-top: 1px dashed #e5e5e5;
}
.con_l_bottom span{
    display: inline-block;
    /*float: left;*/
}
.con_l_bottom > p .boldP{
    color:#a27b59;
    font-size: 18px;
    font-weight: bold;
    width: 80%;
    height: 23px;
    overflow: hidden;
}
.con_b_item{
    padding: 5px;
    font-size: 14px;
}
.con_b_item .text2{
    color: #333;
    display: inline-block;
    width:88%;

}
/*立即预约*/
.detailInfo .content_right{
    float: right;
    width: 24rem;
}
.detailInfo .content_right .orderForm{
    margin-top: 25px;
}
.detailInfo .content_right .orderForm .tipErr{
    height:20px;
}
.detailInfo .content_right .orderForm .btn_order{
    color: #ffffff;
    background-color: #024394;
    display: block;
    width:6rem;
    margin: 0 auto;
    border-radius: 30px;
}
.detailInfo .content_right .orderForm .btn_order:hover{
    opacity: 0.8;
}
.detailInfo .content_right .orderForm .btn_noOrder{
    color: #ffffff;
    background-color: #bfbcbc;
    display: block;
    width:6rem;
    margin: 0 auto;
    border-radius: 30px;
}

.detailInfo .content_right .orderForm input,.detailInfo .content_right .orderForm select{
    border:1px solid #e5e5e5;
    border-radius: 4px;
}
.detailfoot{
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
    /*后来居上*/
    background: #fff;
}
.detailfoot p{
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-bottom: 1px dashed #e5e5e5;
}


.detailfoot p .text1{
    display: inline-block;
    width: 4rem;
    margin-right: 1.5rem;
    float: left;
}
.detailfoot .foot_con_title{
    height: 1rem;
    line-height: 1rem;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

/*海外 css*/
.safety{
    width: 100%;
    margin:0 auto;

    /*background: #edeff3;*/
    overflow: hidden;
}

.saftyInfo .title,.safetyDes .title{
    margin: 15px 0;
}

/*保险*/
.insuranceList{
    width: 79.4%;
}
.insuranceList .box2{
    width: 15rem!important;
}

.insuranceList .box3{
    width: 15rem!important;
}
.insuranceList .box21 {
    width:  18rem!important;
}
.insuranceList .box31 {
    width:  15rem!important;
}

.blProductBox .blProductList .insuranceItem {
    background: white;
    /*padding: 10px 50px;*/
    margin: 20px 0px;
    overflow: hidden;
    position: relative;
    border-radius: 10px 0 0 10px;
    /*box-shadow: 0px 0px 10px #888888;*/

}
.blProductBox .blProductList .insuranceItem:hover{
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -webkit-transition: all 0.2s ease-out;
    background: #fff9ec;

}
.blProductBox .blProductList .insuranceItem :hover img{

}
.insuranceItem .investL img{
    width: 100%;
}
.insuranceItem .investL{
    width: 100%;
    float: left;
}
.insuranceItem .investR{
    float: right;
    width: 67%;
    /*height: 74%;*/
    /*background: #c8e2c8;*/
    padding: 1.5rem 2rem 2rem 2rem;
}
/*.insuranceItem .appointBox{*/
/*position: absolute;*/
/*bottom: 37%;*/
/*right: 50px;*/
/*font-size: 16px;*/
/*width: 100px;*/
/*padding: 7px 10px 8px;*/
/*!* background: rgba(0,0,0,0); *!*/
/*!* color: #004097; *!*/
/*background: #004097;*/
/*!* color: #004097; *!*/
/*text-align: center;*/
/*border-radius: 30px;*/
/*display: inline-block;*/
/*!* border: 1px solid #004097; *!*/
/*}*/
.insuranceItem .appointBox a{
    /*color: #004097;*/
    color: #fff;
}
.insuranceItem .appointBox:hover{
    /*background: #a27b59;*/
    /*color: white;*/
    /*opacity: 0.9;*/


}
.insuranceItem .appointBox:hover >a{
    /*background: #004097;*/
    color: white;
    cursor: pointer;

}
.saftyInfo .title .text2{
    color: #004097;
}

.helpCenterP{
    height: 2.5rem;
    line-height: 2.5rem;
    border-bottom: 1px solid #eaeaea;
    font-size: 17px;
    margin-left: 10px;
}
.helpCenterP .lIcon{
    display: inline-block;
    height: 50px;
    width: 16px;
    background: url(../img/leakage/icon_leakage.png) no-repeat 0 45%;
    vertical-align: middle;
    margin-right: .5rem;
}
/*置顶 推荐 样式*/
.topBox{
    position: relative;
}
.topBox>img{
    width: 100%;
}
.topBox .appointBox{
    position: absolute;
    right: 25px;
    bottom: 20px;
}
.topBox .appointBox .commonBtn {
    font-size: 16px;
    width: 100px;
    background: #fff;
    color: #004097;
    text-align: center;
    border-radius: 30px;
    padding: 7px 10px 8px;
    display: inline-block;
    border:1px solid #004097;
    cursor: pointer;
}
.commonBtn1{
    font-size: 16px!important;
    width: 100px;
    background: #fff;
    color: #004097;
    text-align: center;
    border-radius: 30px;
    padding: 7px 10px 8px;
    /*display: inline-block;*/
    border:1px solid #004097;
    cursor: pointer;
}
.commonBtn1:hover{
    /*background: #007bc7!important;*/
    color: #fff!important;;
    background: #004097 !important;
}
.topBox .appointBox .commonBtn:hover{
    /*background: #007bc7!important;*/
    color: #fff!important;;
    background: #004097 !important;
}


/*排序*/
.blProductOrderItem .ord{
    display: inline-block;
    width: 16px;
    height: 15px;
    background: url(../img/fund/noneOrder.png) no-repeat;
    background-position: right;
    background-size: 100%;
    vertical-align: top;
}
.downActive{
    display: inline-block;
    width: 16px;
    height: 15px;
    background: url(../img/fund/down.png) no-repeat!important;
    background-position: right!important;
    background-size: 100%!important;
    vertical-align: top!important;
}
.upActive{
    display: inline-block;
    width: 16px;
    height: 15px;
    background: url(../img/fund/up.png) no-repeat!important;
    background-position: right!important;
    background-size: 100%!important;
    vertical-align: top!important;
}



/*new Css 首页*/
.indexNew{
    width: 59rem;
    margin:0 auto;
    overflow: hidden;
    /*padding: 10px 0;*/
    /*background:#9ba784 ;*/
}
.tabBox2{
    width: 59rem;
    /* margin-left: 1.9rem; */
    /* height: 55px; */
    overflow: hidden;
    position: relative;
    display: inline-block;
    /* margin-left: 3%; */
    /*margin-left: 3%;*/
}
.tabTitleBox{
    display: flex;
    /*justify-content: space-between;*/
    /*display: -webkit-flex; !* Safari *!*/
    /*-webkit-justify-content: space-between; !* Safari 6.1+ *!*/
    overflow: hidden;

    white-space: nowrap;
    /*overflow-x: auto;*/
    /*position: relative;*/
    /* width:3000px; */

}
.tabTitleBox li{
    flex: 1;
    /* width: 9.6%; *//* 4个 */
    /* width: 12.8%; *//* 3个 */
    /*height: 50px;*/
    /*background-color: #d4d4cf;*/
    /*text-align: center;*/
    /*line-height: 50px;*/
    /*font-size: 16px;*/

    /*width: 287.5px;*/
    height: 50px;
    background-color: #d4d4cf;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    /*display: inline-block;*/
    float:left;
    /* margin: 0.2rem; */


}
.tabTitleBox li:nth-child(2) {
    background-color: #dadada;
}
.tabTitleBox li:hover {
    background:#276671;
    /*color: white;*/
}
.tabTitleBox li:hover a{
    text-decoration: none;
    color: white;
}
.tabTitleBoxActive{
    background:#0E5561!important;
    color: white !important;
}
.tabTitleBoxActive a{
    color: white !important;
    background: url(../img/index/upCore.png) no-repeat center;
    background-position: 50% 39px;
    /* margin: 0px auto; */
    display: inline-block;
    position: relative;
    height: 100%;
}
.nndBox{
    position: relative;
    width: 63rem;
    margin: 0 auto;
    text-align: center;
}
.nndBox .intoLeft{
    position: absolute;
    left: -10px;
    top: 4px;
    z-index: 2;
}
.nndBox .intoRight{
    position: absolute;
    right: -5px;
    top: 5px;
    z-index: 2;
}

.nndBox .intoRight{
    position: absolute;
    right: -10px;
    top: 4px;
    z-index: 2;
}


.tabBox{
    overflow: hidden;
}
.tabBox ul {
    width: 100%;
    margin-top:5px;
    /*height: 323px;*/
}
.tabBox ul li{
    overflow: hidden;
    display: none;
    /*height: 323px;*/
}


/*.tabBox ul li:nth-child(1){*/
/*background-size: cover;*/
/*overflow: hidden;*/

/*}*/
.tabBox ul li .tabL{
    width: 60%;
    float: left;
}
.tabBox ul li .tabL img{
    max-width:none;
    /*background: url("../img/index/fxNew1.jpg");*/
    /*box-shadow: 2px 0px 3px #888888;*/
    box-shadow:1px 1px 5px #333;
    -webkit-box-shadow:1px 1px 5px #333;
    -moz-box-shadow:1px 1px 5px #333;
}


.tabBox ul li .tabR{
    overflow: hidden;
    height:100%;
    position:relative;
    float: left;
    margin-top: 20px;
    width: 40%;
}
.moreBtnNew{
    font-size: 12px;
    width: 100px;
    text-align: center;
    padding: 7px 10px 8px;
    display: inline-block;
    margin: 13px 0 7px 0;
    cursor: pointer;
    background-color:#0E5561;
    color: #fff;
    border-radius:5px;
    /*border: 1px solid #004097;*/
}


.moreBtnNew:hover{
    opacity: 0.8;
    /*background: #004097;*/
    /*color: #fff;*/
    text-decoration: none;
}


/*固定图片  部分*/
.fundCon{
    width: 41.9%;
    height: 13.5rem;
    float: left;
    margin: 0px 5px 0px 0;
    position: relative;
}
.fundCon img{
    width: 100%;
    height: 100%;
}
.baoxian{
    width: 24%;
    float: left;
    height: 13.5rem;
    margin: 0px 5px 0px 5px;
    position: relative;
}
.baoxian img{
    width: 100%;
    height: 100%;
}

.haiwai{
    width: 32.3%;
    float: left;
    height: 13.5rem;
    margin: 0px 0  0px 5px;
    position: relative;
}

.haiwaiBox{
    margin-top: 10px;
    height: 7.5rem;
}
.haiwaiBox img{
    width: 100%;
    height:100%;
}

.haiwai #my-carousel1{
    width: 100%;
    height: 6rem;

}
.footTitle{
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background:#0E5561;
    text-align: center;
    font-size: 16px;
    color: white;

}
.footTitle:hover{
    opacity: 0.8;
}
.footTitle1:hover{
    opacity: 0.8;
}
.footTitle1{
    position: absolute;
    bottom: 2px;
    right: 30px;
    width: 80%;
    height: 50px;
    line-height: 50px;
    text-align: right;
    font-size: 16px;
    color: white;
}
.footTitle1 img{
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/*合作机构修改*/
.cooperate > img{
    position: absolute;
    top:0;
    left: 0;
    width: 100px;
}
/*登录蒙层 修改*/
.footer_roof {
    position: fixed;
    z-index: 9999;
    bottom: 80px;
    left: 50%;
    margin-left: -110px;
    background: #05576f;
    display: block;
    width: 220px;
    height: 50px;
    border: none;
    border-radius: 25px;
    color: #fff;
    line-height: 50px;
    font-size: 20px;
    cursor: pointer;
}
.footer_roof:hover{
    background: #1e718a;
}
.footer_layer_copy {
    position: fixed;
    bottom: 40px;
    z-index: 9999;
    color: #b8875c;
    width: 100%;
    text-align: center;
    font-size: 12px;
}

/*海外页修改*/
.saftyItem  {
    width: 32.4873%;
    margin: 5px;
    background: #5e6312;
    overflow: hidden;
    float: left;
    position: relative;
}
.saftyItem:hover .investB{
    display: block;
}
.investT{
    height: 360px;
}
.investT img{
    width: 100%;
    height: 100%;
}
.investB{
    width: 100%;
    position: absolute;
    top:0;
    height:360px;
    background-color: #959595;
    color: #fff!important;
    display: none;
}
.investB  .safetyInfo {
    padding: 10px;
    position: relative;

}

.investB .appointBox{
    position: absolute;
    bottom: 45px;
    font-size: 16px;
    width: 100px;
    padding: 7px 10px 8px;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #fff;
    margin-left: 34%;
    /*margin: 0 auto;*/
    /*display: block;*/
}
.investB .appointBox a{
    color: #fff;
    cursor: pointer;

}
.investB .appointBox:hover{
    background: #fff;
    color: white;
    cursor: pointer;

}
.investB .appointBox:hover >a{
    text-decoration: none;
    color: #004097;
    cursor: pointer;

}
#login_button:hover{
    background: #0E5561;
}
#pass:hover{
    font-size: 16px;
}
#regist_button:hover{
    background: #0E5561;
}
#hq_button:hover{
    background: #0E5561;
    border-color: #0E5561!important;
    color: #FFF!important;
}
/*小 banner*/
.litleBan img{
    width: 100%;
}

.diploma img{
    max-width: 100%!important;
}
.contact_footI{
    width: 35%;
    margin-left: 732px;
    margin-top: 110px;
}


.megYzm{
    text-align: center;
    padding: 8px 1rem!important;
}
/*job 人才招聘*/
.jobMain{
    background: #fff;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 10px;
    min-height:19rem;

}
.tbHeader {
    height: 29px;
    padding: 12px 3%;
    line-height: 29px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
}
.tbHeader div{
    display: inline-block;
    float: left;
    overflow: hidden;
    height: 29px;
    line-height: 29px;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    font-weight: bold;
}
.list_item {
    height: 29px;
    padding: 12px 2%;
    line-height: 29px;
    margin: 0 1%;
    font-size: 13px;
    border-bottom: 2px dotted #f5f5f5;
    color: #666;
}
.list_item div{
    display: inline-block;
    float: left;
    overflow: hidden;
    height: 29px;
    line-height: 29px;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
}
.column1 {
    width: 30%;
}
.column2 {
    width: 20%;
}

.column3 {
    width: 20%;
}

.column4 {
    width: 15%;
    text-align: left;
}

.column5 {
    width: 15%;
}
.column1 a:hover{
    color: #428bca;
}
.down-arrow-icon {
    margin-top: 10px;
    top: 0;
    position: absolute;
    right: 0;
    /*float: right;*/
    display: inline-block;
    padding: 10px 21px 0 0;
    background: url(../img/tu/banner-icon.png) -28px -146px;
}
.down-arrow-icon:hover {
    background-position:  -81px -146px;
}
.up-arrow-icon {
    margin-top: 10px;
    top: 0;
    position: absolute;
    right: 0;
    /*float: right;*/
    display: inline-block;
    padding: 10px 21px 0 0;
    background: url(../img/tu/banner-icon.png) -2px -145px;
}
.up-arrow-icon:hover {
    background-position: -54px -145px;
}
.job-detail {
    padding: 12px 3% 20px;
    border-bottom: 2px dotted #f5f5f5;
    display: none;
}
.job-detail .job-text{
    padding-bottom: 12px;
}
.job-detail .getJob {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    background-color: #004097;
}
.job-detail .getJob:hover{
    background-color: #2681ff;
    text-decoration: none;
}

/*上传简历*/
.upJL{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .4);
    /*display: none;*/
}
.riskInputDiv .loginIpt lable{
    display: inline-block;
    width: 6rem;
    font-size: 20px;
    color:#484849;
    text-align: right;
    padding: 5px 5px 5px 15px;
    font-size: 14px;
}
.riskInputDiv .loginIpt input{
    width: 10.5rem;
    position: relative;
    height: 20px;
    padding: 5px 5px 5px 15px;
    border: 1px solid #7b7373;
    transition: .3s;
    font-size: 14px;
    color: #666;
    border-radius: 5px;

}
.riskInputDiv .loginIpt .tipErr{
    display: inline-block;
    height: 1rem;
    color: red;
}
dd label{
   cursor: pointer;
}


.riskbox .riskBg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .4);
}

.riskbox .tipMeg {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 11;
    width: 20rem;
    height: 10rem;
    margin-left: -10rem;
    margin-top: -5rem;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    text-align: center;
}

.riskbox .tipMeg span {
    border: none;
}

.riskbox .tipMeg h2 {
    box-sizing: border-box;
    font-size: 16px;
    padding: 0 0.5rem;
    padding-top: 0.5rem;
    background: #f9f9f9;
    height: 2.5rem;
    line-height: 1.5rem;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
}

.riskbox .tipMeg p {
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 0 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.2rem;
}

.riskbox .tipMeg button {
    width: 5rem;
    margin-top: 0.75rem;
}




@media only screen and (max-width: 1370px) {
    #loginRegister.loginBg .tipMeg {
        /* width: 60rem; */
        height: 30rem;
        width: 50rem;
        min-height: 24rem;
        background: #024394;
        margin: 0 auto;
        margin-top: 4rem;
        overflow: hidden;
        position: relative;
        /* border: 10px solid #004097; */
        /* border-radius: 20px; */
    }
}

/*pad*/
@media only screen and (max-width: 1200px) {
    html {
        font-size: 97%;
    }
    .fundCon {
        width: 41.5%;

    }
    .haiwai #my-carousel1 {
        width: 100%;
        height: 6rem;
    }
    .haiwaiBox {
        margin-top: 10px;
        height: 7rem;
    }
    .orderForm .loginIpt .rdiv select {
        padding: 7px 5px 8px 15px;
        width: 5.8rem;
        display: inline-block;
        overflow: auto;
        border-radius: 5px;
    }
    .saftyItem {
        width: 32.25%;
        margin: 5px;
        background: #5e6312;
        overflow: hidden;
        float: left;
        position: relative;
    }
    #loginRegister .loginLeft {
        background-position: 0px 390px;
        background-size: 70px;
    }
    .tabTitleBox li {
        width: 10%;
    }
    .investT {
        height: 310px;
    }
    .investB {
        width: 100%;
        position: absolute;
        top: 0;
        height: 320px;
        background-color: #959595;
        color: #fff!important;
        /* display: none; */
    }
    .orderBg .tipMeg {
        height: 22rem;

    }
    .orderSection{
        margin-top: 0.5rem;
        background: url("../img/fund/loan_bg1.png") no-repeat #fff;
        background-position: 548px 28px;
    }
    .orderSectionyjs{
        margin-top: 0.5rem;
        background: url("../img/fund/loan_bg_yjs1.png") no-repeat #fff;
        background-position: 548px 28px;
    }
    .orderSectionfbq{
        margin-top: 0.5rem;
        background: url("../img/fund/loan_bg_fbq1.png") no-repeat #fff;
        background-position: 548px 28px;
    }
    .contact_footI {
        width: 35%;
        margin-left: 560px;
        margin-top: 110px;
    }

    #registerForm .loginIpt div .megYzm {
        width: 5rem;
        transition: .3s;
        display: inline-block;
    }#registerForm .loginIpt .agreeP {
         font-size: 14px;
     }
    .investB .appointBox {
        position: absolute;
        bottom: 45px;
        font-size: 16px;
        width: 100px;
        padding: 7px 10px 8px;
        color: #fff;
        text-align: center;
        border-radius: 30px;
        display: inline-block;
        border: 1px solid #fff;
        margin-left: 30%;
        /* margin: 0 auto; */
        /* display: block; */
    }

}
.confirmShow_box {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0,0,0,0.3);
}
.touming {
    opacity: 0;
}
.confirmShow {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 11;
    width: 60%;
    min-width: 800px;
    max-width: 1200px;
    height: 70%;
    background: #fff;
    border: 5px solid #d9d9d9;
    border-radius: 10px;
    color: #000;
}
.confirmShow_p {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}
.confirmShow_text {
    padding: 0 10%;
}
.confirmShow_button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 2%;
}
.confirmShow_left {
    display: inline-block;
    width: 200px;
    background: #8497b0;
    text-align: center;
    margin: 0 30px;
    padding: 3px;
    font-size: 20px;
    border-radius: 6px;
}
.confirmShow_right {
    display: inline-block;
    width: 200px;
    background: #8497b0;
    text-align: center;
    margin: 0 30px;
    padding: 3px;
    font-size: 20px;
    border-radius: 6px;
}
.confirmShow_right:hover {
    text-decoration:none; 
}
.confirmShow_left:hover,.confirmShow_right:hover {
    background: #91a2b8;
    cursor: pointer;
}

