.pub_title .ms {
    font-size: 30px
}

.about .pub_title {
    text-align: center
}

.about .content p {
    font-size: 20px;
    line-height: 30px;
    text-indent: 2em;
    margin-bottom: 35px;
    color: rgba(48, 51, 59, 0.7)
}

.about .content ul {
    margin-top: 68px;
    display: flex;
    justify-content: space-between
}

.num {
    height: 275px;
    background-color: #AE745E
}

.num .w {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%
}

.num .w li p:nth-child(1) {
    font-size: 67px;
    color: #fff;
    margin-bottom: 10px;
    font-family: AkzidenzGrotesk_Bold;
    font-weight: bold;

}

.num .w li p:nth-child(2) {
    font-size: 18px;
    color: #fff
}

.num .w .hr {
    width: 1px;
    height: 92px;
    background-color: #e5e5e5
}

.tech .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6%
}

.tech .top .pub_title {
    margin-bottom: 0
}

.tech .top .btn a {
    display: flex;
    width: 60px;
    height: 60px;
    border: 1px solid #dcdcdc;
    margin-left: 12px;
    align-items: center;
    justify-content: center;
    float: right;
    transition: .3s
}

.tech .top .btn a .bjt {
    display: none
}

.tech .top .btn a:hover {
    background-color: #d2ab66;
    border-color: #d2ab66
}

.tech .top .btn a:hover .hjt {
    display: none
}

.tech .top .btn a:hover .bjt {
    display: block
}

.tech .top .btn a:nth-child(2) {
    transform: rotate(180deg)
}

.tech .content a .img {
    overflow: hidden
}

.tech .content a:hover img {
    transform: scale(1.1)
}

.tech .content a:hover p {
    color: #d2ab66
}

.tech .content a img {
    transition: .3s
}



.tech .content a p {
    margin-top: 38px;
    text-align: center;
    font-size: 20px;
    color: #999999;
    transition: .3s
}

.about_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 120px;
    padding-bottom: 120px;
}

.about_list_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about_item_text {
    width: 40%;
}

.about_item_text .p1 {
    font-size: 24px;
    color: #30333b;
}

.about_item_text .p2 {
    font-size: 16px;
    color: rgba(48, 51, 59, 0.7);
    line-height: 2;
    margin-top: 30px;
}

.about_item_pic {
    width: 55%;
}

.about_item_pic img {
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1100px){
    .about .content p{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .about .content ul{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .about .content ul li{
        width: 100% !important;
    }
    .num .w li p:nth-child(1){
        font-size: calc(16px + 1rem);
        line-height: 1.5;
    }
    .num .w li p:nth-child(2){
        font-size: calc(12px + 1rem);
        line-height: 1.5;  
    }
    .num{
        height: auto;
        padding: calc(10px + 1rem) 0;
    }
    .btn{
        display: none;
    }
    .about_list_item{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .about_item_text{
        width: 100%;
    }
    .about_item_text .p1{
        font-size: calc(14px + 1rem);
        line-height: 1.5;
    }
    .about_item_text .p2{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
        margin-top: 10px;
    }
    .about_item_pic{
        width: 100%;
    }
    .about_list{
        gap: 30px;
        padding-bottom: 50px;
    }
    .about_list_item:nth-of-type(2){
        flex-flow: column-reverse;
    }
}