/*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: normal;font-weight: normal;}
body{ font-size:14px;color:#111;overflow-x: hidden;}
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; }

.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: #c6b477;
    --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%;
}


@keyframes anim-roll-down {
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        -ms-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    51% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        -ms-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}



.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;}

header{width: 100%;margin: 0 auto;}
.topbox{width: 100%;margin: 0 auto;padding-left: 10px;padding-right: 10px;line-height: 28px;background-color: #f2f0e8;}
.top{width: 100%;margin: 0 auto;display: flex;align-items: center;justify-content: space-between;}
.top p{padding: 0 15px;font-size: 14px;color: #808080;}
.top p i{font-size: 16px;margin-right: 10px;color: #c6b477;}
.top p a{font-size: 14px;color: #c6b477;display: inline-block;margin-left: 6px;}
.top p a:hover{color: #c87d69;}
.headerbox{width: 100%;margin:  0 auto;padding: 10px;background-color: #fff;}
.headerbox .header{display: flex;align-items: center;justify-content: space-between;height: 100px;padding-right: 5%;}
    .headerbox .header .logo img {
        height: 88px;
    }
    .h_right {
        display: flex;
        align-items: center;
    }
.h_lan{}
.h_lan a{padding: 18px 15px;display: inline-block;font-size: 22px;font-weight: 600;color: #808080;}
.h_lan a:hover{color: #c6b477;}
.headerbox .header .menu ul li{
	position: relative;
	display: inline-block;
}
.headerbox .header .menu>ul>li>a{
	font-size: 22px;
    line-height: 1;
    color: #808080;
	font-weight: 600;
	padding: 18px 15px;
    display: block;
}
.headerbox .header .menu>ul>li.curr>a,.headerbox .header .menu>ul>li:hover>a{color:#c6b477;}
.headerbox .header .menu>ul>li:hover>a{animation: anim-roll-down 0.3s forwards;transition-delay: 0.3s;}

.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: 20px;
    /*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;}

.h_btn{margin-left: 20px;}
.h_btn a{display: inline-block;padding: 16px 28px 17px;background-color: #c6b477;font-size: 22px;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_right{display: flex;align-items: center;}
.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;}


.plr15{padding-left: 15px;padding-right: 15px;}
.ptm50{padding-top: 50px;padding-bottom: 50px;}
.bg{background-repeat: no-repeat;background-size: cover;background-position: center;}
.img_list2{width: 100%;margin: 0 auto;}
.img_list2 ul{display: flex;flex-wrap: wrap;}
.img_list2 ul li{width: 50%;font-size: 0;padding: 0 15px;}
.img_list2 ul li img{width: 100%;}

.img_list3{width: 100%;margin: 0 auto;}
.img_list3 ul{display: flex;flex-wrap: wrap;}
.img_list3 ul li{width: 33.33%;font-size: 0;padding: 0 15px;}
.img_list3 ul li img{width: 100%;}

.img_list4{width: 100%;margin: 0 auto;}
.img_list4 ul{display: flex;flex-wrap: wrap;}
.img_list4 ul li{width: 25%;font-size: 0;padding: 0 15px;}
.img_list4 ul li img{width: 100%;}





/* bannerbox */
.bannerbox{width: 100%;}
.bannerbox .mySwiper1{width: 100%;}
.bannerbox .mySwiper1 .swiper-slide{font-size: 0;width: 100%;}
.bannerbox .mySwiper1 .swiper-slide img{width: 100%;}

.prev_btn,.next_btn{font-size: 20px;position: absolute;top: 50%;z-index: 9;line-height: 60px;height: 66px;width: 62px;text-align: center;transform: translateY(-50%);vertical-align: middle;cursor: pointer;color: white;background: #49474c;border: 3px solid transparent;transition: all 0.5s;}
.prev_btn:hover,.next_btn:hover{border-color: #fff;}
.prev_btn {
    display: none;
    left: 40px;
}
.next_btn {
    display: none;
    right: 40px;
}
.mySwiper1 .swiper-pagination-bullet {font-size: 0px;width: 14px;height: 14px;background-color: rgba(0,0,0,0.2);}
.mySwiper1 .swiper-pagination-bullet-active{background: var(--primary-color);}



/* footer */
.footerbox{width: 100%;margin: 0 auto;}
.footer {
    width: 100%;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.f_menu{/*width: 30%;*/}
.f_menu h3{font-size: 24px;color: #fff;margin-bottom: 21px;font-weight: 400;}
    .f_menu ul li {
        line-height: 1.5;
    }
.f_menu ul li a{font-size: 18px;color: #9d9c99;}
.f_desc {
    line-height: 1.5;
    width: 38%;
    font-size: 18px;
    color: #9d9c99;
}
.f_bot{width: 100%;margin: 0 auto;padding-top: 28px;padding-bottom: 46px;}
.f_bot p{font-size: 20px;color: #9d9c99;}
    .f_bot p a {
        font-size: 20px;
        color: #9d9c99;
    }





/* 通用内页 */
.pd50{padding: 50px 0;}
.inbannerbox{position: relative;width: 100%;margin: 0 auto;font-size: 0;}
.inbannerbox img{width: 100%;}
.insidebox{width: 100%;margin: 0 auto;}
.insidebox .inside{width: 100%;box-sizing: border-box;}


/* ================首页样式========================= */
.index1box{width: 100%;margin: 0 auto;padding-top: 132px;padding-bottom: 80px;}
/* .index1{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.i1_left{width: 48%;}
.i1_right{width: 50%;}
.i1_left h3{font-size: 30px;color: #c6b477;font-weight: bold;}
.i1_left h1{margin-top: 8px;font-size: 29px;color: #313335;line-height: 36px;}
.i1_left .desc {
    overflow: auto;
    height: 320px;
    position: relative;
    padding-left: 25px;
    border-left: 2px solid #c6b477;
    margin-top: 30px;
}
.i1_left .desc p{font-size: 16px;color: #808080;line-height: 40px;}
.i1_right a{display: block;width: 100%;font-size: 0;}
.i1_right a img{width: 100%;} */
.index1{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;padding: 0 50px;}
.i1_left{width: 49%;}
.i1_right{width: 49%;}
.i1_left h1{font-size: 48px;color: #313335;position: relative;}
.i1_left h1:before{content: "";/*width: 2px;background-color: #313335;*/position: absolute;left: 0;top: 10px;height: 40px;}
.i1_left .desc{position: relative;margin-top: 20px;}
    .i1_left .desc p {
        text-indent: 2em;
        font-size: 24px;
        color: #313335;
        line-height: 45px;
    }
.i1_right a{display: block;width: 100%;font-size: 0;}
.i1_right a img{width: 100%;}



.index2box{width: 100%;margin: 0 auto;}
.index2box ul{display: flex;flex-wrap: wrap;}
.index2box ul li{padding: 121.8px 117.6px 112px 117.6px;width: 25%;background-color: #f3f0e9;}
.index2box ul li:nth-child(2n){background-color: #faf9f5;}
.index2box ul li h1{font-size: 75px;color: #c6b477;font-weight: 400;position: relative;}
.index2box ul li h1 span{width: 62px;height: 2px;background-color: #c6b477;position: absolute;top: 50%;transform: translateY(-50%);left:40%;}
.index2box ul li h3{font-size: 24px;color: #313335;font-weight: 400;}
.index2box .imgbox{width: 100%;font-size: 0;position: relative;}
    .index2box .imgbox img {
        object-fit: cover;
        height: 480px;
        width: 100%;
    }
    .index2box .imgbox .text {
        
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        right: 50%;
    }
.index2box .imgbox .text h3{font-size: 48px;color: #fff;}
.index2box .imgbox .text h1{font-size: 24px;margin-top: 13px;color: #fff;}


.index3box {
    display: none;
    width: 100%;
    margin: 0 auto;
    padding-top: 150px;
    padding-bottom: 135px;
}
.index3{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.i3_left{width: 40%;}
.i3_right{width: 50%;}
.i3_left h3{font-size: 48px;color: #c6b477;font-weight: bold;}
.i3_left h1{margin-top: 8px;font-size: 29px;color: #313335;line-height: 36px;}
.i3_left .desc{margin-top: 45px;}
.i3_left .desc p{font-size: 24px;color: #808080;line-height: 34px;}
.i3_right ul li{width: 100%;display: flex;align-items: center;justify-content: space-between;padding: 10px 0;border-bottom: 1px solid #c6b477;}
.i3_right ul li:last-child{border-bottom: 0;}
.i3_right ul li .icon{font-size: 0;width: 80px;height: 80px;margin-right: 40px;}
.i3_right ul li .icon img{width: 100%;height: 100%;}
.i3_right ul li .text{width: 75%;font-size: 19.6px;color: #808080;}
.i3_right ul li .num{font-size: 47px;color: #c6b477;}


.index4box {
    display: none;
    width: 100%;
    margin: 0 auto;
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #f2f0e8;
}
.i4_left{width: 50%;padding-left: 19%;padding-right: 80px;padding-top: 10%;}
.i4_right{width: 50%;font-size: 0;}
.i4_left h1{position: relative;padding-top: 20px;font-size: 30px;color: #313335;font-weight: 400;line-height: 40px;margin-bottom: 30px;font-weight: 300;}
.i4_left h1:before{width: 62px;height: 2px;background-color: #c6b477;content: "";position: absolute;left: 0;top: 0;}
.i4_left .tip{display: block;font-size: 14px;color: #808080;}
.i4_right img{width: 100%;}



.index5box{width: 100%;margin: 0 auto;padding-top: 120px;}
.index5{width: 100%;margin: 0 auto;}
.i5_tit{width: 100%;text-align: center;margin-bottom: 80px;}
.i5_tit h1{font-size: 48px;color: #313335;font-weight: 400;}
.i5_content{width: 100%;margin: 0 auto;}
.i5_content ul{display: flex;flex-wrap: wrap;}
.i5_content ul li{width: 33.33%;text-align: center;border-right: 1px solid #f2f0e8;display: flex;flex-direction: column;align-items: center;justify-content: center;padding-bottom: 100px;}
.i5_content ul li:nth-child(3n){border-right: 0;}
.i5_content ul li .icon{width: 107px;height: 107px;background: #c6b477;border-radius: 50%;display: flex;align-items: center;justify-content: center;border: 2px solid #c6b477;transition: all 0.5s;}
.i5_content ul li:hover .icon{background-color: #fff;}
    .i5_content ul li .icon img {
        width: 60%;
        filter: brightness(0%) contrast(200%) invert(100%) opacity(100%);
        transition: all 0.5s;
    }
.i5_content ul li .icon:hover img{filter: none;}
.i5_content ul li .text{padding-top: 45px;}
.i5_content ul li .text h3{font-size: 24px;color: #313335;padding-bottom: 20px;position: relative;display: inline-block;}
.i5_content ul li .text h3:after{position: absolute;width: 100%;bottom: 0;left: 0;height: 2px;background-color: #c6b477;content: "";}



.index6box{width: 100%;position: relative;margin: 0 auto;height: 630px;background-repeat: no-repeat;background-size: cover;background-position: center;}
.index6box:after{width: 100%;height: 100%;background-color: rgb(0, 0, 0,0.5);content: "";position: absolute;left: 0;top: 0;}
.index6box .text{position: absolute;top: 50%;transform: translateY(-50%);z-index: 2;right: 15%;max-width: 25%;}
.index6box .text h3{font-size: 48px;color: #fff;}
.index6box .text p{font-size: 24px;margin-top: 13px;color: #fff;}



.index7box{width: 100%;margin: 0 auto;background-color: #c6b477;padding: 100px 0;}
.index7{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.index7 h1{width: 50%;font-size: 48px;color: #fff;font-weight: 400;}
.index7 .i7_input{width: 50%;display: flex;align-items: center;justify-content: center;}
.index7 .i7_input .inner{background-color: #fff;position: relative;width: 470px;padding: 20px;display: flex;align-items: center;}
.index7 .i7_input .inner .i7_text{width: 80%;}
.index7 .i7_input .inner .i7_btn{padding: 10px 38px;background-color: #4d4a51;font-size: 18px;color: #fff;}


.index8box{width: 100%;margin: 0 auto;}
.index8{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.i8_left{width: 50%;padding: 100px 90px;}
.i8_right{width: 50%;font-size: 0;}
.i8_right img{width: 100%;}
.i8_left h3{font-size: 21px;color: #c6b477;font-weight: bold;}
.i8_left h1{margin-top: 13px;font-size: 48px;color: #313335;}



/*  */
.about1box{width: 100%;margin: 0 auto;padding-top: 150px;}
.about1{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;max-width: 90%;margin-bottom: 140px;align-items: center;}
.a1_left{width: 45%;}
.a1_right{width: 50%;}
.a1_left h3{font-size: 44px;margin-bottom: 40px;color: #313335;}
.a1_left p{font-size: 20px;color: #808080;}
.a1_right ul li{width: 100%;display: flex;align-items: center;justify-content: space-between;padding: 10px 0;border-bottom: 1px solid #c6b477;}
.a1_right ul li:last-child{border-bottom: 0;}
.a1_right ul li .icon{font-size: 0;width: 80px;height: 80px;margin-right: 40px;background: #c6b477;display: flex;align-items: center;justify-content: center;font-size: 0;border: 2px solid #c6b477;transition: all 0.5s;border-radius: 50%;}
.a1_right ul li:hover .icon{background-color: #fff;}
.a1_right ul li .icon img{height: 40px;filter: brightness(0%) contrast(200%) invert(100%) opacity(100%);transition: all 0.5s;}
.a1_right ul li:hover .icon img{filter: none;}
.a1_right ul li .text{width: 75%;font-size: 19.6px;color: #808080;}
.about1box .line{width: 100%;max-width: 80%;margin: 0 auto;background-image: url(../images/line.svg);height: 10px;margin-bottom: 40px;}



/*  */
.c1_left .desc p span{color: #c6b477;}
.c1_left .desc p a{color: #c6b477;}
.c1_left .desc{margin-bottom: 50px;}
.c1_left .c1_btn{}
.c1_left .c1_btn a{display: inline-block;text-align: center;padding: 15.4px 28.6px;background-color: #4d4a51;}
.c1_left .c1_btn a i{font-size: 20px;color: #fff;margin-right: 10px;}
.c1_left .c1_btn a span{font-size: 14px;color: #fff;}


.contact2box{width: 100%;margin: 0 auto;padding: 100px 0;}
.contact2{width: 100%;margin: 0 auto;}
.contact2 h1{text-align: center;margin-bottom: 70px;font-size: 21px;color: #c6b477;font-weight: bold;}
.c2_content{width: 100%;margin: 0 auto;max-width: 485px;}
.c2_content ul li{width: 100%;margin-bottom: 30px;}
.c2_content ul li .c2_text{padding: 16.8px 32.2px;border: 2px solid #faf9f5;width: 100%;transition: all 0.3s;}
.c2_content ul li .c2_text:hover{border-color: #c6b477}
.c2_content ul li textarea{padding: 16.8px 32.2px;border: 2px solid #faf9f5;width: 100%;transition: all 0.3s;}
.c2_content ul li textarea:hover{border-color: #c6b477}
.c2_content ul li .c2_btn{padding: 30.8px 50.6px 26.4px 52.8px;border: 2px solid transparent;position: relative;background: linear-gradient(to right,	rgba(255,255,255,0) 50%,#c6b477 50%) no-repeat scroll right bottom / 210% 100% rgba(255,255,255,0) !important;font-size: 11px;color: #fff;font-weight: 700;transition: all 0.3s;display: inline-block;}
.c2_content ul li .c2_btn:hover{background-position: left bottom !important;color: #c6b477;border-color: #c6b477}



/*  */
.bumenbanner{width: 100%;margin: 0 auto;font-size: 0;position: relative;}
.bumenbanner img{width: 100%;}
    .bumenbanner h3 {
        display: none;
        position: absolute;
        font-size: 48px;
        color: #313335;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }


.bumen1box{width: 100%;margin: 0 auto;}
.bumen1{width: 100%;margin: 0 auto;}
    .bumen1 .desc {
        line-height: 2;
        font-size: 24px;
        width: 100%; /*border: 5px solid #c6b477;padding: 2%;*/
    }
        .bumen1 .desc h3 {
            font-size: 32px;
            color: #313335;
            margin-bottom: 10px;
            font-weight: bold;
        }
.bumen1 .desc p{font-size: 24px;color: #333;line-height: 2;}
.bumen1 .line{margin: 50px 0;}
.bumen1 .line span{display: block;width: 80%;margin: 0 auto;height: 2px;background-color: #efefef;}
.bumen1 .bumen1_list{width: 100%;border: 5px solid #c6b477;padding: 2%;}
.bumen1_list .tit{width: 100%;text-align: center;margin-bottom: 20px;}
.bumen1_list .tit h3{font-size: 48px;color: #313335;}
.bumen1_list  ul{display: flex;flex-wrap: wrap;}
.bumen1_list  ul li{width: 32%;margin-right: 2%;margin-bottom: 20px;background-color: #c6b477;}
.bumen1_list  ul li:nth-child(3n){margin-right: 0;}
    .bumen1_list ul li a {
       
        display: block;
        width: 100%;
        font-size: 22px;
        color: #fff;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }



.add1box{width: 100%;margin: 0 auto;}
.add1{width: 100%;margin: 0 auto;}
.add1 ul li{width: 100%;margin-bottom: 50px;}
.add1 ul li:last-child{margin-bottom: 50px;}
.add1 ul li h3{font-size: 32px;color: #313335;margin-bottom: 10px;font-weight: bold;}
    .add1 ul li .desc {
        line-height: 2;
        font-size: 24px;
        color: #313335;
        margin-bottom: 20px;
    }
.add1 ul li .list{width: 100%;}
.add1 ul li .list dl{display: flex;flex-wrap: wrap;}
    .add1 ul li .list dl dd {
        width: 31.333%;
        margin: 1%;
        margin-bottom: 20px;
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2%;
        font-size: 24px;
        color: #fff;
        background-color: #c6b477;
    }
.add1 ul li .list dl dd:nth-child(5n){margin-right: 0;}










@media only screen and (max-width: 980px) {
	header{display: none;}
	.sp_header{ display:flex;}
	.height{height: 70px;}
	.img_list2 ul li,.img_list3 ul li,.img_list4 ul li{width: 50%;margin-bottom: 15px;}
	.i8_left h1 {font-size: 30px;}
	.i8_left {width: 100%;padding: 5%;}
	.i8_right{width: 100%;}
	.index7 h1 {width: 100%;margin-bottom: 20px;font-size: 36px;}
	.index7 .i7_input{width: 100%;justify-content: flex-start;}
    .index6box .text {
        text-align: center;
        right: 0%;
        width: 100%;
        max-width: 100%;
    }
    .index6box {
        height: 500px;
    }
        .index6box .text h3 {
            font-size: 36px;
        }
        .i5_content ul li {
            width: 33%;
            border-right: 0;
            padding-bottom: 60px;
        }
        .i5_content ul li .icon {
            width: 50px;
            height: 50px;
        }
        .i5_content ul li .text {
            padding-top: 20px;
        }
        .i5_tit h1 {
            font-size: 36px;
        }
    
    .i4_left {
        width: 100%;
        padding: 5%;
    }
    .index6box .text p{font-size:18px;}
    .i4_right {
        width: 100%;
    }
	.i4_left h1 {font-size: 25px;}
	.i3_left {width: 100%;}
	.i3_right{width: 100%;}
	.i3_right ul li .num {font-size: 30px;}
	.i3_left h1 {font-weight: 24px;}
	.i3_left h3{font-size: 18px;}
    .index2box .imgbox .text h3 {
        margin: 10px 10px;
        font-size: 36px;
    }
    .index2box .imgbox .text h1 {
        margin: 0 10px;
        font-size: 18px;
    }
    .index2box .imgbox img{height:260px;}
    .index2box ul li {
        width: 50%;
        padding: 5%;
    }
    .index5box{padding-top:60px;}
    .index2box ul li h1 {
        font-size: 40px;
    }
	.index2box ul li h1 span {left: 30%;}
	.i1_left {width: 100%;padding: 5%;}
	.i1_right{width: 100%;}
	.i1_left h1 {font-size: 36px;}
    .i1_left .desc p {
        font-size: 18px;
        color: #313335;
        line-height: 30px;
    }
    .i1_left h3 {
        font-size: 18px;
    }
	.prev_btn, .next_btn {width: 40px;height: 40px;line-height: 34px;}
	.a1_left{width: 100%;margin-bottom: 20px;}
	.a1_right{width: 100%;}
	.a1_left h3 {font-size: 30px;margin-bottom: 20px;}
	.a1_right ul li .icon {margin-right: 20px;}
	.about1box {padding-top: 80px;}
	.about1 {margin-bottom: 70px;}
	.f_menu{width: 100%;margin-bottom: 20px;}
	.f_desc{width: 100%;}
    .f_menu h3 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .bumenbanner h3 {font-size: 30px;}
	.add1 ul li .list dl{justify-content: space-between;}
        .add1 ul li .list dl dd {
            min-height: 100px;
            font-size: 20px;
            width: 100%;
            margin-right: 0 !important;
        }
	.bumen1_list ul{justify-content: space-between;}
        .bumen1_list ul li {
            text-align: center;
            width: 100%;
            margin-right: 0 !important;
        }
    .index1box {
        padding-top: 20px;
        padding-bottom: 60px;
    }
    .index1 {
        padding: 0 10px;
    }
    .i5_tit {
        margin-bottom: 20px;
    }
    .index2box .imgbox .text {
        right: 0%;
    }
    .bumen1 .desc p{font-size:20px;}
    .bumen1_list .tit h3{font-size:36px;}
    .bumen1_list ul li a{font-size:20px;}
    .add1 ul li h3{font-size:36px;}
    .add1 ul li .desc{font-size:20px;}
}


@media only screen and (max-width: 680px) {
	.img_list2 ul li,.img_list3 ul li,.img_list4 ul li{width: 100%;}
	.index2box ul li h1 {font-size: 30px;}
	.index2box ul li h3 {font-size: 18px;}
}
