body{
    background-color: #f8faff;
}
.fy_bann {
    width: 100%;
    height: 25vw;
    background-color: #ccc;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fy_bann_title{
    font-size: 3vw;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding-top:13vw;
    animation: fadeInUp 0.8s ease-out forwards;
}
.fy_main{
    min-height: 350px;
    margin:50px auto;
}

.fy_nav {
    display: flex;
    height:80px;
    margin-top:-40px;
}

.fy_nav li {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.fy_nav li:not(:last-child){
    border-right: 1px solid rgba(255,255,255,0.5);
}
.fy_nav li a.active,
.fy_nav li a:hover {
    background: #00593B;
    color: #fff;
}

.fy_nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.fy_nav .icon {
    font-size: 18px;
    color:#333;
}
.fy_nav li a.active .icon,
.fy_nav li a:hover .icon {
    color:#fff;
}
.fy_about{
    width:90%;
    margin-left:10%;
    margin-top:-40px;
    padding:100px 0 80px;
    background-size: 25vw auto;
    background-position: center right;
    background-repeat: no-repeat;
}
.about_text{
    width:calc(100% - 30vw);
    margin-right:5vw;
}
.about_text .title{
    font-size: 3vw;
    color:#333;
    font-weight: bold;
    margin-bottom: 30px;
}
.about_text .content{}
.about_text .content p{
    font-size: 16px;
    color:#454545;
    line-height: 1.8;
    margin-bottom: 10px;
    text-indent: 2em;
}

/* 招聘页面 */
.fy_read{}
.fy_read p,
.fy_read div{
    font-size: 16px;
    color:#454545;
    line-height: 1.8;
    margin-bottom: 10px;
    text-indent: 2em;
}
.fy_read img{
    max-width: 100% !important;
    height:auto !important;
}

/* news */
.news_list{
    display: flex;
    flex-wrap: wrap;
    gap: 6%;
}
.news_item{
    width: 43%;
    height:360px;
    background: #fff;
    padding: 30px 30px 80px 30px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 35px;
    position: relative;
    transition: all 0.3s ease; 
}
.news_date{
    font-size: 16px;
    color: #383838;
    font-weight: bold;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}
.news_title{
    font-size: 20px;
    color: #383838;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 20px;
    transition: all 0.3s ease; 
}
.news_desc{
    font-size:16px;
    color:#808080;
    line-height: 1.8;
}
.news_item .open-btn{
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0 0 4px 0;
    width:6vw;
    height:3vw;
    background-color:#00593B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.news_item .open-btn::before{
    content:"";
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin:0 -4px;
    transition: all 0.3s ease;
}
.news_item .open-btn::after{
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin:0 -4px;
    transition: all 0.3s ease;
}
.news_item:hover{
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);  
    transform: translateY(-5px); 
}
.news_item:hover .news_date{
    font-size: 18px;
}
.news_item:hover .news_title{
    color: #00593B;
}
.news_item:hover .open-btn::before{
    transform: translateX(4px);
}
.news_item:hover .open-btn::after{
    transform: rotate(45deg)translateX(4px)translateY(-5px);
}

/* 公司业绩 */
.gsyj_list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.gsyj_item{
    width: calc(33.333% - 20px);
}
.gsyj_img{
    width: 100%;
    height: 15vw;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    /* margin-bottom: 15px; */
}
.gsyj_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gsyj_content{
    width:100%;
    height:auto;
    padding:20px 0;
    background-color: transparent;
    border-radius: 0 0 16px 16px;
}
.gsyj_date{
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}
.gsyj_title{
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}
.gsyj_desc{
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.gsyj_item .open-btn{
    width:fit-content;
    padding: 10px 0;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}
.gsyj_item .open-btn::after{
    content: '';
    /* width: 0;
    height: 0;
    border-left: 6px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent; */
}
.gsyj_item:hover .gsyj_content{
    padding:20px;
    background-color: #fff;
}
.gsyj_item:hover .gsyj_title,
.gsyj_item:hover .gsyj_date{
    color: #00593B;
}
.gsyj_item:hover .open-btn{
    border-radius: 4px;
    padding: 10px 20px;
    background-color: #00593B;
    color: #fff;
}

/* 联系我们页面 */
.contact_main{
    display: flex;
    padding: 30px 0;
}
.contact_map{
    width:50%;
    /* height:25vw; */
    height:450px;
    background: #f5f5f5;
    overflow: hidden;
}
.contact_map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.contact_info{
    width:50%;
    /* height:25vw; */
    height:450px;
    padding: 30px;
    background: #fff;
}
.contact_title{
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px;
}
.contact_desc{
    font-size: 14px;
    color: #999;
    margin: 0 0 40px;
}
.contact_list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact_list li{
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}
.contact_list li:first-child{
    border-top: 1px solid #eee;
}
.contact_list .icon{
    font-size: 18px;
    margin-right: 15px;
    color: #00593B;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact_list .icon:hover{
    color: rgba(0, 89, 59,0.8);
}
.contact_list .label{
    font-size: 14px;
    color: #999;
    width: 60px;
}
.contact_list .value{
    font-size: 14px;
    color: #333;
    flex: 1;
}

/* 阅读页面 */
.read_title_box{
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
.read_title_box .title{
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.4;
}
.read_title_box .info{
    font-size: 16px;
    color: #999;
    margin: 0;
}
.read_content_box{
    padding: 0 30px;
}
.read_content_box p{
    font-size: 16px;
    color: #333;
    line-height: 2;
    margin: 0 0 10px;
    /* text-align: justify; */
}
.read_content_box img{
    max-width: 100% !important;
    height: auto !important;
    /* margin: 15px 0; */
}

/* 暂无内容 */
.zwnr{
    width:100%;
    height:300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zwnr span{
    font-size: 16px;
    color:#333;
}

/* 上一页 下一页 */
.piaoye_page_botton {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

.btn-group {
    display: inline-block;
}

.btn-default {
    padding: 5px 10px;
    border: 1px solid #00593B;
    margin: 0 5px;
    color: #333;
    font-size: 14px;
}

#page_center_botton>span {
    background-color: #00593B;
    color: #fff;
}

/* 业务范围页面 */
.fy-ywfw{
    padding: 50px 10%;
}
.ywfw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

.ywfw-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ywfw-item:nth-child(1) { 
    /* background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%); */
}
.ywfw-item:nth-child(2) { 
    /* background: linear-gradient(135deg, #1e4d2e 0%, #3d7a52 100%); */
}
.ywfw-item:nth-child(3) { 
    /* background: linear-gradient(135deg, #2a5c3d 0%, #5a8f6b 100%); */
}
.ywfw-item:nth-child(4) { 
    /* background: linear-gradient(135deg, #1d4b2d 0%, #3d6b4d 100%); */
}
.ywfw-item:nth-child(5) { 
    grid-column: 3;
    grid-row: 1 / 3;
    aspect-ratio: unset !important;
    height: 100% !important;
    /* background: linear-gradient(135deg, #0d3d1d 0%, #2a6b3d 50%, #1a5a2d 100%); */
}

.ywfw-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.ywfw-item-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.ywfw-item-title::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.ywfw-item:nth-child(5) .ywfw-item-title {
    font-size: 24px;
    bottom: 30px;
    left: 30px;
}

.ywfw-item:nth-child(5) .ywfw-item-title::before {
    border-left-width: 14px;
    border-top-width: 8px;
    border-bottom-width: 8px;
}
.ywfw-item-title{
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.ywfw-item-title::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* 荣誉资质 */
.fy_ryzz{
    background: #fff;
}
.fy_ryzz .fy_main{
    width:80%;
    margin-left:auto;
    margin-right:auto;
}
.ryzz-img{
    width: 100%;
    height: auto;
    cursor: pointer;
}


/* 业务范围内容页 */
.ywfw-read{
    width:80%;
    margin-left: auto;
    margin-right: auto;
}
.ywfw-read-content{
    display: none;
}
.ywfw-read-content.active{
    display: block;
}
.ywfw-read-content p{
    font-size: 16px;
    color: #333;
    line-height: 2;
    margin: 0 0 10px;
    text-indent: 2em;
}
