
table th, table td{
    padding:2px 3px;
    text-align: center;
}

body{
    background-color: #FFF;
    
}
.main-margin {
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 40px;
    min-height: calc(100vh - 39.2vw - 160px);
}
.public-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: bold;
    margin: 10px 0 20px;
 }
 .public-title .bottom-line{
    width: 30px;
    height: 3px;
    background-color: #F5950A;
    margin: 10px 5px 0;
 }
.container-detail {
    /* padding: 10px 20px; */

}
.search-form{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.layui-form-item{
    margin-right: 15px;
}
.layui-form-select dl dd.layui-this{
    background-color: #D7D7D7;
}

.pop-box{
    position: fixed;
    left: 40px;
    /* margin-left: -220px; */
    bottom: 40px;
    /* margin-bottom: -100px; */
    width: 440px;
    box-sizing: border-box;
    z-index: 9999999;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #D4D8DF;
    padding: 20px 26px;
    box-shadow: 0 -1px 10px 0 #acabab4d;
    border-radius: 6px;
    font-family: 'SecondaryCustomFont' !important;
    display: none;
}
.pop-box .pop-title{
    font-size: 18px;
    font-weight: bold;
    color: #333333;
}
.pop-box .pop-text{
    font-size: 14px;
    color: #666666;
}
.pop-box .pop-btn{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.pop-box .pop-btn button{
    flex: auto;
    max-width: 100%;
    font-size: 14px;
    font-family: inherit;
    line-height: 24px;
    padding: 8px;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    text-transform: none;
    min-height: 0;
    color: #1863DC;
    border:2px solid #1863DC;
    background-color: #FFFFFF;
}
.pop-box .pop-btn button:hover{
    opacity: 0.8;
}
.pop-box .pop-btn button:nth-last-child(1){
    background-color: #1863DC;
    color: #FFFFFF;
}

/* about */
.about-item{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding:10px 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.about-item-title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.about-item-left{
    width:30%;
    background-color: #F3F3F3;
    margin-right: 20px;
}
.about-item-left img{
    width: 100%;
}
.about-item-left .mission{
    width:50%;
    margin: 0 auto;
}
.about-item-desc {
    width: 66%;
    line-height: 2;
}
.about-item-desc .title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    margin-bottom:20px;
    line-height: 1;
}
.about-item-desc .title img{
    height: 22px;
    margin-right: 12px;
}
.about-item-desc p{
    margin-bottom: 20px;
}
.no-style{
    margin-bottom:0;
}
 .no-style li::before{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #401D5D;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    margin-top:-2px;
 }
     .article-title{
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }
    .article-info{
        color: #999;
        font-size: 16px;
        /* font-weight: bold; */
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /*news-list*/

.news-list {
    margin-top: 30px;
}
.news-list-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}
.news-list-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-item a{
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.news-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.news-item-image {
    flex: 0 0 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}
.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-item-time {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}
.news-item-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.news-item-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}
.news-item-read-more {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}
.news-item-read-more:hover {
    text-decoration: underline;
}

.contact-box{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.contact-box form{
    width: 58%;
}
.contact-box .info{
    width: 37%;
    padding: 20px;
    color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: rgba(243, 150, 11, 1);
    text-align:center;
}
.contact-box .info strong{
    color: #fff;
}
.info-title{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.info-address{
    margin-bottom: 20px;
}
.info-phone{
    margin-bottom: 20px;
}
.info-email{
    margin-bottom: 20px;
}
.contact-form{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-form input,
.contact-form textarea{
    box-sizing: border-box;
    width: 48%;
    padding: 10px;
    margin:1%;
    border: 1px solid #999;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.contact-form textarea{
    width: 100%;
    min-height: 100px;
}
.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #F3960B;
    box-shadow: 0 0 8px 1px rgba(243, 150, 11, 0.3);
}
.btn-box{
    width: 100%;
    text-align: right;
}
.sumit{
    padding: 8px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #F3960B;
    border-radius: 3px;
    outline: none;
    transition: all 0.3s ease-in-out;
    background-color: #F3960B;
    margin: 10px 1%;
}
.sumit:hover{
    background-color: #F3960B;
    color: #fff;
}
 @media (max-width: 768px) {
    .main-margin {
        box-sizing: border-box;
        min-height: calc(100vh - 46.3vw - 130px);
    }
    .about-item-left{
        width:100%
    }
    .about-item-desc{
        width: 100%;
    }
    .news-item a{
        flex-direction: column;
    }
    .news-item-image {
        flex: 0 0 200px;
        width: 100%;
    }
    .contact-box .contact-form{
        width: 100%;
    }
    .contact-box .info{
        width: 100%;
    }
.public-title{
    font-size:24px;
}

}
@media (max-width: 540px) {
    .address-left{
        width: 60%;
    }
    .main-margin {
        box-sizing: border-box;
        min-height: calc(100vh - 49.7vw - 190px);
    }
    .pop-box{
        width: 100%;
        height: auto;
        left: 0;
        margin-left: 0;
        bottom: 0;
        margin-bottom: 0;
    }
    .pop-box .pop-btn button{
        width: 100%;
    }
 }



 