
.triangle {
    margin-left: -18px;
}

.waring-bg, .success-bg, .error-bg, .comfire-bg, .confirm-bg, .invite-bg, .confirm-picture-bg, .waring-info {
    background: rgba(0, 0, 0, .4);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    display: none;
}

.waring-index {
    width: 600px;
    height: 388px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 6px;
    padding: 23px 27px;
}

.confirm-index {
    width: 600px;
    height: 166px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    padding: 23px 27px;
}

.confirm-picture-bg .confirm-index {
    height: 315px;
}

.confirm-picture-bg .confirm-picture {
    text-align: center;
}

.confirm-picture-bg .confirm-picture > div {
    font-size: 14px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.confirm-index .confirm-text {
    text-indent: 2em;
    font-size: 12px;
}

.waring-indexcenter {
    padding-left: 110px;
    padding-top: 75px;
}

.waring-indexcenter > div {
    float: left;
    font-size: 15px;
    font-weight: bold;
}

.waring-indexcenter-inner {
    padding: 25px 21px;
    width: 290px;
}

.waring-indexcenter-inner > div {
    margin-bottom: 8px;
}

.waring-index-contant, .confirm-picture-bg .confirm-picture > div {
    word-break: break-all;
    max-height: 48px;
    line-height: 16px;
}

.waring-indexbtn {
    margin-top: 51px;
    width: 330px;
    text-align: center;
}

.waring-indexbtn > button {
    /*float: right;*/
    /*margin-left: 10px;*/
}

.close-index {
    background: #fff;
    color: #333;
    border: 1px solid #ccc !important;
    width: 100px;
    height: 31px;
    line-height: 17px !important;
    margin-right: 10px;
}

.close-index:hover {
    color: #333 !important;
}

.waringyelleow {
    background: linear-gradient(#fff 50%, #FFCC00 0);
    display: inline-block;
}

.errorred {
    /*background: linear-gradient(#fff 50%, red 0);*/
    display: inline-block;
}

.successgreen {
    /*background: linear-gradient(#fff 50%, green 0);*/
    display: inline-block;
}

.dataTables_processing {
    position: absolute;
    width: 98%;
    height: 100%;
    text-align: center;
    padding-top: 50px;
    background: rgba(255, 255, 255, 0.5);
    z-index: 9;
}

.bannerP {
    width: 100vw;
    height: 56.25vw;
    background: url(../img/banner3x.png) no-repeat;
    background-size: 100vw 56.25vw;
}

.small-login-div {
    height: 100vh;
    background-size: 100vw 100vh;
}

#weLogin, #weLoginQ {
    height: 330px;
}

.logindiv {
    width: 396px;
    height: 412px;
    right: 5.4vw;
    top: 12vw;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
}

.logindivinner {
    padding: 33px 51px;
}

.small-login-div .logindiv {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.login-bottom {
    width: 100%;
    background: #ccecff;
    height: 60px;
    display: flex;
    color: #0199ff;
    font-weight: 600;
    align-items: center;
    padding: 0 20px;
}
.login-bottom div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-passwordtab {
    height: 31px;
    width: 291px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.passwordtab {
    font-size: 14px;
    height: 31px;
    /*border-bottom: 1px solid #000;*/
    color: #999;
    width: 60px;
    float: left;
    margin-right: 26px;
    cursor: pointer;
    padding-bottom: 10px;
}

.passwordtab_active {
    border-bottom: 2px solid #333;
    color: #333;
    font-weight: bold;
}

.smallradio {
    border-radius: 4px;
}

.logininput input, .logininput_f input, .logininput_zc input, .bindPhone input {
    width: 291px;
    height: 44px;
    background: #fff;
    border: none;
    outline: none;
    padding-left: 21px;
    margin-top: 20px;
}

.logininput_zc input {
    margin-top: 10px;
}

.login-btn {
    width: 291px;
    height: 45px;
    margin-top: 20px;
    background: #0099ff;
    border: 1px solid #0099ff;
}

.logincheckbox {
    margin-top: 20px;
    width: 291px;
}

.logincheckbox input[type=checkbox] {
    /*去除浏览器默认样式*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*自己样式*/
    width: 18px;
    height: 18px;
    border: 1px solid red;
    outline: none;
    background: #fff;
    border: 1px solid #ccc;
    transform: translateY(-3px);
    cursor: pointer;
}

.logincheckbox input[type=checkbox]::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #f4d12f;
    color: #fff;
    text-align: center;
    line-height: 18px;
    /*增加动画*/
    transition: all ease-in-out 300ms;
    -webkit-transition: all ease-in-out 300ms;
    -moz-transition: all ease-in-out 300ms;
    opacity: 0;
}

.logincheckbox input[type=checkbox]:checked::after {
    opacity: 1;
}

.logincheckbox1 {
    float: right;
    cursor: pointer;
    height: 15px;
}

.login-way-img {
    position: absolute;
    right: 7px;
    top: 72px;
    cursor: pointer;
    *cursor: hand;
}

.shu {
    width: 1px;
    height: 13px;
    background: #aaa;
    position: absolute;
    right: 90px;
    bottom: 49px;
}

.msdl {
    width: 130px;
    height: 14px;
    margin: 12px auto;
}

.index_header {
    width: 100%;
    height: 50px;
    background: #F2F2F2;
    box-shadow: 0px 11px 19px 0px rgba(0, 0, 0, 0.3);
    position: fixed;
    z-index: 9;
    padding: 0 25px;
    line-height: 50px;
}

.index_header_div {
    margin-right: 45px;
    float: left;
    font-weight: bold;
    font-size: 15px;
    line-height: 50px;
    cursor: pointer;
}

.body_center {
    display: none;
}

.index_header_div a:hover {
    color: #000 !important;
}

.index_header_div a:focus {
    color: #000 !important
}

.index_why {
    width: 100vw;
    height: 260px;
    padding-top: 80px;
    text-align: center;
}

.index_whydiv1 {
    font-size: 49px;
    letter-spacing: 4px
}

.index_whydiv2 {
    width: 672px;
    height: 15px;
    color: #999999;
    font-size: 19px;
    margin: 0 auto;
    letter-spacing: 2px
}

.c6 {
    width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.c6Li {
    width: 400px;
    float: left;
    padding: 0 98px 87px 98px;
    position: relative;
}

.c61 {
    width: 199px;
    text-align: center;
}

.c61 > img {
    width: 50px;
    height: 50px;
}

.c62 {
    width: 199px;
    height: 19px;
    font-size: 20px;
    font-weight: bold;
    color: rgba(51, 51, 51, 1);
    line-height: 24px;
    margin-top: 5px;
    text-align: center;
}

.c63 {
    width: 145px;
    height: 65px;
    font-size: 18px;
    font-weight: 300;
    color: rgba(153, 153, 153, 1);
    line-height: 24px;
    margin: 30px auto 0;
}

.c64 {
    width: 1px;
    height: 207px;
    background: rgba(229, 229, 229, 1);
    position: absolute;
    right: 0;
    top: 0;
}

.steps {
    width: 100vw;
    height: 568px;
    background: linear-gradient(90deg, #00D2FF, #009aff);
}

.stepstop {
    width: 100vw;
    height: 42px;
    background: rgba(0, 0, 0, 0.1);
}

.stepsTitle {
    width: 157px;
    height: 36px;
    font-size: 49px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 73px;
    margin: 40px auto;
    letter-spacing: 4px;
}

.stepsTitle1 {
    width: 360px;
    height: 18px;
    font-size: 19px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 29px;
    margin: 30px auto;
    letter-spacing: 3px
}

.buzhou {
    width: 1280px;
    height: 79px;
    margin: 70px auto 33px;
    position: relative;
}

.buzhouyi {
    width: 190px;
    height: 2px;
    background: rgba(242, 242, 242, 1);
    opacity: 0.3;
    position: absolute;
    top: 41px;
}

.buzhouyii {
    width: 232px;
    height: 2px;
    background: rgba(242, 242, 242, 1);
    opacity: 0.3;
    position: absolute;
    top: 41px;
    left: 330px;
}

.buzhouyiii {
    width: 232px;
    height: 2px;
    background: rgba(242, 242, 242, 1);
    opacity: 0.3;
    position: absolute;
    top: 41px;
    left: 710px;
}

.buzhouyiiii {
    width: 142px;
    height: 2px;
    background: rgba(242, 242, 242, 1);
    opacity: 0.3;
    position: absolute;
    top: 41px;
    left: 1130px;
}

.shuzi {
    width: 54px;
    height: 79px;
    font-size: 106px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    line-height: 79px;
    opacity: 0.2;
    margin: 0 0 0 218px;
    float: left;
}

.steps1 {
    width: 85px;
    height: 19px;
    font-size: 20px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    line-height: 24px;
    position: absolute;
    top: 30px;
    left: 214px;
}

.huiyuannextp {
    width: 1280px;
    margin: 0 auto;
}

.huiyuannext {
    width: 260px;
    min-height: 67px;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 24px;
    text-align: center;
    letter-spacing: 1.5px;
    margin: 0 0 0 130px;
    float: left;
}

.footer {
    width: 100vw;
    height: 286px;
    background: rgba(51, 51, 51, 1);
}

.footerinner {
    width: 1280px;
    margin: 0 auto;
    padding: 50px 0 0 40px;
}

.footerlogo {
    width: 100%;
    height: 96px;
}

.footer1 {
    float: left;
    width: 725px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}

.footer1 a, .footer1 a:hover, .footer1 a:active, .footer1 a:visited, .footer1 a:link {
    color: #FFFFFF;
    text-decoration: none;
}

.footer2 {
    float: left;
    width: 515px;
}

.footer2img {
    float: left;
}

.footer2shu {
    float: left;
    width: 1px;
    height: 55px;
    background: rgba(255, 255, 255, 1);
    opacity: 0.2;
    margin-left: 28px;
    margin-top: 10px;
    margin-right: 28px;
}

.footer3 {
    width: 320px;
    float: left;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 24px;
}

.footer3span {
    transform: translate(10px, -10px);
    display: inline-block;
}

.zhuceheader {
    width: 100%;
    height: 65px;
    background: rgba(0, 152, 255, 1);
    font-size: 20px;
    text-align: center;
    color: #fff;
    line-height: 65px;
}

.error-index-contant {
    height: 100px;
    overflow: auto;
    line-height: 26px;
    word-break: break-all;
}

input[disabled] {
    background: #fff !important;
    cursor: no-drop !important;
}

.yzmbtnlogin[disabled], .yzmbtnlogin_f[disabled], .yzmbtnlogin_zc[disabled] {
    background: #F2F2F2 !important;
    color: #999999 !important;
}

/*微信扫码后绑定手机*/
.bindPhone {
    width: 74%;
    margin: 0 auto;
}

.bind-phone-title {
    width: 100%;
    margin: 25px 0 10px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    font-weight: bold;
}

.bindPhone > div:last-child {
    margin-top: 6px;
    color: #0099FF;
}

.bindPhone > div:last-child span {
    cursor: pointer;
}

/*无操作消息提示，成功后无操作提示*/
.tip-success, .success-news, .waring-news {
    /*position: fixed;*/
    /*left: 0;*/
    /*right: 0;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*z-index: 999;*/
    /*display: none;*/
    display: none;
}

.tip-success .tip-info, .success-news > div, .waring-news > div {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #333;
    background-color: #ffffff;
    border-radius: 4px;
    z-index: 99;
}

.tip-success .tip-info {
    width: fit-content;
    top: 100px;
    padding: 12px 18px;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.success-news > div, .waring-news > div {
    display: flex;
    align-items: center;
    padding: 8px 18px 6px;
    top: 10%;
    box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.3), 0 6px 16px 0 rgba(0, 0, 0, 0.2), 0 9px 28px 8px rgba(0, 0, 0, 0.2);
}

.success-news > div img, .waring-news > div img {
    padding-right: 10px;
}

/*新的警告信息提示*/
.waring-info > div {
    background-color: #FFFFFF;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    /*height: 380px;*/
    position: fixed;
    border-radius: 6px;
    padding: 20px 24px;
}

.waring-info .waring-info-detail {
    max-height: 260px;
    overflow-y: auto;
    margin: 5px 0;
    line-height: 18px;
    padding-left: 10px;
    word-break: break-all;
}
.right-triangle {
    width: 0;
    height: 0;
    position: absolute;
    left: 500px;
    top: 330px;
    border-left: 40px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.qrcodeTitle {
    position: absolute;
    top: 70px;
    right: 70px;
    color: #0099ff;
    width: 120px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #0099ff;
    text-align: center;
    background-color: #fff;
}
.qrcodeTitle:before {
    width: 0px;
    height: 0px;
    position: absolute;
    top: 10px;
    right: -8px;
    padding: 0;
    border: 4px solid transparent;
    border-color: transparent transparent transparent #fff;
    content: '';
    z-index: 12;
}

.qrcodeTitle:after {
    width: 0px;
    height: 0px;
    position: absolute;
    top: 9px;
    right: -10px;
    padding: 0;
    border: 5px solid transparent;
    border-color: transparent transparent transparent #0099ff;
    content: '';
    z-index: 10
}
