.content {
    width: 100%;
    height: auto;

}

.compileContent {
    padding: 260px 0;
    width: 100%;
    height: 100vh;
    background: url("../img/compile.png") no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    backdrop-filter: blur(5px);
}

.compileTitle {
    width: 100%;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}

.compileText{
    font-size: 40px;
    font-weight: 400;
    margin-top: 60px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.create {
    margin: 168px auto  ;
    border-radius: 10px;
    /*background: rgba(120, 51, 30, 1);*/
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1);

}

/* From Uiverse.io by Li-Deheng */
.btn-conteiner {
    display: flex;
    justify-content: center;
    --color-text: #ffffff;
    --color-background: rgba(120, 51, 30, 1);
    --color-outline: rgba(120, 51, 30, .5);
    --color-shadow: #00000080;
    cursor: pointer;
}

.btn-content {
    display: flex;
    align-items: center;
    padding: 30px 100px;
    text-decoration: none;
    color: var(--color-text);
    background: var(--color-background);
    transition: 1s;
    border-radius: 100px;
    box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-title {
    font-size: 40px;
    font-weight: 600;
}

.btn-content:hover, .btn-content:focus {
    transition: 0.5s;
    -webkit-animation: btn-content 1s;
    animation: btn-content 1s;
    outline: 0.1em solid transparent;
    outline-offset: 0.2em;
    box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
    transition: 0.5s;
    margin-right: 0px;
    transform: scale(0.6);
}

.btn-content .icon-arrow .appsvg{
    display: none;
}

.btn-content .icon-arrow .pcSvg{
    display: block;
}

.btn-content:hover .icon-arrow {
    transition: 0.5s;
    margin-right: 25px;
}

.icon-arrow {
    width: 20px;
    margin-left: 15px;
    position: relative;
    top: 6%;
}

/* SVG */
#arrow-icon-one {
    transition: 0.4s;
    transform: translateX(-60%);
}

#arrow-icon-two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.btn-content #arrow-icon-three {
    animation: color_anim 1s infinite 0.2s;
}

.btn-content #arrow-icon-one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.btn-content #arrow-icon-two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
    0% {
        fill: white;
    }

    50% {
        fill: var(--color-background);
    }

    100% {
        fill: white;
    }
}

/* Button animations */
@-webkit-keyframes btn-content {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}

@keyframes btn-content {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}

.createIcon {
    margin-right: 10px;
    width: 56px;
    height: 56px;
}

.jpbx-center {
    background-image: url("../img/hxgn_bg.png");
    background-size: cover;
    min-height: 100vh;
}

.common_content {
    flex-direction: column;
    height: 100%;
}


.center_top {
    margin-top: 130px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.center_top .left {

}

.center_top .left .title_info {

    display: flex;
    align-items: center;
}

.center_top .left .title_info .hxgn-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 0px;
    line-height: 91.97px;
    color: rgba(51, 51, 51, 1);
}

.center_top .left .title_info .hxgn-title_before {
    width: 64px;
    height: 4px;
    margin-right: 20px;
    background: rgba(120, 51, 30, 1);
}

.center_top .left .center_des {
    font-size: var(--button-font-size);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 28.96px;
    color: rgba(51, 51, 51, 0.6);
    margin-top: 20px;
}

.center_top .right {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: 0px;
    line-height: 100px;
    color: rgba(135, 67, 51, 0.06);
    text-transform: uppercase;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 三列 */
    grid-template-rows: repeat(2, 1fr); /* 两行 */
    gap: 32px; /* 宫格间距 */
    margin: 100px auto;
}

.grid-item {
    position: relative;
    z-index: 0;
    border-radius: 20px;
    /*height: 25vh;*/
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 44px 48px;
    font-size: var( --sub-title-font-size);
    overflow: hidden;
    display: flex;
    background: rgba(120, 51, 30, 1);
    flex-direction: column;
    justify-content: center;
    transition: All 1s ease;
    -webkit-transition: All 1s ease;
}

.grid-item .grid_title {
    font-size: var(--news-title-font-size);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 40.54px;
    color: rgba(255, 255, 255, 1);
    z-index: 2;
    position: relative;
}

.grid-item .grid_desc{
    font-size: var(--conten-font-size);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 32px;
    z-index: 2;
    position: relative;
}

.grid-item .grid_bottom{
    margin-top: 43px;
    align-items: flex-end;
    justify-content: space-between;
    display: flex;
    opacity: 0;
    transition: All 1s ease;
    -webkit-transition: All 1s ease;
    z-index: 2;
    position: relative;
}

.grid-item .grid_bottom .line{
    z-index: 2;
    position: relative;
    width: 0;
    height: 2px;
    opacity: 1;
    background: rgba(235, 220, 174, 1);
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(120, 51, 30, 0);
    transition: background 0.5s ease;
    z-index: 1;
    border-radius: 20px;
}

.grid-item:hover::before {
    background: rgba(120, 51, 30, 0.85);
    transition: All 1s ease;
    -webkit-transition: All 1s ease;
}

.item1{
    background: url("../img/compire/jpbx1.png");
    background-size: cover;
}
.item2{
    background: url("../img/compire/jpbx2.png");
    background-size: 100% 100%;
}
.item3{
    background: url("../img/compire/jpbx3.png");
    background-size: 100% 100%;
}
.item4{
    background: url("../img/compire/jpbx4.png");
    background-size: 100% 100%;
}
.item5{
    background: url("../img/compire/jpbx5.png");

    background-size: 100% 100%;
}
.item6{
    background: url("../img/compire/jpbx6.png");
    background-size: 100% 100%;
}

/*.grid-item:hover{*/
/*    background: rgba(120, 51, 30, 1);*/
/*    transition: All 1s ease;*/
/*    -webkit-transition: All 1s ease;*/
/*}*/
.grid-item:hover.grid-item .grid_bottom{
    /*display: flex;*/
    opacity: 1;
    transition: All 1s ease;
    -webkit-transition: All 1s ease;
}

.grid-item:hover .icon path ,
.advantage_item:hover .icon path {
    animation: icon-path-animation 3s ease-in infinite;
}

.icon path {
    stroke-width: 40;
    stroke: rgba(235, 220, 174, 1);
}

.icon {
    fill: transparent;
    color: #FFF;
    cursor: pointer;
    stroke-width: 40;
    width: 56px;
}

@keyframes icon-path-animation {
    0% {
        stroke-dasharray: 4917;
        stroke-dashoffset: 4917;
        fill: transparent;
    }
    40% {
        stroke-dasharray: 4917;
        stroke-dashoffset: 0;
        fill: transparent
    }
    60% {
        stroke-dasharray: 4917;
        stroke-dashoffset: 0;
        fill: transparent
    }
    100% {
        stroke-dasharray: 4917;
        stroke-dashoffset: 0;
        fill: transparent
    }
}


.grid-item:hover.grid-item .grid_bottom .line{
    transition: All 1s ease;
    -webkit-transition: All 1s ease;
    width: 80px;
    opacity: 1;
    background: rgba(235, 220, 174, 1);
}

.out_advantage{
    background: url("../img/compire/advantage.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.advantage_list{
    margin: 130px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.advantage_list .advantage_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
    padding:  0 32px;
}

.advantage_list .advantage_item .circle {
    border-radius: 100%;
    display: flex;
    transform: scale(1.0);
    transition: All 1s ease;
    -webkit-transition: All 1s ease;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    width: 228px;
    height: 228px;
}

.circle .in_circle{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    opacity: 1;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.1);
}
.circle .in_circle .in_in_circle{
    width: 140px;
    height: 140px;
    opacity: 1;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(235, 220, 174, 0.3);
}

.advantage_list .advantage_item:last-child{
    margin-right: 0;
}

.advantage_list .advantage_item:hover .circle{
    cursor: pointer;
    transform: scale(1.1);
    transition: All 1s ease;
    -webkit-transition: All 1s ease;
}


.advantage_item .advantage_title{
    margin-top: 56px;
    font-size: var(--news-title-font-size);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 40.54px;
    color: rgba(255, 255, 255, 1);
}

.advantage_item .advantage_desc{
    margin-top: 34px;
    font-size: var(--conten-font-size);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 26.06px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.typesetting{
    background-color: #f5f5f5;
}

.typesetting_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 130px auto;
}
.typesetting_info_app{
    display: none;
}

.typesetting_info .typesetting_left{
    width: calc((100% - 42px) / 2);
    height: 700px;
    border-radius: 10px;
}

.typesetting_info .typesetting_left img{
    width: 100%;
    height: calc(100% - 85px);
    border-radius: 10px 10px 0 0 ;
}


.typesetting_info .typesetting_left .typesetting_desc{
    background: rgba(120, 51, 30, 1);
    padding: 22px 30px;
    border-radius:  0 0 10px 10px;
}

.typesetting_info .typesetting_left .typesetting_desc .type_title{
    font-size: var(--news-title-font-size);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 40.54px;
    color: rgba(255, 255, 255, 1);
}

    .typesetting_info .typesetting_left .typesetting_desc .type_desc{
        font-size: var(--conten-font-size);
        font-weight: 400;
        letter-spacing: 0px;
        line-height: 26.06px;
        color: rgba(255, 255, 255, 0.6);
}


.typesetting_info .typesetting_right{
    width: calc((100% - 24px) / 2);
    display: grid;
    margin-left: 24px;
    grid-template-columns: repeat(2, 1fr); /* 两列 */
    grid-template-rows: repeat(2, 1fr); /* 三行 */
    gap: 16px; /* 宫格间距 */
}

.typesetting_info .typesetting_right .typesetting_item{
    width: 100% ;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.typesetting_info .typesetting_right .typesetting_item img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transform: scale(1);
    transition: All 1s ease;
    -webkit-transition: All 1s ease;
}
.book_desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    font-size: var(--conten-font-size);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 26.06px;
    color: rgba(255, 255, 255, 0);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    display: flex; /* 改为默认就用 flex，别在 hover 时再显示 */
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.typesetting_item:hover .book_desc {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    color: rgba(255, 255, 255, 1);
    opacity: 1;
    visibility: visible;
}
.more{
    height: 100vh;
    background:url("../img/compire/more.png");
    background-size: cover;
}

.more .device{
    margin-top: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow: hidden;
}

.more .device .pc{
    display: flex;
}

.more .device .app{
    display: none;
}
.more .device img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*! 1440 ~ 1680 */
@media all and (max-width: 1680px) {
    .icon {
        fill: transparent;
        color: #FFF;
        cursor: pointer;
        stroke-width: 40;
        width: 28px;
        height: 28px;
    }

    .typesetting_info .typesetting_left{
        height: 600px;
    }

    .grid-container{
        gap: 16px;
        margin: 100px 120px;
    }
    .center_top {
        margin-top: 100px;
    }
    .grid-item{
        padding: 12px;
    }
    .grid-item .grid_bottom {
        margin-top: 35px;
    }

    .grid-item .grid_desc{
        margin-top: 25px;
    }

    .typesetting_info {
        margin-top: 40px;
        margin-bottom: 70px;
    }

    .content {
        height: 100%;
    }

    .compileContent {
        padding-top: 230px;
    }

    .compileTitle {
        font-size: 65px;
    }

    .compileText{
        font-size: 40px;
    }
    .btn-content {
        padding: 25px 90px;
    }

    .create {
        margin: 130px auto 0;
    }

    .btn-title {
        width: 100%;
        font-size: 40px;
    }

    .createIcon {
        margin-right: 10px;
        width: 50px;
        height: 50px;
    }
}

/*! 1200 ~ 1440 */
@media all and (max-width: 1440px) {

    .center_top .left .title_info .hxgn-title{
        font-size: 55px;
    }
    .center_top .right{
        font-size: 80px;
    }

    .typesetting_info .typesetting_left{
        height: 500px;
    }


    .center_top {
        margin-top: 80px;
    }

    .grid-item .grid_bottom {
        margin-top: 30px;
    }

    .grid-item .grid_desc{
        margin-top: 20px;
    }

    .grid-container{
        gap: 22px;
    }

    .advantage_list .advantage_item{
        padding: 20px;
    }

    .advantage_list .advantage_item .circle{
        width: 190px;
        height: 190px;
    }

    .circle .in_circle{
        width: 160px;
        height: 160px;
    }

    .circle .in_circle .in_in_circle{
        height: 130px;
        width: 130px;
    }


    /*.typesetting_info .typesetting_left img{*/
    /*    height: 330px;*/
    /*}*/




    .content {
        height: 100%;
    }

    .compileContent {
        padding-top: 210px;
    }

    .compileTitle {
        width: 100%;
        font-size: 60px;
        line-height: 90px;
    }

    .compileText{
        font-size: 35px;
    }
    .create {
        margin: 110px auto 0;
    }

    .btn-content {
        padding: 20px 80px;
    }

    .btn-title {
        width: 100%;
        font-size: 32px;
    }

    .createIcon {
        width: 45px;
        height: 45px;
    }
}

/*! 992 ~ 1200 */
@media all and (max-width: 1200px) {

    .grid-item{
        padding: 22px;
    }
    .advantage_list .advantage_item{
        padding: 20px;
    }

    .advantage_list .advantage_item .circle{
        width: 180px;
        height: 180px;
    }

    .circle .in_circle{
        width: 140px;
        height: 140px;
    }

    .circle .in_circle .in_in_circle{
        height: 120px;
        width: 120px;
    }


    .typesetting_info .typesetting_left{
        height: 500px;
    }

    .content {
        height: 100%;
    }

    .compileContent {
        padding-top: 170px;
    }

    .compileTitle {
        font-size: 50px;
    }

    .compileText{
        font-size: 30px;
    }
    .create {
        margin: 96px auto 0;
    }

    .btn-content {
        padding: 15px 70px;
    }

    .btn-title {
        width: 100%;
        font-size: 26px;
    }

    .createIcon {
        width: 40px;
        height: 40px;
    }
}

/*! <=991 手机端 */
@media all and (max-width: 991px) {

    .jpbx-center {
        background-image: url("../img/hxgn_bg.png");
        background-size: cover;
        min-height: auto;
    }

    .compileContent{
        background: url("../img/banner_app.png") no-repeat;
        background-size: cover;
    }

    .content {
        width: 100%;
        background: url("../img/compilePhone.png") no-repeat;
        background-size: cover;
    }


    .btn-content .icon-arrow .appsvg{
        display: block;
    }

    .btn-content .icon-arrow .pcSvg{
        display: none;
    }
    .compileContent {
        padding-top: 0px;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        padding-bottom: 0;
        height: 370px;
    }

    .jpbx-center,.out_advantage,.more{
        height: auto;
        padding-bottom: 70px;
    }

    .center_top .left .title_info .hxgn-title_before{
        width: 24px;
        margin-right: 8px;
    }

    .center_top .left .center_des{
        font-size: 12px;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .grid-container{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 5px;
        padding: 0;
        padding-top: 20px;
        margin: 0 auto;
    }
    .grid-item{
        padding: 14px;
        border-radius: 5px;
    }


    .grid-item .grid_title{
        line-height: 22px;
    }
    .grid-item .grid_desc{
        margin-top: 5px;
        line-height: 20px;
        opacity: 0;
        transition: All 1s ease;
        -webkit-transition: All 1s ease;
    }

    .grid-item:hover .grid_desc{
        opacity: 0;
        transition: All 1s ease;
        -webkit-transition: All 1s ease;
    }
    .grid-item .grid_bottom{
        display: none;
    }

    .advantage_list .advantage_item:nth-child(2n){
        margin-right: 0;
    }
    .advantage_list .advantage_item:nth-child(-n+2){
        margin-bottom: 20px;
    }

    .center_top{
        margin-top: 70px;
    }

    .common_content{
        padding: 0 16px;
    }

    .center_top .left .title_info .hxgn-title{
        font-size: 24px;
        line-height: 32px;
    }
    .center_top .right{
        font-size: 24px;
    }

    .advantage_list{
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .advantage_list .advantage_item .circle{
        width: 112px;
        height: 112px;
    }

    .circle .in_circle{
        width: 76px;
        height: 76px;
    }

    .circle .in_circle .in_in_circle{
        width: 66px;
        height: 66px;
    }

    .circle .in_circle .in_in_circle  .icon{
        width: 32px;
        height: 32px;
    }

    .advantage_item .advantage_title{
        margin-top: 14px;
    }

    .advantage_item .advantage_desc{
        margin-top: 6px;
    }

    .advantage_list .advantage_item{
        width: calc((100% - 20px) / 2);
        padding: 0;
    }

    .compileTitle {
        font-size: 24px;
        line-height: 26px;
        padding: 0 54px;
    }
    .compileText{
        font-size: 16px;
        margin: 22px 0;
    }

    .btn-content {
        padding: 5px 30px;
    }

    .btn-title {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .create {
        margin: 10px auto 0;
    }

    .createIcon {
        margin-right: 6px;
        width: 24px;
        height: 24px;
    }



    .typesetting_info{
        display: none;
    }

    .typesetting{
        height: auto;
        padding-bottom: 70px;
    }

    .typesetting_info_app{
        display: flex;
        align-items: center;
    }

    .outstanding-students-swiper{
        width: 85%;
        height: 100%;
    }
    .swiper-slide{
        display: flex;
        justify-content: center;
    }

    .typesetting_info_app  .swiper-container {
        width: 100%;
        height: 100%;
        margin: 40px 0;
    }
    .typesetting_info_app  .swiper-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        border-radius: 5px;
    }
    .typesetting_info_app  .book-card {
        width: 100%;
        height: 100%;
        background: #fff;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    .typesetting_info_app  .book-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .typesetting_info_app  .book-card.gray {
        background: #ccc;
    }
    .typesetting_info_app  .caption {
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0px;
        padding: 15px;
        opacity: 1;
        height: 50px;
        color: #fff;
        width: 100%;
        border-radius:  0  5px 0 5px;
        background: rgba(120, 51, 30, 1);
        display: flex;
    }

    .more .device .pc{
        display: none;
    }

    .more .device .app{
        display: flex;
    }
    .more .device{
        padding: 0;
        flex: none;
        display: flex;
    }


    .grid-item {

        transition: all 1s ease;
    }

    .grid-item.active {
        background: rgba(120, 51, 30, 1);
    }

    .grid_desc {
        opacity: 0;
        transition: all 1s ease;
    }

    .grid-item.active .grid_desc {
        opacity: 1;
    }
}
