* {
    margin: 0;
    padding: 0;
    transition: .5s;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

p, a, h1, h2, h3, h4, h5, h6 {
    color: #333333;
}

a:hover {
    text-decoration: none;
    color: #ff7700;
}

.w1200 {
    margin: 0 auto;
    width: 1200px;
}

/*文字*/
.p1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.p2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.p3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/*图片*/
.imgBox, .imgBoxIn {
    display: block;
    overflow: hidden;
    position: relative;
}

.imgBox img, .imgBoxIn img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    transition: ease-in-out .3s;
}

div:hover > .imgBoxIn img,
li:hover .imgBoxIn img {
    transform: translateX(-50%) scale(1.1);
}

body {
    padding: 0 50px;
    position: relative;
    min-height: 100vh;
}

/*header*/
.logo {
    margin-top: 14px;
}

.logoText {
    user-select: none;
    font-size: 28px;
    font-weight: 800;
    /*font-family: Heebo;*/
    color: #333333;
    margin-left: -38px;
    line-height: 42px;

    text-transform: uppercase;
}


.logoText:hover {
    color: rgb(51 51 51 / 0.8);

}

/*菜单*/
.menuToggleBtn {
    cursor: pointer;
    position: fixed;
    display: block;
    z-index: 50;
    width: 30px;
    height: 39px;
    top: 56px;
    left: 12px;
}

.menuToggleBtn .menuLine {
    display: block;
    position: absolute;
    background-color: #ff7700;
}
/* ==================================
    上半部分（顶部）
    竖线靠右：左边宽、右边窄
================================== */
/* 左上：宽块 */
.menuLine.line-1 {
    top: 0;
    left: 0;
    width: 14px;     /* 宽 */
    height: 13px;    /* 上半部分高度，留出中间横线 */
}

/* 右上：窄块（宽度是左上的一半） */
.menuLine.line-2 {
    top: 0;
    right: 0;
    width: 14px;     /* 窄 */
    height: 24px;
}

/* ==================================
    下半部分（底部）
    竖线靠左：左边窄、右边宽
================================== */
/* 左下：窄块 */
.menuLine.line-3 {
    bottom: 0;
    left: 0;
    width: 14px;     /* 窄 */
    height: 24px;
}

/* 右下：宽块 */
.menuLine.line-4 {
    bottom: 0;
    right: 0;
    width: 14px;     /* 宽 */
    height: 13px;
}

.menu {
    position: fixed;
    display: none;
    /*opacity: 0;*/
    z-index: 49;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translate(0, 0);
    background-color: rgb(18 18 18 / 0.74);
    transition: none;
    /*overflow: hidden;*/
}

.menu .menuText {
    position: absolute;
    display: block;
    height: 100%;
    z-index: 5;
    left: 50px;
    /*padding-left: 50px;*/
    top: 48px;
    overflow-y: auto;
    box-sizing: content-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu .menuText::-webkit-scrollbar {
    display: none;
}

.menu .menuText .menuLabel {

}

.menu .menuText .menuLabel > a {
    display: block;
    font-weight: 500;
    font-size: 32px;
    text-transform: uppercase;
    color: #E2E2E2;
    position: relative;
    line-height: 1.4;
}

.menu .menuText .menuLabel > a:hover,
.menu .menuText .menuLabel .menuDrop li.active a,
.menu .menuText .menuLabel.active > a,
.menu .menuText .menuLabel.active > a:hover,
.menu .menuText .menuLabel .menuDrop li a:hover {
    color: #ff7700;
}

.menu .menuText .menuLabel .menuDrop {
    display: none;
    transition: none;
}

.menu .menuText .menuLabel.drop .menuDrop,
.menu .menuText .menuLabel .menuDrop .drop .menuDropItem {
    /*transition: .5s;*/
    display: block;
}

.menu .menuText .menuLabel .menuDrop li a {
    font-size: 18px;
    margin-left: 10px;
    line-height: 1.4;
    font-weight: 500;
    text-transform: none;
    color: #E2E2E2;
}

.menu .menuText .menuLabel .menuDrop li .menuDropItem {
    display: none;
    transition: none;
    padding-left: 15px;
}

.menu .menuText .menuLabel .menuDrop li .menuDropItem li a {
    font-weight: 400;
}

/*首页轮播*/
.indexSwiper {
    height: calc(100vh - 102px);
}

.indexSwiper .swiper-slide {

}

.indexSwiper .swiper-slide img {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;
    top: -10%;
    left: 50%;
    transform: translateX(-50%) scale(1);
    transition: ease-in-out .3s;
}

.indexSwiper .swiper-pagination {
    bottom: 20px;
}

.indexSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.5;
    margin: 0 6px !important;
    border-radius: 5px;
}

.indexSwiper .swiper-pagination-bullet-active {
    width: 30px;
    /*background: #ff7700;*/
    opacity: 1;
}

/*文章页*/
.articleMain {
    width: 1000px;
    max-width: 100%;
    margin: 40px auto 100px auto;
}

.articleMain img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

/*图片瀑布流*/
/* 瀑布流容器 */
.waterfall-container {
    max-width: none;
    margin: 3px auto 20px;
    width: 100%;
    position: relative;
    height: 99999px;
}

/* 每一行 */
.waterfall-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
}

.waterfall-row:last-child {
    margin-bottom: 0;
}

/* 图片项 */
.waterfall-item {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    /*border-radius: 20px;*/
    background: #f0f2f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

/*.waterfall-item:hover {*/
/*    transform: translateY(-4px);*/
/*    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);*/
/*}*/

/* 图片 */
.waterfall-img {
    width: 100%;
    height: auto;
    display: block;
    /*object-fit: cover;*/
}

.waterfall-item-loading {
    background-image: url('/static/common/images/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px 32px;
}
.waterfall-img-loading {
    width: 100% !important;
    height: auto !important;
    position: static;
    transform: none;
    opacity: 0;
    transition: none;
}

/* 图片标题 */
.waterfall-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff7700;
    opacity: 0;
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);*/
    /*color: white;*/
    padding: 12px;
}

.waterfall-caption:hover, .waterfall-caption:focus, .waterfall-caption:active {
    opacity: 0.6;
}

.waterfall-caption a {
    color: transparent;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
}

/*.waterfall-item:hover .waterfall-caption {*/
/*    opacity: 1;*/
/*}*/

/* 空状态 */
.waterfall-status {
    text-align: center;
    padding: 60px;
    color: #999;
    font-size: 16px;
}

.waterfall-lightbox-open {
    overflow: hidden;
}

.waterfall-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: background 180ms ease, opacity 180ms ease;
    touch-action: pan-y;
}

.waterfall-lightbox.is-active {
    background: rgba(255, 255, 255, 1);
    opacity: 1;
}

.waterfall-lightbox-img {
    position: fixed;
    display: block;
    object-fit: contain;
    max-width: none;
    max-height: none;
    z-index: 100000;
    transition: left 180ms ease, top 180ms ease, width 180ms ease, height 180ms ease, opacity 140ms ease, transform 160ms ease;
    will-change: left, top, width, height, opacity, transform;
}

.waterfall-lightbox-img.is-switching {
    opacity: 0;
}

.waterfall-lightbox-title {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 22px;
    z-index: 100001;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    opacity: 0;
    transition: opacity 160ms ease;
    pointer-events: none;
}

.waterfall-lightbox.is-active .waterfall-lightbox-title {
    opacity: 1;
}

.waterfall-lightbox-title.is-switching {
    opacity: 0;
}

/*图片轮播展示*/
.workMain {
    width: 100%;
    height: calc(100vh - 110px);
    position: relative;
}

.workMain .workImage {
    width: 100%;
    height: calc(100% - 42px);
    position: relative;
}

.workMain .workImage img {
    max-width: 100%;
    max-height: 100%;
    /*display: block;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.workMain .workImage .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.workMain .workTitle {
    width: 100%;
    font-size: 16px;
    line-height: 32px;
    margin-top: 10px;
}

.workBtn {
    /*background: rgb(255 38 0 / 0.3);*/
    position: absolute;
    top: 0;
    width: 40%;
    /*cursor: pointer;*/
    height: 100%;

    /* 隐藏默认光标 */
    cursor: none;
}

.workPrev {
    left: 0;
}

.workNext {
    right: 0;
}


.big-cursor, .cursorIcon {
    transition: none;
}

.cursorImg {
    width: 28px;
    height: 40px;
    color: #fff;
    font-size: 60px;
    opacity: 0.6;
}

.cursorImg.back {
    width: 30px;
    height: 39px;
}

.backBtn {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 9;
    width: 20%;
    left: 40%;
    /*background: rgb(0 0 32 / 0.2);*/


    /* 隐藏默认光标 */
    cursor: none;
}

.workSwiper {
    margin-top: 46px;
    width: 100%;
    height: calc(100vh - 96px);
    position: relative;
}

.workSwiper, .workSwiper * {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

.workSwiper .swiper-slide {
    position: relative;
}

.workSwiper .swiper-slide .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.workSwiper .swiper-slide .slide-img {
    display: block;
    position: relative;
    width: 100%;
    height: calc(100% - 42px);
}

.workSwiper .swiper-slide .slide-img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.workSwiper .swiper-slide p {
    width: 100%;
    text-align: center;
    padding: 0 5%;
}

/*footer*/
footer {
    width: 100%;
    margin-bottom: 12px;
}

.footerFixed {
    position: fixed;
    right: 50px;
    bottom: 5px;
    margin-bottom: 0;
    z-index: 9;
}

footer p {
    color: #333;
    margin-bottom: 0;
    line-height: 5vh;
}

.newsMain {
    width: 1080px;
    max-width: 100%;
    margin: 10px auto 20px auto;
}

.newsList {

}

.newsList li {

    margin-bottom: 16px;
}

.newsList li .img {
    /*width: 200px;*/
    height: 150px;
    display: block;
}

.newsList li .con {
    padding-left: 3%;
    padding-right: 0;
}

.newsList li .con h2 {
    font-size: 1.5rem;
    margin: .8rem 0;
}

/*.newsList li:hover .con h2 {*/
/*    color: #ff7700;*/
/*    opacity: .8;*/
/*}*/

.newsList li .con p {
    font-size: 14px;
}

.page-link {
    border: none;
    color: #333333;
    padding: .5rem;
}

.page-link:hover {
    color: #333;
    background-color: transparent;
    border-color: transparent;
    opacity: .6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #ff7700;
    background-color: transparent;
    /*border-color: ;*/
}

.layui-layer-hui {
    transition: none;
}

.new_content_detial p{
    margin:5px 0;
}
.new_content_detial img{
    max-width: 100%;
}
