/*
@version 1.0.1
@description 通用样式
@update 2025.7.30
 */
body {
    width: 100%;
    min-width: 1030px;
    height: 100%;
    color: #333;
    font-size: 14px;
    background: #f8f8f8;
}
/*-- reset css --*/
*{
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'pingfang SC', 'helvetica neue', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
ul,
ol { list-style: none; }
a {
    color: #7d8b98;
    text-decoration: none;
}
a,
button,
select,
input[type="radio"],
input[type="checkbox"] {
    outline: none;
    cursor: pointer;
}
textarea { outline: none; }
input:focus,
button:focus {
    outline: none !important;
    text-decoration: none;
}
a:focus {
    outline: none !important;
    text-decoration: none;
}
a:hover {
    outline: none !important;
    text-decoration: none;
}
a:hover { color: #fb4d42; }
img { border: none; }
em,i { font-style: normal; }
input::-ms-clear,
input::-ms-reveal { display: none; } /* 隐藏IE浏览器自带的文本删除按钮和密码查看按钮 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button { -webkit-appearance: none !important; }
input[type="number"] { -moz-appearance: textfield; }
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill { /* 覆盖chrome浏览器表单自动填充后的黄色背景 */
    background-color: transparent;
    background-image: none;
    -webkit-box-shadow: 0 0 0 1000px white  inset !important;
    transition: background-color 50000s ease-in-out 0s;
}
select {
    border-radius: 2px;
    border: 1px solid #ddd;
}
table {
    border: none;
    border-spacing: 0;
}
/*-- !end / reset css --*/
.fl { float: left !important; }
.fr { float: right !important; }
.clear { clear: both; } /* 清除浮动 */
.texthide {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em; /* 根据需要调整行高 */
    max-height: 2em; /* 行高乘以行数 */
}

.vertical-t { vertical-align: top; }
.vertical-m { vertical-align: middle; }
.border-r-0 { border-right: none !important; }
.border-b-1 { border-bottom: 1px solid #eee; }
.wrap {
    width: 990px;
    margin: 0 auto;
}
@media screen and (min-width:1280px){
    .wrap { width: 1210px; }
}
.resp01 .wrap { width: 1210px; }
.none-background{
    background: none;
}
/* btn */
.btn {
    display: inline-block;
    border-radius: 2px;
    color: #fff;
    padding: 0 10px;
    line-height: 30px;
    height: 30px;
    text-decoration: none;
    border: none;
    text-align: center;
    min-width: 60px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
.btn.bluebtn { background: #288be4; }
.btn.graybtn { background: #999999; }
.btn.bluebtn:hover { background: #0673d6; }
.btn.graybtn:hover { background: #666666; }
/* 内外边距 */
.mr05 { margin-right: 5px; }
.mr08 { margin-right: 8px; }
.mr10 { margin-right: 10px; }
.mr15 { margin-right: 15px; }
.mr30 { margin-right: 30px; }
.ml05 { margin-left: 5px; }
.ml10 { margin-left: 10px; }
.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 5px; }
.mb10 { margin-bottom: 10px; !important;}
.mb15 { margin-bottom: 15px; }
.mt05 { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
/* 字体颜色 */
.color1 { color: #999; }
.color2 { color: #5a646e; }
.color3 { color: #fb4d42; }
.color4 { color: #666; }
.color5 { color: #333; }
.color6 { color: #66c8c5; }
.color7 { color: #288be4; }
.color8 { color: #aaa; }
.color-orange { color: #ffb033; }
.color-red { color: #fb4d42; }

/* 字号 */
.font12 { font-size: 12px !important; }
.font14 { font-size: 14px; }

/* 翻页 */
.paginator {
    width: 100%;
    float: left;
    margin-top: 20px;
    margin-bottom: 50px;
    text-align: center;
}
.paginator .prev,
.paginator .num,
.paginator .next {
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #dddeee;
    padding: 5px 10px;
    min-width: 26px;
    background: #f8f8f8;
    text-decoration: none;
    margin: 0 3px;
}
.paginator .prev:hover,
.paginator .num:hover,
.paginator .next:hover {
    color: #1a1a1a;
    border-color: #aaa;
}
.paginator .prev.activate,
.paginator .prev.activate:hover,
.paginator .next.activate,
.paginator .next.activate:hover {
    border-color: #e5e5e5;
    color: #aaa;
    background: none;
    cursor: default;
}
.paginator .num.thispage {
    border: none;
    background: none;
    color: #fb4d42;
    cursor: default;
}
.paginator .break {
    color: #999;
    display: inline-block;
    padding: 5px;
}
.paginator .pageinfo {
    line-height: 32px;
    margin-left: 10px;
    color: #666;
}
.paginator .pageinfo input {
    width: 32px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid #ddd;
    text-align: center;
    margin: 0 5px;
    vertical-align: bottom;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
.paginator .pageinfo input:focus { border-color: #aaa; }
.paginator .gobtn {
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #dddeee;
    padding: 5px 10px;
    min-width: 26px;
    background: #f8f8f8;
    text-decoration: none;
    margin-left: 10px;
    /* transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear; */
}
.paginator .gobtn:hover {
    background: #288be4;
    color: #fff;
    border-color: #288be4;
}

.loader {
    display: none;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
/*
flex布局 元素居中
 */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

