/*common start*/
body,div,ul,li,a,img,p,dl,dt,dd,h1,h2,h3,h4,span,input,button,textarea,dl,dt{ margin:0; padding:0;list-style:none;text-decoration:none;border:0; list-style:none;font-family: "Raleway-Regular-2";font-weight: normal;}
body{ font-size:14px;color:#111;overflow-x: hidden;font-family: "Raleway-Regular-2";}
a img{
  border: 0;
}
em {
  font-style: normal;
}
body.head_on{overflow:hidden;}
a{text-decoration:none;color: #333;transition: all .3s;}
*{box-sizing: border-box;}
input,select,textarea{outline: none;}
.clear{ margin:0; padding:0; font-size:0; clear:both; }

@font-face {
  font-family: "Raleway-Regular-2";
  src: url("../fonts/Raleway-Regular-2.ttf") format("woff2"),
       url("../fonts/Raleway-Regular-2.ttf") format("woff"),
       url("../fonts/Raleway-Regular-2.ttf") format("truetype"),
       url("../fonts/Raleway-Regular-2.ttf") format("embedded-opentype"),
       url("../fonts/Raleway-Regular-2.ttf") format("svg");
}



.wapper{
	width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
	box-sizing: border-box;
}
@media only screen and (min-width: 1200px){
	.wapper{
		width: 1200px;
		margin: 0 auto;
	}
}

:root{
	--primary-color:#0170A7;
	--font-color:#666;
	--main-white:#fff;
}





/* 轮播图通用 */
.swiper {width: 100%;height: 100%;}
.swiper-slide
{
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img{
	width: 100%;
}

.overflow1{white-space: nowrap;text-overflow: ellipsis;overflow: hidden;width: 100%;display: block;}
.overflow2{display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.overflow3{display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}


.topbox{width: 100%;margin: 0 auto;background-color: var(--primary-color);}
.top{display: flex;align-items: center;padding: 10px 0;justify-content: space-between;}
.top a{border-right: 2px solid #fff;font-size: 12px;color: #fff;width: 50%;}
.top a:last-child{border-right: 0;}
.top a:last-child{text-align: right;}



/* 导航 */
.logo img {
    height: 75px;
    margin: 10px 0;
}
.headerbox{width: 100%;margin:  0 auto;}
.headerbox .header{display: flex;align-items: center;justify-content: space-between;}
.headerbox .header .menu ul{display: flex;flex-wrap: wrap;}
.headerbox .header .menu ul li{position: relative;padding: 35px 0;}
.headerbox .header .menu>ul>li>a{
	font-size: 16px;
    font-weight: 600;
    padding: 0 20px;
	border-right: 3px solid #0170A7;
    color: #333;
    display: flex;
    position: relative;
    text-decoration: none;
}
.headerbox .header .menu>ul>li.curr>a,.headerbox .header .menu>ul>li:hover>a{color: #0170A7;}
.headerbox .header .menu ul li:last-child a{border-right: 0;}
.headerbox .header .menu ul li .sub_menu{
	min-width: 200%;
    position: absolute;
    top: 140%;
    left: -50%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background: white;
    transition: all 400ms ease;
}
.headerbox .header .menu ul li:hover > dl {
    opacity: 1;
    visibility: visible;
    top: 100%;
	
}

.headerbox .header .menu ul li dd {
    position: relative;
    display: block;
	text-align: center;
	transition: all 400ms ease;
}
.headerbox .header .menu dl dd>.three_menu{
	min-width: 100%;
    position: absolute;
    left: 100%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background: white;
    transition: all 400ms ease;
}
.headerbox .header .menu dl dd:hover>.three_menu {
    opacity: 1;
    visibility: visible;
    top: 0px;
	
}
.headerbox .header .menu ul li dl dd a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #333;
    text-align: left;
    display: block;
    padding: 15px 25px 15px 25px;
    position: relative;
    text-decoration: none;
    outline: none;
	text-align: center;
    text-transform: none;
    transition: all 400ms ease;
    border-bottom: 1px solid #f4f4f4;
}
.headerbox .header .menu ul li dl dd:hover{
    background-color: var(--primary-color);
}
.headerbox .header .menu ul li dl dd:hover>a{color: #fff;}





/*mMenu*/
.m_header{width: 100%;}
.sp_header{height:70px;overflow:hidden;background:var(--main-white);position:fixed;z-index:999;width:100%;display: none;top: 0;align-items: center;justify-content: space-between;}
.sp_logo{height:70px;display: flex;justify-content: center;align-items: center;padding-left: 10px;}
.sp_logo img{margin:auto;max-height:50px;}
.sp_nav{width:50px;position:relative;cursor:pointer;height:30px;}
/* 横杠 */
.sp_nav 
span{display:block;background:#000000;width:30px;height:3px;position:absolute;left:10px;transition:all ease 0.35s}
.sp_nav span:nth-of-type(1){top:0px}
.sp_nav span:nth-of-type(2){top:10px}
.sp_nav span:nth-of-type(3){top:20px}
.sp_nav_se span:nth-of-type(1){top:10px;transform:rotate(45deg)}
.sp_nav_se span:nth-of-type(2){width:0}
.sp_nav_se span:nth-of-type(3){top:10px;transform:rotate(-45deg)}
.sjj_nav{position:fixed;z-index:9999;background:var(--main-white);width:100%;height:calc(100% - 70px);font-size:14px;line-height:40px;top:70px;left:0;overflow:auto;overflow-x:hidden;transition:top ease 0.35s;display: none;transition:all ease 0.35s}
.nav_show{display: block;}
.sjj_nav ul li i{position:absolute;top:5px;right:0px;height:30px;padding:0px 7px 0 7px;}
.sjj_nav ul li i svg{transform:rotate(-90deg);transition:all ease 0.35s}
.sjj_nav ul li .sjj_nav_i_se svg{transform:rotate(0deg)}
.sjj_nav ul li{border-bottom: 1px dashed #ddd;;position:relative;line-height:45px;font-size:16px}
.sjj_nav>ul >li:last-child{border-bottom: 1px dashed #ddd;}
.sjj_nav ul li ul{display:none}
.sjj_nav ul li a{color:var(--font-color);width:100%;padding: 0 20px;display: block;box-sizing: border-box;}
.sjj_nav ul li a:hover{color: #000000;}
.sjj_nav ul li ul li a{color:var(--font-color);display:block;text-align:left;}
.sjj_nav ul li i svg{width:25px;height:25px;fill:#333;}
.sjj_nav ul li .sjj_nav_i_se svg{fill:#333;}
.sjj_nav ul li ul li>ul{margin-left:10px}
.sjj_nav ul li ul li{border-top: none;}
.sjj_nav ul li ul li a{padding: 0 30px;}








/* bannerbox */
.bannerbox{width: 100%;margin: 0 auto;display: flex;align-items: center;justify-content: center;height: 660px;background-position: center;background-size: cover;background-repeat: no-repeat;}
.bannerbox .textbox{text-align: center;}
.bannerbox .textbox p{font-size: 14px;color: #fff;margin-bottom: 30px;}
.bannerbox .textbox h1{font-size: 30px;color: #fff;font-style: italic;}


.pd50{padding: 50px 0;}
.btn{display: inline-block;padding: 24px 66px;background-color: #F9A392;font-size: 14px;color: #fff;margin-bottom: 30px;transition: all 0.3s;border: 2px solid transparent;}
.btn:hover{color: #F9A392;background-color: #fff;}
.btn1:hover{border: 2px solid #F9A392;background-color: transparent;color: #F9A392;}

/* footer */
.footerbox{width: 100%;margin: 0 auto;}
.footer{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.f_logo{width: 33.33%;font-size: 0;}
    .f_logo img {
        max-width: 100%;
        width: auto;
        padding-right: 40px;
    }
.footer .desc{width: 39%;}
.footer .desc h3{font-size: 17px;color: #fff;margin-bottom: 20px;}
.footer .desc p{font-size: 14px;color: #fff;margin-bottom: 10px;}
.footer .desc a{font-size: 14px;color: #E4DDC2;margin-bottom: 10px;}
.f_img{width: 26.9%;}
.f_img ul{display: flex;flex-wrap: wrap;}
.f_img ul li{width: 33.33%;padding: 0 1px;margin-bottom: 2px;}
.f_img ul li a{display: block;width: 100%;font-size: 0;position: relative;}
.f_img ul li a img{width: 100%;}
.f_img ul li a:after{background-color: rgba(0,0,0,0.5);transition: all 0.3s;position: absolute;left: 0;top: 0;width: 100%;height: 100%;content: "";opacity: 0;visibility: hidden;}
.f_img ul li:hover a:after{opacity: 1;visibility: visible;}


/* 通用内页 */
.inbannerbox{position: relative;width: 100%;margin: 0 auto;font-size: 0;}
.inbannerbox>img{width: 100%;}
.inbannerbox .text{position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);text-align: center;width: 100%;max-width: 80%;}
.inbannerbox .text h1{font-size: 50px;color: #fff;margin-bottom: 10px;}
.inbannerbox .text h3{font-size: 45px;color: #fff;margin-bottom: 10px;font-style: italic;}
.inbannerbox .text p{font-size: 20px;color: #fff;max-width: 800px;margin: 0 auto;}
.inbannerbox .s_menu{text-align: center;font-size: 14px;color: #fff;font-style: italic;}
.inbannerbox .s_menu a{font-size: 14px;color: #fff;font-style: italic;}
.insidebox{width: 100%;margin: 0 auto;}
.insidebox .inside{width: 100%;box-sizing: border-box;}

.out_top{position: fixed;right: 30px;bottom: 30px;width: 40px;height: 40px;background-color: #3a4664;font-size: 19px;color: #fff;display: flex;align-items: center;justify-content: center;z-index: 99;border-radius: 50%;}
/* ================首页样式======================= */
.index1box{width: 100%;margin: 0 auto;}
.index1{width: 100%;margin: 0 auto;}
.i1_title{width: 100%;text-align: center;}
.i1_title h1{font-size: 35px;color: #F9A392;margin-bottom: 25px;font-style: italic;}
.i1_content{width: 100%;margin: 0 auto;}
.i1_content ul{display: flex;flex-wrap: wrap;}
.i1_content ul li{text-align: center;width: 49%;margin-right: 1%;margin-bottom: 25px;}
.i1_content ul li:nth-child(3n){margin-right: 0;}
.i1_content ul li h1{padding-bottom: 10px;margin-bottom: 20px;font-size: 22px;color: #323232;position: relative;}
.i1_content ul li h1:after{width: 60px;height: 2px;background-color: #B79D7C;content: "";left: 50%;transform: translateX(-50%);bottom: 0;position: absolute;}
.i1_content ul li p{font-size: 17px;color: #898989;}



.index2box{width: 100%;margin: 0 auto;margin-bottom: 100px;}
.index2{width: 100%;margin: 0 auto;}
.main_title{width: 100%;text-align: center;margin-bottom: 55px;}
.main_title h3{font-size: 30px;color: #F9A392;font-style: italic;margin-bottom: 10px;}
.main_title h1{font-size: 54px;color: #323232;letter-spacing: 5px;margin-bottom: 25px;}
.main_title span{font-size: 0;}
.main_title span img{max-width: 100%;width: auto;}
.main_title p{font-size: 17px;color: #757575;}

.i2_content{width: 100%;margin: 0 auto;}
.i2_content ul{display: flex;flex-wrap: wrap;}
.i2_content ul li{width: 31%;margin-right: 2%;margin-bottom: 20px;position: relative;}
.i2_content ul li .imgbox{width: 100%;font-size: 0;}
.i2_content ul li .imgbox img{width: 100%; height:400px; object-fit:contain;}
.i2_content ul li .textbox{position: absolute;max-width: 80%;left: 50%;transform: translateX(-50%);bottom: -80px;background-color: #fff;z-index: 2;width: 100%;text-align: center;}
.i2_content ul li .textbox  .inner{padding: 20px;/*min-height: 150px;*/}
.i2_content ul li .textbox  .inner h1{font-size: 30px;color: #F9A392;font-style: italic;}
.i2_content ul li .textbox  .inner h3{font-size: 20px;color: #323232;}
.i2_content ul li .textbox .more{width: 100%;background-color: #F9A392;color: #fff;text-align: center;font-size: 16px;color: #fff;padding: 19px 20px;display: inline-block;}
.i2_content ul li .textbox .more:hover{background-color: #8ED4CC;}
.i2_content ul li:nth-child(2n) .textbox .more{background-color: #8ED4CC;}
.i2_content ul li:nth-child(2n) .textbox .more:hover{background-color: #F9A392;}





.index3box{width: 100%;margin: 0 auto;}
.index3{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: flex-start;}
.i3_left{width: 50%;font-size: 0;}
.i3_left img{width: 100%;}
.i3_right{width: 50%;}
.i3_right ul{display: flex;flex-wrap: wrap;}
.i3_right ul li{width: 50%;border-width: 0px 1px 1px 0px;border-color: #F0F0F0;padding: 69px 35px 84px 35px;border-style: solid;}
.i3_right ul li a{display: flex;flex-direction: column;align-items: center;justify-content: center;}
.i3_right ul li a .icon{font-size: 0;}
.i3_right ul li a .icon img{max-width: 100%;width: auto;}
.i3_right ul li a h3{position: relative;font-size: 28px;color: #323232;text-align: center;padding-bottom: 10px;}
.i3_right ul li a h3:after{position: absolute;left: 50%;transform: translateX(-50%);bottom: 0;content: "";width: 60px;height: 2px;background-color: #F0F0F0;}


.index4box{width: 100%;margin: 0 auto;margin: 100px 0;}
.index4{width: 100%;margin: 0 auto;padding: 100px 0;background-color: #F9A392;text-align: center;}
.index4 h1{font-size: 30px;color: #fff;font-style: italic;}
.index4 h2{font-size: 37px;color: #fff;margin-bottom: 20px;}

.i4_btn{border: 2px solid #fff;background-color: transparent;padding: 14px 28px 11px 28px;}
.i4_btn:hover{background-color: #fff;color: #F9A392;}




.index5box{width: 100%;margin: 0 auto;margin-bottom: 124px;}
.index5{width: 100%;display: flex;align-items: center;}
.i5_left{display: flex;align-items: center;width: 70%;justify-content: space-between;}
.i5_left .textbox{width: 30%;}
.i5_left .textbox h3{font-size: 28px;color: #323232;letter-spacing: 3px;margin-bottom: 50px;}
.i5_left .textbox ul{margin-bottom: 40px;}
.i5_left .textbox ul li{position: relative;font-size: 15px;color: #757575;padding-left: 10px;}
.i5_left .textbox ul li:before{width: 4px;height: 4px;background-color: #F9A392;border-radius: 50%;content: "";position: absolute;left: 0;top: 10px;}
.i5_btn{border: 2px solid #ededed;color: #F9A392;background-color: transparent;padding: 12px 33px;}
.i5_btn:hover{background-color: #F9A392;color: #fff;}
.i5_left .imgbox{width: 65%;font-size: 0;}
.i5_left .imgbox img{width: 100%;}


.i5_right{height: 359px;width: 25%;}
.i5_right .inner{width: 100%;height: 100%;position: relative;background-color: #fff;position: relative;display: flex;align-items: center;justify-content: center;margin-left: -65px;padding: 50px;}
.i5_right .num{font-size: 188px;color: #F7F7F7;position: absolute;top: 0;right: 0;z-index: 2;}
.i5_right h3{font-size: 28px;color: #323232;position: relative;z-index: 4;}

.index6box{width: 100%;margin: 0 auto;background-position: center;background-size: cover;background-repeat: no-repeat;}
.index6{width: 100%;margin: 0 auto;display: flex;justify-content: space-between;}
.index6 .s_list li{padding: 10px 0;border-bottom: 1px solid #fff;}
.index6 .s_list li .text {color: #fff;}
.index6 .s_list li .money {color: #fff;}

.i6_left{width: 48%;padding: 59px 67px 67px 70px;background-color: #8ED4CC;}
.i6_left h1{font-size: 37px;color: #fff;margin-bottom: 20px;}
.i6_left .item{margin-bottom: 30px;}
.i6_left .item h3{text-align: center;margin-bottom: 30px;font-size: 18px;color: #B79D7C;letter-spacing: 4px;}

.i6_right{width: 48%;background-color: #8ED4CC;padding: 59px 67px 67px 70px;}
.i6_right h1{font-size: 37px;color: #fff;margin-bottom: 20px;}
.i6_right p{font-size: 17px;color: #fff;}
.i6_list{width: 100%;margin-bottom: 30px;margin-top: 33px;}
.i6_list ul li{width: 100%;position: relative;padding: 10px 0;border-bottom: 1px solid #fff;font-size: 17px;color: #fff;font-style: italic;}

.i6_btn{border: 2px solid #fff;background-color: transparent;padding: 14px 28px 11px 28px;}
.i6_btn:hover{background-color: #fff;color: #8ED4CC;}


.index7box{width: 100%;margin: 0 auto;background-position: center;background-repeat: no-repeat;background-size: cover;position: relative;}
.index7box:after{position: absolute;left: 0;top: 0;width: 100%;height: 100%;background-color: rgb(0, 0, 0,0.45);content: "";z-index: 1;}
.index7{width: 100%;margin: 0 auto;position: relative;z-index: 2;height: 490px;display: flex;align-items: center;justify-content: center;text-align: center;}
.index7 h1{font-size: 35px;color: #F9A392;font-style: italic;margin-bottom: 10px;}
.index7 h2{font-size: 40px;color: #fff;margin-bottom: 20px;}
.index7 p{font-size: 17px;color: #fff;margin-bottom: 20px;}




/*  */
.gallerybox{width: 100%;margin: 0 auto;}
.gallery{width: 100%;margin: 0 auto;}
.g_title{width: 100%;text-align: center;margin-bottom: 60px;}
.g_title h3{font-size: 30px;color: #8ED4CC;margin-bottom: 10px;font-style: italic;margin-bottom: 20px;}
.g_title h1{font-size: 37px;color: #323232;}

.gallery_content{width: 100%;margin: 0 auto;}
.gallery_content ul{display: flex;flex-wrap: wrap;}
.gallery_content ul li{width: 23.5%;margin-right: 2%;margin-bottom: 20px;}
.gallery_content ul li:nth-child(4n){margin-right: 0;}
.gallery_content ul li a{display: block;width: 100%;font-size: 0;position: relative;overflow: hidden;}
.gallery_content ul li a:before{content: "";position: absolute;left: 0;top: 0;width: 100%;height: 100%;background-color: rgb(0, 0, 0,0.6);opacity: 0;visibility: hidden;z-index: 2;transition: all 0.3s;}
.gallery_content ul li:hover a:before{opacity: 1;visibility: visible;}
    .gallery_content ul li a img {
        width: 100%;
        transition: all 0.3s;
        height: 270px;
        object-fit: cover;
    }
.gallery_content ul li:hover a img{transform: scale(1.1);}



/*  */
.contact1box{width: 100%;margin: 0 auto;}
.contact1{width: 100%;margin: 0 auto;}
.c1_title{width: 100%;text-align: center;margin-bottom: 50px;}
.c1_title h3{font-size: 30px;color: #F9A392;margin-bottom: 10px;font-style: italic;}
.c1_title h1{font-size: 37px;color: #323232;letter-spacing: 5px;}

.contact1_content{width: 100%;margin: 0 auto;display: flex;justify-content: space-between;flex-wrap: wrap;margin-bottom: 70px;}
.contact1_content .item{width: 48%;text-align: center;}
.contact1_content .item h3{font-size: 17px;color: #323232;letter-spacing: 1.35px;margin-bottom: 40px;}
.contact1_content .item .desc{font-size: 17px;color: #757575;font-weight: 400;line-height: 30px;}
.contact1_content .item .desc a{color: #757575;text-decoration: underline;display: block;}

.c1_img{width: 100%;font-size: 0;}
.c1_img img{width: 100%;border: 2px solid #EDEDED;}


.contact2box{width: 100%;margin: 0 auto;padding: 121px 0px 130px 0px;}
.contact2{width: 100%;margin: 0 auto;}
.contact2 h1{font-size:28px;color: #323232;letter-spacing: 3px;margin-bottom: 50px;text-align: center;}

.contact2 .form{width: 100%;max-width: 770px;margin: 0 auto;}
.contact2 .form ul{display: flex;flex-wrap: wrap;}
.contact2 .form ul li{width: 100%;margin-bottom: 10px;}
.contact2 .form ul li .c_text{border: 2px solid #EDEDED;width: 100%;padding: 6px 16px;background-color: #fff;font-size: 16px;color: #333;}
.contact2 .form ul li .c_btn{padding: 19px 29px 18px 29px;background-color: #8ED4CC;font-size: 16px;color: #fff;display: inline-block;}
.contact2 .form ul li textarea{border: 2px solid #EDEDED;width: 100%;padding: 6px 16px;background-color: #fff;font-size: 16px;color: #333;}


/*  */
.r_title{width: 100%;text-align: center;margin-bottom: 55px;}
.r_title h3{font-size: 30px;color: #F9A392;font-style: italic;margin-bottom: 10px;}
.r_title h1{font-size: 37px;color: #323232;letter-spacing: 5px;margin-bottom: 25px;}
.r_title span{font-size: 0;}
.r_title span img{max-width: 100%;width: auto;}
.r_title p{font-size: 17px;color: #323232;}


.reviews1box{width: 100%;margin: 0 auto;padding: 100px 0;}
.reviews1{width: 100%;margin: 0 auto;}
.reviews1 .r_img{width: 100%;display: flex;align-items: center;justify-content: center;}
.reviews1 .r_img .img{font-size: 0;margin-right: 20px;}
.reviews1 .r_img .img img{width: 103px;height: 103px;border: 3px solid #ededed;border-radius: 50%;}
.reviews1 .r_img .text{text-align: left;}
.reviews1 .r_img .text h3{font-size: 17px;color: #323232;letter-spacing: 1.35px;}
.reviews1 .r_img .text p{font-size: 14px;color: #9A9A9A;font-style: italic;text-align: left;}



/*  */
.service1box{width: 100%;margin: 0 auto;background-repeat: no-repeat;background-size: 44% auto;background-position: 100% 100%;padding: 100px 0;}
.service1{width: 100%;margin: 0 auto;}
.s1_left{width: 70%;display: flex;flex-wrap: wrap;justify-content: space-between;}
.s1_left .item{width: 48%;margin-bottom: 20px;}
.s1_left .item h3{text-align: center;margin-bottom: 30px;font-size: 18px;color: #B79D7C;letter-spacing: 4px;}




.service2box{width: 100%;margin: 0 auto;background-color: #A66415;padding: 80px 0;}
.service2{width: 100%;margin: 0 auto;}
.service2 ul{display: flex;flex-wrap: wrap;}
.service2 ul li{width: 25%;}
.service2 ul li .icon{font-size: 0;display: flex;align-items: center;justify-content: center;width: 100%;margin-bottom: 20px;}
.service2 ul li .icon img{max-width: 100%;width: auto;}
.service2 ul li .text{width: 100%;text-align: center;}
.service2 ul li .text h1{font-size: 54px;color: #fff;margin-bottom: 10px;}
.service2 ul li .text p{font-size: 11px;color: #fff;}









.service3box{width: 100%;margin: 0 auto;padding: 100px 0;}
.service3{width: 100%;margin: 0 auto;display: flex;align-items: center;justify-content: space-between;}
.s3_left{width: 48%;}
.s3_right{width: 48%;background-color: #E4DDC2;padding: 50px;}
.s3_left h3{text-align: center;margin-bottom: 30px;font-size: 18px;color: #B79D7C;letter-spacing: 4px;}
.s3_right .tit{text-align: center;margin-bottom: 30px;}
.s3_right .tit h3{text-align: center;font-size: 18px;color: #B79D7C;letter-spacing: 4px;margin-bottom: 10px;}
.s3_right .tit span{font-size: 0;}




.service4box{width: 100%;margin: 0 auto;padding: 100px 0;}
.service4{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
.s4_left{width: 30%;font-size: 0;}
.s4_left img{width: 100%;}
.s4_right{width: 65%;}
.s4_right h3{text-align: center;margin-bottom: 30px;font-size: 18px;color: #B79D7C;letter-spacing: 4px;}
.s_list{width: 100%;}
.s_list li{width: 100%;margin-bottom: 10px;display: flex;align-items: center;}
.s_list li .text{font-size: 18px;color: #4B4F58;max-width: 80%;}
.s_list li .line{border: 1px dotted #B79D7C80;display: inline-block;flex: 1;}
.s_list li .money{font-size: 21px;color: #B79D7C;font-weight: bold;}




.service5box{width: 100%;margin: 0 auto;background-color: #B79D7C;}
.service5{width: 100%;margin: 0 auto;height: 260px;display: flex;flex-direction: column;align-items: center;justify-content: center;}
.service5 h3{font-size: 28px;color: #fff;margin-bottom: 10px;text-align: center;}
.service5 p{font-size: 17px;color: #fff;margin-bottom: 20px;}
.service5 .s_btn{display: inline-block;padding: 13px 37px;border: 1px solid #fff;font-size: 12px;color: #fff;}













@media only screen and (max-width: 980px) {
	header{display: none;}
	.sp_header{ display:flex;}
	.bannerbox{margin-top: 70px;}
    .bannerbox .textbox{margin-top:60%;}
	.inbannerbox{margin-top: 70px;}
	.inbannerbox .text h1 {font-size: 30px;}
	.pd50{padding: 25px 0;}
	.f_logo {width: 100%;margin-bottom: 20px;}
	.footer .desc {width: 100%;margin-bottom: 20px;}
	.f_img {width: 100%;}	
	.btn {padding: 11px 18px 10px 18px;}
	.main_title h3 {font-size: 25px;}
	.main_title h1 {font-size: 30px;}
	.main_title p {font-size: 15px;}
	.gallery_content ul li{width: 49%;}
	.gallery_content ul li:nth-child(2n){margin-right: 0;}
	.contact1_content .item{width: 100%;margin-bottom: 20px;}
	.c1_title h3 {font-size: 25px;}
	.c1_title h1 {font-size: 30px;}
	.r_title h3 {font-size: 25px;}
	.r_title h1 {font-size: 30px;}
	.r_title p {font-size: 15px;}
	.index7 h1 {font-size: 25px;}
	.index7 h2 {font-size: 30px;}
	.index6 {padding: 20px 0;}
	.i6_right {width: 100%;padding: 20px;}
	.i6_right h1 {font-size: 25px;margin-bottom: 10px;}
	.i6_list {margin: 10px 0;}
	.index5 {flex-wrap: wrap;}
	.i5_left {width: 100%;flex-wrap: wrap;}
	.i5_left .textbox {width: 100%;margin-bottom: 20px;}
	.i5_left .imgbox{width: 100%;margin-bottom: 20px;}
	.i5_right{width: 100%;height: auto;}
	.i5_right .inner {margin-left: 0;padding: 10px;}
	.i5_right .inner span{font-size: 100px;top: -42px;right: 100px;}
	.i5_right h3 {font-size: 24px;}
	.index4 h1 {font-size: 20px;}
	.index4 h2 {font-size: 30px;}
	.i3_left {width: 100%;}
	.i3_right{width: 100%;}
	.i3_right ul li a h3 {font-size: 25px;}
	.i2_content ul li {width: 49%;}
	.i2_content ul li:nth-child(2n){margin-right: 0 !important;}
	.i2_content ul li:nth-child(3n){margin-right: 2%;}
	.i2_content ul li .textbox .inner h1 {font-size: 20px;}
	.i2_content ul li .textbox .inner h3 {font-size: 18px;}
	.i2_content ul li .textbox .inner {min-height: 80px;}
	.i2_content ul li .textbox .more {padding: 10px 15px;}
	.i1_content ul li {width: 100%;margin-right: 0 !important;}
	.service2 ul li{width: 50%;margin-bottom: 20px;}
	.s1_left{width:70%;}
	.s1_left .item{width: 100%;}
	.service3{flex-wrap: wrap;}
	.s3_left{width: 100%;margin-bottom: 20px;}
	.s3_right{width: 100%;}
	.s4_left{width: 100%;margin-bottom: 20px;}
	.s4_left img{max-width: 100%;width: auto;}
	.s4_right{width: 100%;}

}


@media only screen and (max-width: 680px) {
	.gallery_content ul li{width: 100%;margin-right: 0 !important;}
	.i3_right ul li a h3 {font-size: 20px;}
	.i2_content ul li {width: 100%;margin-right: 0 !important;margin-bottom: 100px;}
	.i3_right ul li {width: 100%;padding: 20px;}
	.service2 ul li{width: 100%;}
}
