* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    padding: 0 10px !important;
}
a,a:hover{
    text-decoration: none;
}
ul,
p {
    margin: 0;
}

ul,
li {
    list-style: none;
}

img {
    max-width: 100%;
}

.home-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom,
            /* 明确指定渐变方向为从上到下 */
            #FFD933 0%,
            /* 顶部开始为黄色 */
            #F6F6F6 100%
            /* 底部过渡到浅色 */
        );
}


.home-wrapper::after {
    content: '';
    width: 100%;
    height: 296px;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/home_top_bg.png')no-repeat;
    background-size: 100% 100%;
    z-index: 2;
}

.home-wrapper>div {
    position: relative;
    z-index: 3;
}

.header {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.header .back{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.header .back img{
    height: 17px;
    width: auto;
}
.header h3 {
    font-size: 21px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.home-banner {
    border-radius: 7px;
    overflow: hidden;
    margin-top: 5.5px;
}
.swiper-pagination-bullet{
    background: #fff;
    opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 20px;
    border-radius: 5px;
}
.scences-Swiper .swiper-pagination-bullet{
    background: #FFD100;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 7px;
    margin: 14px auto;
}

.grid-container .card {
    border-radius: 7px;
    background: none;
    position: relative;
    padding: 12px 8px 0 8px;
    box-sizing: border-box;
    border: none;
}

.grid-container .card.card-1 {
    /* 让第一个卡片跨两列 */
    grid-column: 1 / 2;
    /* 让第一个卡片跨两行 */
    grid-row: 1 / 3;
    height: 171px;
    background: radial-gradient(ellipse at top left,
            /* 明确指定椭圆渐变，起点在左上角 */
            #FFFFFF 0%,
            /* 起始颜色（左上角） */
            #FCF6C5 100%
            /* 结束颜色（右下角） */
        );
}

.grid-container .card.card-1 .icon {
    width: 97px;
    position: absolute;
    right: 0;
    bottom: 12px;
    z-index: 1;
}

.grid-container .card.card-2 {
    background: radial-gradient(ellipse at top left,
            /* 明确指定椭圆渐变，起点在左上角 */
            #FFFFFF 0%,
            /* 起始颜色（左上角） */
            #FDD8BE 100%
            /* 结束颜色（右下角） */
        );
}

.grid-container .card.card-2 .icon {
    width: 52px;
    position: absolute;
    right: 7px;
    bottom: 15px;
    z-index: 1;
}

.grid-container .card.card-3 {
    background: radial-gradient(ellipse at top left,
            /* 明确指定椭圆渐变，起点在左上角 */
            #FFFFFF 0%,
            /* 起始颜色（左上角） */
            #ECEFF8 100%
            /* 结束颜色（右下角） */
        );
}

.grid-container .card.card-3 .icon {
    width: 49px;
    position: absolute;
    right: 9px;
    bottom: 5px;
    z-index: 1;
}

.grid-container .card p {
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
}

.grid-container .card a {
    position: relative;
    z-index: 2;
    height: 18px;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 12px;
    background: #FFD100;
    border-radius: 50px;
    max-width: 135px;
    margin-top: 7px;
    font-size: 10px;
}

.grid-container .card.card-2 a {
    background: #FD710E;
}

.grid-container .card.card-3 a {
    background: #006AFF;
}

.advantage {
    margin: 20px auto;
}

.public-title {
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    position: relative;
    z-index: 2;
    display: inline;
}

.public-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFD100;
    content: '';
    z-index: 1;
}

.public-desc {
    font-size: 15px;
    font-weight: 400;
    color: #393939;
    line-height: 21px;
    margin-top: 7px;
}

.advantage .adv-list {
    background: #FFFFFF;
    border-radius: 7px;
    padding: 14px 10px;
    box-sizing: border-box;
    margin-top: 8px;
}

.advantage .adv-list .picture {
    width: 93px;
    height: 93px;
    border-radius: 7px;
    overflow: hidden;
}

.advantage .adv-list .content {
    flex: 1;
    margin-left: 13px;
}

.advantage .adv-list .content .title {
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    word-break: break-all;
    line-height: 1;
}

.advantage .adv-list .content .desc {
    font-weight: 400;
    font-size: 14px;
    color: #3A3A3A;
    line-height: 19px;
    word-break: break-all;
}

.advantage .adv-list .item {
    margin-bottom: 14px;
}

.advantage .adv-list .item:last-child {
    margin-bottom: 0;
}

.scences {
    margin: 20px auto;
}

.scences .wrapper {
    margin-top: 7px;
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
}

.scences .wrapper .content {
    padding: 14px 9px;
    box-sizing: border-box;
}

.scences .wrapper .content .title {
    font-weight: 600;
    line-height: 21px;
    color: #000000;
}

.scences .wrapper .content .tips {
    font-size: 12px;
    color: #3A3A3A;
    line-height: 21px;
    background: #F6F6F6;
    padding: 4px;
    box-sizing: border-box;
    border-radius: 1px;
    margin: 4px auto 10px;
}

.scences .wrapper .content .desc {
    font-size: 14px;
    color: #3A3A3A;
    line-height: 21px;
}

.product {
    margin: 20px auto;
}

.product .wrapper {
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    margin-top: 7px;
}

.product .wrapper .card-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 列与列之间的间距 */
    column-gap: 10px;
    /* 行与行之间的间距 */
    row-gap: 10px;
    margin: 12px 10px;
}

.product .wrapper .card-wrap .item {
    width: 100%;
    padding: 9px;
    box-sizing: border-box;
    background: #F6F6F6;
    border-radius: 7px;
}

.product .wrapper .card-wrap .item .pic {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 112px;
}

.product .wrapper .card-wrap .item:nth-child(1) .pic img {
    width: 73px;
}

.product .wrapper .card-wrap .item:nth-child(2) .pic img {
    width: 74px;
}

.product .wrapper .card-wrap .item:nth-child(3) .pic img {
    width: 81px;
}

.product .wrapper .card-wrap .item:nth-child(4) .pic img {
    width: 84px;
}

.product .wrapper .card-wrap .item .tit {
    text-align: center;
    color: #000000;
    font-weight: 600;
    margin-top: 8px;
}

.business{
    margin: 20px auto;
}
.business .wrapper{
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    margin-top: 9px;
}
.business .wrapper .content{
    padding: 14px 10px;
    box-sizing: border-box;
    font-weight: 600;
    line-height: 21px;
    color: #000000;
}
.collaborate{
    margin: 20px auto;
}
.toggle-wrapper{
    margin-top: 8px;
}
.toggle-wrapper .item{
    height: 36px;
    border-radius: 7px;
    overflow: hidden;
    padding: 0 40px 0 13px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #FFED51, #fff);
    transition: all 0.3s;
}
.toggle-wrapper .item .icon{
    width: 17px;
    height: 17px;
    position: absolute;
    right: 11px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toggle-wrapper .item .title{
    font-weight: 600;
    color: #000000;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    margin-top: 4px;
}
.toggle-wrapper .item .content{
    font-weight: 400;
    font-size: 14px;
    color: #3A3A3A;
    line-height: 21px;
    word-break: break-all;
    margin-top: 8px;
}
.toggle-wrapper .item.active{
    height: auto;
    padding-bottom: 17px;
    background: linear-gradient(to bottom, #FFED51, #FFDF48);
}
.toggle-wrapper .item.active .title{
    margin-top: 12px;
    white-space: wrap;
    overflow: auto;
}

.license,.question{
    margin: 20px auto;
}
.license img{
    margin-top: 8px;
}
.question .wrapper{
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    padding: 13px 10px 19px;
    margin-top: 10px;
    box-sizing: border-box;
}
.question .wrapper .tags{
    width: 40px;
    height: 19px;
    text-align: center;
    background: #F6F6F6;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #393939;
    font-weight: 600;
}
.question .wrapper .list .item{
    margin-bottom: 14px;
}
.question .wrapper .list .item:last-child{
    margin-bottom: 0;
}
.question .wrapper .list .item .content{
    flex: 1;
    margin-left: 8px;
    font-size: 15px;
    color: #393939;
    line-height: 16px;
}
.more-wrap{
    padding: 8px 20px;
    box-sizing: border-box;
    border-radius: 50px;
    background: #F6F6F6;
    width: 60%;
    margin: 15px auto 0;
}
.more-wrap img{
    width: 17px;
    margin-right: 10px;
}
.more-wrap p{
    font-weight: 600;
    font-size: 18px;
}
.video-wrap{
    margin: 20px auto;
    border-radius: 7px;
    overflow: hidden;
}
.video-wrap video{
    width: 100%;
    height: auto;
}

.btn-fixed{
    position: fixed;
    bottom: 21px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    background: url('../img/btn_bg.png')no-repeat;
    background-size: cover;
    width: 259px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #000000;
}

.footer{
    padding: 20px 10px 47px;
    background: #22252B;
    border-radius: 7px 7px 0 0;
    color: #fff;
}
.footer .logo img{
    width: 49px;
}
.footer .company{
    margin-top: 17px;
}
.footer .company .item{
    margin-bottom: 20px;
}
.footer .company .item:last-child{
    margin-bottom: 0;
}
.footer .company .item .top .icon{
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}
.footer .company .item .top .icon img{
    height: 100%;
    width: auto!important;
}
.footer .company .item .top span{
    font-weight: 600;
    font-size: 18px;
}
.footer .company .item .cont{
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    margin-top: 10px;
}

.banner{
    border-radius: 7px;
    overflow: hidden;
}
.job-list{
    margin: 10px auto 20px;
}
.job-list .item{
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 10px;
}
.job-list .item .top{
    padding:10px;
    box-sizing: border-box;
}
.job-list .item .top .picture{
    width: 90px;
    height: 90px;
    border-radius: 7px;
    overflow: hidden;
}
.job-list .item .top .content{
    flex: 1;
    margin-left: 8px;
}
.job-list .item .top .content .cont{
    max-width: 238px;
}
.job-list .item .top .content .cont span{
    word-break: break-all!important;
    text-wrap-mode: wrap!important;
}
.job-list .item .top .content .name{
    font-weight: 600;
    color: #000000;
}
.job-list .item .top .content .cont{
    font-size: 12px;
    margin-top: 10px;
    color: #3A3A3A;

     display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* 添加过渡效果使展开收起更平滑 */
    transition: all 0.3s ease;
}
/* 展开状态 */
.job-list .item .top .content .cont.expanded {
    display: block;
    /* 展开时高度自适应内容 */
    height: auto!important;
}
.job-list .item .show-more{
    background: #FFD100;
    font-weight: bold;
    font-size: 15px;
    height: 27px;
}
.job-list .item .show-more img{
    width: 13px;
    margin-right: 8px;
}

.staff-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 列与列之间的间距 */
    column-gap: 15px;
    /* 行与行之间的间距 */
    row-gap: 13px;
    margin: 20px auto;
}
.staff-list .item {
    background: #FFFFFF;
    border-radius: 7px;
    overflow: hidden;
}
.staff-list .item .content{
    padding: 7px;
    box-sizing: border-box;
    font-size: 14px;
    color: #3A3A3A;
    line-height: 15px;
    font-weight: 400;
}

.list-more{
    outline: none;
    border: none;
    border-radius: 7px;
    margin: 20px auto;
    padding: 0 5px;
    display: inline-block;
}

.loading{
    width: 80px;
}