:root {
    --Active-Color: #3C64F5;
    --Font-Color: #374567;
    --Font-Light: #9BA2B3; /*#37456780*/
    --Border-Color: #E6E7EC;
    --Money-Color: #FA427D;
    --ActiveLight-Color: #0a2ca8;
}

html, body {
    width: 100%;
    height: 100%;
    min-width: 1190px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--Font-Color);
    background: #F4F5FC;
    font-family: 微软雅黑;
}

.w1190 {
    width: 1190px;
    margin: 0 auto;
    position: relative;
}

.white {
    width: 100%;
    min-width: 1190px;
    background: #ffffff;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hide {
    display: none;
}

a {
    text-decoration: none;
}

a:hover {
    color: var(--Active-Color);
}

.no-data {
    width: 100%;
    padding: 50px 0;
    letter-spacing: 1px;
    text-align: center;
    color: var(--Font-Light);
}

.layui-layer-dialog, .layui-layer-page, .layui-layer-iframe {
    border-radius: 10px;
    overflow: hidden;
}

/* 网页header */
.header {
    width: 100%;
    min-width: 1190px;
    background: #ffffff;
}

.header .header-content {
    width: 1190px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    /* width: 140px;
    height: 31px; */
    width: 180px;
    /* height: 40px; */
}

.header-left {
    font-size: 26px;
    letter-spacing: 1px;
    font-weight: bold;
    color: var(--ActiveLight-Color);
    font-family: cursive, serif;
}
.header-left svg {
    width: 24px;
    height: 24px;
    fill: var(--ActiveLight-Color);
}

.header-right {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-login {
    color: var(--Font-Color);
    font-size: 14px;
    line-height: 20px;
    /* text-align: right; */
    /* padding: 10px 0 15px; */
}

.header-login .btn {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    box-sizing: border-box;
    border: 1px solid var(--Active-Color);
    border-radius: 8px;
    line-height: 1;
    margin-left: 5px;
    color: var(--Active-Color);
    text-decoration: none;
}

.header-login .btn:hover {
    color: #ffffff;
    background: var(--Active-Color);
}

.header-login .btn a {
    color: var(--Active-Color);
}

.header-login .btn:hover a {
    color: #fff;
}

/* 登陆后的下拉菜单 */
.header-login .usermenu, .header-login .unitmenu {
    width: 100%;
    position: absolute;
    left: 0;
    top: 30px;
    background: #F4F5FC;
    border-radius: 10px;
    border: 1px solid var(--Border-Color);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    z-index: 99;
    display: none;
}

.header-login .usermenu a, .header-login .unitmenu a {
    display: block;
    color: var(--Font-Color) !important;
}

.header-login .usermenu a:hover {
    color: var(--Active-Color) !important;
    background: rgba(0, 0, 0, 0.02);
}

.header-login .unitmenu a:hover {
    color: var(--Active-Color) !important;
    background: rgba(0, 0, 0, 0.02);
}

.header-login .user-status:hover .usermenu {
    display: block;
}

.header-login .unit-status:hover .unitmenu {
    display: block;
}

/* 顶部的搜索框 */
.header-search {
    /* width: 420px; */
    width: 320px;
    height: 36px;
    box-sizing: border-box;
    border: 1px solid var(--Active-Color);
    border-radius: 20px;
    padding: 0 14px 0 18px;
    /* margin-bottom: 20px; */
    margin-right: 30px;
}

.header-search .search-input {
    display: inline-block;
    vertical-align: middle;
    /* width: 310px; */
    width: 216px;
    height: 34px;
    line-height: 34px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

.header-search .search-btn {
    display: inline-block;
    vertical-align: middle;
    color: var(--Active-Color);
    font-size: 14px;
    line-height: 20px;
    padding: 5px;
    cursor: pointer;
}

.header-search .search-btn img {
    width: 15px;
    height: 15px;
    position: relative;
    top: -2px;
    margin: 0 5px;
}

/* navbar */
.navbar {
    width: 100%;
    height: 56px;
    /* background: var(--Active-Color); */
    background: #FBFBFF;
    border-bottom: 2px solid var(--Active-Color);;
    /* box-shadow: 0 6px 16px 0 rgba(178, 197, 255, 0.5); */
}

.navbar .navbar-content {
    width: 1190px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .navbar-item {
    position: relative;
    min-width: 148px;
    flex: 1;
    height: 56px;
    line-height: 56px;
    text-align: center;
    color: var(--Font-Color);
    font-size: 20px;
    cursor: pointer;
    margin: 0px 1px;
    /* border-left: 1px solid #fff; */
    /* border-right: 1px solid #fff; */
}

.navbar .navbar-item:hover,
.navbar .navbar-item.now {
    color: #ffffff;
    font-weight: 700;
    background-color: var(--Active-Color);
}

.navbar .navbar-item > a {
    color: var(--Font-Color);
}

.navbar .navbar-item:hover > a,
.navbar .navbar-item.now > a {
    color: #fff;
}

.navbar .navbar-item .ulist {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 100;
    transform: translate(-50%);
    text-align: center;
    background: #ffffff;
    /* backdrop-filter: blur(20px); */
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .16);
    border: 1px solid transparent;
    border-radius: 6px;
    opacity: 1;
    width: 96%;
    height: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    visibility: hidden;
    transition: height .5s;
}

.navbar .navbar-item:hover .ulist {
    visibility: visible;
    height: auto;
}

.navbar .navbar-item .ulist .uitem {
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    cursor: pointer;
}

.navbar .navbar-item .ulist .uitem a {
    display: block;
    color: var(--Active-Color);
}

.navbar .navbar-item .ulist .uitem:hover {
    background: var(--Active-Color);
    border-radius: 0;
}

.navbar .navbar-item .ulist .uitem:hover a {
    color: #ffffff;
}


/* footer */
.footer {
    width: 100%;
    height: 630px;
    padding: 70px 0 150px;
    box-sizing: border-box;
    background: #243362;
    position: relative;
}

/* 集团介绍入口 */
.footer .top {
    display: block;
    width: 1190px;
    height: 86px;
    margin: 0 auto;
}

.footer .top img {
    width: 100%;
    height: 100%;
}

.footer .center {
    width: 1190px;
    margin: 80px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 网站logo */
.footer .left-info .info-logo {
    display: block;
    width: 290px;
    margin-bottom: 50px;
}

.footer .left-info .info-qrcode {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #ffffff;
    text-align: center;
    margin-right: 25px;
}

.footer .left-info .info-qrcode img {
    width: 78px;
    height: 78px;
    display: block;
    margin: 0 auto 4px;
}

.footer .left-info .info-contact {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 255px;
    font-weight: 400;
    color: #B2C5FF;
}

.footer .left-info .info-contact div {
    width: 100%;
    font-size: 12px;
    margin-bottom: 5px;
}

.footer .left-info .info-contact span {
    font-size: 16px;
    line-height: 25px;
}

/* 提供服务 */
.footer .right-services {
    width: 740px;
    min-height: 220px;
    text-align: right;
    border-left: 1px solid #B2C5FF80;
}

.footer .right-services .service-list {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    width: 80px;
    margin-left: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.footer .right-services .service-list .service-title {
    color: #B2C5FF;
    margin-bottom: 20px;
}

.footer .right-services .service-list a {
    text-decoration: none;
    color: #B2C5FF80;
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer .right-services .service-list a:hover {
    color: #B2C5FF;
}

/* 网站版权 */
.footer .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    color: #B2C5FF80;
    font-size: 13px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    background: #081A4F;
}

.footer .bottom a {
    color: #B2C5FF80;
    text-decoration: none;
}

.footer .bottom a:hover {
    color: #B2C5FF;
}

/* 内页顶部背景图 */
.contain {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding-top: 50px;
}

.page-bg {
    width: 100%;
    min-width: 1190px;
    height: 250px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: url('../img/inner-bg.png');
    background-size: 100% 100%;
}

.page-bg.pta {
    background: url('../img/pta/pta-top-img.png');
}

.page-bg.jobfair {
    background: url('../img/job/jobfair-bg.png');
}

.page-bg.service {
    background: url('../img/service/top-img.png');
    background-size: 100% 100%;
}

.page-bg::before {
    content: '';
    display: block;
    width: 35%;
    max-width: 600px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(-270deg, rgb(244, 245, 252), rgba(92, 132, 248, 0) 100%);
}

.page-bg::after {
    content: '';
    display: block;
    width: 35%;
    max-width: 600px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(270deg, rgb(244, 245, 252), rgba(92, 132, 248, 0) 100%);
}

.page-crumbs {
    width: 1190px;
    margin: 0 auto 10px;
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    box-sizing: border-box;
    padding: 0 60px;
}

.page-crumbs a {
    color: #ffffff;
    cursor: pointer;
}

.page-crumbs img {
    position: relative;
    top: -2px;
    display: inline-block;
    border: none;
    vertical-align: middle;
}

.page-box {
    width: 1190px;
    min-height: 500px;
    margin: 0 auto 50px;
    background: #ffffff;
    position: relative;
}

.page-tab {
    padding: 45px 65px 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid var(--Border-Color);
    box-shadow: 0px 6px 16px 0px rgba(55, 69, 103, 0.05);
}

.page-tab .tab-item {
    position: relative;
    min-width: 160px;
    padding: 0 20px;
    cursor: pointer;
    color: var(--Font-Light);
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    border-right: 1px solid var(--Border-Color);
}
.page-tab .tab-item a {
    color: var(--Font-Light);
}

.page-tab .tab-item:last-child {
    border: none;
}

.page-tab .tab-item.now,
.page-tab .tab-item.now a {
    font-size: 28px;
    color: var(--Active-Color);
}

.page-tab .tab-item.now::before {
    content: '';
    display: block;
    width: 100%;
    height: 32px;
    border-bottom: 3px solid var(--Active-Color);
    box-shadow: 0px 6px 16px 0px rgba(55, 69, 103, 0.05);
    background: linear-gradient(180deg, rgba(92, 132, 248, 0), rgba(92, 132, 248, 0.15) 100%);
    position: absolute;
    bottom: -20px;
    left: 0;
}

/* tab卡片 */
.tab-box {
    padding: 60px 0 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.tab-box .more {
    cursor: pointer;
    color: #5C84F8;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    position: absolute;
    right: 0;
    top: 57px;
}

.tab-box .more img {
    position: relative;
    top: 5px;
}

.tab-box .tab-item {
    position: relative;
    width: 180px;
    cursor: pointer;
    color: var(--Font-Color);
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    border-right: 1px solid var(--Border-Color);
}

.tab-box .tab-item:last-child {
    border: none;
}

.tab-box .tab-item::before {
    content: '';
    display: block;
    width: 180px;
    height: 1px;
    background: var(--Border-Color);
    position: absolute;
    bottom: -20px;
    left: 0;
}

.tab-box .tab-item.now {
    color: var(--Active-Color);
}

.tab-box .tab-item.now::before {
    height: 2px;
    background: var(--Active-Color);
}

/* .tab-box + .tab-block {} */


/* flex布局的卡片列表 */
.flex-list {
    position: relative;
    width: 1190px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

/* 职位卡片 */
.job-item {
    position: relative;
    width: 388px;
    height: 169px;
    margin-right: 13px;
    margin-bottom: 15px;
    background: url('../img/job/job-bg.png');
    background-size: 100% 100%;
    box-sizing: border-box;
    padding: 30px 30px 0;
}

.job-item:nth-child(3n) {
    margin-right: 0;
}

.job-item::before {
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background: var(--Active-Color);
    border-radius: 10px;
    box-shadow: 0 4px 20px 0 rgba(60, 100, 245, 0.5);
    position: absolute;
    bottom: -2px;
    left: 30px;
}

.job-item:hover::before {
    background: rgb(250, 66, 125);
    box-shadow: 0px 8px 20px 0px rgba(250, 66, 125, 0.5);
}

.job-item .job-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-item .job-name {
    flex: 1;
    position: relative;
    cursor: pointer;
    color: var(--Font-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 10px;
}

.job-item .job-name::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--Active-Color);
}

.job-item .job-money {
    color: var(--Money-Color);
    font-size: 18px;
    line-height: 24px;
    text-align: right;
    width: 100px;
}

.job-item .job-tag {
    height: 50px;
    color: var(--Font-Light);
    font-size: 14px;
    line-height: 18px;
}

.job-item .job-tag span {
    display: inline-block;
    margin-top: 10px;
    margin-left: 10px;
}

.job-item .job-unit {
    display: block;
    box-sizing: border-box;
    color: var(--Font-color);
    cursor: pointer;
    font-size: 18px;
    line-height: 36px;
    padding-top: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-top: 2px dashed var(--Active-Color);
}

.job-item .job-name:hover,
.job-item .job-unit:hover {
    color: var(--Active-Color);
}

.highlight {
    color: var(--Money-Color) !important
}

/* 招聘会卡片 */
.jobfair-item {
    width: 384px;
    height: 260px;
    padding: 30px;
    margin-right: 18px;
    margin-bottom: 18px;
    box-sizing: border-box;
    border: 1px solid var(--Border-Color);
    box-shadow: 0px 6px 16px 0px rgba(55, 69, 103, 0.05);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.jobfair-item:nth-child(3n) {
    margin-right: 0;
}

.jobfair-item .jobfair-time {
    width: 100%;
    height: 36px;
    box-sizing: border-box;
    padding-left: 10px;
    background: rgba(178, 197, 255, 0.1);
    color: #5C84F8;
    font-size: 13px;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 15px;
}

.jobfair-item .jobfair-time img {
    position: relative;
    width: 14px;
    height: 14px;
    top: -1px;
}

.jobfair-item .jobfair-time.gray {
    color: var(--Font-Light);
    background: rgba(178, 197, 255, 0.1);
}

.jobfair-item .jobfair-title {
    padding: 0 10px;
    height: 66px;
    color: var(--Font-color);
    font-size: 18px;
    line-height: 22px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 设置为想要的行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.jobfair-item .jobfair-title:hover {
    color: var(--Active-Color);
}

.jobfair-item .jobfair-address {
    padding: 0 10px;
    color: var(--Font-Light);
    font-size: 15px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 设置为想要的行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.jobfair-item .jobfair-count {
    padding: 0 10px;
    color: var(--Font-Light);
    font-size: 15px;
    line-height: 1;
}

.jobfair-item .jobfair-count span {
    color: var(--Money-Color);
}


/* 新闻列表 */
.news-list {
    width: 100%;
    padding: 0 70px 50px;
    box-sizing: border-box;
}

.news-list .list-item {
    display: block;
    padding: 8px 0;
    color: var(--Font-Color);
    font-size: 16px;
    line-height: 36px;
    text-align: justify;
    border-bottom: 2px dashed var(--Border-Color);
    overflow: hidden;
}

.news-list .list-item:last-child {
    border: none;
}

.news-list .list-item .item-title {
    float: left;
    width: 80%;
    display: block;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-list .list-item .item-title:hover {
    color: var(--Active-Color);
}

.news-list .list-item .item-time {
    color: var(--Font-Light);
    font-size: 16px;
    line-height: 22px;
    padding: 0 5px;
    margin-top: 8px;
    /* border: 1px solid var(--Border-Color); */
    float: right;
    /* opacity: 0.5; */
}

/* 分页器样式 */
.list_page {
    margin: 50px auto;
    color: var(--Font-Color);
    text-align: center;
}
/* 页数按钮样式 */
.list_page button {
    position: relative;
    display: inline-block;
    min-width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 14px;
    line-height: 36px;
    background-color: transparent;
    border-radius: 18px;
    border: none;
    text-align: center;
    margin: 0 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#lastPage {
    margin-left: 20px;
}
#firstPage {
    margin-right: 20px;
}
#nextPage {
    margin-left: 40px;
}
#prePage {
    margin-right: 40px;
}
#firstPage,
#lastPage,
#prePage,
#nextPage {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    box-shadow: 0px 6px 16px 0px rgba(178, 197, 255, 0.5);
    background: #fff;
}
#firstPage svg,
#prePage svg {
    position: relative;
    top: 5px;
    right: 2px;
}
#nextPage svg,
#lastPage svg {
    position: relative;
    top: 5px;
    left: 2px;
}
.list_page .current {
    box-shadow: 0px 6px 16px 0px rgba(178, 197, 255, 0.5);
    background: #fff;
    color: var(--Active-Color);
}
/* 页面数量 */
.list_page .totalPages {
    margin: 0 10px
}
.list_page .totalPages span, .totalSize span {
    margin: 0 5px
}
/*button禁用*/
.list_page button:disabled {
    opacity: .5;
    cursor: no-drop
}
.list_page button:disabled:hover {
    color: var(--Font-Light);
    background-color: #fff;
}
/* 总记录 */
.list_page .totalNum {
    color: var(--Font-Light);
    font-size: 12px;
    border: 1px solid #dce0e0;
    border-radius: 4px;
    margin: 0 4px;
    padding: 6px 8px;
}

/* 静态输出的页码样式 */
.list_page .pagination a,
.list_page .pagination span {
    position: relative;
    display: inline-block;
    min-width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 14px;
    line-height: 36px;
    background-color: transparent;
    border-radius: 18px;
    border: none;
    text-align: center;
    margin: 0 6px;
}
.list_page .pagination .ellipsis {
    letter-spacing: 3px;
}
.list_page .pagination a:hover {
    color: var(--active-color);
    font-weight: bold;
}
.list_page .pagination .current {
    box-shadow: 0px 6px 16px 0px rgba(178, 197, 255, 0.5);
    background: #fff;
    color: var(--Active-Color);
}


/* 局部loading效果 */
.blur {
    opacity: .7;
    filter: blur(2px);
    pointer-events: none;
}

.mask-loading {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 50px;
    background: rgba(0, 0, 0, 0.02);
}

.div-loading {
    width: 100px;
    height: 50px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.text-loading {
    font-size: 14px;
    color: #999;
    display: block;
    margin: 5px auto;
}

.icon-loading {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    -webkit-animation: weuiLoading 1s steps(12, end) infinite;
    animation: weuiLoading 1s steps(12, end) infinite;
    background: transparent url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E9E9E9' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23989697' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%239B999A' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23A3A1A2' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23ABA9AA' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23B2B2B2' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23BAB8B9' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23C2C0C1' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23CBCBCB' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23D2D2D2' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23DADADA' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E2E2E2' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E") no-repeat;
    background-size: 100%;
}

@-webkit-keyframes weuiLoading {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

@keyframes weuiLoading {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}