body,
p {
    margin: 0;
}

* {
    box-sizing: border-box;
}

body {
    color: #333;
    font-size: 14px;
    background-color: #f8f8f9;
}

img,
a {
    display: block;
}

a,
a:hover,
a:link {
    text-decoration: none;
}

video {
    object-fit: fill !important;
    display: block;
    border: none;
}

input {
    outline: none;
    border: none;
}

.display {
    display: none !important;
}

.bg {
    background-color: #f8f8f9;
}

.ma {
    margin: auto;
}

.main {
    width: 1260px;
}
.main-color{color:#B03B42;}
.lh-25{line-height: 25px;}
.fl{float:left;}
.fr{float:right;}

header {
    width: 100%;
    height: 75px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .15);
    background-color: white;
}

.fixed {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}
.flex{display: flex;}
.text-1{
    text-align: center;
    line-height: 28px;
}

.header-main {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left,
.nav {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 70px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 45px;
    color: #333;
    font-family: cursive;
}

.logo img {
    height: 55px;
    margin-right: 10px;
}

.nav a {
    margin-right: 28px;
    color: #333;
    font-size: 16px;
}

.nav a:last-child {
    margin-right: 0;
}

.nav .active,
.nav a:hover {
    color: rgb(176, 59, 66);
}

.header-right {
    display: flex;
    align-items: center;
}

.goLogin {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(176, 59, 66);
    color: white;
    border-radius: 3px;
}

.head-logo {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 18px;
}

.head-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

#indexSwiper {
    height: 480px;
    position: relative;
}

#indexSwiper .swiper-slide {
    background-repeat: no-repeat;
    background-position: center top;
}

.switchBtn {
    position: absolute;
    top: calc(50% - 30px);
    z-index: 999;
    cursor: pointer;
    transition: all 0.2s linear;
}

#indexSwiper .prev {
    left: -100px;
}

#indexSwiper .next {
    right: -100px;
}

#indexSwiper:hover .prev {
    left: 50px;
}

#indexSwiper:hover .next {
    right: 50px;
}

#indexSwiper .swiper-pagination-bullet {
    width: 35px;
    height: 4px;
    background-color: rgba(255, 255, 255, .5);
    opacity: 1;
    border-radius: 4px;
}

#indexSwiper .swiper-pagination-bullet-active {
    background-color: white;
}

.right-nav{
    width: 70px;
    background: #fff;
    position: fixed;
    top: 35%;
    right: 10px;
    z-index: 999;
    box-shadow: 0 0 3px rgba(0,0,0,.5);
}

.right-nav .item{
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    font-size: 12px;
    color: #777;
    cursor: pointer;
}

.right-nav .item .dig{
    width: 180px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    position: absolute;
    top: 0;
    right: 80px;
    display: none;
    font-size: 14px;
}

.right-nav .item:hover .dig{
    display: block;
}

.index-search {
    width: 700px;
    padding: 4px;
    height: 60px;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 5px;
    position: absolute;
    z-index: 999;
    left: calc(50% - 350px);
    top: calc(50% - 30px);
    display: flex;
    align-items: center;
}

.index-search-bd {
    width: calc(100% - 100px);
    background-color: white;
    padding-left: 20px;
    height: 100%;
}

.index-search-btn {
    width: 100px;
    height: 100%;
    background-color: rgb(176, 59, 66);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.index-session {
    padding: 50px 0;
}

.index-session-bg {
    background-color: #f1f1f1;
}

.title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 32px;
    font-weight: bold;
}

.index-img-list,
.type-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.index-img-item {
    width: calc((100% - 120px)/4);
    margin-right: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-img-div {
    padding-top: 100%;
}


.index-img-item:nth-of-type(4n) {
    margin-right: 0;
}

.index-img-item .mask {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 18px;
    display: none;
}

.index-img-item:hover .mask {
    display: block;
}

.index-img-item img{
    object-fit: cover;
}

.seeMore {
    width: 100px;
    height: 40px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: #333;
    transition: all 0.2s linear;
}

.seeMore:hover {
    background-color: rgb(176, 59, 66);
    border-color: rgb(176, 59, 66);
    color: white;
}

footer {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.footer-link {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-link a {
    color: #333;
    margin: 0 20px;
}

.copyright {
    text-align: center;
    line-height: 35px;
}

.icp {
    display: flex;
    justify-content: center;
}

.icp a {
    color: #333;
}

footer a:hover {
    color: rgb(176, 59, 66);
}

.search-div {
    width: 800px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    border: 1px solid #ddd;
    margin: 40px auto;
    padding: 0 20px;
    background-color: white;
}

.search-div input {
    height: 30px;
    width: calc(100% - 44px);
}

.search-div img {
    cursor: pointer;
}

.type-switch {
    padding: 15px 20px;
    border: 1px solid #e5e5e5;
    background-color: white;
}

.select-one {
    color: #333;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
}

.select-one-item {
    font-size: 12px;
    padding: 0 12px;
    border-right: 1px solid #bbb;
    color: #666;
    margin: 10px 0;
}

.select-one-item:last-child,
.select-two-item:last-child {
    border-right: none;
}

.select-one-item:hover,
.select-two-item:hover {
    color: rgb(176, 59, 66);
}

.select-one .active,
.select-two .active {
    color: rgb(176, 59, 66);
    font-weight: bold;
}

.select-two {
    padding: 8px 0;
    border: 1px solid rgba(176, 59, 66, .3);
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(176, 59, 66, .1);
}

.select-two-item {
    font-size: 12px;
    padding: 0 12px;
    border-right: 1px solid #bbb;
    color: #666;
    margin: 5px 0;
}

.screening {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.screening a {
    width: 90px;
    height: 30px;
    background-color: white;
    font-size: 12px;
    color: #333;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.screening .active,
.screening a:hover {
    background-color: rgb(176, 59, 66);
    color: white;
}

.type-list-item {
    width: calc((100% - 120px)/4);
    margin-right: 40px;
    position: relative;
    margin-bottom: 40px;
}

.type-list-item:nth-of-type(4n) {
    margin-right: 0;
}

.type-list-img {
    padding: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    background-color: white;
}

.type-list-img img {
    transition: all 0.2s linear;
}

.type-list-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.type-list-content a {
    color: #333;
    width:70%;
}

.type-list-content a:hover {
    color: rgb(176, 59, 66);
}

.type-list-content .price {
    color: #d11414;
    width:30%;
    text-align: right;
}

.type-list-content .price span {
    font-weight: bold;
    font-size: 18px;
}

.type-list-img:hover img {
    transform: scale(1.2);
}

#fenye {
    text-align: center;
    margin-bottom: 40px;
}

.layui-laypage a:hover {
    color: rgb(176, 59, 66);
}

.detail {
    width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.detail-left {
    width: 720px;
}

.detail-right {
    width: 260px;
}

.detail-img {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.yulan {
    cursor: zoom-in;
}

.detail-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}

.detail-spec {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-top: none;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 40px;
    background-color: #fff;
    line-height: 25px;
}

.detail-share {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.download {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
}

.download .btn {
    width: 180px;
    height: 40px;
    background-color: rgb(176, 59, 66);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-green{background-color: green !important;}

.type-more {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: white;
}

.type-more-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.type-more-item {
    width: calc((100% - 60px)/4);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.type-more-item .mask {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0;
    text-align: center;
    background-color: #e5e5e5;
    width: 100%;
    color: #333;
    line-height: 32px;
    height:32px;
    overflow: hidden;
}

.imgMask {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgMask img {
    max-height: 100%;
    max-width: 100%;
    cursor: zoom-out;
}

.imgAuthor {
    padding: 15px;
    background-color: white;
    border: 1px solid #ddd;
    display: flex;
}

.imgAuthor img {
    width: 48px;
    height: 48px;
    margin-right: 10px;
}

.imgAuthor-top {
    display: flex;
}

.imgAuthor-name {
    color: rgb(176, 59, 66);
    font-weight: bold;
}

.identification {
    background-color: rgb(176, 59, 66);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-top: 10px;
}

.imgAuthor-list {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    padding: 10px;
}

.imgAuthor-list-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.imgAuthor-list-top a {
    color: #333;
}

.imgAuthor-list-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.imgAuthor-list-main a {
    width: calc((100% - 10px)/2);
}

.author {
    margin: 50px auto;
    display: flex;
    gap: 20px;
}

.author-left {
    width: 240px;
}

.author-head {
    background-color: #fff;
    padding: 20px;
}

.author-head .name {
    color: rgb(176, 59, 66);
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
}

.author-head .identification {
    padding: 10px 0;
    font-size: 18px;
}

.author-right {
    width: 1000px;
}

.author-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.author-item {
    width: calc((100% - 80px)/5);
}

.author-item-img {
    padding: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
    background-color: white;
}

.author-item-name {
    margin-top: 10px;
    color: #333;
    padding-left: 10px;
}

.login {
    height: 725px;
    background: url(../../img/loginBg2.jpg) 27% 48% no-repeat;
    display: flex;
    align-items: center;
}

.login-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.login-bd {
    background-color: white;
    padding: 30px 50px;
    border-radius: 10px;
    margin-right: 50px;
    width: 500px;
}

.bd-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.login-input {
    width: 100%;
    border: 1px solid #ddd;
    height: 40px;
    margin-bottom: 30px;
    padding-left: 10px;
    border-radius: 5px;
}

.login-btn {
    background-color: rgb(176, 59, 66);
    color: white;
    height: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.login-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-flex a {
    color: #333;
}

.sendCode {
    width: 110px;
    height: 40px;
    background-color: #1ebcf0;
    border-radius: 5px;
    border: solid 1px #1ebcf0;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    user-select: none;
}

.disabled{background: #909399 !important;border: solid 1px #909399 !important;}

.code-div {
    width: calc(100% - 130px);
}

.user-main {
    width: 1000px;
    margin: 50px auto;
    display: flex;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.user-left {
    width: 200px;
    background-color: rgb(176, 59, 66);
    color: #fff;
}

.user-left-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 25px 0;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.user-left-switch div {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}

.user-left-switch .active,
.user-left-switch div:hover {
    background-color: white;
    color: #333;
    border-bottom: 1px solid rgb(176, 59, 66);
}

.user-left-switch div:last-child {
    border-bottom: none !important;
}

.user-right {
    width: 800px;
    background-color: white;
    padding: 50px;
}

.userinfo {
    display: flex;
}

.user-info-head {
    width: 160px;
    margin-right: 20px;
}

.user-info-div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 5px;
}

.user-info-btn {
    color: white;
    background-color: rgb(176, 59, 66);
    border-radius: 50px;
    padding: 3px 12px;
    cursor: pointer;
}
.user-info-btn-1{
    margin-left:40px;width:80px;margin-top:10px;
}

.user-info-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.layui-form-select dl dd.layui-this {
    background-color: rgb(176, 59, 66);
}

.user-info-upload {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

.layui-upload-drag {
    display: block;
}

.sure-upload {
    border: none;
    width: 200px;
    height: 40px;
    background-color: rgb(176, 59, 66);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    cursor: pointer;
}

.vip {
    display: flex;
    gap: 20px;
}

.vip .item {
    width: calc((100% - 80px)/5);
    border: 1px solid #ddd;
    cursor: pointer;
    padding-top: 10px;
}

.vip .item .price {
    color: rgb(176, 59, 66);
    font-weight: bold;
    font-size: 22px;
    text-align: center;
}

.vip .item .price span {
    font-weight: 400;
    font-size: 16px;
}

.failure {
    text-align: center;
    margin: 10px 0;
}

.condition {
    width: 100%;
    background-color: rgba(176, 59, 66, .8);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
}

.vip .active {
    border-color: rgb(176, 59, 66);
    position: relative;
}

.vip .active::before,
.pay-type .active::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    border-left: 25px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 25px solid rgb(176, 59, 66);
}

.vip .active::after,
.pay-type .active::after {
    content: '√';
    color: white;
    position: absolute;
    right: 0;
    bottom: 0;
}

.choise-title {
    font-size: 18px;
    margin: 20px 0;
}

.pay-type {
    display: flex;
    gap: 30px;
}

.pay-type .item {
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 3px 10px;
    cursor: pointer;
}


.pay-type .active {
    border: 1px solid rgb(176, 59, 66);
    position: relative;
}

.sure-buy {
    background-color: rgb(176, 59, 66);
    color: white;
    border-radius: 5px;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer;
}

.tips-info {
    color: #999;
    line-height: 2;
    font-size: 14px;
    margin-top: 20px;
}

.balance {
    border: 1px solid #DDD;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.balance-num {
    font-size: 18px;
}

.balance-num span {
    font-size: 20px;
    font-weight: bold;
    color: rgb(176, 59, 66);
}

.tixian {
    color: white;
    background-color: rgb(176, 59, 66);
    cursor: pointer;
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.record-row {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    margin-top: 10px;
}

.record-item {
    border-bottom: 1px dashed #ddd;
}

.record-row div {
    width: 25%;
    text-align: center;
}

.record-row-mobile{
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    margin-top: 10px;
    border-bottom: 1px dashed #ddd;
}
.record-row-mobile .tiao div{}

.record-list {
    margin-bottom: 50px;
}

.tixianDiv {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tixianDiv input {
    border: 1px solid #ddd;
    width: 30%;
    height: 30px;
    padding-left: 10px;
}

.news {
    width: 900px;
    margin: auto;
    border: 1px solid #ddd;
    margin-bottom: 50px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    display: flex;
}

.news-left {
    width: 160px;
    border-right: 1px solid #ddd;
}

.news-right {
    width: 740px;
    padding: 0 20px;
}

.news-left-title {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    font-weight: bold;
}

.news-left-item {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    text-align: right;
    cursor: pointer;
}

.news-left-item:last-child {
    border-bottom: none;
}

.news-left-nav .active,
.news-left-item:hover {
    background-color: rgb(176, 59, 66);
    color: white;
}

.news-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 20px 0;
}

.fa-bars {
    color: #333;
    font-size: 30px;
    display: none;
}

.m-mask {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    background-color: rgba(0, 0, 0, .5);
    display: none;
}

.m-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.m-nav {
    width: 60%;
    background-color: white;
    height: 100%;
    position: absolute;
    top: 0;
    right: -60%;
}

.fa-remove {
    font-size: 30px;
    -webkit-text-stroke: 3px white;
    margin: 10px;
}

.m-item {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 30px;
}

.m-item a {
    font-size: 16px;
    color: #333;
    padding: 10px 0;
}

.m-item .active {
    color: #d11414;
}

@media screen and (max-width:1260px) {
    .main {
        width: 95%;
    }
}

@media screen and (max-width:1000px) {

    .detail,
    .user-main {
        width: 95%;
        flex-direction: column;
    }

    .detail-left,
    .detail-right {
        width: 100%;
    }

    .detail-left {
        order: 1;
    }

    .imgAuthor-list {
        display: none;
    }
}

@media screen and (max-width:1000px) {
    .news {
        width: 95%;
    }

    .user-right,
    .news-right {
        width: 100%;
    }

    .index-search {
        width: 50%;
        left: calc(50% - 25%);
    }

    .search-div {
        width: 88%;
    }
}

@media screen and (max-width:800px) {
    .author {
        flex-direction: column;
    }

    .author-right {
        width: 100%;
    }

    .author-item,
    .index-img-item,
    .type-list-item {
        width: calc((100% - 40px)/3);
    }

    .index-img-item:nth-of-type(4n),
    .type-list-item:nth-of-type(4n) {
        margin-right: 20px;
    }

    .index-img-item:nth-of-type(3n),
    .type-list-item:nth-of-type(3n) {
        margin-right: 0;
    }

    .index-img-item,
    .type-list-item {
        margin-bottom: 20px;
        margin-right: 20px;
    }

    .fa-bars {
        display: block;
    }

    .nav,
    .head-logo div {
        display: none;
    }

    .head-logo img {
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }

    .goLogin {
        width: 80px;
        height: 30px;
        margin-right: 20px;
    }

    .index-search {
        top: 20px;
        width: 88%;
        left: 6%;
    }

    .vip{margin-right:10px;margin-left:0 !important;}

    .el-message-box{width:85% !important;}



}

@media screen and (max-width:500px) {
    header {
        height: 50px;
    }

    .logo {
        font-size: 30px;
    }

    .logo img {
        height: 30px;
    }

    #indexSwiper {
        height: 300px;
    }

    .author-item,
    .index-img-item,
    .type-list-item,
    .type-more-item {
        width: calc((100% - 20px)/2);
    }

    .index-img-item:nth-of-type(3n),
    .type-list-item:nth-of-type(3n) {
        margin-right: 20px;
    }

    .index-img-item:nth-of-type(2n),
    .type-list-item:nth-of-type(2n) {
        margin-right: 0;
    }

    .title {
        margin-bottom: 20px;
    }

    .footer-link {
        display: none;
    }

    .author-left {
        width: 100%;
    }

    .news {
        flex-direction: column;
    }

    .news-left {
        width: 100%;
    }

    .news-left-nav {
        display: flex;
        flex-wrap: wrap;
    }

    .login-bd {
        width: 100%;
        margin: 0;
    }

    .user-right {
        padding: 20px;
    }

    .user-left {
        width: 100%;
    }
    .vip{
        flex-wrap: wrap;
    }
    .vip .item {
        width: calc((100% - 40px)/3);
    }
    .user-info-head{width:100px;}
    .user-info-btn-1{margin-left:10px;}
    .el-dialog{width:90% !important;}
}

.el-pagination.is-background .el-pager li:not(.disabled).active {background: #b03b42 !important;}