@import './general/flex.css';
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: '思源黑体';
  /*color: #333333;*/
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
    width: 100%;
    min-height: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

input, textarea {
    border: 0;
}
input:focus, input:hover, textarea:focus, textarea:hover {
    outline: none;
    border: none;
    caret-color: #333333;
}

/*//文本省略*/
.s-line-1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.s-line-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.s-line-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}
.s-line-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
}
.s-line-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
}

.s-inset-width {
    width: 1537px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1500px) {
    .s-inset-width {
        max-width: 100%;
    }
}

/* 由下向上显示 */
.ct-observer .ct-transform {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateY(100px);
    transition: all 0.5s ease-out 0.2s;
}
.ct-observer.ct-transform--active .ct-transform {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(0);
}

/* 由小到大 */
.ct-observer .ct-transform__scale {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: scale(0.1);
    transition: all 0.5s ease-out;
}
.ct-observer.ct-transform--active .ct-transform__scale {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: scale(1);
}

/* 由左到右边 */
.ct-observer .ct-transform__left {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(-100px);
    transition: all 0.5s ease-out;
}
.ct-observer.ct-transform--active .ct-transform__left {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateX(0);
}

/* 由右边到左边 */
.ct-observer .ct-transform__right {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(100px);
    transition: all 0.5s ease-out;
}
.ct-observer.ct-transform--active .ct-transform__right {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateX(0);
}

.ct-scale-img img {
    transition: transform 0.5s ease-in-out;
}
.ct-scale-img:hover img {
    transform: scale(1.1);
}

/* loading效果 */
.ct-loading {
    position: relative;
}
.ct-mask-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .7);
}
.ct-mask-loading::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 3px solid #409eff;
    border-bottom-color: transparent;
    animation: loadRotate 1s linear infinite;
}
@keyframes loadRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/*图片*/
.ct-img-fill img {
    object-fit: fill;
    width: 100%;
    height: 100%;
}
.ct-img-cover img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/*图片悬浮*/
.ct-img-hover img, .ct-img-box-hover img {
    transform-origin: center;
    transition: all 0.5s ease-in-out;
}
.ct-img-hover img:hover, .ct-img-box-hover:hover img {
    transform: scale(1.2);
}
/*模块悬浮放大*/
.ct-item-hover, .ct-item-hover__shadow {
    transform-origin: center;
    transition: all 0.5s ease-in-out;
}
.ct-item-hover:hover {
    transform: scale(1.1);
}
.ct-item-hover__shadow:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
}

/* 模块样式 */
.module-header {
    overflow: hidden;
}
.module-header .title {
    position: relative;
    float: left;
    min-width: 253px;
    font-weight: normal;
    font-size: 36px;
    color: #333333;
    line-height: 48px;
    padding: 16px 0 16px 54px;
}
.module-header .title::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 253px;
    height: 30px;
    background-image: url('../image/common/tll.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
}
.module-header .en {
    position: relative;
    float: right;
    margin-top:16px;
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    line-height: 48px;
    padding: 8px;
}
.module-header .en::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 185px;
    height: 10px;
    background-image: url('../image/common/tlr.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
}
.module-header.white .title, .module-header.white .en {
    color: #fff;
}
.module-header.white .title::after {
    background-image: url('../image/common/tllw.png');
}
.module-header.white .en::after {
    background-image: url('../image/common/tlrw.png');
}

.module-main::after {
    content: '';
    display: block;
    clear: both;
}
.module-main .module-slide {
    width: 360px;
    float: left;
}

.module-main .module-content {
    width: calc(100% - 394px);
    min-height: 400px;
    margin-left: 394px;
}

.module-main__right::after {
    content: '';
    display: block;
    clear: both;
}
.module-main__right .module-slide {
    width: 360px;
    float: right;
}

.module-main__right .module-content {
    width: calc(100% - 394px);
    min-height: 400px;
    margin-right: 394px;
}

/* 面包屑 */
.module-crumbs {
    width: 100%;
    height: 80px;
    background: rgba(255,255,255,0.8);
}

.module-crumbs__content {
    padding: 24px 0;
    line-height: 36px;
}

.module-crumbs__content span, .module-crumbs__content a {
    font-size: 24px;
    color: #333333;
}

/*搜索框样式*/
.ct-search {
    position: relative;
    width: 100%;
    height: 48px;
    padding: 0 67px 0 19px;
    background: #FFFFFF;
    border-radius: 30px;
    border: 1px solid #D1D1D1;
    overflow: hidden;
}
.ct-search .search-btn {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: #0859C0 url('../image/common/search1.png')no-repeat center / 21px 21px;
    cursor: pointer;
}
.ct-search img {
    position: absolute;
    right: 19px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 21px;
    height: 21px;
    flloat: left;
}
.ct-search input {
    width: 100%;
    height: 100%;
    border: 0;
}
.ct-search input:focus,
.ct-search input:hover {
    outline: none;
    border: none;
    caret-color: #333333;
}

/*分页*/
.pages{
    clear: both;
    margin:30px auto 30px auto; 
    overflow: hidden; 
    text-align: center;
    font-size:14px;
}
.pages ul li{
    display: inline-block;
    margin: 0 8px;
    color: #606266;
    min-width: 32px;
    padding: 0 2px;
    box-sizing: border-box;
    height: 32px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
}
.pages ul li:hover{
    background-color: #409eff;
    color: #fff;
}
.pages ul li:hover a{
    color:#fff;}
.pages ul li.thisclass{
    background-color: #409eff;
    color: #fff;
}
.pages ul li.thisclass a{
    color: #fff;
}
.pages ul li a{
    display:block;color:#999;
}
.pages ul li a:hover{
    color: #fff;
}


.ct-pagination {
    white-space: nowrap;
    padding: 2px 5px;
    color: #303133;
    text-align: center;
    box-sizing: border-box;
}
.ct-pagination button {
    display: inline-block;
    padding: 0;
    margin: 0 8px;
    color: #606266;
    min-width: 30px;
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.15);
    cursor: pointer;
}
.ct-pagination button:disabled {
    color: #c0c4cc;
    background-color: #fff;
    cursor: not-allowed;
}
.ct-pagination button i {
    display: inline-block;
    transform: scaleY(1.8);
    color: #606266;
    font-weight: lighter;
    font-size: 16px;
}
.ct-pagination .ct-pager {
    display: inline-block;
    user-select: none;
    list-style: none;
    vertical-align: top;
    font-size: 0;
    padding: 0;
    margin: 0;
}
.ct-pagination .ct-pager li {
    display: inline-block;
    margin: 0 8px;
    color: #606266;
    min-width: 32px;
    padding: 0 2px;
    box-sizing: border-box;
    height: 32px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.15);
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
}
.ct-pagination .ct-pager .number:not(.active):hover {
    color: #409eff;
}
.ct-pagination .ct-pager .number.active {
    background-color: #409eff;
    color: #fff;
}
.ct-pagination .ct-pager .more {}
