@charset "utf-8";

/***************************************************************************
*
* index.css
*
***************************************************************************/
#header{
	background: rgba(19, 144, 74, 0.58);
	border-width: 0;
}
.banner{
    background: url(../img/index/banner.png) no-repeat top center;
    background-size: cover;
    text-align: center;
    padding: 242px 0 147px;
    border-bottom: 4px solid #91c50f;
    overflow: hidden;
    height: 1004px;
}
.banner .text{
    margin-left: -56px;
    float: left;
}
.banner .text img{
    -webkit-animation: zoomText 2.7s;
    -moz-animation: zoomText 2.7s;
    animation: zoomText 2.7s;
}

.banner .maps{
    margin-right: -71px;
    float: right;
    margin-top: 56px;
    transition: all 0.3s ease-in-out;
    -webkit-animation: maps 1.5s ;
    -moz-animation: maps 1.5s ;
    animation: maps 1.5s ;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    animation-delay: 2.7s;
    opacity: 0;
}


@keyframes zoomText {
    0% {
        transform: scale(1);
    }
    50% {
       transform: scale(0.5);
    }
    100%{
        transform: scale(1);
    }
}
@-webkit-keyframes zoomText {
    0% {
        transform: scale(1);
    }
    50% {
       transform: scale(0.5);
    }
    100%{
        transform: scale(1);
    }
}


@keyframes maps {
    from {
        margin-top: 138px;
        opacity: 0;
    }
    to {
        margin-top: 56px;
        opacity: 1;
    }
}
@-webkit-keyframes maps {
    from {
        margin-top: 138px;
        opacity: 0;
    }
    to {
        margin-top: 56px;
        opacity: 1;
    }
}





.area1{
    margin-top: -44px;
    position: relative;
    background-image: url(../img/index/area1-bg.png);
    background-repeat: no-repeat;
    background-position: top -202px center;
    background-size: auto;
}
/*.area1:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 288px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/index/area1-bg2.png) no-repeat top 45px center;
    background-size: auto;
}*/

.area1.fix{
    background-image: url(../img/index/area1-bg.png);
    background-repeat: no-repeat;
    background-position: top -190px center;
    background-attachment: fixed;
}
.cntArea1{
    background: #fff;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.16);
    width: 100%;
    padding: 38px 41px 70px 39px;
}
.cntArea1 .areaTop{
	overflow: hidden;
}
.cntArea1 .areaTop .areaTitle{
	float: left;
	margin-top: 7px;
}
.cntArea1 .areaTop .btn{
	float: right;
}
.cntArea1 .areaTop .btn a{
    display: block;
    text-decoration: none;
    width: 260px;
    color: #fff;
    padding: 20px 20px 19px;
    background: #ee3232;
    letter-spacing: 2px;
    position: relative;
}
.cntArea1 .areaTop .btn a:before{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	width: 40px;
	height: 20px;
	background: url(../img/index/mt.png) no-repeat center right;
	    transition: all 0.3s;
}
.cntArea1 .areaTop .btn a:hover:before{
    -webkit-animation: scroll 0.5s infinite alternate;
    -moz-animation: scroll 0.5s infinite alternate;
    animation: scroll 0.5s infinite alternate;
}


@keyframes scroll {
    from {
        background: url(../img/index/mt.png) no-repeat center right 0px;
    }
    to {
        background: url(../img/index/mt.png) no-repeat center right 10px;
    }
}
@-webkit-keyframes scroll {
    from {
        background: url(../img/index/mt.png) no-repeat center right 0px;
    }
    to {
        background: url(../img/index/mt.png) no-repeat center right 10px;
    }
}

.cntArea1 .postType{
    width: 100%;
    text-align: center;
    margin-top: 41px;
}
.cntArea1 .postType .listPost{
    display: inline-block;
    vertical-align: top;
    margin-right: 25px;

}
.cntArea1 .postType .listPost a{
	text-decoration: none;
	box-shadow: 0 0 0px 1px #e5e5e5;
	display: block;
    padding: 37px 31px 39px;
    text-align: left;
    width: 320px;
    color: #000;
    transition: all 0.3s;
}
.cntArea1 .postType .listPost a:hover{
	box-shadow: 0 0 21px 0px #e5e5e5;
}
.cntArea1 .postType .listPost .postTop{
	text-align: left;
}
.cntArea1 .postType .listPost .postTop p{
	display: inline-block;
	vertical-align: middle;
}
.cntArea1 .postType .listPost .postTop .category{
    padding-right: 15px;
    margin-right: 9px;
    font-weight: bold;
    position: relative;
}
.cntArea1 .postType .listPost .postTop .category:before{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #d2d2d2;
	width: 1px;
	height: 60%;
}
.cntArea1 .postType .listPost .postTop .category.use{
	color: #e560a8;
}
.cntArea1 .postType .listPost .postTop .category.notice{
	color: #91c50f;
}
.cntArea1 .postType .listPost:last-child{
	margin-right: 0;
}
.cntArea1 .postType .listPost .postTop .date{
	font-size: 13px;
	display: inline-block;
	vertical-align: middle;
}
.cntArea1 .postType .listPost .title{
    text-align: left;
    margin-top: 21px;
    font-size: 16px;
	color: #000;
	/*border-bottom: 1px solid #ee3232;*/
    border-bottom: 1px solid transparent;
	padding-bottom: 0px;
	line-height: 1.6;
/*	display: inline-block;*/
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis*/
    margin-bottom: 0;
}
.cntArea1 .postType .listPost .postTop{
    margin-bottom: 10px;
}
.cntArea1 .postType .listPost .title:before{
    content: none;
}

.cntArea2{
    margin-top: 146px;
    width: 100%;
}
.cntArea2:after{
    content: "";
    display: table;
    clear: both;
}
.cntArea2 .img{
	padding-left: 2px;
	float: left;
}
.cntArea2 .title {
    border-bottom: none;
}
.cntArea2 .title:before {
    display: none;
}
.cntArea2 .textRight{
    float: right;
    margin-top: 89px;
    padding-right: 1px;
    text-align: right;
    overflow: hidden;
}
.cntArea2 .textRight .btn{
    text-align: left;
    float: right;
    margin-top: 39px;
}
.cntArea2 .textRight .btn a{
    display: block;
    text-decoration: none;
    width: 260px;
    color: #fff;
    padding: 20px 20px 19px;
    background: #ee3232;
    letter-spacing: 2px;
    position: relative;
}
.cntArea2 .textRight .btn a:before{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	width: 40px;
	height: 20px;
	background: url(../img/index/mt.png) no-repeat center right;
	    transition: all 0.3s;
}
.cntArea2 .textRight .btn a:hover:before{
    -webkit-animation: scroll 0.5s infinite alternate;
    -moz-animation: scroll 0.5s infinite alternate;
    animation: scroll 0.5s infinite alternate;
}

.cntArea2 .img {
    position: relative;
}
.cntArea2 img.homeTextRec_show {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
}
.cntArea2 img.homeTextRec_change {
    opacity: 0;
}


.cntArea3{
    text-align: center;
    overflow: hidden;
    margin-top: 141px;
}
.cntArea3 .colPost{
    width: 33.3333%;
    float: left;
}
.cntArea3 .colPost .boxContent{
    background: #ee3232;
    padding-top: 41px;
    padding-bottom: 40px;
}
.cntArea3 .colPost .boxContent .title:before{
    content: none;
}
.cntArea3 .colPost:nth-child(2){
	padding-top: 50px;
}
.cntArea3 .colPost:nth-child(2) .boxContent{
    background: #cc1b1b;
}
.cntArea3 .colPost .img{
    overflow: hidden;
}
.cntArea3 .colPost .img a img{
    transition: all 0.25s;
}
.cntArea3 .colPost .img a:hover img{
    transform: scale(1.2);
}

.cntArea3 .colPost .title a{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
}
.cntArea3 .colPost .text{
	color: #fff;
    font-size: 16px;
    margin-top: 21px;
    line-height: 1.7;
}
.cntArea3 .colPost .btn{
	margin-top: 35px;
}
.cntArea3 .colPost .btn a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background: url(../img/index/mt.png) no-repeat center right;
    padding-right: 49px;
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
    transition: all 0.25s;
}
.cntArea3 .colPost .btn a:hover{
	border-bottom: 1px solid transparent;
}
.cntArea3 .colPost:nth-child(2) .btn{
	margin-top: 31px;
}


.area2{
    background: url(../img/index/area2-bg.png) no-repeat top 0px center;
    padding: 260px 0 231px;
}

.area2.fix{
    background-attachment: fixed;
    background-position: center top;
}
.area2 .areaTop{
    overflow: hidden;
}
.area2 .areaTop .areaTitle{
    float: left;
    margin-top: 14px;
}

.area2 .areaTop .btn{
    float: right;
}
.area2 .areaTop .btn a{
    display: block;
    text-decoration: none;
    width: 260px;
    color: #fff;
    padding: 20px 20px 19px;
    background: #84b900;
    letter-spacing: 2px;
    position: relative;
}
.area2 .areaTop .btn a:before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 40px;
    height: 20px;
    background: url(../img/index/mt.png) no-repeat center right;
        transition: all 0.3s;
}
.area2 .areaTop .btn a:hover:before{
    -webkit-animation: scroll 0.5s infinite alternate;
    -moz-animation: scroll 0.5s infinite alternate;
    animation: scroll 0.5s infinite alternate;
}
.area2 .cnt2Area1{
    overflow: hidden;
    margin-top: 90px;
}
.area2 .cnt2Area1 .colLeft{
    float: left;
    width: 400px;
    border: 15px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding-top: 51px;
    padding-bottom: 36px;
    margin-right: -34px;

}
.area2 .cnt2Area1 .colLeft .text{
    color: #fff;
    margin-top: 35px;
    font-size: 16px;
    line-height: 1.8;
}
.area2 .cnt2Area1 .colLeft .btn{
    margin-top: 50px;
}
.area2 .cnt2Area1 .colLeft .btn a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background: url(../img/index/mt.png) no-repeat center right;
    padding-right: 49px;
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
    transition: all 0.25s;
}
.area2 .cnt2Area1 .colLeft .btn a:hover{
    border-bottom: 1px solid transparent;
}
.area2 .cnt2Area1 .colRight{
    float: right;
    margin-top: 130px;
    position: relative;
}
.area2 .cnt2Area1 .colRight .boxRight{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    text-align: center;
    background: rgba(60, 132, 28, 0.85);
    width: 340px;
    padding: 63px 0;
    color: #fff;
}
.area2 .cnt2Area1 .colRight .boxRight .boxTitle{
    font-weight: bold;
    font-size: 26px;
}
.area2 .cnt2Area1 .colRight .boxRight .boxText{
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.8;
}
.area2 .cnt2Area1 .colRight .boxRight .boxBtn{
    margin-top: 41px;
}
.area2 .cnt2Area1 .colRight .boxRight .boxBtn a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background: url(../img/index/mt.png) no-repeat top 3px right;
    padding-right: 23px;
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
    transition: all 0.25s;
}
.area2 .cnt2Area1 .colRight .boxRight .boxBtn a:hover{
    border-bottom: 1px solid transparent;
}

.area3{
    padding-bottom: 121px;
    position: relative;
}
.area3:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fdeaea;
    z-index: -1;
}
.area3 .cnt2Area2{
    margin-top: -200px;
    overflow: hidden;
    margin: -200px -50px 0;
    padding: 90px 50px 25px;
    text-align: center;
}
.area3 .colLeft{
    position: relative;
    border-bottom: 2px solid #ee3232;
    box-shadow: 0 0 23px 7px rgba(0, 0, 0, 0.1);
    display: inline-block;
    vertical-align: top;
    width: 450px;
    margin: 0 10px;
    text-align: left;
}
.area3 .colLeft .iconBox{
    position: absolute;
    top: -84px;
    left: 124px;
}
.area3 .colLeft .boxLeft{
    background: #fff;
    padding: 32px 32px 32px 29px;
    color: #ee3232;
    font-size: 16px;
    overflow: hidden;
}
.area3 .colLeft .boxLeft .boxText{
    float: left;
}
.area3 .colLeft .boxLeft .boxBtn{
    float: right;
    margin-top: -4px;
}
.area3 .colLeft .boxLeft .boxBtn a{
    text-decoration: none;
    color: #ee3232;
    font-size: 16px;
    background: url(../img/index/mt2.png) no-repeat top 4px right 1px;
    padding-right: 49px;
    display: inline-block;
    border-bottom: 1px solid #ee3232;
    padding-bottom: 5px;
    transition: all 0.25s;
}
.area3 .colLeft .boxLeft .boxBtn a:hover{
    border-bottom: 1px solid transparent;
}
/*.area3 .colRight{
    float: right;
    width: 100%;
    text-align: center;
}
.area3 .colRight p{
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
}
.area3 .colRight .img{
    border-bottom: 2px solid #ee3232;
    box-shadow: 0 0 23px 7px rgba(0, 0, 0, 0.1);
    width: 450px;
}
.area3 .colRight .img2{
    border-bottom: 2px solid #ee3232;
    position: relative;
    box-shadow: 0 0 23px 7px rgba(0, 0, 0, 0.1);
    width: 450px;
}
.area3 .colRight .img2 .btn{
    position: absolute;
    bottom: 40px;
    left: 31px;
}
.area3 .colRight .img2 .btn a{
    text-decoration: none;
    color: #ee3232;
    font-size: 16px;
    background: url(../img/index/mt2.png) no-repeat top 4px right 3px;
    padding-right: 49px;
    display: inline-block;
    border-bottom: 1px solid #ee3232;
    padding-bottom: 5px;
    transition: all 0.25s;
}
.area3 .colRight .img2 .btn a:hover{
    border-bottom: 1px solid transparent;
}*/



@media (max-width: 768px){
    #header .mainMenu{
        background: rgba(19, 144, 74, 0.58);
        top: 50px;
    }
    .banner{
        padding: 104px 0;
    }
    .banner .text{
        margin-left: 0;
        float: none;
        width: 82%;
        display: inline-block;
    }
    .banner .maps{
        margin-right: 0;
        float: none;
        width: 78%;
        display: inline-block;
    }
    .cntArea1{
        padding: 20px;
    }
    .cntArea1 .areaTop{
        text-align: center;
    }
    .cntArea1 .areaTop .areaTitle{
        float: none;
        width: 100%;
    }
    .cntArea1 .areaTop .btn{
        display: inline-block;
        vertical-align: top;
        float: none;
        margin-top: 20px;
        text-align: left;
    }
    .cntArea1 .postType .listPost a{
        width: 100%;
        padding: 20px;
    }
    .cntArea1 .postType .listPost{
        display: inline-block;
        vertical-align: top;
        margin-right: 0;
        width: 300px;
        margin-bottom: 25px;
    }
    .cntArea1 .areaTop .btn a{
        width: 300px;
    }
    .cntArea1 .postType .listPost .title{
        font-size: 12px;
    }
    .cntArea2{
        margin-top: 51px;
        width: 100%;
        text-align: center;
    }
    .cntArea2 .img{
        float: none;
        display: inline-block;
        vertical-align: top;
        width: 82%;
    }
    .cntArea2 .textRight{
        float: none;
        display: inline-block;
        width: 300px;
        text-align: center;
        margin-top: 34px;
    }
    .cntArea2 .textRight .btn{
        width: 100%;
    }
    .cntArea2 .textRight .btn a{
        width: 300px;
    }
    .cntArea3{
        margin-top: 60px;
    }
    .cntArea3 .colPost{
        width: 352px;
        margin-bottom: 10px;
        display: inline-block;
        float: none;
    }
    .cntArea3 .colPost:nth-child(2){
        margin-top: 0;
    }
    .cntArea3 .colPost .title a{
        font-size: 20px;
    }
    .cntArea3 .colPost .text{
        font-size: 12px;
    }
    .cntArea3 .colPost .btn,
    .cntArea3 .colPost:nth-child(2) .btn{
        margin-top: 12px;
    }
    .cntArea3 .colPost .btn a{
        font-size: 12px;
        background-size: 9px;
    }
    .area2{
        padding: 183px 0;
        background: url(../img/index/area2-bg.png) no-repeat top 0px right -471px;
        background-size: cover;
    }
    .area2 .areaTop{
        overflow: hidden;
        width: 300px;
        margin: 0 auto;
    }
    .area2 .cnt2Area1{
        margin-top: 80px;
    }
    .area2 .areaTop .areaTitle{
        float: none;
    }
    .area2 .areaTop .btn{
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .area2 .areaTop .btn a{
        width: 100%;
    }
    .area2 .cnt2Area1 .colLeft{
        width: 400px;
        margin: 0 auto;
        float: none;
    }
    .area2 .cnt2Area1 .colRight{
        float: none;
        margin-top: 60px;
    }
    .area2 .cnt2Area1 .colRight .img img{
        max-width: 100%;
        width: auto;
        left: 0px;
    }
    .area2 .cnt2Area1 .colRight .boxRight{
        width: 200px;
        padding: 24px 0;
    }
    .area2 .cnt2Area1 .colRight .boxRight .boxTitle{
        font-size: 18px;
    }
    .area2 .cnt2Area1 .colRight .boxRight .boxText{
        font-size: 12px;
    }
    .area2 .cnt2Area1 .colRight .boxRight .boxBtn{
        margin-top: 22px;
    }
    .area2 .cnt2Area1 .colRight .boxRight .boxBtn a{
        font-size: 12px;
    }
    .area3 .cnt2Area2{
        margin: -130px 0 0;
        padding-left: 0;
        text-align: center;
        padding-right: 0;
    }
    .area3 .colLeft,
    .area3 .colRight{
        width: 320px;
        float: none;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 20px;
    }
    .area3 .colLeft .iconBox{
        position: absolute;
        top: -60px;
        left: 50%;
        width: 106px;
        transform: translateX(-50%);
    }
    .area3 .colLeft .boxLeft{
        padding: 15px 10px;
        font-size: 12px;
    }
    .area3 .colLeft .boxLeft .boxBtn{
        margin-top: 0;
    }
    .area3 .colLeft .boxLeft .boxBtn a{
        font-size: 12px;
        padding-bottom: 2px;
        background-size: 9px;
    }
    .area3 .colRight{
        margin-top: 30px;
    }
    .area3 .colRight .img2 .btn{
        bottom: 15px;
    }
    .area3 .colRight .img2 .btn a{
        font-size: 12px;
        background-size: 9px;
    }

}
@media(max-width: 414px){
    .area2 .cnt2Area1 .colRight .img img{
        max-width: 450px;
        width: auto;
        position: relative;
        left: -50px;
    }
    .area2 .cnt2Area1 .colLeft{
        width: 100%;
    }
}
@media(max-width: 320px){
    #footer{
        background-size: 100% 100%;
    }
    .cntArea3 .colPost{
        width: 100%;
    }
    .cntArea1 .postType .listPost{
        width: 100%;
    }
    #footer .colLeft{
        float: none;
    }
}


/* 2019.10 */
.area3-ilb {
	display: inline-block;
}
.area3--201910 .colLeft {
	width: 326px;
	margin: 0 50px 0 0;
}
.area3--201910 .colLeft:last-child {
	margin: 0;
}
.area3--201910 .colLeft .boxLeft {
	position: relative;
	padding: 16px 10px 16px 10px;
	min-height: 90px;
}
.area3--201910 .colLeft .boxLeft .boxText {
	width: 180px;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0, -50%);
	float: none;
}
.area3--201910 .colLeft .boxLeft .boxBtn {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	margin-top: 5px;
	float: none;
}
.area3--201910 .colLeft .boxLeft .boxBtn a {
	padding-right: 29px;
	margin-left: 1em;
}
.area3--201910 .colLeft .iconBox {
	left: 95px;
}

@media (max-width: 768px){
	.area3--201910 .colLeft {
		width: 320px;
		vertical-align: top;
		margin: 0 10px 20px 10px;
	}
	.area3--201910 .colLeft .boxLeft {
		padding: 32px 32px 32px 29px;
		min-height: auto;
	}
	.area3--201910 .colLeft .boxLeft .boxText {
		width: 200px;
	}
	.area3--201910 .colLeft .boxLeft .boxBtn {
	}
	.area3--201910 .colLeft .boxLeft .boxBtn a {
	}
	.area3--201910 .colLeft .iconBox {
		width: 106px;
		position: absolute;
		top: -60px;
		left: 50%;
		transform: translate(-50%, 0);
	}
}
