* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

audio,
canvas,
video {
    display: inline-block;
}

img {
    border: 0;
    vertical-align: top;
    max-width: 100%
}

ol,
ul {
    list-style: none
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

html {
    scroll-behavior: smooth
}

body {
    font: 14px/1.8 "Microsoft YaHei", sans-serif;
    color: #fff;
    background-image: linear-gradient(to bottom, #0177ee, #00c0fa);
}

body.no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.wrap {
    width: 1200px;
    margin: 0 auto;
    background: url(../img/new_bg.png) repeat-y 50% 0/100% auto #0C4AE8;
    padding-bottom: 60px;
    position: relative;
}

.wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 650px;
    background: url('../img/light.png') no-repeat 50% 0/100% 100%;
}

a {
    color: #fff
}

.banner {
    width: 1200px;
    height: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.banner .tit {
    width: 1200px;
    position: absolute;
    left: 0;
    top: 40px;
}

.banner .editer {
    width: 955px;
    position: absolute;
    left: calc(50% - 472px);
    top: 215px;
    box-sizing: border-box;
    background: linear-gradient(transparent 25%, rgba(1, 94, 234, 1));
    padding: 95px 30px 30px 90px;
    border-radius: 10px;
    line-height: 1.8;
    text-shadow: 2px 2px 5px #000
}

.banner .editer::before {
    content: "编者按";
    width: 67px;
    height: 28px;
    position: absolute;
    left: 8px;
    top: 95px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-indent: 0;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.column {
    width: 1200px;
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
}

.column.big img {
    height: 90px
}

.column img {
    height: 45px
}

.column.hasDesc img {
    height: 90px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.column.hasDesc .desc {
    width: 955px;
    box-sizing: border-box;
    background: linear-gradient(transparent, rgba(1, 94, 234, 1));
    padding: 115px 30px 30px 90px;
    border-radius: 10px;
    line-height: 1.8;
    text-shadow: 2px 2px 5px #000;
    text-align: left;
    text-indent: 2em;
    margin: 0 auto;
}

.picRoll {
    width: 1086px;
    margin: 0 auto 70px;
    position: relative;
    box-sizing: border-box;
    padding: 30px 50px 60px;
    background: #1d85d5;
}

.picRoll.moreRows .swiper {
    height: 400px;
}

.picRoll.mySwiperOne {
    padding: 0 35px;
}

.picRoll.mySwiperOne .swiper img {
    width: 100%;
    height: auto;
}

.picRoll.noMargin {
    margin: 0 auto
}

.picRoll .swiper {
    width: 100%;
    overflow: hidden;
    position: relative
}

.picRoll .swiper-slide {
    width: 180px;
    text-align: center
}

.picRoll .swiper-slide img {
    width: 150px;
    height: 100px
}

.picRoll .swiper-slide h2 {
    font-size: 12px;
    padding-top: 10px
}

.picRoll .swiper-slide .desc {
    font-size: 11px;
}

.picRoll .prev,
.picRoll .next {
    width: 35px;
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2) url(../img/arr.png) no-repeat 50% 50%/17px auto;
    cursor: pointer
}

.picRoll .prev {
    left: 0
}

.picRoll .next {
    right: 0;
    transform: rotateZ(180deg)
}

.picRoll .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

.txtList {
    width: 1086px;
    margin: 0 auto 70px;
}

.txtList ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}

.txtList li {
    width: 20%;
    box-sizing: border-box;
    padding: 0 10px;
    text-align: center;
    word-break: keep-all;
}

.txtList li p {
/*    word-break: keep-all;
    white-space: nowrap;
    font-weight: bold;
    color: #fff08c;*/

    /* 核心修改：取消强制不换行，允许文本自动折行 */
    white-space: normal;
    /* 替换keep-all为break-word，允许中文/长文本强制折行（不依赖标点） */
    word-break: break-word;
    /* 可选：补充换行规则，兼容多浏览器 */
    word-wrap: break-word;
    /* 保留原有样式 */
    font-weight: bold;
    color: #fff08c;
    /* 可选：限制p标签最大宽度，避免超出父容器（根据实际需求调整宽度值） */
    max-width: 100%;
    /* 可选：防止行高塌陷，保证换行后排版美观 */
    line-height: 1.5;
}

.aiPlan {
    width: 1086px;
    margin: 0 auto;
    background: linear-gradient(transparent, 40%, rgba(0, 0, 245, .6));
    box-sizing: border-box;
    padding: 50px;
    border-radius: 15px;
}

.fix {
    width: 90px;
    position: fixed;
    left: calc(50% + 600px);
    top: 40%;
    z-index: 10;
    border-radius: 10px;
    overflow: hidden;
    display: none
}

.fix p {
    padding: 10px 0;
    font-size: 12px;
    background: rgba(67, 111, 224, .6);
    margin-top: 1px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.fix p:nth-child(1) {
    margin-top: 0
}

.fix p:last-child {
    position: relative;
    padding: 20px 0
}

.fix p:last-child::before {
    content: "";
    display: block;
    width: 24px;
    height: 12px;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%)
}



.pic_Box,
.video_Box {
    position: fixed;
    left: 0;
    top: 100%;
    z-index: 30;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top .3s;
}

.show.pic_Box,
.show.video_Box {
    top: 0;
}

.pic_Box .item,
.video_Box .item {
    width: 800px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column
}

.pic_Box .close,
.video_Box .close {
    position: absolute;
    top: -45px;
    right: -45px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsla(0, 0%, 80%, .8) url(../img/close.png) no-repeat 50% 50%/60%;
    align-self: flex-end
}

.pic_Box h2,
.video_Box h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: .1rem
}

.pic_Box .desc,
.video_Box .desc {
    font-size: 18px;
    color: #fff
}

.video_Box video {
    width: 100%;
    max-height: 60vh;
    margin: 0
}

.pic_Box .pic {
    width: 800px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}

.pic_Box .pic.imgs {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 60vh;
}

.pic_Box .pic img {
    max-width: none;
    width: auto;
    max-height: 65vh;
}




@media screen and (max-width: 768px) {

    html {
        font-size: 312.5%
    }

    body {
        font: .3rem/1.8 sans-serif;
        color: #fff;
        background: none;
    }

    .wrap {
        width: 100%;
        box-sizing: border-box;
        padding-bottom: .6rem;
    }

    .wrap::before {
                height: 8.5rem;
        background: url(../img/light.png) no-repeat 50% 0 / 128% 66%;
    }

    .banner {
        width: 100%;
        height: auto;
        text-align: center;
        box-sizing: border-box;
        overflow: hidden;
        padding: 3.3rem 0 .6rem;
    }

    .banner .tit {
        width: 120vw;
        max-width: none;
        left: -10vw;
        top: 3vh;
    }

    .banner .editer {
        width: calc(100% - .6rem);
        margin: 0 auto;
        position: relative;
        left: auto;
        bottom: auto;
        top: auto;
        padding: .8rem .3rem .3rem .3rem;
        border-radius: .1rem;
        text-align-last: left;
        text-indent: 2em;
    }

    .banner .editer::before {
        content: "编者按";
        width: 1.26rem;
        height: .53rem;
        top: .1rem;
        border-radius: 5px;
        font-size: .32rem;
    }

    .column {
        width: 100%;
        margin: 0 auto .3rem;
        text-align: center
    }

    .column.big img {
        height: 1rem;
    }

    .column img {
        height: .6rem
    }

    .column.hasDesc img {
        height: 1rem;
    }

    .column.hasDesc .desc {
        width: calc(100% - .6rem);
        margin: 0 auto;
        padding: 1.3rem .6rem .6rem .6rem;
    }

    .picRoll {
        width: calc(100% - .6rem);
        margin: 0 auto .7rem;
        padding: .3rem .5rem .6rem;
        background: linear-gradient(-45deg, rgba(0, 0, 245, .8), rgba(0, 0, 245, .2));
    }

    .picRoll.mySwiper2 .swiper {
        height: auto;
    }

    .picRoll .swiper-slide {
        width: 100%;
        text-align: center;
    }

    .picRoll .swiper-slide img {
        width: 100%;
        height: auto;
    }

    .picRoll .swiper-slide h2 {
        font-size: .34rem;
        padding-top: .1rem;
    }

    .picRoll .prev,
    .picRoll .next {
        width: .3rem;
        background: rgba(0, 0, 0, .2) url(../img/arr.png) no-repeat 50% 50%/50% auto;
    }

    .aiPlan {
        width: calc(100% - .6rem);
        padding: .4rem;
        border-radius: .15rem;
    }


    .pic_Box,
    .video_Box {
        height: 100vh;
        padding: 0 10vw;
    }

    .pic_Box .close,
    .video_Box .close {
        top: -.45rem;
        right: -.45rem;
        width: 8vw;
        height: 8vw;
    }

    .pic_Box h1,
    .video_Box h1 {
        min-height: 8vw;
        font-size: .6rem;
        line-height: 1.2em;
        padding: 0 10vw
    }

    .pic_Box h2,
    .video_Box h2 {
        font-size: .4rem;
        margin-bottom: .1rem
    }

    .pic_Box .desc,
    .video_Box .desc {
        font-size: .32rem;
    }

    .video_Box video {
        max-height: 70vh;
        margin: .4rem 0 .2rem
    }

    .pic_Box .pic {
        width: 80vw;
        margin: .4rem 0 .2rem
    }

    .pic_Box .pic img {
        width: 80vw
    }

    .txtList {
        width: 100%;
        box-sizing: border-box;
        padding: 0 .3rem;
        margin: 0 0 .7rem;
    }

    .txtList ul {
        gap: .6rem 0;
    }

    .txtList li {
        width: 50%;
        padding: 0 .1rem;
    }

    .txtList li p {
        word-break: break-all;
        white-space: wrap;
    }
}