body{
    color:#333;
}
.title {
    font-size: 32px;
    color: #333;
    position: relative;
    text-align: center;
    margin:50px 0 30px 0;
    color: #333;
}
.title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #007b3d;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
}
.title a:hover{
    color:#007b3d;
}
.introbox {
    position: relative;
}
.introbox img, .intro-text {
    float: left;
}
.intro-text h2.name {
    font-size: 24px;
    color:#007b3d;
    padding-left:50px;
    padding-top:15px;
}
.intro-text p.ename {
    font-size: 10px;
    color: #007b3d;
    padding-left: 50px;
}
.intro-text .text{
    width:660px;   
    box-shadow:0 0 10px rgba(0,0,0,.1);
    position:absolute;
    right:0;
    bottom:20px;
    background:#fff;
    padding:30px;
    box-sizing:border-box;
    line-height:1.8;
    color:#333;
}
.intro-text .text:hover {
    box-shadow: 0 0 10px rgba(0,123,61,.2);
}
.intro-text .text .more {
    display: block;
    width: 120px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    color: #fff;
    background: #007b3d;
    font-size: 12px;
    border-radius: 20px;
    float: right;
    margin-top: 20px;
}

.lead .item {
    width: 100%;
    box-sizing: border-box;     
    background: #fff;
}

.lead .item  a:hover{
    color:#007b3d;
}
.lead table{
    width:100%;
}
.lead table td {
    padding: 10px 20px;
    border: 1px solid #eee;
}
.lead table td:nth-child(1) {
    background: #fafafa;
}

.org {
    height: 270px;
    background: url(/Resource/Images/intro2.jpg) no-repeat;
}
.org .title, .history .title {
    padding-top: 60px;
}
.org .title a{
    color:#fff;
}
.culture ul {
    display: flex;
    justify-content: space-between;
}
.culture ul li{
    margin-bottom:10px;
}
.culture ul li img{
    width:100%;
}
.history {
    height: 270px;
    background: url(/Resource/Images/intro8.jpg) no-repeat;
}
.view{

}
.view li{
    float:left;
    margin-right:30px;
}
.view li:last-child {
    margin-right: 0;
}
.view li a {
    border: 14px solid #fff;
    display: block;
    width: 362px;
    height: 212px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.view li a:hover {
    box-shadow: 0 0 10px rgba(0,123,61,.2);
}
.view li a img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.view .more {
    display: block;
    width: 120px;
    height: 32px;
    margin: 20px auto 0;
    font-size: 12px;
    border: 1px solid #ccc;
    background: #fff;
    text-align: center;
    border-radius: 25px;
    line-height: 32px;
    color:#007b3d;
}

.picbox{
    display:flex;
    justify-content:space-between;
    margin-top:20px;
    flex-wrap:wrap;
}
.picbox a {
    float: left;
    width: 32%;
    margin-top:15px;
}
.picbox a img{
    width:100%;
    max-height:30vh;
}
.picbox a p{
    font-size:14px;
    line-height:24px;
    text-align:center;
    width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    padding:0 10px;
    box-sizing:border-box;
    white-space:nowrap;
}
/*-----------------屏幕适配-------------------*/
/*最大宽度1200px，即小于1200px的屏幕*/
@media only screen and (max-width: 1200px) {
    .title{
        font-size:16px;
    }
    .introbox img {
        width: 100%;
        float: none;
    }
    .intro-text{
        float:none;
    }
    .intro-text .text{
        position:initial;
        width:100%;
        box-shadow:none;
        padding:0;
        font-size:13px;
    }
    .intro-text h2.name{
        padding-left:0;
        font-size:14px;
    }
    .intro-text p.ename {
        padding-left: 0;
    }
    .intro-text .text:hover {
        box-shadow: none;
    }
    .intro-text .text .more {
        float: none;
        margin-top:5px;
    }
    .lead1 table{
        width:100%;
    }
    .org, .history{
        height:30vh;
    }
    .org .title, .history .title{
        padding-top:10vh;
    }
    .view li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .view li a{
        width:100%;
        height:100%;
        box-sizing:border-box;
    }
}