@font-face {
    font-family: 'jy';
    src: url('../font/SourceHanSansCN-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "iconfont";
    /* Project id 2929108 */
    src: url('../font/iconfont1.woff2') format('woff2')
}
.btn{
    min-width: 80px;
    /*max-height: 40px;*/
    border-radius: 8px;
    padding: 0 5px ;
}
.btn-orange{
    background: #F3990F;
    border-color: #F3990F;
    color: #ffffff;
}
.btn-green{
    color: #fff;
    border-color: #0cc741;
    background-color: #0cc741;
}
.btn-red{
    color: #fff;
    border-color: #ff5c38;
    background-color: #ff5c38;
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'jy', sans-serif;
}

html,
body {
    width: 100%;
    position: relative;
}

ul,
ol,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* 修改滚动条的宽度 */
::-webkit-scrollbar {
    width: 6px;
    /* 纵向滚动条的宽度 */
    height: 6px;
    /* 横向滚动条的高度 */
}

/* 滚动条轨道部分 */
::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 10px;
}

/* 滚动条滑块部分 */
::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    cursor: pointer;

}

/* 鼠标悬停在滑块上时 */
::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    cursor: pointer;

}

/* 去掉上下箭头 */
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
}

input[type='number'] {
    appearance: textfield !important;
}

/* 版心 */
.conter {
    width: 1200px;
    display: block;
    margin: 0 auto;
}

/* 背景遮罩层 */

/* 定义一个名为rotate的动画 */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(180deg);
    }
}

.modeBg {
    width: 100%;
    height: 100%;
    min-height: 600px;
    min-width: 1000px;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(45, 45, 45, 0.342);
    z-index: 120;
    display: none;


}

.modeBg .modeBox {
    width: 780px;
    height: 440px;
    background: #FFFFFF;
    position: relative;
    box-sizing: border-box;
    padding-left: 128px;
    padding-right: 145px;
    padding-top: 20px;
    position: absolute;
    top: calc(50% - 220px);
    left: calc(50% - 390px);
}

.modeBg .modeBox .colse {
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.modeBg .modeBox .colse:hover {
    /* animation: rotate 2s linear infinite; */
    animation: rotate 1s linear 1;

}

.modeBg .modeBox .title {
    position: relative;
}

.modeBg .modeBox .title .name {
    position: relative;
    padding: 0px 4px;
    z-index: 99;
    height: 36px;
}

.modeBg .modeBox .title .name span {
    font-weight: 600;
    font-size: 20px;
    color: #2D2D2D;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.modeBg .modeBox .title .name::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 10px;
    background: linear-gradient(90deg, #FDD277 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 5px;
    bottom: 5px;
    left: -4px;
    z-index: 98;

}

.modeBg .modeBox form {
    width: 100%;
}

.modeBg .modeBox .inpBox {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.modeBg .modeBox .inpBox .inpuName {
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;
    width: 110px;
}

.modeBg .modeBox .inpBox input {
    width: 380px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 20px;
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;
    border: none;

}

.modeBg .modeBox .inpBox input::placeholder {
    color: #666666;

}

.modeBg .modeBox .inpBox select {
    cursor: pointer;
    width: 380px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 20px;
    font-weight: 400;
    font-size: 18px;
    border: none;
    /* 隐藏默认下拉箭头 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* 自定义背景和边框样式 */
    background-image: url('../img/downIc.png');
    background-repeat: no-repeat;
    background-position: 340px center;
    background-size: 18px 18px;
    /* 自定义下拉箭头的样式 */
    padding-right: 20px;
    /* 避免箭头被文本覆盖 */
    color: #666666;

}



.modeBg .modeBox .inpBox .tip {
    font-weight: 400;
    font-size: 13px;
    color: #999999;
}

.modeBg .modeBox .btnBox {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 13px;
}

.modeBg .modeBox .btnBox .okBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 320px;
    height: 40px;
    background: #F3990F;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    border: none;
}

.modeBg .modeBox .btnBox .noBtn {
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 160px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 2px solid #F3990F;
    font-weight: 600;
    font-size: 18px;
    color: #F3990F;
}

.modeBg .modeBox .btnBox .okBtn:hover {
    background: #e08701;

}

.modeBg .modeBox .btnBox .noBtn:hover {
    color: #e08701;

    border: 2px solid #e08701;
}

/* 顶部导航栏 --------------------------------*/
.navTop {
    height: 60px;
    font-size: 0;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px rgba(102, 102, 105, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navTop .nav {
    display: flex;
    align-items: center;
    /* justify-content: center; */

}

.navTop .nav .logo {
    font-size: 0;
    width: 52px;
    height: 52px;
    /* background: #F3990F; */
    border-radius: 4px;
    overflow: hidden;
}

.navTop .nav .logo img {
    width: 52px;
    height: 52px;
    border-radius: 4px;

}

.navTop .nav .ul {
    display: flex;
    align-items: center;
    margin-left: 60px;
    margin-right: 80px;

}

.navTop .nav .ul .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 160px;
    font-weight: 400;
    font-size: 20px;
    color: #2D2D2D;
}

.navTop .nav .ul .item .imga {
    display: none;
}

.navTop .nav .ul .item:hover .img {
    display: none;
}

.navTop .nav .ul .item:hover .imga {
    display: block;
}

.navTop .nav .ul .item.act .img {
    display: none;

}

.navTop .nav .ul .item.act .imga {
    display: block;

}

.navTop .nav .ul .item:hover {
    background: #FFF9EF;
    color: #F3990F;

}

.navTop .nav .ul .item.act {
    background: #FFF9EF;
    color: #F3990F;
    position: relative;
}

.navTop .nav .ul .item.act::before {
    content: '';
    width: 131px;
    height: 4px;
    background: #F3990F;
    position: absolute;
    bottom: 0;
    left: calc(50% - 66px);
}

.navTop .nav .ul .item .img,
.navTop .nav .ul .item .imga {
    width: 20px;
    height: 20px;
    overflow: hidden;
    margin-right: 10px;
    font-size: 0;
}

.navTop .nav .ul .item .img img,
.navTop .nav .ul .item .imga img {
    width: 20px;
    height: 20px;
}



.navTop .nav .loginBtn {
    width: 125px;
    height: 40px;
    background: #F3990F;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
}

.navTop .nav .loginBtn:hover {
    background: #e98c00;

}

.navTop .nav .loginBtn a {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

/* 底部 */
.foot .top {
    width: 984px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-bottom: 1px solid rgba(151, 151, 151, 0.1);
}

.foot .top a {
    width: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    height: 20px;
    border-right: 1px solid #2D2D2D;
}

.foot .top a:last-child {
    border-right: none;

}

.foot .top a:hover {
    color: #e98c00;
}

.foot .bottom {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    padding: 50px 0 20px 0;
    color: #2D2D2D;
}

.foot .bottom a:hover {
    color: #e98c00;
}

/* 登录 */
.loginBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 60px);
    min-height: 820px;
    background: url(../img/loginBg.png) no-repeat;
    background-size: 100% 100%;
}

.loginBox .loginBoxCenter {
    display: flex;
    align-items: center;
    font-size: 0;
}

.loginBox .loginBoxCenter .left {
    width: 570px;
    height: 522px;
    background: url(../img/logbg.png) no-repeat;
    background-size: 100% 100%;
    border-radius: 10px 0px 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    box-sizing: border-box;
}

.loginBox .loginBoxCenter .left img {
    width: 200px;
    height: 207px;
}

.loginBox .loginBoxCenter .right {
    width: 590px;
    height: 520px;
    background: #FFFFFF;
    border-radius: 0px 10px 10px 0px;
    box-sizing: border-box;
    padding: 0 100px;
    margin-left: -2px;
}

.loginBox .loginBoxCenter .right .title {
    display: flex;
    align-items: center;
    height: 82px;
}

.loginBox .loginBoxCenter .right .title .item {
    font-weight: 400;
    font-size: 24px;
    color: #999999;
    cursor: pointer;
}

.loginBox .loginBoxCenter .right .title .item:hover {
    color: #2D2D2D;
}

.loginBox .loginBoxCenter .right .title .item.act {
    font-weight: 600;
    font-size: 24px;
    color: #2D2D2D;
}

.loginBox .loginBoxCenter .right .title .shu {
    width: 2px;
    height: 25px;
    background: #999999;
    margin: 0 30px;
}

.loginBox .loginBoxCenter .right .loginInput {
    display: none;
    width: 386px;

}

.loginBox .loginBoxCenter .right .loginInput.show {
    display: block;
}

.loginBox .loginBoxCenter .right .loginInput .inputDiv {
    width: 390px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 2px solid #D3D3D3;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
    margin-bottom: 18px;

}


.loginBox .loginBoxCenter .right .loginInput .inputDiv img {
    width: 20px;
    height: 20px;
}

.loginBox .loginBoxCenter .right .loginInput .inputDiv input {
    padding-left: 15px;
    flex: 1;
    outline: none;
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    /*height: 100%;*/

}

.loginBox .loginBoxCenter .right .loginInput .inputDiv .codeBtn {
    font-weight: 400;
    font-size: 16px;
    color: #1A98EC;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loginBox .loginBoxCenter .right .loginInput .inputDiv input::placeholder {
    font-weight: 400;

    font-size: 16px;
    color: #999999;
}

.loginBox .loginBoxCenter .right .loginInput .bottomDic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0px;
    min-height: 24px;
}

.loginBox .loginBoxCenter .right .loginInput .bottomDic .ledt {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    cursor: pointer;

}

.loginBox .loginBoxCenter .right .loginInput .bottomDic .rights {
    font-weight: 400;
    font-size: 16px;
    color: #1A98EC;
    cursor: pointer;

}

.loginBox .loginBoxCenter .right .loginInput .regBotom {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.loginBox .loginBoxCenter .right .loginInput .regBotom a {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    padding-right: 20px;
}

.loginBox .loginBoxCenter .right .loginInput .regBotom a:last-child {
    padding-left: 20px;

}

.loginBox .loginBoxCenter .right .loginInput .regBotom a span {
    color: #1A98EC;
}

.loginBox .loginBoxCenter .right .loginInput .regBotom .su {
    width: 2px;
    height: 15px;
    background: #666;
}

.loginBox .loginBoxCenter .right .loginInput button {
    width: 386px;
    height: 56px;
    background: #F3990F;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 22px;
    color: #FFFFFF;
    margin-top: 40px;
    border: none;
    cursor: pointer;
}

.loginBox .loginBoxCenter .right .loginInput button:hover {
    background: #df8601;

}


.loginBox .loginBoxCenter .right .loginInput .checkbox {
    display: flex;
    align-items: center;
    margin-top: 30px;
    font-weight: 400;
    font-size: 14px;
    color: #666666;

}

.loginBox .loginBoxCenter .right .loginInput .checkbox a {
    font-weight: 400;
    font-size: 14px;
    color: #1A98EC;
    cursor: pointer;
}

.loginBox .loginBoxCenter .right .loginInput .checkbox input[type='checkbox'] {
    margin-right: 10px;
    border: none !important;
    width: 14px;
    height: 14px;
    background: #F5F4F4;
    border-radius: 2px;
    -webkit-appearance: none;
    cursor: pointer;
}

.loginBox .loginBoxCenter .right .loginInput .checkbox input[type='checkbox']:checked {
    background: #F3990F;

}

.loginBox .loginBoxCenter .right .otherLogin {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin-top: 30px;


}

.loginBox .loginBoxCenter .right .otherLoginLis {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;

}

.loginBox .loginBoxCenter .right .otherLoginLis .imgbox {
    margin: 0 20px;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.loginBox .loginBoxCenter .right .otherLoginLis .imgbox img {
    width: 44px;
    height: 44px;
}

/* 首页 --------------------- */
.home {
    width: 100%;
    background: #fff;
    padding-bottom: 120px;
}

.home .swiper {
    width: 100%;
    max-height: 460px;
    overflow: hidden;
    font-size: 0;
    min-width: 1200px;

}

.home .swiper .swiper-wrapper {
    width: 100%;
    font-size: 0;

}

.home .swiper .swiper-wrapper .swiper-slide {}

.home .swiper .swiper-wrapper a {
    width: 100%;

}

.home .swiper .swiper-wrapper a img {
    width: 100%;
}

.mp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(75, 73, 71, 0.1);
    border-radius: 40px;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 0 20px;
}

.mp .ggtext {
    font-weight: 600;
    font-size: 20px;
    color: #2D2D2D;
}

.mp .img {
    width: 40px;
    height: 40px;
    font-size: 0;
    padding-right: 20px;

}

.mp .img img {
    width: 40px;
    height: 40px;
}

.mp .shu {
    width: 2px;
    height: 14px;
    background: #999999;
    border-radius: 1px;
    margin: 0 20px;
}

.mp .marquee {
    flex: 1;
    height: 60px;
}

.mp .marquee marquee {
    height: 60px;

}

.mp .marquee .item {
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;
    height: 60px;
    line-height: 60px;
    display: block;
    cursor: pointer;
}

.mp .marquee .item:hover {
    color: #df8601;
}

.mp .more {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 32px;
    line-height: 1.2;
    margin-right: 4px;
}

.mp .more:hover {
    color: #df8601;
}

/* 首页招聘流程 */
.home .caozuoBox {
    .home padding-bottom: 120px;
}

.home .caozuoBox .titleh1 {
    position: relative;
    margin-top: 60px;
}

.home .caozuoBox .titleh1 .name {

    position: relative;
    padding: 0px 4px;
    z-index: 99;
    width: 100px;
    height: 40px;
    margin: 0 auto;
}

.home .caozuoBox .titleh1 .name span {
    font-weight: 600;
    font-size: 24px;
    color: #2D2D2D;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.home .caozuoBox .titleh1 .name::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 10px;
    background: linear-gradient(90deg, #FDD277 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 5px;
    bottom: 5px;
    left: 0;
    z-index: 98;

}

.home .caozuoBox .titleh1 .tips {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    margin: 0 auto;
    text-align: center;
    margin-top: 6px;

}

.home .caozuoBox .caozuo1 {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.home .caozuoBox .caozuo1 .item {}

.home .caozuoBox .caozuo1 .item .img {
    font-size: 0;
    width: 76px;
    height: 76px;
    overflow: hidden;
}

.home .caozuoBox .caozuo1 .item .img img {
    width: 76px;
    height: 76px;
}

.home .caozuoBox .caozuo1 .item .name {
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;
    margin-top: 18px;
    text-align: center;
}

.home .caozuoBox .caozuo1 .hgtext {
    width: 130px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    color: #666666;
}

.home .caozuoBox .caozuo2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.home .caozuoBox .caozuo2 .item {
    width: 260px;
    height: 180px;
    box-sizing: border-box;
    padding: 20px 22px;
    position: relative;
    background-size: 100% 100%;
    margin: 0 17px;
    cursor: pointer;
}

.home .caozuoBox .caozuo2 .item:hover {
    transform: scale(1.2);
    color: #e98c00 !important;
}

.home .caozuoBox .caozuo2 .item:first-child {
    background-image: url(../img/b1.png);
}

.home .caozuoBox .caozuo2 .item:nth-child(2) {
    background-image: url(../img/b2.png);
}

.home .caozuoBox .caozuo2 .item:nth-child(3) {
    background-image: url(../img/b3.png);
}

.home .caozuoBox .caozuo2 .item:last-child {
    background-image: url(../img/b4.png);
}

.home .caozuoBox .caozuo2 .item .num {
    width: 40px;
    height: 50px;
    position: absolute;
    right: 15px;
    top: -15px;
}

.home .caozuoBox .caozuo2 .item .name {
    position: relative;
    padding: 0px 4px;
    height: 30px;
    margin: 0 auto;
}

.home .caozuoBox .caozuo2 .item .name span {
    font-weight: 600;
    font-size: 20px;
    color: #2D2D2D;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.home .caozuoBox .caozuo2 .item .name::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 10px;
    border-radius: 5px;
    bottom: 2px;
    left: -2px;
    z-index: 98;
}

.home .caozuoBox .caozuo2 .item:first-child .name::after {
    background: linear-gradient(90deg, #C9DFFD 0%, rgba(255, 255, 255, 0) 100%);

}

.home .caozuoBox .caozuo2 .item:nth-child(2) .name::after {
    background: linear-gradient(90deg, #FDDBCB 0%, rgba(255, 255, 255, 0) 100%);

}

.home .caozuoBox .caozuo2 .item:nth-child(3) .name::after {
    background: linear-gradient(90deg, #FFD0AE 0%, rgba(255, 255, 255, 0) 100%);

}

.home .caozuoBox .caozuo2 .item:last-child .name::after {
    background: linear-gradient(90deg, #FDECB2 0%, rgba(255, 255, 255, 0) 100%);

}

.home .caozuoBox .caozuo2 .item .text {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    margin-top: 14px;
}

/*  招商合作*/

.zshez {
    width: 100%;
    background: #fff;
}

.zshez .swipers {
    width: 100%;
    max-height: 460px;
    overflow: hidden;
    font-size: 0;
    min-width: 1200px;

}

.zshez .swiper .swiper-wrapper {
    width: 100%;
    font-size: 0;

}


.zshez .swiper .swiper-wrapper a {
    width: 100%;
}

.zshez .swiper .swiper-wrapper a img {
    width: 100%;
}

.zshez .caozuoBox {
    padding-bottom: 120px;
}

.zshez .caozuoBox .titleh1 {
    position: relative;
    margin-top: 60px;
}

.zshez .caozuoBox .titleh1 .name {

    position: relative;
    padding: 0px 4px;
    z-index: 99;
    width: 200px;
    height: 40px;
    margin: 0 auto;
}

.zshez .caozuoBox .titleh1 .name span {
    font-weight: 600;
    font-size: 24px;
    color: #2D2D2D;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.zshez .caozuoBox .titleh1 .name::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 10px;
    background: linear-gradient(90deg, #FDD277 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 5px;
    bottom: 5px;
    left: 0;
    z-index: 98;

}

.zshez .caozuoBox .titleh1 .tips {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    margin: 0 auto;
    text-align: center;
    margin-top: 6px;

}

.zshez .caozuoBox .lisBox {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.zshez .caozuoBox .lis {
    width: 380px;
    height: 486px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #F5F5F5;
    cursor: pointer;
    overflow: hidden;
    margin-right: 20px;
    margin-bottom: 20px;
}

.zshez .caozuoBox .lis:nth-child(3n) {
    margin-right: 0px;

}

.zshez .caozuoBox .lis:hover {
    transform: scale(1.1);

}

.zshez .caozuoBox .lis .titname {
    font-weight: 600;
    font-size: 22px;
    color: #2D2D2D;
    padding-top: 40px;
    text-align: center;
}

.zshez .caozuoBox .lis .swiperBox {
    height: 335px;
    width: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zshez .caozuoBox .lis .swiperBox .btns {
    width: 36px;
    height: 36px;
    font-size: 0;
}

.zshez .caozuoBox .lis .swiperBox .btns img {
    width: 36px;
    height: 36px;
}

.zshez .caozuoBox .lis .swiperBox .swiper {
    width: calc(100% - 72px);

}

.zshez .caozuoBox .lis .swiperBox .swiper .swiper-slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 0 13px;
}

.zshez .caozuoBox .lis .swiperBox .swiper .items {
    width: 135px;
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px rgba(102, 102, 105, 0.1);
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    padding-top: 10px;
}

.zshez .caozuoBox .lis .swiperBox .swiper .items:nth-child(2n) {
    margin-right: 0px;

}

.zshez .caozuoBox .lis .swiperBox .swiper .items img {
    max-width: 88px;
    height: 40px;
    display: block;
    margin: 0 auto;

}

.zshez .caozuoBox .lis .swiperBox .swiper .items .name {
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D;
    text-align: center;
    padding-top: 4px;
}

.zshez .caozuoBox .lis .erw {
    width: 280px;
    height: 260px;
    background: #F5F5F5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    margin: 40px auto 0;
}

.zshez .caozuoBox .lis .erw img {
    width: 266px;
    height: 246px;
}

.zshez .caozuoBox .btn {
    width: 120px;
    height: 40px;
    background: #F3990F;
    border-radius: 20px;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.zshez .caozuoBox .xian {
    width: 120px;
    height: 40px;
    border: 2px solid #F36232;
    background: #FFFFFF;
    border-radius: 20px;
    font-weight: 600;
    font-size: 20px;
    color: #F36132;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 32px;
}

.zshez .caozuoBox .xian:hover {
    color: #fff;
    border: none;
    background: #F3990F;

}

.zshez .caozuoBox .btn:hover {
    background: #ff9901;
}

/* 关于我们 */
.aboutPage {
    background: #FBF7F2;
    padding-bottom: 120px;
}

.aboutBox {
    display: flex;
    padding-top: 20px;
}

.aboutBox .left {
    margin-right: 10px;
}

.aboutBox .left .top {
    width: 240px;
    box-shadow: 0px 0px 6px 0px rgba(102, 102, 105, 0.16);
    border-radius: 20px;
    box-sizing: border-box;
    padding-bottom: 24px;
    margin-bottom: 20px;
    background: #FFFFFF;

}

.aboutBox .left .top .title {
    height: 60px;
    background: #FFFFFF;
    border-radius: 20px 20px 0px 0px;
    font-weight: 600;
    font-size: 20px;
    color: #F5A200;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 10px solid #F9F9F9;
}

.aboutBox .left .top .li {
    width: 240px;
    height: 60px;
    background: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #F9F9F9;

}

.aboutBox .left .top .li:hover {
    color: #F6F6F6;
    background: #F5A200;
    font-weight: 600;
    cursor: pointer;
}

.aboutBox .left .top .li.act {
    background: #F5A200;
    color: #fff;
    position: relative;
}

.aboutBox .left .top .li.act::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #F5A200;
    position: absolute;
    top: calc(50% - 10px);
    right: -10px;
}

.aboutBox .right {
    box-sizing: border-box;
    padding: 20px;
    width: 950px;
    min-height: 1100px;
    background: #FFFFFF;
}

.aboutBox .right .nac {
    display: flex;
    align-items: center;

}

.aboutBox .right .nac .title {
    font-weight: 600;
    font-size: 20px;
    color: #666666;
}

.aboutBox .right .nac .now {
    font-weight: 600;
    font-size: 20px;
    color: #2D2D2D;
    margin-left: 8px;
}

.aboutBox .right .content {
    min-height: 1020px;
    background: #F9F9F9;
    box-sizing: border-box;
    padding: 10px;
    margin-top: 20px;
    font-size: 18px;
}

.aboutBox .right .content .newLis {
    height: 40px;
    background: #F9F9F9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    box-sizing: border-box;
    padding: 0 24px;
    position: relative;
}

.aboutBox .right .content .newLis::after {
    content: '';
    width: 2px;
    height: 2px;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: calc(50% - 1px);
    background: #343536;
}

.aboutBox .right .content .newLis:hover {
    background: #d8d3d3;
}

.aboutBox .right .content .newLis .lfg {
    font-weight: 400;
    font-size: 16px;
    color: #343536;
    width: 600px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.aboutBox .right .content .newLis .time {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

/* 卡劵回收 */
.kaJuanPage {
    width: 100%;
    background: #fff;
    padding-bottom: 120px;
    padding-top: 15px;
}

.kaJuanBox .changeHg {
    display: flex;
    padding-top: 20px;
}

.kaJuanBox .changeHg .typeName {
    width: 118px;
    box-sizing: border-box;
    padding-left: 10px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.kaJuanBox .changeHg .top1hg,
.kaJuanBox .changeHg .top2hg,
.kaJuanBox .changeHg .top3hg,
.kaJuanBox .changeHg .top4hg,
.kaJuanBox .changeHg .top5hg {
    display: flex;
    flex-wrap: wrap;
    flex: 1;

}

.kaJuanBox .changeHg .top1hg .item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 160px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #F5F5F5;
    margin-right: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    cursor: pointer;
}

.kaJuanBox .changeHg .top1hg .item.act {
    border: 2px solid #F3990F;
}

.kaJuanBox .changeHg .top1hg .item:hover {
    border: 2px solid #F3990F;

}

.kaJuanBox .changeHg .top1hg .item .img {
    width: 40px;
    height: 40px;
    font-size: 0;
    margin-right: 12px;

}

.kaJuanBox .changeHg .top1hg .item .img img {
    width: 40px;
    height: 40px;
}

.kaJuanBox .changeHg .top1hg .item .name {
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;
    width: 80px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 选择卡种： */
.kaJuanBox .changeHg .top2hg .item {
    box-sizing: border-box;
    width: 190px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #F5F5F5;
    margin-right: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    cursor: pointer;
}

.kaJuanBox .changeHg .top2hg .item.act {
    border: 2px solid #F3990F;
}

.kaJuanBox .changeHg .top2hg .item:hover {
    border: 2px solid #F3990F;

}

.kaJuanBox .changeHg .top2hg .item .img {
    width: 106px;
    height: 54px;
    font-size: 0;
    margin: 0 auto;
    padding: 6px;
}

.kaJuanBox .changeHg .top2hg .item .img img {
    width: 106px;
    height: 54px;
}

.kaJuanBox .changeHg .top2hg .item .name {
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;
    width: 170px;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

/* 单张面额 */
.kaJuanBox .changeHg .top3hg .item {
    box-sizing: border-box;
    width: 190px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #F5F5F5;
    margin-right: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.kaJuanBox .changeHg .top3hg .item.act {
    border: 2px solid #F3990F;
}

.kaJuanBox .changeHg .top3hg .item:hover {
    border: 2px solid #F3990F;

}

.kaJuanBox .changeHg .top3hg .item .zhe {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 22px;
    background: #F3990F;
    border-radius: 6px 0px 6px 0px;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kaJuanBox .changeHg .top3hg .item .pic {
    padding-top: 24px;
    font-weight: 600;
    font-size: 22px;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kaJuanBox .changeHg .top3hg .item .oldPic {
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration-line: line-through;
}

/* 提交方式 */
.kaJuanBox .changeHg .top4hg .item {
    box-sizing: border-box;
    width: 190px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #F5F5F5;
    margin-right: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kaJuanBox .changeHg .top4hg .item.act {
    border: 2px solid #F3990F;
}

.kaJuanBox .changeHg .top4hg .item:hover {
    border: 2px solid #F3990F;

}

.kaJuanBox .nodata {
    height: 340px;
    position: relative;
}

.kaJuanBox .nodata .icon {
    position: absolute;
    width: 300px;
    height: 220px;
    left: 200px;
    bottom: 30px;

}

.kaJuanBox .nodata .tipsBox {
    position: absolute;
    top: 33px;
    left: 406px;
    width: 500px;
    padding: 30px 40px;
    border: 1px solid #eaebee;
    background-color: #f9fafe;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .04);

}

.kaJuanBox .nodata .tipsBox .top {
    font-size: 20px;
    padding-bottom: 5px;
    font-weight: 600;
    olor: #333;
}

.kaJuanBox .nodata .tipsBox .top span {
    color: #ff5c38;
}

.kaJuanBox .nodata .tipsBox .bottom {
    font-size: 16px;
    olor: #333;
}


/* 提示 */
.kaJuanBox .changeHg .top5hg {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left:20px;
    height: 40px;
    background: #FEE4E4;
}

.kaJuanBox .changeHg .top5hg img {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.kaJuanBox .changeHg .top5hg .text {
    font-weight: 400;
    font-size: 16px;
    color: #E8471B;
}

/* 单独输入框 */
.kaJuanBox .changeHg .top6hg {
    width: 680px;
    height: 60px;
    background: #F5F5F5;
    border-radius: 4px;
    box-sizing: border-box;
    padding-left: 20px;
}

.kaJuanBox .changeHg .top6hg input {
    height: 60px;
    width: 100%;
    border: none;
    background: #F5F5F5;
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;

}

.kaJuanBox .changeHg .top6hg input::placeholder {
    font-weight: 400;
    font-size: 18px;
    color: #666666;
}

.kaJuanBox .changeHg .top7hg {
    width: 680px;
    height: 60px;
    background: #F5F5F5;
    border-radius: 4px;
    box-sizing: border-box;
    padding-left: 20px;
}

.kaJuanBox .changeHg .top7hg input {
    height: 60px;
    width: 100%;
    border: none;
    background: #F5F5F5;
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;

}

.kaJuanBox .changeHg .top7hg input::placeholder {
    font-weight: 400;
    font-size: 18px;
    color: #666666;
}

.kaJuanBox .formBtn {
    width: 680px;
    height: 70px;
    background: #F3990F;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    border: none;
    margin-top: 60px;
    cursor: pointer;
}

.kaJuanBox .formBtn:hover {
    background: #dd8500;

}

.kaJuanBox button[disabled] {
    background: #EBEBEB;
    color: #999999;
    cursor: auto;

}

.kaJuanBox button[disabled]:hover {
    background: #EBEBEB;
    color: #999999;
    cursor: auto;

}

.kaJuanBox .button-hover {

    background: #dd8500;
}

/* 批量输入 */
.kaJuanBox .top8hg {
    flex: 1;
    height: 284px;
    background: url(../img/textarea.gif) 0 0;
    background-attachment: local;
    box-sizing: border-box;
}

.kaJuanBox .top8hg textarea {
    width: 100%;
    height: 284px;
    box-sizing: border-box;
    padding: 4px 20px;
    background: none;
    border: 1px solid #E4ECFA;
    border-radius: 4px;
    resize: none;
    line-height: 1.6;
    font-size: 20px;
    box-sizing: border-box;

}

/* 协议记录 */


.kaJuanBox .checkbox {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    color: #666666;

}

.kaJuanBox .checkbox a {
    font-weight: 400;
    font-size: 16px;

    color: #1A98EC;
    cursor: pointer;
}

.kaJuanBox .checkbox input[type='checkbox'] {
    margin-right: 10px;
    border: none !important;
    width: 24px;
    height: 24px;
    background: #F5F5F5;
    border-radius: 50%;
    -webkit-appearance: none;
    cursor: pointer;
}

.kaJuanBox .checkbox input[type='checkbox']:checked {
    background: #1F87FA;

}

/* 个人中心 */
.userPage {
    background: #FAF9F7;
    padding-bottom: 120px;
    padding-top: 20px;
}

.userPage .userBox {
    display: flex;

}

.userPage .userBox .userLeft {
    margin-right: 10px;
    width: 300px;
    height: 684px;
    background: #fff;
    overflow: hidden;
    transition: width 0.5s;
    transition: height 0.1s;
    background-image: url(../img/userBottomBg.png);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.userPage .userBox .userLeft.hide {
    width: 80px;
    height: 60px;
}

.userPage .userBox .userLeft .top {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    border-bottom: 1px solid #F5F5F5;
    padding: 0 15px;
}

.userPage .userBox .userLeft .top .header {
    width: 20px;
    height: 20px;
}

.userPage .userBox .userLeft .top .name {
    font-weight: 400;
    font-size: 20px;
    color: #2D2D2D;
    padding-left: 20px;
    flex: 1;
    height: 36px;
    overflow: hidden;
}

.userPage .userBox .userLeft .top .cion {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 3px;
}

.userPage .userBox .userLeft .top .cion.hide {
    display: none;
}

.userPage .userBox .userLeft .userInfoBox {
    overflow: hidden;
    width: 300px;
}

.userPage .userBox .userLeft .userInfo {
    box-sizing: border-box;
    padding: 10px 20px;
}

.userPage .userBox .userLeft .userInfo .hg {
    display: flex;
    align-items: center;
    height: 56px;
}

.userPage .userBox .userLeft .userInfo .hg .titsg {
    width: 64px;
    text-align-last: justify;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.userPage .userBox .userLeft .userInfo .hg .ic {
    text-align-last: justify;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    margin-left: 2px;
    margin-right: 6px;
}

.userPage .userBox .userLeft .userInfo .hg .userName {
    flex: 1;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.userPage .userBox .userLeft .userInfo .hg .ziliao {
    width: 80px;
    height: 26px;
    background: #1296DB;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;

}

.userPage .userBox .userLeft .userInfo .hg .picIcon {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    margin-right: 6px;
}

.userPage .userBox .userLeft .userInfo .hg .pic {
    font-weight: 600;
    font-size: 20px;
    color: #F24415;
    padding-bottom: 2px;
}

.userPage .userBox .userLeft .userInfo .hg .picIng {
    font-weight: 600;
    font-size: 20px;
    color: #2D2D2D;
    padding-bottom: 2px;

}

.userPage .userBox .userLeft .userInfo .hg .time {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.userPage .userBox .userLeft .pswBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.userPage .userBox .userLeft .pswBox .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
}

.userPage .userBox .userLeft .pswBox .btn.mian {
    background: #108CEB;
    color: #FFFFFF;
}

.userPage .userBox .userLeft .pswBox .btn.xian {
    border: 2px solid #F3990F;
    color: #F3990F;
}

.userPage .userBox .userLeft .pswBox .btn.mian:hover {
    background: #0191ff;
    color: #FFFFFF;
}

.userPage .userBox .userLeft .pswBox .btn.xian:hover {
    border: 2px solid #df8601;
    color: #df8601;
}

.userPage .userBox .userLeft .shiBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 40px;
    background: #FEAC42;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    box-sizing: border-box;
    margin-top: 20px;
    cursor: pointer;

}

.userPage .userBox .userLeft .shiBtn:hover {
    background: #f18a02;

}
.userPage .userBox .userLeft .shiBtns {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 2px solid #108CEB;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #108CEB;
    box-sizing: border-box;
    margin-top: 20px;
    cursor: pointer;

}

.userPage .userBox .userLeft .shiBtns:hover {
    border: 2px solid #0361a8;
    color: #0361a8;


}
.userPage .userBox .userLeft .outLogin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 40px;
    border: 2px solid #ECECEC;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    box-sizing: border-box;
    margin-top: 80px;
    cursor: pointer;


}

.userPage .userBox .userLeft .outLogin:hover {
    border: 2px solid #fa0202;
    color: #fa0202;

}

/* 个人中心 右侧内容 */
.userPage .userBox .userRight {
    min-width: 890px;
    flex: 1;
    min-height: 684px;
    background: #FFFFFF;
    transition: width 0.5s;
    box-sizing: border-box;
}

.userPage .userBox .userRight .tabs {
    display: flex;
    align-items: center;
    height: 61px;
    box-sizing: border-box;
    border-bottom: 1px solid #F5F5F5;

}

.userPage .userBox .userRight .tabs .item {
    position: relative;
    flex: 1;
    height: 60px;
    cursor: pointer;
    font-weight: 400;
    font-size: 20px;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.userPage .userBox .userRight .tabs .item.act {
    color: #2D2D2D;
}

.userPage .userBox .userRight .tabs .item:hover {
    color: #F3990F;
}

.userPage .userBox .userRight .tabs .item::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #F3990F;
    bottom: 0;
    left: calc(50% - 20px);
    transform: scale(0);
    transition: all 0.5s;


}

.userPage .userBox .userRight .tabs .item.act::after {
    transform: scale(1);
    transition: all 0.5s;

}

/* 提现 */

.userPage .userBox .userRight .tixianBox {
    box-sizing: border-box;
    padding: 30px 65px;
}

.userPage .userBox .userRight .tixianBox .tixianHg {
    display: flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

.userPage .userBox .userRight .tixianBox .tixianHg .name {
    width: 100px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.userPage .userBox .userRight .tixianBox .tixianHg .val {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.userPage .userBox .userRight .tixianBox .tixianHg .rzType {
    width: 60px;
    height: 20px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
}

.userPage .userBox .userRight .tixianBox .tixianHg .rzType.no {
    background: #A3A3A3;

}

.userPage .userBox .userRight .tixianBox .tixianHg .rzType.yes {
    background: #0191ff;

}

.userPage .userBox .userRight .tixianBox .tixianHg input {
    width: 320px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    border: none;
}

.userPage .userBox .userRight .tixianBox .tixianHg input::placeholder {
    color: #666666;

}

.userPage .userBox .userRight .tixianBox .tixianHg .dw {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: centere;
    position: absolute;
    top: 0;
    left: 380px;
}

.userPage .userBox .userRight .tixianBox .tixianHg .rightTip {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    margin-left: 40px;
    display: none;
}

.userPage .userBox .userRight .tixianBox .tixianHg .add {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    margin-left: 40px;
    cursor: pointer;
}

.userPage .userBox .userRight .tixianBox .tixianHg .add:hover {
    color: #0191ff;
}

.userPage .userBox .userRight .tixianBox .tixianHg .tips {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    padding-left: 11px;
}

.userPage .userBox .userRight .tixianBox .tipsBox {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
    height: 40px;
    background: #FEE4E4;
    margin-top: 10px;
}

.userPage .userBox .userRight .tixianBox .tipsBox img {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.userPage .userBox .userRight .tixianBox .tipsBox .text {
    font-weight: 400;
    font-size: 16px;
    color: #E8471B;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select {
    width: 320px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select .names {
    padding-left: 20px;
    width: 100%;
    height: 100%;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    display: flex;
    align-items: center;

}

.userPage .userBox .userRight .tixianBox .tixianHg .select .names .namesleft {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    flex: 1;
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select .names .namesright {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-left: 16px;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select .icon {
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% - 9px);
    right: 20px;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select .ul {
    position: absolute;
    width: 100%;
    top: 40px;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px rgba(102, 102, 105, 0.1);
    border-radius: 8px;
    z-index: 120;
    display: none;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select .ul .option:hover {
    background: #dddada;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select .ul .option {
    border-bottom: 2px solid #F5F5F5;
    display: flex;
    align-items: center;
    height: 60px;

}

.userPage .userBox .userRight .tixianBox .tixianHg .select .ul .option .optionName {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    flex: 1;
    max-width: 176px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-left: 20px;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select .ul .option .weiHao {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    width: 100px;
    margin-left: 8px;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select .ul .option .opLogo {
    width: 28px;
    height: 28px;
    margin-left: 20px;

}

.userPage .userBox .userRight .tixianBox .tixianHg .select .ul .option .del {
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

.userPage .userBox .userRight .tixianBox .tixianHg .select .ul .option:last-child {
    border-bottom: none;
}

.userPage .userBox .userRight .tixianBox select .tixianOption {
    display: flex;
    align-items: center;

}

.userPage .userBox .userRight .tixianBox select .tixianOption img {
    width: 28px;
    height: 28px;

}




.userPage .userBox .userRight .tixianBox .okBtn {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 416px;
    height: 40px;
    background: #F3990F;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    margin-top: 60px;

}

.userPage .userBox .userRight .tixianBox .okBtn:hover {
    background: #f19203;

}


/* 提现记录 */

.tixianLis {
    box-sizing: border-box;
}

.tixianLis .changBox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;

    padding: 20px;
    padding-bottom: 0;

}

.tixianLis .changBox .dataBox {
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-bottom: 20px;
}

.tixianLis .changBox .dataBox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tixianLis .changBox .dataBox .timeInput {
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    width: 80px;
    background: none;
}

.tixianLis .changBox .dataBox .timeInput::placeholder {

    color: #999999;
}

.tixianLis .changBox .dataBox .rili {
    width: 16px;
    height: 16px;
    margin-left: 20px;
}

.tixianLis .changBox .dataBox .zhi {
    width: 16px;
    height: 16px;
    margin: 0 30px;
}

.tixianLis .changBox .jinBox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;

}

.tixianLis .changBox .jinBox .namea {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.tixianLis .changBox .jinBox .jinSelect {
    width: 140px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    border: none;
    box-sizing: border-box;
    padding-left: 20px;
    cursor: pointer;
    /* 隐藏默认下拉箭头 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* 自定义背景和边框样式 */
    background-image: url('../img/downIc.png');
    background-repeat: no-repeat;
    background-position: 100px center;
    background-size: 18px 18px;
    /* 自定义下拉箭头的样式 */
    padding-right: 20px;
    /* 避免箭头被文本覆盖 */
}

.tixianLis .mgR12 {
    margin-right: 20px;
}

.tixianLis .changBox .btn {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    border: none;
    margin-bottom: 20px;
    cursor: pointer;
}

.tixianLis .changBox .btn.sou {
    width: 80px;
    height: 40px;
    background: #1296DB;
    border-radius: 8px;
    color: #FFFFFF;
}

.tixianLis .changBox .btn.sou:hover {
    background: #0277b6;

}

.tixianLis .tableTiele {
    display: flex;
    align-items: center;
    height: 60px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.tixianLis .tableTiele .tableH {
    font-weight: 600;
    font-size: 16px;
    color: #2D2D2D;
}

.tixianLis .tableTiele .tableH.tableLeft {
    text-align: left;
    flex: 1;
    min-width: 160px;

}

.tixianLis .tableTiele .tableH.tableCenter {
    text-align: center;
    min-width: 96px;


}

.tixianLis .tableTiele .tableH.lastType {
    text-align: left;
    width: 96px;
}

.tixianLis .tableBox .lis {
    height: 80px;
    width: 100%;
    background: #FAFAFA;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    align-items: center;
}

.tixianLis .tableBox .lis:hover {
    background: #dddcdc !important;
}

.tixianLis .tableBox .lis:nth-child(2n) {
    background: #fff;

}

.tixianLis .tableBox .lis .item {
    font-weight: 400;
    font-size: 14px;
    box-sizing: border-box;
    padding-right: 10px;
    position: relative;
}

.tixianLis .tableBox .lis .fontLeft {
    flex: 1;
    min-width: 160px;
    text-align: left;
}

.tixianLis .tableBox .lis .lastType {
    width: 96px;
    box-sizing: border-box;
    padding-left: 8px;

}

.tixianLis .tableBox .lis .fontCenter {
    min-width: 96px;
    text-align: center;

}

.tixianLis .tableBox .lis .item .top {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tixianLis .tableBox .lis .item .bottom {
    height: 30px;
    line-height: 30px;

}

.tixianLis .tableBox .lis .item .bottom .look {
    cursor: pointer;
    color: #08B154;

}

.tixianLis .tableBox .lis .item .looKBox {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px rgba(102, 102, 105, 0.1);
    width: 340px;
    box-sizing: border-box;
    padding: 18px;
    z-index: 99;
}

.tixianLis .tableBox .lis .item .looKBox::after {
    content: "";
    position: absolute;
    top: -18px;
    right: 62px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.tixianLis .tiPicBotBox {
    /* margin-top: 20px; */
    display: flex;
    font-weight: 500;
    font-size: 16px;
    color: #2D2D2D;
    box-sizing: border-box;
    padding: 0 20px ;
}

.tixianLis .tiPicBotBox span {
    padding-left: 3px;
    padding-right: 6px;
}

.tixianLis .tiPicBotBox .red {
    color: #e12e43;
}

.tixianLis .tiPicBotBox .green {
    color: #0cc741;
}

.tixianLis .tiPicBotBox .rebeccapurple {
    color: #6d45bc;
}


.tixianLis .table {
    width: 100%;
}

.tixianLis .table .thead {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
}

.tixianLis .table .thead tr th:first-child {
    padding-left: 20px;
    padding-right: 10px;
}

.tixianLis .table .thead tr th:last-child {
    padding-right: 20px;
}

.tixianLis .table tbody tr td:first-child {
    padding-left: 20px;
    padding-right: 10px;

}

.tixianLis .table tbody tr td:last-child {
    padding-right: 20px;
}

.tixianLis .table .tleft {
    text-align: left;
}

.tixianLis .table .tcenter {
    text-align: center;
}

.tixianLis .table .lis {
    height: 80px;
    width: 100%;
    background: #FAFAFA;
    box-sizing: border-box;
    padding: 20px;
}

.tixianLis .table .lis .top {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tixianLis .table .lis td {
    position: relative;
}

.tixianLis .table .lis .looKBox {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px rgba(102, 102, 105, 0.1);
    width: 340px;
    box-sizing: border-box;
    padding: 18px;
    z-index: 99;
    text-align: left;
}

.tixianLis .table .lis .looKBox::after {
    content: "";
    position: absolute;
    top: -18px;
    right: 62px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.tixianLis .table .lis .bottom {
    height: 30px;
    line-height: 30px;
}

.tixianLis .table .lis:nth-child(2n) {
    background: none;
}

.tixianLis .table .lis:hover {
    background: #dddcdc !important;

}

.tixianLis .table .lis .flexBet {
    display: flex;
    justify-content: space-between;

}

.tixianLis .table .lis .cup {
    cursor: pointer;
    color: #0191ff;
}

.tixianLis .table .lis .red {
    color: #f76260;
}

.tixianLis .table .lis .green {
    color: #0cc741;
}

/* 卖卡记录 */

.shopCardLis {
    box-sizing: border-box;
}

.shopCardLis .changBox {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.shopCardLis .changBox .dataBox {
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-bottom: 20px;

}

.shopCardLis .changBox .dataBox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shopCardLis .changBox .dataBox .timeInput {
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    width: 80px;
    background: none;
}

.shopCardLis .changBox .dataBox .timeInput::placeholder {

    color: #999999;
}

.shopCardLis .changBox .dataBox .rili {
    width: 16px;
    height: 16px;
    margin-left: 20px;
}

.shopCardLis .changBox .dataBox .zhi {
    width: 16px;
    height: 16px;
    margin: 0 30px;
}

.shopCardLis .changBox .jinBox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;

}

.shopCardLis .changBox .jinBox .namea {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.shopCardLis .changBox .jinBox .jinSelect {
    width: 140px;
    height: 40px;

    background: #FAFAFA;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    border: none;
    box-sizing: border-box;
    padding-left: 20px;
    cursor: pointer;
    /* 隐藏默认下拉箭头 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* 自定义背景和边框样式 */
    background-image: url('../img/downIc.png');
    background-repeat: no-repeat;
    background-position: 100px center;
    background-size: 18px 18px;
    /* 自定义下拉箭头的样式 */
    padding-right: 20px;
    /* 避免箭头被文本覆盖 */
}

.shopCardLis .changBox .inputBox {
    width: 380px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.shopCardLis .changBox .inputBox input {
    box-sizing: border-box;
    height: 100%;
    flex: 1;
    padding-right: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    border: none;
    background: none;
}

.shopCardLis .mgR12 {
    margin-right: 20px;
}

.shopCardLis .changBox .inputBox input::placeholder {
    color: #999999;

}

.shopCardLis .changBox .inputBox .inputSelect {
    width: 110px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    border: none;
    box-sizing: border-box;
    padding-left: 20px;
    cursor: pointer;
    /* 隐藏默认下拉箭头 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* 自定义背景和边框样式 */
    background-image: url('../img/downIc.png');
    background-repeat: no-repeat;
    background-position: 76px center;
    background-size: 18px 18px;
    /* 自定义下拉箭头的样式 */
    padding-right: 20px;
    /* 避免箭头被文本覆盖 */
}

.shopCardLis .kaSelect {
    width: 200px !important;
    color: #2D2D2D;
    width: 200px !important;
    background-position: 160px center !important;
}

.shopCardLis .changBox .btn {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    border: none;
    margin-bottom: 20px;
    cursor: pointer;
}

.shopCardLis .changBox .btn.sou {
    width: 80px;
    height: 40px;
    background: #1296DB;
    border-radius: 8px;
    color: #FFFFFF;
}

.shopCardLis .changBox .btn.sou:hover {
    background: #0277b6;

}

.shopCardLis .changBox .btn.down {
    width: 160px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 2px solid #E6E6E6;
    color: #666666;
}

.shopCardLis .changBox .btn.down:hover {
    border: 2px solid #b9b9b9;
    color: #333232;

}

.shopCardLis .changBox .btn.del {
    width: 120px;
    height: 40px;
    background: #F3990F;
    border-radius: 8px;
    color: #FFFFFF;


}

.shopCardLis .changBox .btn.del:hover {
    background: #cf7d01;

}

.shopCardLis .changBox .btn.updata {
    width: 120px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 2px solid #F3990F;
    color: #F3990F;
}

.shopCardLis .changBox .btn.updata:hover {
    border: 2px solid #d48309;
    color: #d48309;
}

.shopCardLis .table {
    width: 100%;
}

.shopCardLis .table .thead {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
}

.shopCardLis .table .thead tr th:first-child {
    padding-left: 10px;
    padding-right: 10px;
}

.shopCardLis .table .thead tr th:last-child {
    padding-right: 10px;
}

.shopCardLis .table tbody tr td:first-child {
    padding-left: 10px;
    padding-right: 10px;

}

.shopCardLis .table tbody tr td:last-child {
    padding-right: 10px;
}

.shopCardLis .table .tleft {
    text-align: left;
}

.shopCardLis .table .tcenter {
    text-align: center;
}

.shopCardLis .table .lis {
    height: 80px;
    width: 100%;
    background: #FAFAFA;
    box-sizing: border-box;
    padding: 20px;
}

.shopCardLis .table .lis .top {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.shopCardLis .table .lis .bottom {
    height: 30px;
    line-height: 30px;
}

.shopCardLis .table .lis:nth-child(2n) {
    background: none;
}

.shopCardLis .table .lis:hover {
    background: #dddcdc !important;

}

.shopCardLis .table .lis .flexBet {
    display: flex;
    justify-content: space-between;

}

.shopCardLis .table .lis .cup {
    cursor: pointer;
    color: #0191ff;
}

.shopCardLis .table .lis .red {
    color: #f76260;
}

.shopCardLis .table .lis .green {
    color: #0cc741;
}

.shopCardLis input[type='checkbox'] {
    margin-right: 10px;
    border: 2px solid #ddd;
    background: #fff;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 1px 3px 10px rgba(200, 200, 200, .3);
}

.shopCardLis input[type='checkbox']:checked {
    background: #F3990F;
    border: none;


}

/* 统计记录 */
.tongjiLis {
    box-sizing: border-box;
}

.tongjiLis .changBox {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.tongjiLis .changBox .dataBox {
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-bottom: 20px;

}

.tongjiLis .changBox .dataBox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tongjiLis .changBox .dataBox .timeInput {
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    width: 80px;
    background: none;
}

.tongjiLis .changBox .dataBox .timeInput::placeholder {

    color: #999999;
}

.tongjiLis .changBox .dataBox .rili {
    width: 16px;
    height: 16px;
    margin-left: 20px;
}

.tongjiLis .changBox .dataBox .zhi {
    width: 16px;
    height: 16px;
    margin: 0 30px;
}

.tongjiLis .changBox .jinBox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;

}

.tongjiLis .changBox .jinBox .namea {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.tongjiLis .changBox .jinBox .jinSelect {
    width: 140px;
    height: 40px;

    background: #FAFAFA;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    border: none;
    box-sizing: border-box;
    padding-left: 20px;
    cursor: pointer;
    /* 隐藏默认下拉箭头 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* 自定义背景和边框样式 */
    background-image: url('../img/downIc.png');
    background-repeat: no-repeat;
    background-position: 100px center;
    background-size: 18px 18px;
    /* 自定义下拉箭头的样式 */
    padding-right: 20px;
    /* 避免箭头被文本覆盖 */
}

.tongjiLis .changBox .inputBox {
    width: 380px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tongjiLis .changBox .inputBox input {
    box-sizing: border-box;
    height: 100%;
    flex: 1;
    padding-right: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    border: none;
    background: none;
}

.tongjiLis .mgR12 {
    margin-right: 20px;
}

.tongjiLis .changBox .inputBox input::placeholder {
    color: #999999;

}

.tongjiLis .changBox .inputBox .inputSelect {
    width: 110px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    border: none;
    box-sizing: border-box;
    padding-left: 20px;
    cursor: pointer;
    /* 隐藏默认下拉箭头 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* 自定义背景和边框样式 */
    background-image: url('../img/downIc.png');
    background-repeat: no-repeat;
    background-position: 76px center;
    background-size: 18px 18px;
    /* 自定义下拉箭头的样式 */
    padding-right: 20px;
    /* 避免箭头被文本覆盖 */
}

.tongjiLis .kaSelect {
    width: 200px !important;
    color: #2D2D2D;
    width: 200px !important;
    background-position: 160px center !important;
}

.tongjiLis .changBox .btn {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    border: none;
    margin-bottom: 20px;
    cursor: pointer;
}

.tongjiLis .changBox .btn.sou {
    width: 80px;
    height: 40px;
    background: #1296DB;
    border-radius: 8px;
    color: #FFFFFF;
}

.tongjiLis .changBox .btn.sou:hover {
    background: #0277b6;

}

.tongjiLis .changBox .btn.down {
    width: 160px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 2px solid #E6E6E6;
    color: #666666;
}

.tongjiLis .changBox .btn.down:hover {
    border: 2px solid #b9b9b9;
    color: #333232;

}

.tongjiLis .changBox .btn.del {
    width: 120px;
    height: 40px;
    background: #F3990F;
    border-radius: 8px;
    color: #FFFFFF;


}

.tongjiLis .changBox .btn.del:hover {
    background: #cf7d01;

}

.tongjiLis .changBox .btn.updata {
    width: 120px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 2px solid #F3990F;
    color: #F3990F;
}

.tongjiLis .changBox .btn.updata:hover {
    border: 2px solid #d48309;
    color: #d48309;
}

.tongjiLis .table {
    width: 100%;
}

.tongjiLis .table .thead {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
}

.tongjiLis .table .thead tr th:first-child {
    padding-left: 10px;
    padding-right: 10px;
}

.tongjiLis .table .thead tr th:last-child {
    padding-right: 10px;
}

.tongjiLis .table tbody tr td:first-child {
    padding-left: 10px;
    padding-right: 10px;

}

.tongjiLis .table tbody tr td:last-child {
    padding-right: 10px;
}

.tongjiLis .table .tleft {
    text-align: left;
}

.tongjiLis .table .tcenter {
    text-align: center;
}

.tongjiLis .table .lis {
    height: 60px;
    width: 100%;
    background: #FAFAFA;
    box-sizing: border-box;
    padding: 20px;
}

.tongjiLis .table .lis .top {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tongjiLis .table .lis .bottom {
    height: 30px;
    line-height: 30px;
}

.tongjiLis .table .lis:nth-child(2n) {
    background: none;
}

.tongjiLis .table .lis:hover {
    background: #dddcdc !important;

}

.tongjiLis .table .lis .flexBet {
    display: flex;
    justify-content: space-between;

}

.tongjiLis .table .lis .cup {
    cursor: pointer;
    color: #0191ff;
}

.tongjiLis .table .lis .red {
    color: #f76260;
}

.tongjiLis .table .lis .green {
    color: #0cc741;
}

.tongjiLis input[type='checkbox'] {
    margin-right: 10px;
    border: 2px solid #ddd;
    background: #fff;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 1px 3px 10px rgba(200, 200, 200, .3);
}

.tongjiLis input[type='checkbox']:checked {
    background: #F3990F;
    border: none;


}

/* 右侧 侧边栏 */
.right-bar {
    width: 60px;
    position: fixed;
    right: 0;
    bottom: 10%;
    z-index: 8;
    background: #fff;
    box-shadow: 0 5px 35px -3px rgba(50, 50, 50, .2);
    border-radius: 6px 0 0 6px
}

.right-bar li {
    height: 60px;
    overflow: hidden;
    border-top: 1px dashed #e6e6e6
}

.right-bar li a {
    text-align: center;
    display: block
}

.right-bar li i,
.right-bar li span {
    display: block;
    height: 60px;
    line-height: 1.3
}

.right-bar li .online {
    position: absolute;
    right: -2px;
    top: -20px;
    width: 80px;
    height: 80px;
    border-radius: 16px 0 0 16px;
    border: 1px solid #fff;
    box-shadow: 0 0 0 2px rgb(255 255 255 / 80%), 0 3px 30px -3px rgb(255 105 197);
    background-color: #f89339;
    background: -webkit-linear-gradient(to right, #00aaff 0%, #0085fe 100%);
    background: linear-gradient(to right, #f57634 0%, #fdbe3e 100%)
}

.right-bar li .online span {
    color: #fff;
    height: 24px
}

@keyframes kfmsg {
    0% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(0.75, 0.75)
    }

    100% {
        transform: scale(1, 1)
    }
}

@-webkit-keyframes kfmsg {
    0% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(0.75, 0.75)
    }

    100% {
        transform: scale(1, 1)
    }
}

@-moz-keyframes kfmsg {
    0% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(0.75, 0.75)
    }

    100% {
        transform: scale(1, 1)
    }
}

@-o-keyframes kfmsg {
    0% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(0.75, 0.75)
    }

    100% {
        transform: scale(1, 1)
    }
}

@-ms-keyframes kfmsg {
    0% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(0.75, 0.75)
    }

    100% {
        transform: scale(1, 1)
    }
}

.right-bar li .msg {
    width: 40px;
    height: 40px;
    margin: 10px auto 4px auto;
    background: url("../img/xiaoxi.png") center no-repeat;
    animation: kfmsg 2s linear infinite alternate
}

.right-bar li .wx {
    background: url("../img/weixin.png") center no-repeat
}

.right-bar li .fk {
    background: url("../img/bianji.png") center no-repeat
}

.right-bar li .top {
    background: url("../img/btop.png") center no-repeat
}

.right-bar li .hide-menu {
    transition: 0.3s;
    position: absolute;
    z-index: 7;
    height: 86px;
    width: 260px;
    text-align: center;
    background: #fff;
    box-shadow: 0 5px 35px -3px rgba(50, 50, 50, .2);
    border-radius: 6px;
    box-sizing: border-box;
    right: -260px;
    top: -22px
}

.right-bar li .hide-menu .bt {
    margin-top: 5px
}

.right-bar li .hide-menu .tel {
    font-size: 16px;
    color: #ff5c38
}

.right-bar li .hide-menu .font12 {
    font-size: 12px
}

.right-bar li .hide-menu2 {
    position: absolute;
    z-index: 7;
    box-sizing: border-box;
    right: -142px;
    top: 64px;
    transition: 0.3s
}

.right-bar li .hide-menu2 img {
    width: 140px;
    height: 140px
}

.right-bar li .move-top {
    z-index: 8;
    position: relative;
    transition: 0.3s
}

.right-bar li .move-top:hover {
    transform: translate3d(0, -48px, 0)
}

.right-bar .move-left:hover .hide-menu {
    transform: translate3d(-342px, 0, 0)
}

.right-bar .move-left:hover .hide-menu2 {
    transform: translate3d(-204px, 0, 0)
}

/* 个人资料 */
.userRight .userInfo {
    box-sizing: border-box;
    padding: 10px 60px;
}

.userRight .userInfo .userHg {
    display: flex;
    align-items: center;
    margin-top: 30px;

}

.userRight .userInfo .userHg .name {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    width: 100px;
}

.userRight .userInfo .userHg .text {
    display: flex;
    align-items: center;


}

.userRight .userInfo .userHg .text .ritnx {
    font-weight: 400;
    font-size: 16px;

    height: 22px;
    color: #2D2D2D;
    width: 180px;
    border-right: 1px solid #2D2D2D;
    margin-right: 60px;
}

.userRight .userInfo .userHg .text .goBtn {
    color: #1296DB;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
}

.userRight .userInfo .userHg .text .red {
    color: red;
}

/* 已实名认证 */
.userRight .userSmRz {
    box-sizing: border-box;
    padding: 90px 60px 0;
    display: flex;

}

.userRight .userSmRz .leftimg {
    font-size: 0;
    width: 116px;
    height: 90px;
}

.userRight .userSmRz .leftimg img {
    width: 100%;
    width: 100%;
}

.userRight .userSmRz .userRzInfo {
    box-sizing: border-box;
    padding-left: 30px;
}

.userRight .userSmRz .userRzInfo .userRzHg {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.userRight .userSmRz .userRzInfo .userRzHg .userRzHgName {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    width: 100px;

}

.userRight .userSmRz .userRzInfo .userRzHg .testx {
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    width: 200px;
    margin-right: 30px;
}

.userRight .userSmRz .userRzInfo .userRzHg .boRi {
    border-right: 1px solid #2D2D2D;
}

.userRight .userSmRz .userRzInfo .userRzHg .goBtn {
    font-weight: 400;
    font-size: 16px;
    color: #1296DB;
    cursor: pointer;
}

.userRight .sjQyRz {
    width: 416px;
    height: 40px;
    background: #F3990F;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    margin-left: 60px;
}

/* 未实名认证 */
.userRight .userNoSmRz {
    box-sizing: border-box;
    padding: 20px 60px;
}

.userRight .userNoSmRz .typeBox {
    display: flex;
    align-items: center;

}

.userRight .userNoSmRz .typeBox .type {
    width: 160px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 10px;
    font-weight: 400;
    font-size: 18px;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: center;

}

.userRight .userNoSmRz .typeBox .type:hover {
    color: #F3990F;

}

.userRight .userNoSmRz .typeBox .type.act {

    border: 2px solid #F3990F;
    color: #F3990F;


}

.userRight .userNoSmRz .tixianHg {
    display: flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

.userRight .userNoSmRz .tixianHg .name {
    width: 100px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.userRight .userNoSmRz .tixianHg input {
    width: 320px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    border: none;
}

.userRight .userNoSmRz .tixianHg input::placeholder {
    color: #666666;

}

.userRight .userNoSmRz .tixianHg .tips {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    padding-left: 11px;
}

.userRight .userNoSmRz .checkboxBox {
    margin-top: 46px;
}

.userRight .userNoSmRz .checkboxBox .checkbox {
    display: flex;


}

.userRight .userNoSmRz .checkboxBox .checkbox .text {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    width: calc(100% - 100px);

}

.userRight .userNoSmRz .checkboxBox .checkbox input[type='checkbox'] {
    margin-right: 10px;
    border: none !important;
    width: 20px;
    height: 20px;
    background: #F5F5F5;
    border-radius: 4px;
    -webkit-appearance: none;
    cursor: pointer;
}

.userRight .userNoSmRz .checkboxBox .checkbox input[type='checkbox']:checked {
    background: #F3990F;

}

.userRight .userNoSmRz .isBtnBX {
    width: 416px;
    height: 40px;
    background: #F3990F;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 100px;
    border: none;

}

.userRight .userNoSmRz .isBtnBX:hover {
    background: #e28902;
}

/* 设置安全密码 */
.userRight .setAqPwd {
    box-sizing: border-box;
    padding: 20px 60px;
}

.userRight .setAqPwd .tixianHg {
    display: flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

.userRight .setAqPwd .tixianHg .name {
    width: 100px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
}

.userRight .setAqPwd .tixianHg input {
    width: 320px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #2D2D2D;
    border: none;
}

.userRight .setAqPwd .tixianHg input::placeholder {
    color: #666666;

}

.userRight .setAqPwd .tixianHg .tips {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    padding-left: 11px;
}

.userRight .setAqPwd .tixianHg .getCode {
    font-weight: 400;
    font-size: 16px;
    color: #108CEB;
    cursor: pointer;
    margin-left: 40px;
}

.userRight .setAqPwd .tixianHg .getImgCode {
    width: 130px;
    height: 40px;
    font-size: 0;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
    margin-left: 20px;
    box-sizing: border-box;
}

.userRight .setAqPwd .tixianHg .getImgCode img {
    width: 100%;
    height: 100%;
}

.userRight .setAqPwd .isBtnBX {
    width: 416px;
    height: 40px;
    background: #F3990F;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 100px;
    border: none;
}

.userRight .setAqPwd .isBtnBX:hover {
    background: #e28902;
}

.userRight .setAqPwd .tixianHg select.select {
    cursor: pointer;
    width: 320px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 20px;
    font-weight: 400;
    font-size: 18px;
    border: none;
    /* 隐藏默认下拉箭头 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* 自定义背景和边框样式 */
    background-image: url('../img/downIc.png');
    background-repeat: no-repeat;
    background-position: 280px center;
    background-size: 18px 18px;
    /* 自定义下拉箭头的样式 */
    padding-right: 20px;
    /* 避免箭头被文本覆盖 */
    color: #666666;

}

/* 已经设置了 安全密码 */
.isSetAqPaw {
    padding: 100px 60px;
    box-sizing: border-box;
}

.isSetAqPaw .status-hint {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    background-color: #f8fafc;
    border-radius: 3px;
    height: 268px;
    flex-wrap: wrap;
}

.isSetAqPaw .status-hint-icon {
    float: left;
}

.isSetAqPaw .status-hint-icon i::before {
    display: block;
    width: 140px;
    height: 140px;
    line-height: 150px;
    overflow: hidden;
    text-align: center;
    font-size: 142px;
}

.isSetAqPaw .icon-security:before {
    content: "\e680";
}

.isSetAqPaw .status-hint-icon i::before {
    display: block;
    width: 140px;
    height: 140px;
    line-height: 150px;
    overflow: hidden;
    text-align: center;
    font-size: 142px;
}

.isSetAqPaw .icon-shoujirenzheng:before {
    content: "\e659";
}

.isSetAqPaw .status-hint-text {
    margin-left: 40px;
}

.isSetAqPaw .status-hint-text h3 {
    font-size: 24px;
    font-weight: 600;
    padding: 0 0 10px 0;
}

.isSetAqPaw .status-hint-text .btn {
    margin-top: 15px;
}

.isSetAqPaw .text-green {
    color: #0cc741 !important;
}

.isSetAqPaw .btn-primary {
    color: #fff;
    border-color: #f89339;
    background-color: #f9841c;
    box-shadow: 1px 3px 13px #f89339;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 100px;
    transition: .3s;
    margin-top: 30px;
    display: inline-block;
}

.isSetAqPaw .btn-primary:hover {
    color: #f89339;
    border-color: #f89339;
    background-color: #ffffff;
}

.isSetAqPaw .fsz16 {
    font-size: 16px;
}

/* 升级企业认证 */
.qyRzBox {
    box-sizing: border-box;
    overflow: hidden;
}

.qyRzBox .realname-content .alert {
    width: 100% !important;
    max-width: auto !important;
}

.qyRzBox .realname-content .userform {
    padding-left: 20px !important;
}

/* 提现账号 */
.txZHbox {
    box-sizing: border-box;
    padding: 60px 20px;
}

.txZHbox .tabss {
    display: flex;
    align-items: center;
}

.txZHbox .tabss .item {
    width: 180px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    box-sizing: border-box;
    margin-right: 20px;
    cursor: pointer;

}

.txZHbox .tabss .item.act {
    border: 2px solid #F3990F;
    color: #F3990F;

}

.txZHbox .tabss .item.act .img.act {
    display: block !important;
}

.txZHbox .tabss .item.act .img {
    display: none !important;
}

.txZHbox .tabss .item .img.act {
    display: none !important;
}

.txZHbox .tabss .item:hover {
    border: 2px solid #F3990F;
    color: #F3990F;
}

.txZHbox .tabss .item .img {
    font-size: 0;
    width: 28px;
    height: 28px;
    margin-right: 20px;

}

.txZHbox .tabss .item .img img {
    width: 100%;
    height: 100%;
}

.txZHbox .noRz {
    width: 416px;
    height: 154px;
    background: #F8FAFC;
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.txZHbox .isBtnBX {
    width: 416px;
    height: 40px;
    background: #F3990F;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 100px;
    border: none;
}

.txZHbox .isBtnBX:hover {
    background: #e28902;
}
.txZHbox.view-framework-body .box{
    padding: 0;
    margin-top: 40px;
}
.txZHbox.view-framework-body .userform{
    padding-left: 0;
}
.pa30{
    padding: 30px !important;
}

.alert {
    position: relative;
    line-height: 1.5;
    padding: 10px 20px;
    color: #484848;
    border: 1px solid #eeeeef;
    background-color: #f8fafc;
    margin-bottom: 20px;
    border-radius: 6px;
}
.alert-info {
    color: #11a6d6;
    border-color: #def2f4;
    background-color: #effafb;
}
.form-control {
    display: block;
    width: 100%;
    line-height: 20px;
    padding: 9px 12px;
    font-size: 14px;
    color: #484848;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    border-radius: 6px;
    transition: border linear .2s, box-shadow linear .2s;
}

/* page */
.page{ padding: 15px; text-align: center; }
.page a,
.page em,
.page strong{
    position: relative;
    display: inline-block;
    min-width: 42px;
    line-height: 20px;
    overflow: hidden;
    padding: 7px 11px;
    font-size: 14px;
    vertical-align: middle;
    margin: 0 0 0 -1px;
    border: 1px solid #e5e5e5;
}
.page a:hover{ z-index: 2; border-color: #007def; background-color: #f8fafc; }
.page a.next{ line-height: 15px; font-size: 16px;}
.page strong.bc{ z-index: 3; color: #fff; font-weight: 400; cursor: default; border-color: #007def; background-color: #007def; }
.page span.disabled{ color: #999; cursor: default; border-color: #ddd; background-color: #eee; }
.page em{ color: #999; border-color: #eee; background-color: #f5f5f5; border-radius: 6px; margin: 0 11px 0 0; }
.page em + a,.page em + strong{ border-radius: 6px 0 0 6px; }
.page a:last-child,.page strong:last-child{ border-radius: 0 6px 6px 0; }
