.main{
    background: RGBA(250, 250, 250, 1);
}
.about .box1{
    padding: 120px 0 115px;
}
.about .box1 .box-t{
    padding-bottom: 54px;
    border-bottom: 1px solid RGBA(222, 222, 222, 1);
}
.about .box1 .box-t .des{
    font-family: AlibabaPuHuiTi-3-85-Bold;
    font-size: 18px;
    color: #222222;
    line-height: 24px;
}
.about .box1 .box-t .title{
    position: relative;
    font-family: AlibabaPuHuiTi-3-45-Light;
    color: #222222;
    margin-top: 10px;
}
.about .box1 .box-t .title::before{
    position: absolute;
    content: '”';
    right: 0;
    bottom: 0;
    width: 84px;
    height: 75px;
    font-family: Arial;
    font-weight: 400;
    font-size: 200px;
    color: rgba(34, 34, 34, 0);
    line-height: 1;
    text-stroke: 1px #CBCBCB;
    font-style: italic;
    -webkit-text-stroke: 1px #CBCBCB;
}
.about .box1 .box-c{
    display: flex;
    justify-content: space-between;
    padding-top: 55px;
}
.about .box1 .box-c .l{
    width: 45%;
}
.about .box1 .box-c .l-title{
    font-family: AlibabaPuHuiTi-3-85-Bold;
    font-weight: 400;
    font-size: 24px;
    color: #222222;
    line-height: 1.5;
    font-style: italic;
}
.about .box1 .box-c .l .square {
    position: relative;
    width: 50px;
    height: 50px;
    margin-top: 60px;
    /* height: 50px;
    margin: 50px auto; */
}

.about .box1 .box-c .l .square .large-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 50, 127, 1);
    z-index: 4;
}

.about .box1 .box-c .l .square .small-square {
    position: absolute;
    top: 0; 
    left: 100%;
    width: 24px;
    height: 24px;
    background-color: rgba(229, 229, 229, 1);
    transform: translate(-50%,-50%);
    z-index: 3;
    animation: moveAround 7s linear infinite;
}

@keyframes moveAround {
    0% {
        top: 0; 
        left: 100%;
    }
    25% {
        top: 100%; 
        left: 100%;
    }
    50% {
        top: 100%; 
        left: 0;
    }
    75% {
        top: 0; 
        left: 0;
    }
    100% {
        top: 0; 
        left: 100%;
    }
}
.about .box1 .box-c .r{
    width: 50%;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
line-height: 24px;
}
.about .box1 .box-c .r .text-box:not(:last-child){
    margin-bottom: 50px;
}
.about .box1 .box-c .r .text-box .text-title{
    margin-bottom: 20px;
    font-family: AlibabaPuHuiTi-3-85-Bold;
    font-size: 18px;
    color: #222222;
    line-height: 24px;
}
.about .box2{
    padding: 131px 0 120px;
    background: url(../img/about-box2-bg.jpg);
    background-size: cover;
    overflow: hidden;
}
.about .box2 .innerTitle .zh{
    color: rgba(255, 255, 255, 1);
}
.about .box2 .innerTitle .en{
    text-stroke: 1px rgba(222, 222, 222, .2);
    -webkit-text-stroke: 1px rgba(222, 222, 222, .2);
}
.about .box2 .box-c{
    margin-top: 94px;
    /* background: linear-gradient(90deg, black 7px, white 8px);
    background-size: 8px 1px;  */
    height: 400px;
}
.about .box2 .box-c .swiper{
    overflow: visible;
}
.about .box2 .box-c .swiper::before{
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    top: 75px;
    transform: translateX(-50%);
    width: 300%;
    height: 6px;
    background: linear-gradient(90deg, transparent 7px, white 8px);
    background-size: 8px 1px;
    z-index: 3;
}
.about .box2 .box-c .swiper-slide{
    width: 280px;
}
.about .box2 .box-c .swiper-slide .date{
    font-family: Rany-Bold;
    color: #FAFAFA;
    line-height: 30px;
}
.about .box2 .box-c .swiper-slide .line{
    width: 2px;
    height: 10px;
    background: #FAFAFA;
    margin-top: 41px;
    margin-left: -1px;
}
.about .box2 .box-c .swiper-slide .text-box{
    font-family: AlibabaPuHuiTi-3-85-Bold;
    font-size: 18px;
    color: #FAFAFA;
    line-height: 30px;
    padding-right: 49px;
    margin-top: 30px;
}
.about .box2 .box-c .btns{
    margin-top: 64px;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}
.about .box2 .box-c .btns .btn{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEDEDE;
    color: rgba(204, 204, 204, 1);
}
.about .box2 .box-c .btns .btn .iconfont{
    font-size: 24px;
    font-weight: bold;
}
.about .box2 .box-c .btns .btn:not(.swiper-button-disabled){
    cursor: pointer;
    transition: all .6s;
}
.about .box2 .box-c .btns .btn:not(.swiper-button-disabled):hover{
    border-color: #fff;
    background-color: #fff;
    color: rgba(18, 50, 127, 1);
}
.about .box2 .box-c .btns .btn.swiper-button-disabled{
    opacity: .5;
    pointer-events: none;
}
.about .box3{
    padding: 108px 0 120px;
}
.about .box3 .box-c{
    margin-top: 60px;
}
.about .box3 .box-c .list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 49px;
}
.about .box3 .box-c .list li{
    display: flex;
    align-items: center;
}
.about .box3 .box-c .list  .li-box{
    position: relative;
	min-height: 57px;
	display: flex;
    width: 100%;
	justify-content: space-between;
    align-items: center;
	cursor: pointer;
}
.about .box3 .box-c .list  .li-box .text-box {
	flex: 1;
	margin: 0 5px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}

.about .box3 .box-c .list  .li-box .year {
    font-family: Rany;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-verflow: ellipsis;
}
.about .box3 .box-c .list li:hover .li-box .img img {
    filter: sepia(1200%) saturate(9995%) hue-rotate(207deg);
}
.about .box3 .box-c .list  .li-box .text-title {
	font-size: 18px;
	font-family: AlibabaPuHuiTi-3-85-Bold;
	color: #333333;
	line-height: 1.25;
	margin: 10px 0;
}

.about .box3 .box-c .list  .li-box .text-des {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    /* min-height: 14px; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-verflow: ellipsis;
}
.about .box3 .box-c .list li .pic {
	position: absolute;
	/* right: 0; */
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	max-width: 100%;
	z-index: 3;
	width: 100%;
}
.about .box3 .box-c .list li:nth-child(4n) .pic,
.about .box3 .box-c .list li:nth-child(4n-1) .pic {
	/* transform: translate(-105%, -50%); */
}
.about .box3 .box-c .list li .pic img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.about .box3 .box-c .list li:hover .pic{
    opacity: 1;
    visibility: visible;
}
.about .box4{
    padding: 110px 0;
    background-color: #fff;
}
.about .box4 .box-c{
    margin-top: 50px;
}
.about .box4 .box-c .list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 23px;
}
.about .box4 .box-c .list li{
    position: relative;
}
.about .box4 .box-c .list .picCover{
    padding-top: 133.33%;
}
.about .box4 .box-c .list .picCover .pic{
    border-radius: 5px;
}
.about .box4 .box-c .list .liBox{
    position: absolute;
    left: 20px;
    width: calc(100% - 40px);
    bottom: 20px;
    border-radius: 5px;
    background: #FFFFFF;
    padding: 26px 24px;
    z-index: 3;
    overflow: hidden;
    transition: all .6s;
}
.about .box4 .box-c .list .liBox .text-title{
    font-family: AlibabaPuHuiTi-3-45-Light;
    font-size: 24px;
    color: #222222;
    line-height: 30px;
}
.about .box4 .box-c .list .liBox .text-title strong{
    font-family: Rany-Bold;
}
.about .box4 .box-c .list .liBox .text-des{
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    transition: all .6s;
    overflow: hidden;
    height: 0;
    transition: all .6s;
    opacity: 0;
}
.about .box4 .box-c .list li:hover .liBox .text-des{
    opacity: 1;
}
.about .box4 .box-c .list .liBox .text-des .text{
    padding-top: 30px;
}
.about .box5{
    position: relative;
    padding: 120px 0 296px;
}
.about .box5 .box-c{
    position: relative;
    margin-top: 50px;
    display: flex;
    align-items: center;
    z-index: 6;
}
.about .box5 .box-c .l{
    position: relative;
    width: 33.07%;
}
.about .box5 .box-c .l .pic{
    position: relative;
    border-radius: 50%;
    z-index: 3;
}
.about .box5 .box-c .l::before{
    position: absolute;
    content: "";
    left: 33.8%;
    top: 61.12%;
    width: 64.79%;
    height: 64.79%;
    background: #F0F0F0;
    border-radius: 50%;
}
.about .box5 .box-c .r{
    flex: 1;
    margin-left: 37px;
}
.about .box5 .box-c .r .text-box{
    position: relative;
    display: inline-block;
}
.about .box5 .box-c .r .title{
    font-family: AlibabaPuHuiTi-3-45-Light;
    color: #222222;
    line-height: 1.6;
}
.about .box5 .box-c .r .more{
    display: inline-flex;
    background: #FAFAFA;
    border-radius: 30px;
    border: 1px solid #DEDEDE;
    padding: 0 24px 0 37px;
    font-family: AlibabaPuHuiTi-3-45-Light;
    font-size: 16px;
    line-height: 60px;
    color: #666666;
    margin-top: 103px;
    transition: all .6s;
}
.about .box5 .box-c .r .more .iconfont{
    margin-left: 38px;
    font-size: 26px;
    color: #2E2E2E;
}
.about .box5 .box-c .r .more:hover{
    background: #12327F;
    color: #fff;
    border-color: #12327F;
}
.about .box5 .box-c .r .more:hover .iconfont{
    color: #fff;
}

.about .box5 .circle{
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #12327F;
    bottom: 148px;
    left: 0;
    transform: translateX(-40%);
    z-index: 3;
}
.about .box5 .circlePic{
    position: absolute;
    right: 100px;
    width: 282px;
    border-radius: 50%;
    bottom: 280px;
    z-index: 3;
    transform: scale(1);
    opacity: 1;
}
.about .box5 .circlePic img{
    position: relative;
    width: 100%;
    display: block;
    z-index: 3;
    border-radius: 50%;
    transform: rotate(0deg);
}
.about .box5 .circlePic .circleBox{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #DEDEDE;
    border-radius: 50%;
    transform-origin: bottom center;
    transform: rotate(321deg);
    z-index: 2;
}
.about .box5  .bullet{
    position: absolute;
    width: 62px;
    height: 62px;
    bottom: 312px;
    right: 616px;
    background: #F1F1F1;
    border-radius: 50%;
    z-index: 2;
}
.recruitment .box1{
    padding: 113px 0 213px;
}
.recruitment .box1 .zh{
    font-family: AlibabaPuHuiTi-3-85-Bold;
    font-weight: 400;
    font-size: 1;
    color: #222222;
}
.recruitment .box1 .en{
    font-family: Rany-Bold;
    color: rgba(34, 34, 34, 0);
    line-height: 30px;
    text-stroke: 1px #DDDDDD;
    opacity: 0.4;
    -webkit-text-stroke: 1px #DDDDDD;
    margin-top: .43em;
    text-transform: uppercase;
}
.recruitment .box1 .box-c{
    margin-top: 68px;
}
.recruitment .box1 .box-c .list li{
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    padding: 0 31px 0 43px;
}
.recruitment .box1 .box-c .list li .li-t{
    display: flex;
    font-family: AlibabaPuHuiTi-3-45-Light;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    padding: 24px 0;
    cursor: pointer;
}
.recruitment .box1 .box-c .list li .li-t-l{
    flex: 1;
    /* margin-right: 39px; */
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.recruitment .box1 .box-c .list li .li-t-l .name{
    font-size: 18px;
    color: #222222;
}
.recruitment .box1 .box-c .list li .li-t-l .date{
    color: #666666;
    font-size: 18px;
    font-family: Rany;
}
.recruitment .box1 .box-c .list li .li-t-r .iconfont{
    display: block;
    font-size: 28px;
}
.recruitment .box1 .box-c .list li .li-t-r .icon-zhcc_jianhao{
    display: none;
}
.recruitment .box1 .box-c .list li.active .li-t-r .icon-zhcc_jianhao{
    display: block;
}
.recruitment .box1 .box-c .list li.active .li-t-r .icon-zhcc_jiahao{
    display: none;
}
.recruitment .box1 .box-c .list li .li-c{
    display: none;
    padding: 39px 0 49px;
    border-top: 1px solid #DEDEDE;
}
.recruitment .box1 .box-c .list li .li-c .text-des{
    padding-right: 28px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    font-size: 18px;
    color: #666666;
    line-height: 30px;
}
.recruitment .box1 .box-c .list li .li-c .text-boxs{
    font-size: 14px;
    color: #666666;
    line-height: 30px;
    margin-top: 38px;
}
.recruitment .box1 .box-c .list li .li-c .text-boxs .text-title{
    color: #222222;
    font-size: 16px;
}
.recruitment .box1 .box-c .list li .li-c .text-boxs .text-box:not(:last-child){
    margin-bottom: 18px;
}
.recruitment .box1 .box-c .list li .li-c .send{
    margin-top: 28px;
    padding: 0 22px;
    line-height: 50px;
    background: #12327F;
    border-radius: 5px;
    display: inline-block;
    font-size: 14px;
    color: #FFFFFF;
}
.recruitment .box1 .box-c .list li .li-c .send span{
    font-family: Rany;
    padding-left: 5px;
}
.recruitment .box1 .box-c .list li:not(:last-child){
    margin-bottom: 22px;
}
@media (max-width: 1440px) {
    .about .box5 .circlePic{
        width: 240px;
        bottom: 141px;
        right: 49px;
    }
    .about .box5 .circle{
        width: 168px;
        height: 168px;
        bottom: 68px;
    }
}
@media (max-width: 1199px) {
    .recruitment .box1{
        padding: 80px 0;
    }
    .recruitment .box1 .box-c{
        margin-top: 45px;
    }
    .about .box5 .bullet{
        width: 36px;
        height: 36px;
    }
    .about .box5 .circlePic{
        width: 180px;
        bottom: 94px;
        right: 31px;
    }
    .about .box5 .circle{
        width: 139px;
        height: 139px;
        bottom: 31px;
    }
    .about .box2 .box-c{
        height: auto;
    }
    .about .box4,
    .about .box3,
    .about .box2,
    .about .box1{
        padding: 80px 0;
    }
    .about .box5{
        padding: 80px 0 200px;
    }
    .about .box4 .box-c,
    .about .box3 .box-c,
    .about .box2 .box-c{
        margin-top: 45px;
    }
    .about .box1 .box-c{
        flex-direction: column;
    }
    .about .box1 .box-c .r,
    .about .box1 .box-c .l{
        width: 100%;
    }
    .about .box1 .box-c .l .square{
        display: none;
    }
    .about .box1 .box-t{
        padding-bottom: 45px;
    }
    .about .box1 .box-c{
        padding-top: 45px;
    }
    .about .box1 .box-c .r .text-box:not(:last-child){
        margin-bottom: 30px;
    }
    .about .box1 .box-c .r{
        margin-top: 30px;
    }
    .about .box1 .box-t .title::before{
        font-size: 168px;
    }
    .about .box2 .box-c .btns{
        margin-top: 45px;
        gap: 25px;
    }
    .about .box2 .box-c .btns .btn{
        width: 44px;
        height: 44px;
    }
    .about .box2 .box-c .btns .btn .iconfont{
        font-size: 20px;
    }
    .about .box2 .box-c .swiper-slide .text-box{
        font-size: 16px;
        line-height: 24px;
        padding-right: 31px;
    }
    .about .box3 .box-c .list{
        gap: 27px;
    }
    .about .box4 .box-c .list .liBox .text-title{
        font-size: 20px;
    }
    .about .box4 .box-c .list .liBox{
        padding: 15px 20px;
    }
    .about .box4 .box-c .list .liBox .text-des .text{
        padding-top: 15px;
    }
    .about .box4 .box-c .list .liBox .text-des{
        font-size: 14px;
        line-height: 24px;
    }
    .about .box5 .box-c .r .more{
        margin-top: 80px;
    }
    .about .box5 .box-c{
        margin-top: 45px;
    }
}
@media (max-width: 1024px) {
    .recruitment .box1{
        padding: 70px 0;
    }
    .recruitment .box1 .box-c{
        margin-top: 40px;
    }
    .about .box5 .box-c{
        margin-top: 40px;
    }
    .about .box5 .box-c .r .more{
        margin-top: 50px;
        line-height: 48px;
        padding: 0 22px;
    }
    .about .box5 .box-c .r .more .iconfont{
        margin-left: 12px;
    }
    .about .box4 .box-c .list .liBox .text-des .text{
        max-height: 150px;
        overflow: auto;
        padding-right: 10px;
    }
    .about .box4 .box-c .list .liBox{
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
    }
    .about .box4 .box-c .list .liBox .text-des .text{
        padding-top: 8px;
    }
    .about .box4 .box-c .list .liBox .text-title{
        font-size: 18px;
        line-height: 24px;
    }
    .about .box2 .box-c .swiper-slide{
        width: 240px;
    }
    .about .box2 .box-c .btns{
        margin-top: 40px;
        gap: 25px;
    }
    .about .box1 .box-t{
        padding-bottom: 35px;
    }
    .about .box1 .box-c{
        padding-top: 35px;
    }
    .about .box1 .box-c .r .text-box:not(:last-child){
        margin-bottom: 30px;
    }
    .about .box1 .box-c .r{
        margin-top: 20px;
    }
    .about .box4,
    .about .box3,
    .about .box2,
    .about .box1{
        padding: 70px 0;
    }
    .about .box5{
        padding: 70px 0 180px;
    }
    .about .box4 .box-c,
    .about .box3 .box-c,
    .about .box2 .box-c{
        margin-top: 40px;
    }
    .about .box3 .box-c .list{
        grid-template-columns: repeat(3,1fr);
    }
    /* .about .box3 .box-c .list li:nth-child(4n-1) .pic,
    .about .box3 .box-c .list li:nth-child(4n) .pic{
        transform: translate(105%, -50%);
    }
    .about .box3 .box-c .list li:nth-child(3n) .pic{
        transform: translate(-105%, -50%);
    } */
    .recruitment .box1 .box-c .list li{
        padding: 0 30px;
    }
    .recruitment .box1 .box-c .list li .li-t{
        padding: 19px 0;
        align-items: center;
    }
    .recruitment .box1 .box-c .list li .li-c .text-des,
    .recruitment .box1 .box-c .list li .li-t-l{
        grid-template-columns: repeat(2,1fr);
        gap: 0 20px;
    }
    .recruitment .box1 .box-c .list li .li-c{
        padding: 30px 0;
    }
    .recruitment .box1 .box-c .list li .li-c .text-boxs{
        margin-top: 14px;
    }
    .recruitment .box1 .box-c .list li .li-c .send{
        line-height: 45px;
    }
}
@media (max-width: 768px) {
    .recruitment .box1{
        padding: 60px 0;
    }
    .recruitment .box1 .box-c{
        margin-top: 30px;
    }
    .about .box5 .box-c{
        margin-top: 30px;
    }
    .about .box5 .bullet{
        right: 50%;
        bottom: 94px;
    }
    .about .box5 .circle{
        width: 68px;
        height: 68px;
    }
    .about .box5 .circlePic{
        width: 113px;
        height: 113px;
        bottom: 51px;
    }
    .about .box5 .box-c .r .more{
        margin-top: 30px;
    }
    .about .box5 .box-c .l{
        width: 27%;
    }
    .about .box5 .box-c .r .title{
        font-size: 18px;
    }
    .about .box4 .box-c .list .liBox .text-des .text{
        max-height: 186px;
    }
    .about .box4 .box-c .list{
        grid-template-columns: repeat(2,1fr);
    }
    /* .about .box3 .box-c .list li:nth-child(3n) .pic{
        transform: translate(105%, -50%);
    }
    .about .box3 .box-c .list li:nth-child(2n) .pic{
        transform: translate(-105%, -50%);
    } */
    .about .box3 .box-c .list{
        grid-template-columns: repeat(2,1fr);
    }
    .about .box2 .box-c .btns{
        margin-top: 30px;
        gap: 25px;
    }
    .about .box1 .box-c .l-title{
        font-size: 22px;
    }
    .about .box1 .box-t{
        padding-bottom: 30px;
    }
    .about .box1 .box-c{
        padding-top: 30px;
    }
    .about .box1 .box-c .r{
        margin-top: 15px;
    }
    .about .box4,
    .about .box3,
    .about .box2,
    .about .box1{
        padding: 60px 0;
    }
    .about .box5{
        padding: 60px 0 160px;
    }
    .about .box4 .box-c,
    .about .box3 .box-c,
    .about .box2 .box-c{
        margin-top: 30px;
    }
    .about .box1 .box-t .title::before{
        font-size: 134px;
        width: 57px;
        height: 53px;
    }
    .about .box5 .box-c .r{
        margin-left: 20px;
    }
}
@media (max-width: 500px) {
    .recruitment .box1 .en{
        margin-top: .13em;
    }
    .recruitment .box1 .box-c .list li .li-c .text-des{
        padding-right: 22px;
    }
    .recruitment .box1 .box-c .list li .li-t-r .iconfont{
        font-size: 22px;
    }
    .recruitment .box1 .box-c .list li .li-c .text-des{
        font-size: 16px;
    }
    .recruitment .box1 .box-c .list li{
        padding: 0 20px;
    }
    .recruitment .box1 .box-c .list li .li-c{
        padding: 20px 0 30px;
    }
    .recruitment .box1 .box-c .list li .li-t-l .name,
    .recruitment .box1 .box-c .list li .li-t-l .date{
        font-size: 16px;
    }
    .recruitment .box1 .box-c .list li .li-t{
        font-size: 14px;
        line-height: 24px;
        padding: 10px 0;
    }
    .recruitment .box1{
        padding: 50px 0;
    }
    .recruitment .box1 .box-c{
        margin-top: 25px;
    }
    .about .box5 .box-c .r .more .iconfont{
        font-size: 20px;
    }
    .about .box5 .circlePic{
        width: 86px;
        height: 86px;
    }
    .about .box5 .box-c .r .more{
        margin-top: 20px;
        line-height: 40px;
        font-size: 14px;
        padding: 0 19px;
    }
    .about .box5 .box-c .r .title{
        line-height: 1.3;
        font-size: 16px;
    }
    .about .box5 .box-c{
        margin-top: 25px;
    }
    .about .box4 .box-c .list{
        grid-template-columns: repeat(1,1fr);
    }
    .about .box4 .box-c .list .picCover{
        padding-top: 68%;
    }
    .about .box3 .box-c .list .li-box .text-title{
        font-size: 14px;
        margin: 4px 0;
    }
    .about .box3 .box-c .list .li-box .year{
        font-size: 14px;
    }
    .about .box2 .box-c .swiper::before{
        top: 49px;
    }
    .about .box2 .box-c .swiper-slide{
        width: 200px;
    }
    .about .box2 .box-c .swiper-slide .date{
        font-size: 18px;
        line-height: 24px;
    }
    .about .box2 .box-c .swiper-slide .line{
        margin-top: 21px;
    }
    .about .box2 .box-c .swiper-slide .text-box{
        margin-top: 20px;
        font-size: 14px;
        padding-right: 19px;
    }
    .about .box2 .box-c .btns{
        margin-top: 25px;
        gap: 25px;
    }
    .about .box1 .box-c .r .text-box .text-title{
        margin-bottom: 10px;
    }
    .about .box1 .box-c .r{
        font-size: 14px;
        line-height: 20px;
    }
    .about .box1 .box-t .des{
        font-family: 16px;
    }
    .about .box1 .box-t .title::before{
        font-size: 86px;
        width: 38px;
        height: 38px;
    }
    .about .box1 .box-t .title{
        font-size: 20px;
        margin-top: 5px;
    }
    .about .box1 .box-c .l-title{
        font-size: 18px;
    }
    .about .box1 .box-t{
        padding-bottom: 20px;
    }
    .about .box1 .box-c{
        padding-top: 20px;
    }
    .about .box1 .box-c .r{
        margin-top: 10px;
    }
    .about .box4,
    .about .box3,
    .about .box2,
    .about .box1{
        padding: 50px 0;
    }
    .about .box5{
        padding: 50px 0 140px;
    }
    .about .box4 .box-c,
    .about .box3 .box-c,
    .about .box2 .box-c{
        margin-top: 25px;
    }
}