@charset "utf-8";

/* CSS Document*/
* {
    margin: 0;
    padding: 0;
}

body {
    font: 12px Arial, "Microsoft YaHei";
    color: #333;
    background-color: #fff;
    min-width: 1200px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
legend,
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
}

::-moz-selection {
    background: #aaa;
    color: #fff;
}

::selection {
    background: #aaa;
    color: #fff;
}

*:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

img {
    border: 0;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul,
li,
ol {
    list-style: none;
}

input,
textarea,
select,
button {
    font-family: Arial, "Microsoft YaHei";
    font-size: 12px;
}

table,
tbody {
    width: 100% !important;
    border-collapse: collapse;
    border: solid 1px #eee;
}

table tr,
table td,
table th {
    max-width: 100%;
    border: solid 1px #eee;
    padding: 15px;
}

.scrollbar::-webkit-scrollbar {
    width: 3px;
    background: #f4f4f4;
}

/* 滚动条整体部分 */
.scrollbar::-webkit-scrollbar-button {
    display: none;
}

/*  滚动条两端的按钮 */
.scrollbar::-webkit-scrollbar-track {
    display: none;
}

/*  外层轨道 */
.scrollbar::-webkit-scrollbar-track-piece {
    display: none;
}

/*  内层轨道 */
.scrollbar::-webkit-scrollbar-thumb {
    background: #4977ec;
}

/*  滚动条里面可以拖动的那部分 */
.scrollbar::-webkit-scrollbar-corner {
    display: none;
}

/* 边角 */
.scrollbar::-webkit-resizer {
    display: none;
}

/*  定义右下角拖动块的样式 */

/*浮动*/
.clear {
    zoom: 1;
    clear: both;
}

.clear:after {
    content: "";
    display: block;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.left {
    display: flex;
    flex-wrap: wrap;
}

.right {
    display: flex;
    justify-content: flex-end;
}

.between {
    display: flex;
    justify-content: space-between;
}

.around {
    display: flex;
    justify-content: space-around;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centerT {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.cutTwo {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cutThree {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.cutFour {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.iconT {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

@font-face {
    font-family: 'AlibabaHeavy';
    src: url('../font/Alibaba-PuHuiTi-Heavy.ttf') format('truetype');
}

@font-face {
    font-family: 'AlibabaMedium';
    src: url('../font/Alibaba-PuHuiTi-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'BebasNeue';
    src: url('../font/BebasNeue-Regular-3.ttf') format('truetype');
}

@font-face {
    font-family: 'Alimama_ShuHeiTi_Bold';
    src: url('../font/Alimama_ShuHeiTi_Bold.ttf') format('truetype');
}

.wrap {
    width: 75%;
    margin: 0 auto;
    min-width: 1200px;
    padding: 0;
    box-sizing: border-box;
}

.c1440 {
    width: 1440px;
    margin: auto;
    position: relative;
}

.c1200 {
    width: 1200px;
    margin: auto;
    position: relative;
}

@media (max-width:1440px) {
    .c1440 {
        width: 1200px;
    }
}

.noData {
    padding: 100px 0;
    text-align: center;
    font-size: 24px; 
    background-image: -webkit-linear-gradient(left, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%); 
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-left: 50%;
    transform: translate(-50%);
}


/* 分页 */
.pagination {
    width: 100%;
    display: table;
    font-size: 0;
    text-align: center
}

.pagination li {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #eee;
    margin: 0 3px;
    border-radius: 4px;
    overflow: hidden;
}

.pagination li a,
.pagination li span {
    display: block;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 38px;
    color: #666;
    width: 38px;
    text-align: center;
    transition: all .6s ease
}

.pagination li:first-child a,
.pagination li:first-child span {
    width: 70px;
}

.pagination li:last-child a,
.pagination li:last-child span {
    width: 70px;
}

.pagination .active a,
.pagination .active a:focus,
.pagination .active a:hover,
.pagination .active span,
.pagination .active span:focus,
.pagination .active span:hover {
    cursor: default;
    background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
    color: #fff;
}

.pagination li a:focus,
.pagination li a:hover,
.pagination li span:focus,
.pagination li span:hover {
    cursor: pointer;
    background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
    color: #fff;
}






#pages {
    width: 100%;
    display: table;
    font-size: 0;
    text-align: center
}

#pages a,
#pages span {
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 38px;
    color: #666;
    width: 40px;
    text-align: center;
    margin: 0 3px;
    transition: all .6s ease
}

#pages .next , #pages .prev{
    width: 70px;
}

#pages .active,
#pages a:focus,
#pages a:hover,
#pages span,
#pages span:focus,
#pages span:hover {
    cursor: default;
    background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
    color: #fff;
}

#pages a:focus,
#pages a:hover,
#pages span:focus,
#pages span:hover {
    cursor: pointer;
    background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
    color: #fff;
}