@charset "utf-8";
/* CSS Document */
:root {
    --theme-color: #0956FF;
    --theme-secondary-color: #1D213B;
}
@font-face {
    font-family: "HarmonyOS_Sans_SC_Regular";
    src: url("HarmonyOS_Sans_SC_Regular.ttf")
      format("truetype");
    font-display: swap;
 }
*{
	margin:0;
	padding:0;
}
img {
	border:none;
}
ul,li {
	list-style-type:none;
}
dd {
	margin:0;
	padding:0;
}
a {
	color:#333;
	text-decoration:none;
}
a:hover {
	color:var(--theme-color);
}
a:focus {
	outline:none;
}
html,body{
	font-size:14px;
	font-family:'HarmonyOS_Sans_SC_Regular', '微软雅黑';
	background:#fff;
	color:#333;
}
table.noborder td {
	border:none;
	padding:0 3px;
}
input,textarea,select,button {
	outline:none;
	font-family:'HarmonyOS_Sans_SC_Regular', '微软雅黑';
}
input[type=button],input[type=submit] {
	cursor:pointer;
}



.theme-btn{
	color: var(--theme-color) !important;
	border-color: var(--theme-color) !important;
}
.btn-1:hover,
.theme-btn:hover{
    background: var(--theme-color) !important;
    color: #fff !important;
    border-color: var(--theme-color) !important;
}
.btn-2:hover{
    opacity: 0.8;
    color: #fff;
}
.theme-color{
	color: var(--theme-color) !important;
}
.no-links:hover,
.no-links{
    border-color: #ccc !important;
    color: #ccc !important;
}

.btn-1{
    width: 108px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #FFFFFF;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-2{
    width: 108px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid var(--theme-color);
    display: block;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    background: var(--theme-color);
}



.btn-style{
    width: 108px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid var(--theme-color);
    display: block;
    color: var(--theme-color);
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-style:hover{
	background: var(--theme-color);
	color: #fff;
}

.index-main{
	max-width:2000px;
}

/*公共样式*/
.shopyy-btn{
	display:inline-block;
	height: 42px;
	line-height:42px;
	background: var(--theme-color);
	border-radius: 4px;
    padding: 0 20px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
	transition:all 0.3s;
}
.shopyy-btn:hover{
	background:#8472ff;
	color:#fff;
}
.shopyy-main-title{
	font-size:45px;
	color:#333;
	font-weight:bold;
}
.shopyy-title{
	font-size:38px;
	color:#333;
	font-weight:bold;
}
.shopyy-detail{
	font-size:18px;
	color:#666;
}
.shopyy-wrapper{
	max-width:1380px;
	width:100%;
	margin:0 auto;
	box-sizing:border-box;
}
.shopyy-bg{
	background: #F3F3F5;
}






/*header*/
#header{
	height:84px;
	width:100%;
	box-sizing:border-box;
	text-align:center;
	position:relative;
	z-index:99999;
	background:#1D213B;
}
#header .header-wrapper{
	width: 100%;
	padding: 0 80px;
	height:84px;
	position: relative;
	box-sizing:border-box;
	display:flex;
	align-items:center;
	justify-content: space-between;
}
#header .header-left{
	display:flex;
	align-items:center;
}
#header .logo{
	height:84px;
	position:relative;
}
#header .logo a{
	display:flex;
	align-items:center;
	justify-content:center;
	height:84px;
}
#header .logo svg{
	height:50px;
}
#header .logo svg.color-icon{
	display:none;
}
#header .nav{
	margin-left:20px;
}
#header .nav > ul{
	display:flex;
	align-items:center;
}
#header .nav > ul .hover_nav{
	height:2px;
	background:rgba(255,255,255,1);
	position:absolute;
	left:0;
	bottom:0;
	transition:all 0.5s ease;
}
#header .nav > ul > li{
	position:relative;
}
#header .nav > ul > li.icon{
	display: none;
}
#header .nav > ul > li > a{
	position: relative;
	display:flex;
	align-items:center;
	height:84px;
	padding:0 20px;
	color:#fff;
	opacity:0.8;
	font-size:16px;
	white-space:nowrap;
	transition:all 0.3s ease;
}
#header .nav > ul > li > a svg{
	width:8px;
	height:8px;
	fill:#fff;
	margin-left:5px;
	opacity:0.8;
}
#header .nav > ul > li > a:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 23px;
    width: 16px;
    height: 1px;
    background: #FFFFFF;
    margin-left: -8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
#header .nav > ul > li.on > a,
#header .nav > ul > li:hover > a{
	color:#fff;
	opacity:1;
	font-weight: bold;
}
#header .nav > ul > li.on > a svg,
#header .nav > ul > li:hover > a svg{
	opacity:1;
}
#header .nav > ul > li.on > a:before,
#header .nav > ul > li:hover > a:before{
	opacity: 1;
	visibility: visible;
}
#header .nav > ul > li dl{
	position:absolute;
	top:84px;
	left:0;
	width:240px;
	background:#fff;
	opacity:0;
	visibility:hidden;
	transition:all 0.3s ease;
	transform:translate(50px,0);
	box-shadow:0 0 8px rgba(0,0,0,.2);
	border-right:0; 
	border-radius:0;
	overflow:hidden;
}
#header .nav > ul > li dl.on{
	opacity:1;
	visibility:visible;
	transform:none;
}
#header .nav > ul > li dd{}
#header .nav > ul > li dd a{
	height:45px;
	line-height:45px;
	color:#333;
	font-size:16px;
	position:relative;
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 0 20px;
    box-sizing: border-box;
	transition:all 0.3s ease-in;
}
#header .nav > ul > li dd a:hover,
#header .nav > ul > li dd.on a{
	color: #1D213B;
	background:#f6f7fb;
}
#header .nav > ul > li dd a svg{
	fill:#666;
	transform:translate(-15px,0);
	transition:all 0.3s ease-in;
}
#header .nav > ul > li dl dd a:hover svg,
#header .nav > ul > li dl dd.on a svg{
	fill:#1D213B;
	transform:none;
}


#header .nav .li-login{
	display:none;
}

#header .nav > ul > li dd .three-level{
	position:absolute;
	left:240px;
	top:0;
	width:240px; 
	background:#fff;
	opacity:0;
	visibility:hidden;
	border-left:0;
	min-height:100%;
	transition:all 0.3s ease-in;

}
#header .nav > ul > li dd .three-level:before{
	content:'';
	position:absolute;
	left:0;
	top:10px;
	width:1px;
	height:calc(100% - 20px);
	background:#f9f9f9;
}
#header .nav > ul > li dd.on .three-level{
	opacity:1;
	visibility:visible;
	
}
#header .nav > ul > li dd .three-level a{
	background:none;
	color:#333;
}
#header .nav > ul > li dd .three-level a:hover{
	color:#1D213B;
	background:#f6f7fb;
}
#header .header-right{
	display: flex;
    align-items: center;
	height:84px;
}
#header .header-right a{
    margin-left: 15px;
}

#header .header-left .mobile-login,
#header .header-left .mobile-menu-icon{
	display:none;
}

#header.index-header{
	position:fixed;
}
#header.posFixed{
	
}
#header.posFixed .header-wrapper{
	background:#1D213B;
	box-shadow:0 0 10px rgba(160,160,160,.3);
	position:fixed;
}
#header.page-header{
	background:#1D213B;
	height:84px;
	border:none;
}
#header.page-header .header-right .nav-login-reg{
	display: flex;
    align-items: center;
}
#header.page-header .header-right .nav-login-reg > dl > dd a.nav-register{
	height:42px;
	border-radius:4px;
}






.index-content{}
.index-content .section-1{
    background: #1D213B;
    color: #fff;
}
.index-content .section-1 .section1-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0;
}
.index-content .section-1 .shopyy-main-title{
    color: #fff;
}
.index-content .section-1 .shopyy-detail{
    color: #fff;
    margin: 24px 0 0;
}
.index-content .section-1 .section1-content a{
	margin: 50px 0 0;
}
.index-content .section-1 .section1-theme{
	position: relative;
	padding: 0 80px;
}
.index-content .section-1 .section1-swiper{
	position: relative;
	padding: 15px 0 0;
	overflow: hidden;
}
.index-content .section-1 li .section-3-wrapper{
	display:block;
	transition:all 0.3s ease;
}
.index-content .section-1 li .section-3-wrapper:hover{
	transform: translate(0,-20px);
}
.index-content .section-1 li .con{
	transition:all 0.3s;
}
.index-content .section-1 li:hover .con{
	transform:translate(0,-15px);
}
.index-content .section-1 li .img{
	position:relative;
	border-radius:6px;
	overflow:hidden;
	max-height:500px;
}
.index-content .section-1 li .img img{
	max-width:100%;
}
.index-content .section-1 li .view-btn{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-color:#1D213B;
	background: linear-gradient(180deg, rgba(44,45,51,0) 0%, rgba(44,45,51,0.5) 100%);
	opacity:0;
	visibility:hidden;
    transition: all 0.3s ease;
}
.index-content .section-1 li .img:hover .view-btn{
	opacity:1;
	visibility:visible;
}
.index-content .section-1 li .view-btn .btn{
	position:absolute;
	left:0;
	bottom:0;
	text-align:center;
	width:100%;
	padding:20px 0;
}
.index-content .section-1 li .view-btn a{
	display:inline-block;
	min-width:35%;
	padding:10px 20px;
	border-radius:6px;
	border:1px solid #fff;
	color:#fff;
	margin:0 10px;
	font-size:16px;
	box-sizing:border-box;
	transition: all 0.3s ease;
}
.index-content .section-1 li .view-btn a.reserve{
	width:80%;
	max-width: 200px;
}
.index-content .section-1 li .view-btn a.reserve:hover{
	border:1px solid var(--theme-color);
	color:#fff;
	background:var(--theme-color);
}
.index-content .section-1 li .view-btn a.use{
	border:1px solid var(--theme-color);
	color:#fff;
	background:var(--theme-color);
	display:none
}
.index-content .section-1 li .name{
	text-align:center;
	font-size:20px;
	color:#fff;
	font-weight:bold;
	padding:20px 0 10px;
}

 
.index-content .section-1 .section3-pagination{
    margin-top: 60px;
    display: flex;
    justify-content: center;
}
.index-content .section-1 .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background: rgba(255,255,255,.5);
    border-radius: 0;
    opacity: 1;
    margin: 0 7px;
}
.index-content .section-1 .swiper-pagination-bullet-active{
    background: #fff;
}
.index-content .section-1 .section1-theme-btn{
    position: absolute;
    right: 80px;
    bottom: -30px;
    height: 60px;
    display: flex;
    z-index: 9;
}
.index-content .section-1 .section1-theme-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 1px rgb(44 45 51 / 10%);
    border-radius: 30px 30px 30px 30px;
    margin: 0 12px;
}



.index-content .section-2{
	padding: 80px 0 0;
}
.index-content .section-2 > .shopyy-title,
.index-content .section-2 > .shopyy-detail{
	text-align: center;
}
.index-content .section-2 > .shopyy-detail{
	margin-top: 20px;
}
.index-content .section-2 ul li{
	padding: 80px;
}
.index-content .section-2 ul li:nth-child(even){
	background: #F6F0EC;
}

.index-content .section-3{
	padding: 0 80px 80px;
}
.index-content .section-3 .shopyy-title, 
.index-content .section-3 .ahopyy-detail {
    text-align: center;
}
.index-content .section-3 .news-more{
	display: flex;
	justify-content: center;
}
#news{
	margin-top: 40px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}
#news li{
	width: calc(50% - 60px);
    margin-bottom: 40px; 
}
#news li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s;
}
#news li a:hover{
	background: #fff;
    transform: translate(0,-5px);
}

#news li .date-box{
	width: 126px;
    height: 126px;
    border-radius: 8px;
    border: 1px solid #eee;
}
#news li .date-wapper{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    height: 100%;
    color: #999;
    font-size: 16px;
}
#news li .date-box span{
	display: block;
    font-size: 52px;
    font-weight: bold;
    line-height: 1;
    margin: 12px 0 0;
}
#news li .newslist-con{
	width: calc(100% - 155px);
}
#news li .newslist-name{
	display: block;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}
#news li .newslist-descript{
	font-size: 16px;
    line-height: 26px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
#news li .newslist-descript img{
	display: none;
}

#news li a:hover .date-box{
	border-color: var(--theme-color);
}
#news li a:hover .date-wapper{
	color: var(--theme-color);
}




.index-content .image-text{
	display: flex;
	justify-content: space-between;
}
.index-content .image-text .image{
	width: 50%;
	padding: 0 60px;
	box-sizing: border-box;
}
.index-content .image-text .image img{
	max-width: 100%;
}
.index-content .image-text .text{
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.index-content .image-text .text-wrapper{
	max-width: 440px;
}
.index-content .image-text .shopyy-detail{
	margin-top: 30px;
}
.index-content .image-text .text-wrapper a{
	margin-top: 50px;
}





.bottom-cus{
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 330px;
	background:#fff;
	border-top:1px solid #f5f5f5;
}
.bottom-cus .shopyy-detail{
	margin-top:30px;
}
.bottom-cus a{
	margin-top:50px;
}


.footer_ad{
	
    height: 360px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: url(../images/new-shopyy/footer_ad_bg.png) no-repeat;
    background-color: var(--theme-color);
    background-position: right bottom;
	padding: 0 30px;
	display:none;
}
.footer_ad .footer_ad_left{
    width: 50%;
    display: flex;
    justify-content: center;
	align-items: center;
    color: #fff;
}
.footer_ad .footer_ad_left .footer_ad_wrapper{
	max-width:640px;
}
.footer_ad .footer_ad_left h3{
	font-size: 38px;
	font-weight: bold;
	color: #FFFFFF;
	text-align:left;
}
.footer_ad .footer_ad_left a{
	display:block;
	width: 150px;
    height: 54px;
	line-height:52px;
    background: none;
    border-radius: 4px;
    border: 0;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
	text-align:center;
	margin-top: 30px;
	box-sizing:border-box;
    transition: all 0.3s ease;
	border: 1px solid #fff;
}
.footer_ad .footer_ad_left a:hover{
	border: 1px solid #fff;
	color: var(--theme-color);
	background:#fff;
}
.footer_ad .footer_ad_right{
    width: 50%;
	display: flex;
    align-items: flex-end;
	justify-content: center;
}
.footer_ad .footer_ad_right img{
    max-height: 100%;
    max-width: 100%;
	display:block;
}



#footer{
	background: #1D213B;
}
#footer .footer-top{
	padding: 80px;
}
#footer .link{
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
#footer .link .link-list{
	width:25%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer .link dl{
	display: block;
	
	font-size: 14px;
	color: rgba(255,255,255,.5);
}
#footer .link dt{
	font-weight:bold;
	color: #fff;
	font-size: 16px;
	margin-bottom: 20px;
	position: relative;
}
#footer .link dt span.help-icon{
	display:none;
}
#footer .link dd{
	line-height: 26px;
	min-height:130px;
}
#footer .link dd a{
	display: block;
	font-size: 14px;
	color: rgba(255,255,255,.5);
	line-height: 26px;
	transition:all 0.3s;
}
#footer .link dd a:hover{
	color: rgba(255,255,255,1);
	text-decoration: underline;
}
#footer .link dd span{
	display: block;
	color: #fff;
	font-size: 14px;
	opacity:0.5;
}
#footer .link dd a.footer-logo{
	display: block;
	margin-bottom: 15px;
	opacity: 1;
}

#footer .attention{
	display: inline-block;
	font-size: 14px;
	vertical-align: top;
}
#footer .attention h3{
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 20px;
	text-align: left;
}
#footer .attention p{
	text-align: left;
}
#footer .attention p img{}


#footer .footer-bom{
	background: #4a4d62;
	padding: 15px 0;
	position: relative;
	color:#F7F6FF;
	text-align: center;
}
#footer .footer-bom a{
	color:#F7F6FF;
}

.fixed-icon{
    width: 48px;
    border-right: 0;
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 99999;
}
.fixed-icon .fixed-list{
	margin-bottom:8px;
	position:relative;
}
.fixed-icon .customer_service{
	position:relative;
}
.fixed-icon .fixed-list > a{
	width: 48px;
    height: 48px;
    background: var(--theme-color);
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;	
	box-shadow: 0px 0px 20px rgba(29, 33, 59, 0.1);
	transition:all 0.3s ease;
	font-size:12px;
}
.fixed-icon .fixed-list > a svg{
	fill:#fff;
	transition:all 0.3s ease;
}
.fixed-icon .fixed-list > a:hover{
	color:#fff;
	background: var(--theme-color);
}
.fixed-icon .fixed-list > a:hover svg{
	fill:#fff;
}
.fixed-icon .fixed-list .site_link{
	position:relative;
}
.fixed-icon .fixed-list .site_link .pop{
    position: absolute;
    right: 70px;
    top: 50%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    color: #fff;
    padding: 15px;
    width: 70px;
    line-height: 20px;
    font-size: 14px;
	margin-top: -35px;
	opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.fixed-icon .fixed-list .site_link .pop:before{
	content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 10px solid rgba(0, 0, 0, 0.5);
    border-bottom: 5px solid transparent;
    position: absolute;
    right: -10px;
    top: 50%;
    margin-top: -4px;

}
.fixed-icon .fixed-list .site_link:hover .pop{
	opacity:1;
	visibility:visible;
}

.fixed-icon .fixed-list .admin_info{
    position: absolute;
    right: 70px;
    top: 50%;
    background: rgba(0,0,0,.5);
    color: #fff;
	transform:translate(0,-50%);
	opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
	border-radius: 8px;
}
.fixed-icon .fixed-list .admin_info .admin_info_box{
	padding: 20px;
    font-size: 14px;
    text-align: center;
	white-space:nowrap;
}
.fixed-icon .fixed-list .admin_info_tit{
    line-height: 34px;
}
.fixed-icon .fixed-list .admin_info_tit svg{
    margin-right: 10px;
}
.fixed-icon .fixed-list .admin_info_con{
    padding: 0 20px;
	white-space: nowrap;
    line-height: 34px;
	white-space:nowrap; 
}
.fixed-icon .fixed-list .admin_info_con span{
	display:block;
}
.fixed-icon .fixed-list .admin_info_more{
	height: 34px;
    line-height: 34px;
    display: block;
    color: #fff;
    background: rgba(0,0,0,.5);
    border-radius: 5px;
    margin: 10px 0 0;
	transition:all 0.3s;
}
.fixed-icon .fixed-list .admin_info_more:hover{
	background: rgba(0,0,0,.7);
}
.fixed-icon .fixed-list .admin_info:before{
	content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 10px solid rgba(0, 0, 0, 0.5);
    border-bottom: 5px solid transparent;
    position: absolute;
    right: -10px;
    top: 50%;
    margin-top: -4px;

}

.fixed-icon .fixed-list:hover > .admin_info{
	opacity:1;
	visibility:visible;
}

.mobile-nav{
	display:none;
	
}








/*价格*/
#price-page .price-wrapper{
	padding: 0 200px;
}
.page-banner{
    padding: 100px 0;
    background: #1D213B;
    text-align: center;
}
.page-banner .shopyy-title{
    color: #fff;
}
.page-banner .shopyy-detail{
    color: #fff;
    margin: 30px 0 0;
}


#price-page .section-1{
	text-align:center;
}


#price-page .section-1 .section-1-list{
	padding:80px 0;
}
#price-page .section-1 .section-1-list > ul{
    display: flex;
    align-items: flex-start;
}
#price-page .section-1 .section-1-list > ul > li{
    width: calc(25% - 30px);
    margin-right: 40px;
	position: relative;
}
#price-page .section-1 .section-1-list > ul > li:last-child{
	margin-right:0;
}
#price-page .section-1 .section-1-list > ul > li:after{
	content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #F3F3F5;
    position: absolute;
    left: 50%;
    bottom: -50px;
    margin-left: -5px;
	display:none;
}
#price-page .section-1 .section-1-list > ul > li .content{
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
	
}
#price-page .section-1 .section-1-list > ul > li .li_top{
    height: 350px;
    padding: 0 40px;
    text-align: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#price-page .section-1 .section-1-list > ul > li .li_top .name{
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}
#price-page .section-1 .section-1-list > ul > li .li_top .name span{
    display: block;
    font-size: 16px;
    color: #333333;
    opacity: 0.8;
    font-weight: normal;
    margin: 12px 0 0;
}
#price-page .section-1 .section-1-list > ul > li .li_top .price{
    margin-top: 50px;
}
#price-page .section-1 .section-1-list > ul > li .li_top .price strong{
    font-size: 45px;
    color: #333333;
    margin-right: 5px;
}
#price-page .section-1 .section-1-list > ul > li .li_bom{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    text-align: left;
}
#price-page .section-1 .section-1-list > ul > li .li_bom dl{
    width: calc(100% - 80px);
}
#price-page .section-1 .section-1-list > ul > li .li_bom dd{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#price-page .section-1 .section-1-list > ul > li .li_bom dd:first-child{
	margin-bottom:15px;
}
#price-page .section-1 .section-1-list > ul > li .choice{
	position: absolute;
    right: 24px;
    top: 24px;
}
#price-page .section-1 .section-1-list > ul > li .choice:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:22px;
	height:22px;
	border: 2px solid #EEEEEE;
	border-radius: 50%;
	box-sizing:border-box;
	transition:all 0.3s ease;
}
#price-page .section-1 .section-1-list > ul > li .choice svg{
	opacity:0;
	visibility:hidden;
	transition:all 0.3s ease;
}
#price-page .section-1 .section-1-list > ul > li .tags{
    position: absolute;
    top: -16px;
    left: 0px;
    height: 32px;
}
#price-page .section-1 .section-1-list > ul > li .tags span{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #fff;
}
#price-page .section-1 .section-1-list > ul > li:hover .choice svg,
#price-page .section-1 .section-1-list > ul > li.on .choice svg{
	opacity:1;
	visibility:visible;
}
#price-page .section-1 .section-1-list > ul > li:hover .choice:before,
#price-page .section-1 .section-1-list > ul > li.on .choice:before{
	opacity:0;
	visibility:hidden;
}
#price-page .section-1 .section-1-list > ul > li:hover .content,
#price-page .section-1 .section-1-list > ul > li.on .content{
	border: 1px solid var(--theme-color);
	box-shadow: 0px 0px 20px rgba(29, 35, 69, 0.1);
}
#price-page .section-1 .section-1-list > ul > li.on:after{
	display:block;
}
#price-page .section-1 .section-1-fun{
    margin-top: 50px;
    background: #F3F3F5;
    border-radius: 12px;
    padding: 50px;
    text-align: left;
}
#price-page .section-1 .section-1-fun h4{
    font-size: 24px;
    color: #333333;
	display: flex;
    justify-content: space-between;
	align-items:center;
}
#price-page .section-1 .section-1-fun h4 span{
    font-size: 18px;
    color: #333333;
    margin-left: 15px;
}
#price-page .section-1 .section-1-fun h4 .data{
	display: flex;
    line-height: 1;
    align-items: center;
}
#price-page .section-1 .section-1-fun h4 .data span{
	margin:0 0 0 5px;
}
#price-page .section-1 .fun-list{
    margin-top: 30px;
}
#price-page .section-1 .fun-list ul{
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
	overflow:hidden;
}
#price-page .section-1 .fun-list ul li{
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
#price-page .section-1 .fun-list ul li span{
	width:25%;
	display:block;
	padding-left:40px;
	height:48px;
	line-height:48px;
	color:#333;
	font-size:16px;
	box-sizing:border-box;
}
#price-page .section-1 .fun-list ul li span.data-3{
	display:none; 
}
#price-page .section-1 .fun-list ul li:nth-child(even){
	background: #F3F3F5;
}

#price-page .section-3{
	margin-top:80px;
}
#price-page .section-3 .shopyy-title{
	text-align:center;
}
#price-page .section-3 .shopyy-detail{
    margin-top: 30px;
	text-align:center;
}
#price-page .section-3 .shopyy-detail a{
    color: var(--theme-color);
    position: relative;
}
#price-page .section-3 .shopyy-detail a:hover{
	text-decoration:underline;
}
#price-page .section-3 ul{
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#price-page .section-3 li{
    width: calc(50% - 40px);
    margin-bottom: 30px;
}
#price-page .section-3 li .problem{
    font-size: 24px;
    color: #333;
    padding-left: 30px;
}
#price-page .section-3 .answer{
    background: #F3F3F5;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    line-height: 26px;
    height: 52px;
    color: #666;
}

#price-page .section-3 .problem .icon{
	display:none;
}

#price-page .section-4{
	margin: 0 0 80px;
}
#price-page .section-4 .shopyy-title{
    text-align: center;
    margin: 0 0 40px;
}
#price-page .section-4 .fun-list ul{
	border: 1px solid #eee;
	border-radius: 8px;
	position: relative;
}
#price-page .section-4 .fun-list ul:before {
    content: '';
    position: absolute;
    left: 40%;
    top: 0;
    width: 20%;
    height: 100%;
    background: rgba(0,118,255,0.05);
    z-index: 999;
    transition: all 0.5s;
}
#price-page .section-4 .fun-list ul.hover1:before{
	left: 20%;
}
#price-page .section-4 .fun-list ul.hover2:before{
	left: 40%;
}
#price-page .section-4 .fun-list ul.hover3:before{
	left: 60%;
}
#price-page .section-4 .fun-list ul.hover4:before{
	left: 80%;
}
#price-page .section-4 .fun-list ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    
    z-index: 9;
}
#price-page .section-4 .fun-list ul li.table-th {
    position: sticky;
    top: 84px;
    z-index: 99;
}
#price-page .section-4 .fun-list ul li:first-child{
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
#price-page .section-4 .fun-list ul li:before {
    content: '';
    position: absolute;
    left: 24px;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #eee;
}
#price-page .section-4 .fun-list ul li .fun-content {
    width: 20%;
    text-align: center;
    padding: 15px 0;
    box-sizing: border-box;
}
#price-page .section-4 .fun-list ul li.table-th .fun-content {
    padding: 30px 0;
    background: #FAFAFA;
    border-right: 1px solid #eee;
}
#price-page .section-4 .fun-list ul li .fun-content:first-child {
    text-align: left;
    padding-left: 24px;
    font-weight: bold;
    color: #2A2D3F;
}
#price-page .section-4 .fun-list ul li.table-th .fun-content:last-child {
    border: none;
}
#price-page .section-4 .fun-list ul li.table-th h4 {
    font-size: 24px;
    font-weight: bold;
    color: #2A2D3F;
}
#price-page .section-4 .fun-list ul li.table-th p {
    color: #666;
    margin: 10px 0 0;
    font-weight: normal;
}
#price-page .section-4 .fun-list-wap{
	display: none;
}


/*模板*/
#theme-page .section-1{
    position: relative;
    padding: 80px 0 0;
    background: #1D213B;
    margin-bottom: 120px;
}
#theme-page .section-1 .section-1-wrapper{
	padding:0 80px 0 210px;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
#theme-page .section-1 .section-1-content{
	position: relative;
    width: 40%;
    padding-right: 5%;
    box-sizing: border-box;
}
#theme-page .section-1 .section-1-content h3{
	color: #fff;
    padding-bottom: 30px;
}
#theme-page .section-1 .section-1-content .describe{
    color: #fff;
    font-size: 20px;
    padding-bottom: 20px;
    opacity: 0.8;
}
#theme-page .section-1 .section-1-img{
    width: 60%;
    margin-bottom: -60px;
}

#theme-page .section-1 .section-1-img img{
    display: block;
    max-width: 100%;
}

#theme-page .template-box{
	padding: 80px 0;
}
#theme-page .template-box .list-top{
	display: flex;
    justify-content: space-between;
    align-items: center;
	padding-bottom:30px;
}

#theme-page .screen .menu-btn{
	display:inline-block;
	vertical-align:middle;
	width:32px;
	height:32px;
	color:#1D213B;
}
#theme-page .screen .menu-btn svg{
	padding:0 0 0 4px;
	margin:4px 0;
}
#theme-page .screen.on .menu-btn svg{
	display:none;
}
#theme-page .screen span{
	display:inline-block;
	line-height:30px;
	font-weight:bold;
    font-size: 22px;
    vertical-align: middle;
	color:#1D213B;
	margin-left:10px
}

#theme-page .template-box .screen{
	cursor:pointer;
}
#theme-page .template-box .con-box{
	position:relative;
	display:flex;
	flex-flow: row wrap; 
}
#theme-page .template-box .list-lt{
	width:18%;
	margin-right:2%;
	opacity:0;
	visibility:hidden;
	margin-left:-20%;
	transition: all 0.3s ease;
}
#theme-page .template-box .on .list-lt{
	left: 0;
    opacity: 1;
    margin-left: 0;
    visibility: visible;
}
#theme-page .template-box .list-lt dl{
	padding-bottom:20px;
	border-bottom:1px solid #ccc;
	margin-bottom:30px;
}
#theme-page .template-box .list-lt dt{
	position:relative;
	font-weight:bold;
	font-size:16px;
	color:#1D213B;
	margin-bottom:15px;
	cursor:pointer;
}
#theme-page .template-box .list-lt dt svg{
	position:absolute;
	right:0;
	top:8px;
	transform:rotate(180deg);
	transition: all 0.3s ease;
}
#theme-page .template-box .list-lt dt.open svg{
	transform:rotate(0deg);
}
#theme-page .template-box .list-lt dd a{
	display:block;
	padding:3px 0;
	margin-bottom:5px;
}
#theme-page .template-box .list-lt dd .radio{
	display:inline-block;
	border:2px solid #ccc;
	width:18px;
	height:18px;
	border-radius:50%;
	margin-right:5px;
	vertical-align: middle;
	box-sizing:border-box;
	position:relative;
}
#theme-page .template-box .list-lt dd .on .radio:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	transform:translate(-50%,-50%);
    width: 10px;
    height: 10px;
    background:var(--theme-color);
	border-radius:50%;
	box-sizing:border-box;
}
#theme-page .template-box .list-lt dd .on .radio{
    border-color:var(--theme-color);
}
#theme-page .template-box .list-rt{
	width:100%;
	transition: all 0.3s ease;
}
#theme-page .template-box .on .list-rt{
	width: calc(100% - 20%);
    box-sizing: border-box;
	box-sizing:border-box;
}
#theme-page .template-box .template ul{
	display: flex;
    flex-flow: row wrap;
	margin:0 -15px;
}
#theme-page .template-box .template li{
	width:25%;
	padding:0 15px;
	border-radius:6px;
	margin-bottom:30px;
	transition: all 0.3s ease;
	box-sizing:border-box;
}
#theme-page .template-box .template li:hover{
    transform: translateY(-15px) !important;
}
#theme-page .template-box .on .template li{
	width:33.3333%;
}
#theme-page .template li .img{
	position:relative;
	border-radius:6px;
	overflow:hidden;
	max-height:400px;
}
#theme-page .template li .img img{
	max-width:100%;
}
#theme-page .template li .view-btn{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-color:#1D213B;
	background: linear-gradient(180deg, rgba(29, 33, 59, 0) 0%, #1D213B 100%);
	opacity:0;
	visibility:hidden;
    transition: all 0.3s ease;
}
#theme-page .template li .img:hover .view-btn{
	opacity:1;
	visibility:visible;
}
#theme-page .template li .view-btn .btn{
	position:absolute;
	left:0;
	bottom:0;
	text-align:center;
	width:100%;
	padding:20px 0;
}
#theme-page .template li .view-btn a{
	display:inline-block;
	min-width:35%;
	padding:10px 20px;
	border-radius:6px;
	border:1px solid #fff;
	color:#fff;
	margin:0 10px;
	font-size:16px;
	box-sizing:border-box;
	transition: all 0.3s ease;
}
#theme-page .template li .view-btn a.reserve{
	width:80%;
}
#theme-page .template li .view-btn a.reserve:hover{
	border:1px solid var(--theme-color);
	color:#fff;
	background:var(--theme-color);
}
#theme-page .template li .view-btn a.use{
	border:1px solid var(--theme-color);
	color:#fff;
	background:var(--theme-color);
	display:none
}
#theme-page .template li .name{
	text-align:center;
	font-size:18px;
	color:#1D213B;
	font-weight:bold;
	padding:15px 0 10px;
}
#theme-page .template-box .template .more{
    text-align: center;
    display: flex;
    justify-content: center;
}



/*案例*/
#cases-page{}
#cases-page .cases-title{
	text-align:center;
	font-size: 30px;
	color: #333333;
}
#cases-page .cases-detail{
	text-align:center;
	font-size:16px;
	color:#666;
	max-width:1000px;
	margin:30px auto 0;
}

#cases-page .section-1{
	background: #1D213B;
}
#cases-page .section-1 .section-1-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#cases-page .section-1 .section-1-content{
	padding:0 140px 0 210px;
	width:50%;
	box-sizing:border-box;
}
#cases-page .section-1 .section-1-content h3{
	font-size: 45px;
	color: #FFFFFF;
}
#cases-page .section-1 .section-1-content p{
	font-size: 20px;
	color: #FFFFFF;
	opacity: 0.8;
	margin-top:30px;
}
#cases-page .section-1 .section-1-content a{
	height: 54px;
    line-height: 54px;
    padding: 0 36px;
    margin-top: 60px;
}


#cases-page .section-1 .section-1-img{
	width:50%;
}
#cases-page .section-1 .section-1-img img{
	max-width:100%;
}


#cases-page .section-2{
	margin-top:80px;
}
#cases-page .section-2 .section-2-1{
	margin-top:80px;
}
#cases-page .section-2 .section-2-1 p{
	text-align:center;
	margin-top:24px;
	color:#999;
}
#cases-page .section-2 .section-2-1 img{
	max-width:100%;
}
#cases-page .section-2 .section-2-2{
	margin-top:80px;
}
#cases-page .section-2 .section-2-2{
	position:relative;
	overflow:hidden;
	border-radius:16px;
}
#cases-page .section-2 .section-2-2:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;	
	background: linear-gradient(91deg, #1D213B 0%, rgba(29, 35, 69, 0) 100%);
	z-index:9;
}
#cases-page .section-2 .section-2-2-img{
	position: absolute;
    left: 0;
    top: 0;
	height:560px;
}
#cases-page .section-2 .section-2-2-img img{
	max-width:100%;
	display:block;
	object-fit: cover;
	height:100%;
}


#cases-page .section-2 .section2-container{
    position: relative;
    height: 560px;
    z-index: 9;
}
#cases-page .section-2 .section2-pagination{
	position:absolute;
	right:64px;
	z-index:9;
}
#cases-page .section-2 .swiper-pagination-bullet{
	display: block;
    width: 150px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 27px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    opacity: 1;
    background: none;
}
#cases-page .section-2 .swiper-pagination-bullet-active{
	background: #FFFFFF;
	color: #1D213B;
}
#cases-page .section-2 span:first-child{
	margin-bottom:150px;
}
#cases-page .section-2 .section-2-2-item{
    padding-left: 64px;
    max-width: 635px;
}











#cases-page .section-2 .section-2-2-item{
	height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#cases-page .section-2 .section-2-2-item.on{
	opacity:1;
	visibility:visible;
}
#cases-page .section-2 .section-2-2-item .tag{
    font-size: 62px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 40px;
	line-height:1;
}
#cases-page .section-2 .section-2-2-item h4{
    font-size: 30px;
    color: #FFFFFF;
    margin-bottom: 24px;
}
#cases-page .section-2 .section-2-2-item .detail{
    line-height: 26px;
    color: rgba(255,255,255,.8);
    margin-bottom: 40px;
}
#cases-page .section-2 .section-2-2-item .links{
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: flex-start;
	white-space:nowrap;
	line-height:32px;
}
#cases-page .section-2 .section-2-2-item .links .links-list{
    display: flex;
    align-items: center;
	flex-wrap:wrap;
}
#cases-page .section-2 .section-2-2-item .links span{
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 4px;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    margin: 0 6px 12px;
}

#cases-page .section-2 .section-2-3{
	margin-top:60px;
}
#cases-page .section-2 .section-2-3 ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 60px;
    grid-column-gap: 50px;
}
#cases-page .section-2 .section-2-3 li{
	display: flex;
    align-items: center;
	justify-content: space-between;
}
#cases-page .section-2 .section-2-3 li .img{
    width: 230px;
    height: 150px;
	border:1px solid #eee;
	border-radius:4px;
	overflow:hidden;
	position:relative;
}
#cases-page .section-2 .section-2-3 li .img .svg{
	position:absolute;
	right:10px;
	bottom:10px;
}
#cases-page .section-2 .section-2-3 li .img img{
	width:100%;
	height:100%;
	object-fit: cover;
}
#cases-page .section-2 .section-2-3 li .section-2-3-content{
	width:calc(100% - 254px);
}
#cases-page .section-2 .section-2-3 li .section-2-3-content h4{
	font-size: 20px;
    line-height: 26px;
    color: #333;
}
#cases-page .section-2 .section-2-3 li .section-2-3-content p{
	font-size: 16px;
    line-height: 26px;
    color: #666666;
    margin-top: 20px;
}
#cases-page .section-3{
	margin-top: 80px;
    padding: 80px 0;
    background: #F3F3F5;
}
#cases-page .section-3 .section-3-container{
	margin-top:80px;
	height:420px;
	position:relative;
	overflow:hidden;
}
#cases-page .section-3 .section-3-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#cases-page .section-3 .section-3-img{
    width: 50%;
}
#cases-page .section-3 .section-3-img img{
    max-width: 100%;
}
#cases-page .section-3 .section-3-text{
    width: 50%;
    padding: 0 120px 0 60px;
    box-sizing: border-box;
}
#cases-page .section-3 .section-3-text h3{
    font-size: 30px;
    color: #333333;
}
#cases-page .section-3 .section-3-text p{
    font-size: 16px;
    color: #666666;
    margin-top: 24px;
}
#cases-page .section-3 .section-3-text a{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-color);
    margin-top: 30px;
}
#cases-page .section-3 .section-3-text a svg{
    margin-left: 10px;
	transition:all 0.3s ease;
}
#cases-page .section-3 .section-3-text a:hover svg{
	margin-left: 20px;
}

#cases-page .section-3 .section3-pagination{
	position:absolute;
	text-align:center;
	z-index:9;
}
#cases-page .section-3 .swiper-pagination-bullet{
	width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    font-size: 16px;
    color: #1D213B;
	margin:0 0 30px;
    opacity: 0.5;
}
#cases-page .section-3 .swiper-pagination-bullet:last-child{
	margin-bottom:0;
}
#cases-page .section-3 .swiper-pagination-bullet-active{
	font-size: 20px;
	font-weight: bold;
	color: #1D213B;
	text-decoration:underline;
	opacity:1;
}

#cases-page .section-4{
	padding-top:80px;
	padding-bottom:80px;
}
#cases-page .section-4 ul{
    margin-top: 40px;
}
#cases-page .section-4 li{
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
	box-sizing:border-box;
}
#cases-page .section-4 li .img img{
    display: block;
    max-width: 100%;
}
#cases-page .section-4 li .content{
    padding: 24px;
}
#cases-page .section-4 li .content h4{
    font-size: 24px;
    color: #333333;
}
#cases-page .section-4 li .content .describe{
    color: #666666;
    margin-top: 24px;
    line-height: 24px;
}
#cases-page .section-4 li .content .describe span{
    color: #1D213B;
    background: #F3F3F5;
}

#cases-page .section-5{
	height:770px;
	padding-top:80px;
	background: url(../images/new-shopyy/cases-bg.png) no-repeat scroll right top #1D213B;
	margin-bottom:130px;
}
#cases-page .section-5 .section-5-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
	color:#fff;
}
#cases-page .section-5 .section-5-1-left{
    width: calc(50% - 120px);
}
#cases-page .section-5 .section-5-1-left h3{
    font-size: 45px;
}
#cases-page .section-5 .section-5-1-left p{
    font-size: 20px;
    margin-top: 40px;
}
#cases-page .section-5 .section-5-1-left .detail{
    opacity: 0.8;
    margin-top: 30px;
    line-height: 24px;
}
#cases-page .section-5 .section-5-1-right{
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#cases-page .section-5 .section-5-1-right ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 80px;
    grid-row-gap: 120px;
    color: rgba(255,255,255,.8);
}
#cases-page .section-5 .section-5-1-right li{
	display:flex;
	align-items:center;
}
#cases-page .section-5 .section-5-1-right li > span{
    font-size: 45px;
    font-weight: bold;
    color: #fff;
    padding: 0 10px 0 15px;
	position:relative;
	margin-left:15px;
	line-height:1;
}
#cases-page .section-5 .section-5-1-right li > span:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	height:100%;
	width:1px;
	background:rgba(255,255,255,.8);
}
#cases-page .section-5 .section-5-1-right li > span sup,
#cases-page .section-5 .section-5-1-right li > span span{
	font-size:14px;
	color:rgba(255,255,255,.8);
	margin-left:10px;
	font-weight:normal;
}
#cases-page .section-5 .section-5-1-right li > span sup{
    transform: translate(0, -20px);
    display: inline-block;
}


#cases-page .section-5 .section-5-2{}
#cases-page .section-5 .section-5-2 .section-5-container{
	position:relative;
	padding:80px 0 30px;
}
#cases-page .section-5 .section-5-2 .section-5-container .img{
	position:relative;
	display:block;
	border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}
#cases-page .section-5 .section-5-2 .section-5-container .img .svg{
	position:absolute;
	right:10px;
	bottom:10px;
}
#cases-page .section-5 .section-5-2 .section-5-container .img img{
	display:block;
	width:100%;
	height:230px;
	object-fit: cover;
}
#cases-page .section-5 .section5-pagination{
    position: absolute;
    left: 0;
    top: 0;
    bottom: auto;
    line-height: 48px;
    font-size: 20px;
    color: rgba(255,255,255,.5);
}
#cases-page .section-5 .swiper-pagination-current{
    font-weight: bold;
    color: #fff;
    font-size: 28px;
}
#cases-page .section-5 .section5-button{
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
}
#cases-page .section-5 .section5-button a{
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.5);
	display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

#cases-page .section-5 .section5-button a.section5-button-prev{
	transform:rotate(180deg);
}
#cases-page .section-5 .section5-button a.section5-button-next{
	margin-left:30px;
}
#cases-page .section-5 .section5-button a.swiper-button-disabled svg path{
	fill:rgba(255,255,255,.5) !important;
	stroke:rgba(255,255,255,.5) !important;
}



#cases-page .section-6{
	padding-top: 80px;
	padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#cases-page .section-6 .img{
	width:50%;
}
#cases-page .section-6 .img img{
	max-width:100%;
}
#cases-page .section-6 .form{
	width:calc(50% - 24px);
}
#cases-page .section-6 .form h3{
    font-size: 30px;
    color: #333333;
}
#cases-page .section-6 .form .tel{
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #1D213B;
    margin-top: 24px;
}
#cases-page .section-6 .form .tel svg{
    margin-right: 10px;
}
#cases-page .section-6 .form form{
    margin-top: 40px;
}
#cases-page .section-6 .form form input{
    width: 100%;
    height: 70px;
    background: #F3F3F5;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    font-size: 20px;
    text-indent: 20px;
    margin-bottom: 24px;
}
#cases-page .section-6 .tips{
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
}
#cases-page .section-6 .tips:before{
	content:'';
	width: 6px;
	height: 6px;
	background: #666666;
	border-radius: 50%;
	margin-right:10px;
}
#cases-page .section-6 .btn-2{
    margin-top: 40px;
    width: auto;
    height: 54px;
    line-height: 54px;
    padding: 0 36px;
    border: none;
    font-size: 20px;
	cursor:pointer;
}



/*关于我们*/
#aboutus{
	max-width:100%;
	overflow:hidden;
}

#aboutus .banner{
	position: relative;
    height: 580px;
    background: #1D213B;
}
#aboutus .aboutus-banner-wapper{
	position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%,-50%);
	color:#fff;
}
#aboutus .banner h3{
	font-size: 45px;
    margin-bottom: 30px;
}
#aboutus .banner p{
	font-size: 16px;
    margin-bottom: 50px;
}

#aboutus .aboutus-section1{
	position:relative;
	width:100%;
	padding:0 50px 50px;
	margin-top:-160px;
	box-sizing:border-box;
	border-bottom:1px solid #eee;
}
#aboutus .aboutus-section1 .aboutus-wrapper{
	font-size:0;
	transition:all 0.3s ease-in;
	
}
#aboutus .aboutus-section1 .swiper-slide{
	display:inline-block;
	width:calc((100vw - 100px)/5 - 40px);
	margin-right:50px;
	vertical-align:top;
	font-size:14px;
}

#aboutus .aboutus-section1-title{
	height:30px;
	margin-bottom:40px;
	text-align:center;
}
#aboutus .aboutus-section1-title span{
	display:inline-block;
	width:46px;
	height:30px;
	text-align:center;
	color:#fff;
	border-radius:0;
	opacity:1; 
	background:none;
	position:relative;
	outline:none;
	font-size:16px;
	font-weight:normal;
	margin:0 8px;
	cursor:pointer;
}
#aboutus .aboutus-section1-title span:before{
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	height:3px;
	width:0;
	background:var(--theme-color);
	transition:all 0.3s ease-in;
}
#aboutus .aboutus-section1-title span.on:before{
	width:100%;
}
#aboutus .aboutus-content{
	position:relative;
}
#aboutus .aboutus-content .aboutus-item{
	opacity:0;
	position:absolute;
	left:0;
	top:0;
	width:100%;
}
#aboutus .aboutus-content .aboutus-item.on{
	opacity:1;
	position:relative;
	z-index:9;
}
#aboutus .aboutus-container{
	overflow:inherit;
}
#aboutus .aboutus-section1-list{
	background:#fff;
	box-shadow:0 4px 25px rgba(10,14,29,.1);
	padding:20px;
	position:relative;
}
#aboutus .aboutus-section1-list h4{
	color:#999;
	font-weight:normal;
	font-size:16px;
	line-height:20px;
}
#aboutus .aboutus-section1-list h4 svg{
	fill:#7966f1;
	vertical-align:top;
	margin-right:8px;
	width:20px;
	height:20px;
}
#aboutus .aboutus-section1-list .aboutus-content{
	color: #000;
    margin: 50px 0 0;
    height: 100px;
    line-height: 20px;
}
#aboutus .aboutus-section1-list:before{
	content: '';
    position: absolute;
    left: 30px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #fff;
}
#aboutus .aboutus-section1-list:after{
	content:'';
	position:absolute;
	left:33px;
	bottom:-58px;
	width:14px;
	height:14px;
	border-radius:50%;
	background:var(--theme-color);
}
#aboutus .title{
	font-size:30px;
	color:#000;
}

#aboutus .aboutus-section2{
	font-size:0;
	padding:0 0 70px;
	margin-top:50px;
}
#aboutus .aboutus-section2 .title{
	margin-bottom:40px;
}
#aboutus .aboutus-wapper{
	width:1150px;
	margin:0 auto;
}
#aboutus .aboutus-section2-left{
	display:inline-block;
	width:calc(100% - 655px);
	vertical-align:middle;
	font-size:14px;
	margin-right:175px;
}
#aboutus .aboutus-section2-left p{
	line-height:26px;
	color:#666;
	font-size:16px;
}
#aboutus .aboutus-section2-right{
	display:inline-block;
	width:480px;
	vertical-align:middle;
	font-size:14px;
}
#aboutus .aboutus-section2-right ul{
	font-size:0;
}
#aboutus .aboutus-section2-right li{
	display:inline-block;
	width:calc(50% - 15px);
	margin-right:30px; 
	font-size:14px;
	padding:50px 0;
	background:#fff;
	margin-bottom:30px;
	box-shadow:0 4px 30px rgba(10,14,29,.1);
	text-align:center;
}
#aboutus .aboutus-section2-right li:nth-child(2n){
	margin-right:0;
}
#aboutus .aboutus-section2-right li:nth-child(3){
	margin-bottom:0;
}
#aboutus .aboutus-section2-right li:nth-child(4){
	margin-bottom:0;
}
#aboutus .aboutus-section2-right li h4{
	font-weight:normal;
	font-size:40px;
	color:var(--theme-color);
	margin-bottom:30px;
	font-weight:bold;
}
#aboutus .aboutus-section2-right li p{
	color:#666;
	font-size:16px;
}


#aboutus .aboutus-section3{
	padding-bottom:70px;
	padding-top:70px;
	background-color:#f3f3f5;
}
#aboutus .aboutus-section3 .title{
	text-align:center;
	padding-bottom:50px;
}
#aboutus .aboutus-section3 ul{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin:0 -15px;
}
#aboutus .aboutus-section3 ul li{
	width:25%;
	padding:0 15px;
	box-sizing:border-box;
	margin-bottom:20px;
}
#aboutus .aboutus-section3 ul li .img{
	background:#fff;
	border-radius:8px;
	overflow:hidden;
	height:200px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom:15px;
	padding:20px;
	box-sizing:border-box;
}
#aboutus .aboutus-section3 ul li img{
	max-width:100%;
	max-height:100%;
}
#aboutus .aboutus-section3 ul li .name{
	font-weight:bold;
	font-size:15px;
	padding-bottom:8px;
}
#aboutus .aboutus-section3 ul li p{
	color:#666;
}

#aboutus .aboutus-section3 .more{
	text-align:center;
	padding-top:20px;
}
#aboutus .aboutus-section3 .more a{
	display:inline-block;
	border:1px solid #cfcfcf;
	border-radius:4px;
	padding:10px 15px;
	min-width:100px;
	color:#999999;
}
#aboutus .aboutus-section3 .more a:hover{
	color:#fff;
    background: var(--theme-color);
	border-color:var(--theme-color);
	transition: all 0.3s ease;
}

#aboutus .aboutus-section4{
	padding:70px 0;
	border-bottom:1px solid #eee;
}
#aboutus .aboutus-section4 .title{
	text-align:center;
}
#aboutus .aboutus-section4 ul{
	font-size:0;
	margin-top:50px;
}
#aboutus .aboutus-section4 li{
	display:inline-block;
	width:calc(33.33333% - 50px);
	margin-right:75px;
	font-size:14px;
	vertical-align:top;
}
#aboutus .aboutus-section4 li:nth-child(3n){
	margin-right:0;
}
#aboutus .aboutus-section4 li .aboutus-section3-title{
	line-height:60px;
	font-size:20px;
}
#aboutus .aboutus-section4 li .aboutus-section3-title svg{
	height:60px;
	width:60px;
	display:inline-block;
	vertical-align:top;
	margin-right:15px;
}
#aboutus .aboutus-section4 li .aboutus-section3-detail{
	line-height:24px;
	color:#999;
	padding-left:75px;
}
#aboutus .aboutus-section5{
	padding:75px 0;
	text-align:center;
	border-bottom:1px solid #eee;
}
#aboutus .aboutus-section5 .title{}
#aboutus .aboutus-section5 .aboutus-section4-detail{
	color:#999;
	margin:30px 0 70px;
}
#aboutus .aboutus-section5 .aboutus-section4-detail span{
	display:block;
}
#aboutus .aboutus-section5 .aboutus-section4-btn{
	display:inline-block;
	width:220px;
	height:52px;
	border:1px solid #7d6bf1;
	box-sizing:border-box;
	text-align:center;
	line-height:50px;
	font-size:14px;
	color:#7d6bf1;
	border-radius:5px;
	transition:all 0.3s ease-in;
}
#aboutus .aboutus-section5 .aboutus-section4-btn:hover{
	background:#7d6bf1;
	color:#fff;
}

#aboutus .aboutus-section6{
	padding:75px 0;
	text-align:center;
}
#aboutus .aboutus-section6 .img{
	margin-bottom:30px;
	position:relative;
}
#aboutus .aboutus-section6 .img-list{
	max-width:600px;
	margin:0 auto;
}
#aboutus .aboutus-section6 img{
	max-width:100%;
	border-radius:5px;
}
#aboutus .aboutus-section6 .img span{
	position:absolute;
	bottom:10px;
	right:10px;
	color:#fff;
	font-size:18px;
	text-align:right;
}

/*合作伙伴*/
#partner_2022 .partner2022_wrapper{
	max-width:calc(100% - 160px);
	width:100%;
	margin:0 auto;
}
#partner_2022 .partner2022_banner{
	background: #F6F0EC;
	height:640px;
}
#partner_2022 .partner2022_banner .partner2022_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
	height:100%;
}
#partner_2022 .partner2022_banner_content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	padding:80px 0 0;
}
#partner_2022 .partner2022_banner_content .shopyy-main-title{
	margin-bottom:15px;
}
#partner_2022 .partner2022_banner_content .shopyy-detail{
	margin-bottom:50px;
}

#partner_2022 .partner2022_logo_swiper{
	padding-bottom:80px;
	overflow:hidden;
	position:relative;
	width:100%;
}
#partner_2022 .partner2022_logo_swiper li a{} 

#partner_2022 .partner2022_logo_swiper li a img{
    max-width:100%;
}


#partner_2022 .section1,
#partner_2022 .section2,
#partner_2022 .section3{
	margin:80px 0 0;
	border-bottom:1px solid #333;
}
#partner_2022 .section1 .shopyy-detail,
#partner_2022 .section2 .shopyy-detail,
#partner_2022 .section3 .shopyy-detail{
	margin:15px 0 0;
}

#partner_2022 .section3{
	border-bottom:0;
}

#partner_2022 .partner2022-logo-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
	padding:80px 0;
}
#partner_2022 .partner2022-logo-list li{}
#partner_2022 .partner2022-logo-list li a{
	
} 
#partner_2022 .partner2022-logo-list li img{
	max-width:100%;
}


#news-list{
	margin: 80px 0 0;
}
#news-list .shopyy-title{
	text-align: center;
}
#news-list .page {
	text-align: center; 
	padding:50px 0;
}
#news-list .page a, 
#news-list .page span {
	display: inline-block; 
	vertical-align: top; 
	width: 33px; 
	height: 33px; 
	background: #fff; 
	margin-right: 7px; 
	margin-bottom:7px;
	text-align: center; 
	line-height: 33px; 
	font-size: 13px; 
	border: 1px solid #CCCCCC;
}
#news-list .page a.on, 
#news-list .page a:hover, 
#news-list .page span {
	background: #1D213B; 
	border-color: #1D213B; 
	color: #fff; 
}




/*产品优势*/
#product-page .shopyy-title{
	text-align:center;
}
#product-page .shopyy-detail{
	text-align:center;
	margin-top:30px;
}
#product-page .section-1{
	display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0 170px 0 210px;
	height:680px;
	background:#1D213B;
}
#product-page .section-1 .section-1-content{
	width:50%;
	padding-right:50px;
	box-sizing:border-box;
}
#product-page .section-1 .section-1-content h3{
	font-size: 45px;
	font-weight: bold;
	color: #FFFFFF;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
#product-page .section-1 .section-1-content p{
	font-size: 20px;
	color: #FFFFFF;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	opacity: 0.8;
	margin-top:30px;
	max-width:630px;
	width:100%;
}
#product-page .section-1 .section-1-content .banner-btn{
	display: flex;
    align-items: center;
	margin-top:60px;
}
#product-page .section-1 .section-1-content .banner-btn .price{
	display: flex;
    align-items: center;
	margin-left:50px;
	font-size:20px;
	color:#fff;
	font-weight:bold;
}
#product-page .section-1 .section-1-content .banner-btn .price svg{
	margin-left:10px;
	transition:all 0.3s;
}
#product-page .section-1 .section-1-content .banner-btn .price:hover svg{
	margin-left:20px;
}

#product-page .section-1 .section-1-content .banner-btn .btn-2{
	font-size:20px;
	height:54px;
	line-height:54px;
	padding:0 36px;
}
#product-page .section-1 .section-1-img{
	width:50%;
	position:relative;
}
#product-page .section-1 .section-1-img img{
	max-width:100%;
	opacity:0;
	transition:all 1s;
}
#product-page .section-1 .section-1-img img.section1-ani-1.on{
	opacity:1;
}
#product-page .section-1 .section-1-img img.section1-ani-2{
	transform:translate(50px,0);
}
#product-page .section-1 .section-1-img img.section1-ani-2.on{
    position: absolute;
    left: 9%;
    bottom: 5%;
	width: 29.5%;
	transform: none;
	opacity:1;
}

#product-page .section-2{}
#product-page .section-2 .section-2-1{
	position:relative;
}
#product-page .section-2 .section-2-img{
	position:relative;
}
#product-page .section-2 .section-2-img:before{
	content:'';
	background:rgba(29, 35, 69, .1);
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:9;
}
#product-page .section-2 .section-2-img img{
	max-width:100%;
	display:block;
}
#product-page .section-2 .section-2-content{
	position: absolute;
    right: 260px;
    top: 50%;
    margin-top: -125px;
	width: 560px;
	background: rgba(255,255,255,.9);
	border-radius: 8px;
	padding:60px;
	z-index:10;
	box-sizing:border-box;
}
#product-page .section-2 .section-2-1 .section-2-title{
	font-size:30px;
	color:#333;
	font-weight:bold;
}
#product-page .section-2 .section-2-1 .section-2-detail{
	margin-top:24px;
	font-size: 16px;
	color: #666666;
} 

#product-page .section-2 .section-2-2{
    height: 300px;
    background: #1D213B;
    padding: 0 260px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#product-page .section-2 .section-2-2 .section-2-title{
    font-size: 45px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}
#product-page .section-2 .section-2-2 .section-2-detail{
    font-size: 20px;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    opacity: 0.8;
    margin-top: 30px;
}

#product-page .section-3{
	padding-top:80px;
	padding-bottom:80px;
}
#product-page .section-3 .section-3-content-1{
	margin-top:80px;
}
#product-page .section-3 .section-3-content-1 h4{
	font-size: 24px;
	color: #333333;
}
#product-page .section-3 .ul-1{	
	display: flex;
	align-items:center;
	background: #F3F3F5;
	border-radius:8px;
	overflow:hidden;
	margin:40px 0;
}
#product-page .section-3 .ul-1 li{
	height:220px;
	width:25%;
	display: flex;
	align-items:center;
    justify-content: center;
    flex-direction: column;
}
#product-page .section-3 .ul-1 li .section-3-price{
	display: flex;
	align-items:center;
	font-size:14px;
	color:#333;
}
#product-page .section-3 .ul-1 li .section-3-price span{
	font-size:30px;
	font-weight:bold;
	margin-right:5px;
}
#product-page .section-3 .ul-1 li .section-3-edition{
	width:168px;
	height: 38px;
	background: #FFFFFF;
	border: 1px solid #333333;
	border-radius: 25px;
	text-align:center;
	line-height:38px;
	font-size:16px;
	font-weight:bold;
	margin:15px 0;
}
#product-page .section-3 .ul-1 li p{
	text-align: center;
    font-size: 14px;
    color: #333;
}
#product-page .section-3 .ul-1 li.on,
#product-page .section-3 .ul-1 li.on p,
#product-page .section-3 .ul-1 li.on .section-3-price{
	color:var(--theme-color);
}
#product-page .section-3 .ul-1 li.on .section-3-edition{
	background: #E1E6FF;	
	border: 1px solid var(--theme-color);
}


#product-page .section-3 .ul-1 li:last-child{
	background: #1D213B;
}
#product-page .section-3 .ul-1 .shop-cost{
    width: calc(100% - 100px);
}
#product-page .section-3 .ul-1 .shop-cost span{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 24px;
}
#product-page .section-3 .ul-1 .shop-cost .shop-cost-text{
    width: 100%;
    height: 54px;
    background: #FFFFFF;
    border-radius: 4px;
    border: none;
    text-align: center;
    font-size: 16px;
}
#product-page .section-3 .section-3-detail{
	font-size: 16px;
	color: #666666;
	margin-top:15px;
}
#product-page .section-3 .notes{
	font-size: 14px;
	color: #1D213B;
	margin-top:30px;
	font-weight:bold;
}
#product-page .section-3 .section-3-tab{
	display:flex;
	margin-top: 15px;
    font-size: 16px;
    text-align: center;
	overflow:hidden;
	border-radius:8px 8px 0 0;	
	border: 1px solid #F1F1F1;
}
#product-page .section-3 .section-3-th{
    width: 175px;
    text-align: center;
}
#product-page .section-3 .section-3-container{
    width: calc(100% - 175px);
}
#product-page .section-3 .section-3-items{
	height:80px;
	line-height:80px;
	color:#666;
}
#product-page .section-3 .section-3-items:first-child{
	background:#1D213B;
	color:#fff;
	height:50px;
	font-weight:bold;
	line-height:50px;
}
#product-page .section-3 .section-3-items:last-child{	
	background: #F3F3F5;
	color:#1D213B;
}
#product-page .section-3 .section-3-items svg{
	height: 24px;
    width: 24px;
    fill: #1D213B;
}
#product-page .section-3 .section-3-experience{
	display: flex;
    align-items: center;
    justify-content: space-between;
	margin-top:80px;
}
#product-page .section-3 .section-3-experience-items{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(50% - 20px);
    border: 1px solid #EEEEEE;
    border-radius: 12px;
	position:relative;
}
#product-page .section-3 .section-3-experience-content{
    padding: 40px 40px 40px 0;
}
#product-page .section-3 .section-3-experience-content .name{
    font-size: 20px;
    color: #333;
    font-weight: bold;
}
#product-page .section-3 .section-3-experience-content .detail{
    color: #666;
    margin: 15px 0 ;
}
#product-page .section-3 .section-3-experience-content .content{
    color: #666;
    font-size: 14px;
    line-height: 24px;
}
#product-page .section-3 .section-3-experience-tags{
	position: absolute;
    right: 0;
    top: 40px;
	width: 178px;
	height: 38px;
	line-height:38px;
	text-align:center;
	background: #E1E6FF;
	border-radius: 27px 0px 0px 27px;
	font-size: 16px;
	font-weight: bold;
	color: var(--theme-color);
}



#product-page .section-5-tab,
#product-page .section-4-tab{
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-top:80px;
}

#product-page .section-4-tab .section-4-img{
    width: calc(100% - 340px);
}
#product-page .section-5-tab .section-5-list,
#product-page .section-4-tab .section-4-list{
	display:flex;
	align-items:center;
	height:0;
	overflow:hidden;
	transition:all 0.3s ease;
}
#product-page .section-5-tab .section-5-list.on,
#product-page .section-4-tab .section-4-list.on{
	height:560px;
}
#product-page .section-5-tab .section-5-list img,
#product-page .section-4-tab .section-4-list img{
	max-width:100%;
}
#product-page .section-4-tab .section-4-title{
	width:300px;
}
#product-page .section-5-tab .section-5-title a,
#product-page .section-4-tab .section-4-title a{
	display:block;
	height: 88px;
	line-height:88px;
	position:relative;
	text-align:center;
	font-size: 24px;
	color: #666666;
	overflow:hidden;
	transition: all 0.3s ease;
	border-right:6px solid #fff;
}
#product-page .section-5-tab .section-5-title a:hover,
#product-page .section-5-tab .section-5-title a.on,
#product-page .section-4-tab .section-4-title a:hover,
#product-page .section-4-tab .section-4-title a.on{
	font-weight: bold;
	color: #1D213B;
	border-right:6px solid #1D213B;
}
#product-page .section-5-tab .section-5-title a:before,
#product-page .section-4-tab .section-4-title a:before{
	content:'';
	position:absolute;
	right:0;
	top:0;
	width:0;
	height:100%;
	background: linear-gradient(268deg, rgba(29, 35, 69, 0.2) 0%, rgba(29, 35, 69, 0) 100%);
	transition: all 0.5s ease;
	opacity:0;
	visibility:hidden;
}
#product-page .section-5-tab .section-5-title a:hover:before,
#product-page .section-5-tab .section-5-title a.on:before,
#product-page .section-4-tab .section-4-title a:hover:before,
#product-page .section-4-tab .section-4-title a.on:before{
	width:100%;
	opacity:1;
	visibility:visible;
}
#product-page .section-5-tab .section-5-list{
	justify-content: flex-end;
}

#product-page .section-5{
	margin-top:80px;
}
#product-page .section-5-tab{
	height:560px;
}
#product-page .section-5-tab .section-5-title{
	width:350px;
}
#product-page .section-5-tab .section-5-title a{
	display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    height: auto;
    border: 0;
    padding: 30px;
    line-height: 1.5;
    border-left: 6px solid #fff;
}
#product-page .section-5-tab .section-5-title a span{
	display:none;
	font-size: 16px;
    color: #1D213B;
    font-weight: normal;
    line-height: 1.8;
    margin-top: 25px;
}
#product-page .section-5-tab .section-5-title a:hover,
#product-page .section-5-tab .section-5-title a.on{
	border:0;
	border-left:6px solid #1D213B;
}
#product-page .section-5-tab .section-5-title a:before{
	left:0;
	right:auto;
	background: linear-gradient(90deg, rgba(29, 35, 69, 0.2) 0%, rgba(29, 35, 69, 0) 100%);
}
#product-page .section-5-tab .section-5-title a:hover span,
#product-page .section-5-tab .section-5-title a.on span{
	display:block;
}
#product-page .section-5-tab .section-5-img{
	width:calc(100% - 400px);
}


#product-page .section-6{
	margin-top:80px;
	padding-top:80px;
	padding-bottom:80px;	
	background: #F3F3F5;
}
#product-page .section-6 .section-6-content{
    margin-top:80px;
}
#product-page .section-6 .section-6-content li{
    position: relative;
	margin-bottom:50px;
	
}
#product-page .section-6 .section-6-content h4{
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #1D213B;
}
#product-page .section-6 .section-6-content h4 svg{
    margin-right: 15px;
}
#product-page .section-6 .section-6-1-container,
#product-page .section-6 .section-6-2-container,
#product-page .section-6 .section-6-3-container,
#product-page .section-6 .section-6-4-container{
	margin-top:24px;
}
#product-page .section-6 .function{
	background:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction: column;
	height:130px;
	border-radius:8px;
}
#product-page .section-6 .function .function-title{
	font-size: 20px;
	font-weight: bold;
	color: #1D213B;
}
#product-page .section-6 .function .function-detail{
	font-size: 16px;
	color: #1D213B;
	margin-top:15px;
}
#product-page .section-6 .section-6-navigation{
	display: flex;
    justify-content: center;
    align-items: center;
	position: absolute;
    right: 0;
    top: 0;
}
#product-page .section-6 .section-6-navigation a{
	display: flex;
    justify-content: center;
    align-items: center;
	width: 28px;
	height: 28px;
	background: rgba(255,255,255,.5);
	border: 1px solid #1D213B;

}
#product-page .section-6 .section-6-navigation a.section-6-prev{
	margin-right:10px;
}
#product-page .section-6 .section-6-navigation a.section-6-prev svg{
	transform:rotate(180deg);
}
#product-page .section-6 .section-6-navigation a.swiper-button-disabled{
	display:none;
}








/*联系我们*/
#contactus2022 .contactus2022-section1{
    padding: 80px;
    background: #F6F0EC;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#contactus2022 .section1-left{
    width: 580px;
}
#contactus2022 .section1-left img{
    max-width: 100%;
	display:block;
}
#contactus2022 .section1-right{
    width: calc(100% - 580px);
    padding-left: 80px;
    box-sizing: border-box;
}
#contactus2022 .section1-right .shopyy-title{
    margin-bottom: 20px;
	text-align:left;
}
#contactus2022 .section1-right .section1-links{
    margin: 50px 0;
}
#contactus2022 .section1-right .section1-list ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 40px;
}
#contactus2022 .section1-right .section1-list li {
    border-top: 1px solid #000;
    padding: 24px 0;
}
#contactus2022 .section1-right .section1-list li h4 {
    font-size: 16px;
}
#contactus2022 .section1-right .section1-list li p {
    color: #666;
    margin: 10px 0 0;
}
#contactus2022 .section1-right .section1-list li .section1-cus {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin: 24px 0 0;
}
#contactus2022 .section1-right .section1-list li .section1-cus .svg {
    display: flex;
}
#contactus2022 .contactus2022-section2{
    padding: 80px;
}
#contactus2022 .contactus2022-section2 ul{
    display: flex;
}
#contactus2022 .contactus2022-section2 li{
	
}
#contactus2022 .contactus2022-section2 li:nth-child(4){
	
}
#contactus2022 .contactus2022-section2 li img{
	max-width:100%;
	display:block;
}
#contactus2022 .contactus2022-section2 li .section2-content{
    padding: 40px;
    height: 155px;
    background: linear-gradient(270deg, #826FFF 0%, #634BFF 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
}
#contactus2022 .contactus2022-section2 li .section2-content h3{
	font-size:16px;
}
#contactus2022 .contactus2022-section2 .section2-pagination{
    display: flex;
    justify-content: center;
	margin-top:25px;
}
#contactus2022 .contactus2022-section2 .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background-color: #ccc;
    opacity: .5;
    border-radius: 0;
}
#contactus2022 .contactus2022-section2 .swiper-pagination-bullet-active {
    background-color: #1D2345;
    opacity: 1;
}










#contactus2022 .contactus2022-section3 li{
	display: flex; 
}
#contactus2022 .contactus2022-section3 li .section3-left {
    width: 50%;
}
#contactus2022 .contactus2022-section3 li .section3-content{
    height: 100%;
    display: flex;
    justify-content: flex-end;
    border: 1px solid #ccc;
}
#contactus2022 .contactus2022-section3 li .section3-content-wrapper{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
	padding: 48px;
	border-left: 1px solid #ccc;
    box-sizing: border-box;
}
#contactus2022 .contactus2022-section3 li .section3-content p{
	line-height:2.5;
}
#contactus2022 .contactus2022-section3 li .section3-content-wrapper .shopyy-title{
	position:relative;
	padding:32px 0 0;
}
#contactus2022 .contactus2022-section3 li .section3-content-wrapper .shopyy-title:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	height:8px;
	width:32px;
	background:#634BFF;
}

#contactus2022 .contactus2022-section3 li .img{
	height:100%;
}
#contactus2022 .contactus2022-section3 li .img img {
	display:block;
    max-height: 100%;
    max-width: 100%;
}
#contactus2022 .contactus2022-section3 li:nth-child(2) .section3-content,
#contactus2022 .contactus2022-section3 li:nth-child(4) .section3-content,
#contactus2022 .contactus2022-section3 li:nth-child(6) .section3-content{
	justify-content: flex-start;
}
#contactus2022 .contactus2022-section3 li:nth-child(2) .section3-content-wrapper,
#contactus2022 .contactus2022-section3 li:nth-child(4) .section3-content-wrapper,
#contactus2022 .contactus2022-section3 li:nth-child(6) .section3-content-wrapper{
	border: none;
	border-right: 1px solid #ccc;
}
#contactus2022 .contactus2022-section3 li:nth-child(6) .img,
#contactus2022 .contactus2022-section3 li .section3-right,
#contactus2022 .contactus2022-section3 li:nth-child(3) .img,
#contactus2022 .contactus2022-section3 li:nth-child(3) .section3-content{
	width:50%;
}
#contactus2022 .contactus2022-section3 li:nth-child(3) .section3-content-wrapper{
	width:100%;
}
#contactus2022 .contactus2022-section3 li:nth-child(3) .section3-right{
	display:flex;
}
#contactus2022 .contactus2022-section3 li:nth-child(6) .img{}
#contactus2022 .contactus2022-section3 li:nth-child(6) .section3-left{
	display:flex;
	justify-content: flex-end;
}

#contactus2022 .contactus2022-section4{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	background: #F3F3F5;
	padding:80px 0;
	text-align:center;
}
#contactus2022 .contactus2022-section4 .shopyy-detail{
	margin-top:20px;
}
#contactus2022 .contactus2022-section4 .btn-style{
	margin:50px 0;
}
#contactus2022 .contactus2022-section4 .section4-loop-1,
#contactus2022 .contactus2022-section4 .section4-loop-2{
	margin-bottom:10px;
	width:100%;
	position:relative;
}
#contactus2022 .contactus2022-section4 ul{
	display:flex;
}
#contactus2022 .contactus2022-section4 .section4-loop-2 ul{
	flex-flow: row-reverse;
}
#contactus2022 .contactus2022-section4 ul li{
	
}
#contactus2022 .contactus2022-section4 .section4-loop1-swiper,
#contactus2022 .contactus2022-section4 .section4-loop2-swiper{
	position:relative;
	overflow:hidden;
	width:100%;
}
#contactus2022 .contactus2022-section4 .section4-loop-1 li,
#contactus2022 .contactus2022-section4 .section4-loop-2 li{
	width:auto;
	margin:0 5px;
}
#contactus2022 .contactus2022-section4 .section4-loop-1 img,
#contactus2022 .contactus2022-section4 .section4-loop-2 img{
	max-height:280px;
	display:block;
}















@media screen and (max-width:1920px){}
@media screen and (max-width:1919px){}
@media screen and (max-width:1440px){
	#price-page .price-wrapper{
		padding: 0 50px;
	}
	#aboutus .aboutus-section1 .swiper-slide{
		width: calc((100vw - 100px)/4 - 37.5px);
    	margin-right: 50px;
	}
	
	#aboutus .aboutus-wapper{
		width:100%;
		padding:0 50px;
		box-sizing:border-box;
	}
	#product-page .section-2 .section-2-2,
	#product-page .section-1{
		padding:0 120px;
	}
	#product-page .section-1{
		
	}
	#product-page .section-2 .section-2-content{
		right:120px;
	}
	#contactus2022 .contactus2022-section3 li .section3-content-wrapper{
		width:100%;
		border:none;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(3) .section3-left{
		width:0;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(3) .section3-right{
		width: 100%;
    	flex-flow: row-reverse;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(3) .img{
		padding-right: 25%;
		width: 25%;
	}

}
@media screen and (max-width:1280px){
		.index-content .section-1 li .img{
		max-height: 400px;
	}
	#price-page .section-1 .section-1-list > ul > li .li_top{
		padding:0 20px;
	}
	#price-page .section-1 .section-1-list > ul > li .li_bom dl{
		width:calc(100% - 40px);
	}
	#price-page .section-1 .section-1-list > ul > li .li_top .price strong{
		font-size:40px;
	}
	#product-page .section-2 .section-2-2 .section-2-title,
	#product-page .section-1 .section-1-content h3{
		font-size:40px;
	}
	#product-page .section-1 .section-1-content p{
		font-size:20px;
	}
	#product-page .section-1 {
		height: auto;
		padding: 80px 120px;
	}
	#product-page .section-5-tab .section-5-list.on, 
	#product-page .section-4-tab .section-4-list.on{
		height:500px;
	}
	#contactus2022 .section1-left{
		width:500px;
	}
	#contactus2022 .section1-right{
		width: calc(100% - 500px);
    	padding-left: 50px;
	}
	#contactus2022 .contactus2022-section3 li .section3-content-wrapper{
		padding:30px;
	}
	#contactus2022 .shopyy-title{
		font-size:30px;
	}

}
@media screen and (max-width:1024px){
	#price-page .price-wrapper{
		padding: 0 50px;
	}
	.index-content .section-1 li .img{
		max-height: 300px;
	}
	#header .header-wrapper,
	.index-content .section-1 .section1-theme,
	.index-content .section-2 ul li,
	.index-content .section-3{
		padding-left: 50px;
		padding-right: 50px;
	}
	#header .header-left .mobile-login, 
	#header .header-left .mobile-menu-icon, 
	#header .header-wrapper{
	    display: block;
	}
	#header .nav, 
	#header .header-right{
	    display: none;
	}
	#header .header-left{
		justify-content: space-between;
	}
	.index-content .image-text .image,
	.index-content .image-text .text-wrapper{
		padding: 0 30px;
	}
	.mobile-nav{
		display:block;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.5);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 999999;
	}
	.mobile-nav .mobile-nav-wrapper{
		background: #fff;
		width: 80%;
		position: absolute;
		right: 0;
		top: 0;
		height: 100vh;
		transform:translate(100%,0);
		transition: all 0.3s ease;
		max-width: 450px;
	}
	.mobile-nav.on{
		opacity:1;
		visibility:visible;
	}
	.mobile-nav.on .mobile-nav-wrapper{
		transform:none;
	}
	.mobile-nav .mobile-nav-top{
		height: 80px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 20px;
		border-bottom:1px solid #eee;
	}
	.mobile-nav .mobile-nav-top .m-logo svg{
		display:block;
	}
	.mobile-nav .mobile-nav-top .m-nav-close{
		width:30px;
		height:30px;
		position:relative;
	}
	.mobile-nav .mobile-nav-top .m-nav-close:before{
		content: '';
		width: 100%;
		height: 2px;
		background: #333;
		position: absolute;
		top: 50%;
		transform: rotate(-135deg);
		transition:all .5s ease;
	}
	.mobile-nav .mobile-nav-top .m-nav-close:after{
		content: '';
		width: 100%;
		height: 2px;
		background: #333;
		position: absolute;
		top: 50%;
		transform: rotate(45deg);
		transition:all .5s ease;
	}
	.mobile-nav.on .mobile-nav-top .m-nav-close:before{
		transform: rotate(45deg);
	}
	.mobile-nav.on .mobile-nav-top .m-nav-close:after{
		transform: rotate(-45deg);
	}
	
	
	.mobile-nav ul{
		padding: 20px 0;
		overflow: auto;
		height: calc(100vh - 80px);
		box-sizing: border-box;
	}
	.mobile-nav ul li{}
	.mobile-nav ul li a{
		display: flex;
		align-items: center;
		justify-content: space-between;
		height:50px;
		padding:0 20px;
	}
	.mobile-nav ul li a:hover{
		color:#333;
	}
	.mobile-nav ul li.on .level-2 dd.on > a svg,
	.mobile-nav ul li.on > a svg{
		transform:rotate(180deg);
	}
	.mobile-nav ul li .level-2{
		display:none;
		background: #f5f5f5;
	}
	.mobile-nav ul li dd > a{}
	.mobile-nav ul li dd > a svg{}
	.mobile-nav ul li .three-level{
		display:none;
	}
	.mobile-nav ul li .three-level a{
		text-indent: 15px;
	}
	.mobile-nav ul li.on .level-2{
		display:block;
	}
	.mobile-nav ul li.on .level-2 dd.on .three-level{
		display:block;
	}
	#cases-page .section-1{
		padding:80px 50px;
	}
	#cases-page .section-1 .section-1-content{
		padding:0 40px 0 0;
	}
	#aboutus .aboutus-section1{
		padding-left:40px;
		padding-right:40px;
	}
	#aboutus .aboutus-section1 .swiper-slide {
		width: calc((100vw - 80px)/3 - 26.66666px);
		margin-right: 40px;
	}
	#aboutus .aboutus-section2-left{
		width: calc(100% - 550px);
		margin-right: 100px;
	}
	#aboutus .aboutus-section2-right{
		width:450px;
	}
	#product-page .section-2 .section-2-content{
		right:50px;
	}
	#product-page .section-2 .section-2-2, 
	#product-page .section-1{
		padding: 0 50px;
	}
	#product-page .section-1{
		padding:80px 50px;
	}
	#product-page .section-3 .section-3-experience-items{
		flex-direction: column;
	}
	#product-page .section-3 .section-3-experience-content{
		padding:0 40px 40px;
	}
	#product-page .section-3 .section-3-experience-tags{
		top:75px;
	}
	#contactus2022 .contactus2022-section1{
		flex-direction: column;
	}
	#contactus2022 .section1-left{
		width: 100%;
	}
	#contactus2022 .section1-right{
		width: 100%;
		padding: 0;
		margin: 50px 0 0;
	}
	#contactus2022 .contactus2022-section2 ul{
		
	}
	#contactus2022 .contactus2022-section2 li{
		
	}
	#contactus2022 .contactus2022-section3 li .section3-content-wrapper{
		width: 100%;
    	border: none;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(3) .section3-left{
		width:0;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(3) .section3-right{
		width: 100%;
		flex-flow: row-reverse;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(6) .img{
		width:100%;
	}	
	#contactus2022 .contactus2022-section4 .section4-loop-1 img, 
	#contactus2022 .contactus2022-section4 .section4-loop-2 img{
		max-height:250px;
	}	
	#contactus2022 .contactus2022-section3 li .section3-content p{
		line-height:1.8;
	}
}
@media screen and (max-width:1023px){
	.page-banner{
		padding: 100px 30px;
	}
	#price-page .price-wrapper{
		padding: 0 30px;
	}
	#header .header-wrapper,
	.index-content .section-1 .section1-theme,
	.index-content .section-2 ul li,
	.index-content .section-3{
		padding-left: 30px;
		padding-right: 30px;
	}
	.index-content .image-text{
		flex-direction: column;
	}
	.index-content .image-text .text,
	.index-content .image-text .image{
		width: 100%;
	}
	.index-content .section-2 ul li:nth-child(odd) .image-text{
		flex-direction: column-reverse;
	}
	.index-content .image-text .text{
		margin-top: 30px;
		justify-content: flex-start;
	}
	.index-content .image-text .image, 
	.index-content .image-text .text-wrapper{
		padding: 0;
	}
	.index-content .image-text .text-wrapper{
		display: flex;
	    flex-direction: column;
	    justify-content: center;
	    align-items: center;
	    text-align: center;
		max-width: 100%;
		width: 100%;
	}
	#news li{
        width: calc(50% - 20px);
    }
    #news li .date-box{
        width: 100px;
        height: 100px;
    }
    #news li .newslist-con{
        width: calc(100% - 115px);
    }
    #footer .link{
		flex-direction: column;
		padding: 0 30px;
	}
	#footer .link .link-list{
	    width: 100%;
	    justify-content: flex-start;
	    margin: 0 0 50px;
	}
	#footer .link dd{
		min-height: 0;
	}



	#price-page .section-3 li{
		width:100%;
	}
	#price-page .section-3 .answer{
		height:auto;
	}

	#price-page .section-4 .fun-list{
		display: none;
	}
	#price-page .section-4 .fun-list-wap{
		display: block;
	}
	#price-page .section-4 .fun-list-wap-title{
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    height: 50px;
	    border: 1px solid #eee;
	    border-radius: 5px;
	    overflow: hidden;
	}
	#price-page .section-4 .fun-list-wap-title a{
	    width: 25%;
	    height: 50px;
	    line-height: 50px;
	    text-align: center;
	    font-size: 16px;
	    border-right: 1px solid #eee;
	}
	#price-page .section-4 .fun-list-wap-title a.on{
	    background: var(--theme-color);
	    color: #fff;
	}
	#price-page .section-4 .fun-list-wap-title a:last-child {
	    border: 0;
	}
	#price-page .section-4 .fun-list-wap-content-th{
	    margin: 30px 0 0;
	    overflow: hidden;
	    border-radius: 5px 5px 0 0;
	}
	#price-page .section-4 .fun-list-wap-content-th ul{
	    display: inline-flex;
	    background: #eee;
	    transition:all 0.5s;
	}
	#price-page .section-4 .fun-list-wap-content-th li {
	    width: calc(100vw - 100px);
	    padding: 40px 0;
	    text-align: center;
	}
	#price-page .section-4 .fun-list-wap-content-th li h4{
	    font-size: 24px;
	    color: #2A2D3F;
	}
	#price-page .section-4 .fun-list-wap-content-th li p{
	    margin-top: 10px;
	}
	#price-page .section-4 .fun-list-wap-content{
	    display: flex;
	    justify-content: space-between;
	    border: 1px solid #eee;
	    border-radius: 0 0 5px 5px;
	}
	#price-page .section-4 .fun-list-wap-left{
	    width: 50%;
	    overflow: hidden;
	}
	#price-page .section-4 .fun-list-wap-left li{
	    display: flex;
	    align-items: center;
	    padding: 0 20px;
	    font-weight: bold;
	    height: 50px;
	    position: relative;
	    color: #2A2D3F;
	}
	#price-page .section-4 .fun-list-wap-left li:before {
	    content: '';
	    position: absolute;
	    left: 24px;
	    bottom: 0;
	    width: 100%;
	    height: 1px;
	    border-bottom: 1px dashed #eee;
	}


	#price-page .section-4 .fun-list-wap-right{
	    width: 50%;
	    overflow: hidden;
	}
	#price-page .section-4 .fun-list-wap-right ul{
	    display: inline-flex;
	    overflow: hidden;
	    transition:all 0.5s;
	}
	#price-page .section-4 .fun-list-wap-right li{
	    width: calc(50vw - 50px);
	}
	#price-page .section-4 .fun-list-wap-right dd {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    font-weight: bold;
	    height: 50px;
	    position: relative;
	}
	#price-page .section-4 .fun-list-wap-right dd:before {
	    content: '';
	    position: absolute;
	    left: 0;
	    bottom: 0;
	    width: 100%;
	    height: 1px;
	    border-bottom: 1px dashed #eee;
	}
	#price-page .section-1 .section-1-list > ul > li:after{
		bottom:-75px;
	}
	#price-page .section-1 .section-1-list{
		padding-top:60px;
	}
	#theme-page .template-box .template li{
		width:33.3333%;
	}
	#theme-page .template-box .on .template li{
		width:50%;
	}
	#cases-page .section-1 .section-1-wrapper{
		flex-direction: column-reverse;
	}
	#cases-page .section-1 .section-1-content{
		width: 100%;
		text-align: center;
		margin-top: 50px;
	}
	#cases-page .section-1 .section-1-img{
		width:100%;
	}
	
	#cases-page .section4-pagination {
		margin-top: 20px;
		display: flex;
		justify-content: center;
	}
	#cases-page .section4-pagination .swiper-pagination-bullet{
		width: 20px;
		height: 4px;
		background-color: #ccc;
		opacity: .5;
		border-radius: 0;
	}
	#cases-page .section4-pagination .swiper-pagination-bullet-active {
		background-color: #1D213B;
		opacity: 1;
	}
	#cases-page .section-1 .section-1-content h3{
		font-size:30px;
	}
	#cases-page .section-1 .section-1-content p{
		font-size:16px;
		margin-top:20px;
	}
	#cases-page .section-1 .section-1-content a{
		margin-top:40px;
	}
	#cases-page .section-2 .section2-container,
	#cases-page .section-2 .section-2-2-img{
		height:600px;
	}
	#cases-page .section-2 .section-2-2-item{
		height:400px;
		padding: 200px 50px 0;
		justify-content: flex-start;
	}
	
	#cases-page .section-2 .section-2-2-item .detail,
	#cases-page .section-2 .section-2-2-item .tag{
		margin-bottom:30px;
	}
	#cases-page .section-2 .section-2-2-item h4{
		line-height: 1;
		margin-bottom: 20px;
	}
	#cases-page .section-2 .section-2-3 ul{
		grid-template-columns:repeat(1, 1fr);
		grid-row-gap:50px;
	}
	#cases-page .section-3 .section3-pagination{
		left: 0;
		right: auto;
		top: auto;
		bottom: -10px;
		width: 100%;
		display: flex;
		justify-content: center;
	}
	#cases-page .section-3 .swiper-pagination-bullet{
		margin:0 15px;
		line-height:26px;
	}
	#cases-page .section-3 .swiper-pagination-bullet-active{}
	#cases-page .section-3 .section-3-text{
		padding:0 0 0 50px;
	}
	#cases-page .section-5{
		height: 730px;
	}
	#cases-page .section-5 .section-5-1{
		flex-direction: column;
	}
	#cases-page .section-5 .section-5-1-left{
		width:100%;
	}
	#cases-page .section-5 .section-5-1-right{
		height: auto;
		margin: 60px 0;
	}	
	#cases-page .section-2 .section2-pagination{
		right: 0;
		top: 50px;
		transform: none;
	}
	#cases-page .section-2 span:first-child{
		margin-bottom: 20px;
	}
	#cases-page .section-2 .swiper-pagination-bullet{
		border-radius: 27px 0 0 27px;
	}
	#aboutus .aboutus-section2-left{
		width: 100%;
		margin-right: 0;
		margin-bottom:40px;
	}
	#aboutus .aboutus-section2-right{
		width:100%;
	}
	#aboutus .aboutus-section4 li{
		width:100%;
		margin: 0 0 30px;
	}
	#aboutus .aboutus-section1{
		padding-left:30px;
		padding-right:30px;
	}
	#aboutus .aboutus-section1 .swiper-slide {
		width: calc((100vw - 60px)/2 - 20px);
		margin-right: 30px;
	}
	#aboutus .aboutus-section3 ul li{
		width:50%;
	}
	#partner_2022 .partner2022_wrapper{
		max-width:calc(100vw - 60px);
	}
	#partner_2022 .partner2022-logo-list{
		grid-template-columns: repeat(2,1fr);
		grid-column-gap: 30px;
		grid-row-gap: 30px;
	}
	#product-page .section-1{
		flex-direction: column-reverse;
	}
	#product-page .section-1 .section-1-img,
	#product-page .section-1 .section-1-content{
		width:100%;
		padding:0;
		text-align:center;
	}
	#product-page .section-1 .section-1-content{
		margin-top:50px;
	}
	#product-page .section-1 .section-1-content p{
		max-width:100%;
	}
	#product-page .section-1 .section-1-content .banner-btn{
		justify-content: center;
	}
	#product-page .section-2 .section-2-img{
		height:400px;
	}
	#product-page .section-2 .section-2-img img{
		object-fit: cover;
		height:100%;
	}
	
	#product-page .section-2 .section-2-content{
		padding: 50px;
		width: 450px;
	}
	#product-page .section-3 .ul-1{
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	#product-page .section-3 .ul-1 li{
		width:33.3333%;
	}
	#product-page .section-3 .ul-1 li:last-child{
		width:100%;
	}
	#contactus2022 .contactus2022-section2,
	#contactus2022 .contactus2022-section1{
		padding:30px;
	}
	#contactus2022 .contactus2022-section3 li .section3-content-wrapper{
		padding:30px;
	}
	#contactus2022 .contactus2022-section3 li .img{
		height: 50vw;
	}
	#contactus2022 .contactus2022-section3 li .img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(3) .img{
		padding:0;
		width:50%;
	}

}
@media screen and (max-width:767px){

	.page-banner{
		padding: 80px 20px;
	}
	.shopyy-wrapper,
	#price-page .price-wrapper{
		padding: 0 20px;
	}
	.index-content .section-1 .shopyy-main-title{
		font-size: 34px;
	}
	.shopyy-title{
		font-size: 30px;
	}
	.index-content .section-1 .shopyy-detail{
		font-size: 16px;
		margin: 15px 0 0;
	}
	.index-content .section-1 .section1-content a{
		margin: 30px 0 0;
	}
	#header .header-wrapper,
	.index-content .section-1 .section1-theme,
	.index-content .section-2 ul li,
	.index-content .section-3{
		padding-left: 20px;
		padding-right: 20px;
	}
	#news{
        flex-direction: column;
    }
    #news li{
        width: 100%;
        margin: 0 0 20px;
    }
    .index-content .section-1 .section1-content{
    	padding: 80px 20px;
    	text-align: center;
    }
    .index-content .section-1 .section1-theme-btn{
    	right: 20px;
    }
    .bottom-cus{
	    padding: 0 20px;
	    text-align: center;
	}
	.bottom-cus a{
		margin: 30px 0 0;
	}

	#footer .footer-bom{
		padding: 15px 20px;
	}
	#footer .link .link-list{
	    justify-content: center;
	    text-align: center;
	}



	#price-page .section-3 .shopyy-detail{
		margin-top:20px;
	}
	#price-page .section-3 .answer{
		padding:20px;
		margin-top:15px;
	}
	#price-page .section-3 li .problem{
		padding-left: 10px;
		font-size: 20px;
	}
	#price-page .section-3 ul,
	#price-page .section-3{
		margin-top:60px;
	}
	#price-page .section-4 .fun-list-wap-content-th li{
		width: calc(100vw - 40px);
	}
	#price-page .section-4 .fun-list-wap-right li{
	    width: calc(50vw - 20px);
	}

	#theme-page .section-1{
		padding:60px 20px;
		margin-bottom:60px;
	}
	#theme-page .section-1 .section-1-wrapper{
		flex-direction: column-reverse;
		padding: 0;
	}
	#theme-page .section-1 .section-1-content,
	#theme-page .section-1 .section-1-img{
		width:100%;
		padding:0;
		margin:0;
	}
	#theme-page .section-1 .section-1-content{
		margin-top:30px;
		text-align:center;
	}
	#theme-page .section-1 .section-1-content h3{
		font-size:30px;
	}
	#theme-page .section-1 .section-1-content .describe{
		font-size:16px;
	}
	#theme-page .template-box .on .template li,
	#theme-page .template-box .template li{
		width:100%;
	}
	#theme-page .template-box .on .list-lt{
		position: absolute;
		left: -20px;
		top: -1px;
		padding: 20px;
		width: 100%;
		background: #f1f1f1;
		z-index: 9;
	}
	#theme-page .template-box .on .list-rt{
		width:100%;
	}
	#theme-page .template-box{
		padding:60px 0 ;
	}

	#cases-page .section-4 li .content{
		padding:24px 18px;
	}
	#cases-page .section-2 .section-2-2-img{
		height:100%;
		position: absolute;
		left: 0;
		top: 0;
	}
	#cases-page .section-2 .section2-container, 
	#cases-page .section-2 .section-2-2-img{
		height:750px;
	}
	#cases-page .section-2 .section-2-2-item{
		height: 550px;
    	padding: 200px 20px 0;
	}
	
	#cases-page .section-2 .section-2-3 li{
		flex-direction: column;
	}
	#cases-page .section-2 .section-2-3 li .img,
	#cases-page .section-2 .section-2-3 li .section-2-3-content{
		width:100%;
	}
	#cases-page .section-2 .section-2-3 li .section-2-3-content{
		margin-top:30px;
	}
	#cases-page .section-2 .section-2-3 li .section-2-3-content p{
		margin-top:15px;
	}
	#cases-page .section-3 .section-3-content{
		flex-direction: column;
	}
	#cases-page .section-3 .section-3-img,
	#cases-page .section-3 .section-3-text{
		width:100%;
		padding:0;
		text-align:center;
	}
	#cases-page .section-3 .section-3-container{
		height:500px;
	}
	#cases-page .section-3 .section-3-text a{
		justify-content: center;
	}
	#cases-page .section-3 .section-3-text p{
		margin-top:15px;
	}
	#cases-page .section-5 .section-5-1-right{
		width: 100%;
		justify-content: flex-start;
	}
	#cases-page .section-5 .section-5-1-right ul{
		grid-template-columns: repeat(1,1fr);
		grid-row-gap: 60px;
	}
	#cases-page .section-5{
		height:930px;
	}
	#cases-page .section-6{
		flex-direction: column;
	}
	#cases-page .section-6 .img,
	#cases-page .section-6 .form{
		width:100%;
	}
	#cases-page .section-6 .form{
		margin-top:40px;
		text-align:center;
	}
	#cases-page .section-6 .form .tel,
	#cases-page .section-6 .tips{
		justify-content: center;
	}
	#cases-page .section-2 .section-2-1,
	#cases-page .section-2{
		margin-top:60px;
	}
	#aboutus .banner h3{
		font-size: 34px;
    	margin-bottom: 20px;
	}
	#aboutus .banner p {
		line-height: 24px;
		margin-bottom: 20px;
	}
	#aboutus .aboutus-section1{
		padding-left:20px;
		padding-right:20px;
	}
	#aboutus .aboutus-banner-wapper{
		width:calc(100% - 40px);
	}
	#aboutus .aboutus-section1-title{
		height:auto;
		margin-bottom:30px;
	}
	#aboutus .aboutus-section1-title span{
		margin:0 5px 5px;
	}
	#aboutus .aboutus-section1 .swiper-slide {
		width: calc(100vw - 40px);
		margin-right: 20px;
	}
	#aboutus .aboutus-section1-list .aboutus-content{
		margin:30px 0 0;
		height:70px;
	}
	#aboutus .aboutus-wapper{
		padding:0 20px;
	}
	#aboutus .title{
		font-size:24px;
		margin-bottom:20px;
	}
	#aboutus .aboutus-section2-right li{
		width: 100%;
		margin-right:0;
		margin-bottom:20px;
	}
	#aboutus .aboutus-section2-right li:nth-child(3){
		margin-bottom:20px;
	}
	#aboutus .aboutus-section2,
	#aboutus .aboutus-section5{
		padding: 0 0 40px
	}
	#aboutus .aboutus-section4{
		padding:0 0 20px;
	}
	#aboutus .aboutus-section4 ul{
		margin-top:30px;
	}
	#aboutus .aboutus-section5 .aboutus-section4-detail{
		margin:20px 0 40px;
	}
	#aboutus .aboutus-section6 .img{
		margin-bottom:20px;
	}
	#aboutus .aboutus-section6{
		padding:0;
	}
	#aboutus .aboutus-section3 ul li{
		width:100%;
	}
	#partner_2022 .partner2022_wrapper{
		max-width:calc(100vw - 40px);
	}



	#product-page .section-2 .section-2-2, 
	#product-page .section-1{
		padding:0 20px;
	}
	#product-page .section-1{
		padding:60px 20px;
	}
	
	#product-page .section-2 .section-2-2 .section-2-title, 
	#product-page .section-1 .section-1-content h3{
		font-size:30px;
	}
	#product-page .section-2 .section-2-1 .section-2-title{
		font-size:20px;
	}
	#product-page .section-2 .section-2-2 .section-2-detail,
	#product-page .section-1 .section-1-content p{
		font-size:16px;
	}
	#product-page .section-1 .section-1-content .banner-btn{
		margin-top:40px;
	}
	#product-page .section-2 .section-2-content{
		right: 20px;
		width: 200px;
		padding: 20px;
		text-align: center;
		top: 50%;
		margin: -126px 0 0;
		border-radius: 8px;
		
	}

	#product-page .section-2 .section-2-2{
		padding: 50px 20px;
		text-align: center;
		height: auto;
	}	
	#product-page .section-3{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	#product-page .section-3 .ul-1 li{
		width:100%;
	}
	#product-page .section-3 .ul-1 .shop-cost{
		width:calc(100% - 40px);	
	}
	#product-page .section-3 .section-3-detail,
	#product-page .section-3 .section-3-content-1 h4{
		text-align:center;
	}
	#product-page .section-3 .section-3-experience{
		margin-top:60px;
		flex-direction: column;
	}
	#product-page .section-3 .section-3-experience-items{
		width:100%;
		margin-bottom:20px;
	}
	#product-page .section-3 .section-3-experience-content{
		padding:0 20px 20px;
	}
	#product-page .section-3 .section-3-experience-items .section-3-experience-img{
		width: 150px;
		height: 200px;
	}
	#product-page .section-3 .section-3-experience-items .section-3-experience-img img{
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	#product-page .section-3 .section-3-experience-tags{
		width:150px;
	}
	#product-page .section-3 .section-3-th{
		width:125px;
	}
	#product-page .section-3 .section-3-container{
		width: calc(100% - 125px);
	}

	#product-page .section-4-tab{
		margin-top: 50px;
		flex-direction: column;
	}


	#product-page .section-4-tab .section-4-img{
		width:100%;
		margin-bottom:30px;
	}
	#product-page .section-5-tab .section-5-list.on{
		height:300px;
	}
	#product-page .section-4-tab .section-4-list.on{
		height:200px;
	}
	#product-page .section-5-tab .section-5-title,
	#product-page .section-4-tab .section-4-title{
		width:100%;
	}
	#product-page .section-4-tab .section-4-title a{
		height:60px;
		line-height:60px;
		font-size:20px;
		text-align: left;
    	padding-left: 20px;
	}
	#product-page .section-5-tab .section-5-title a:before, 
	#product-page .section-4-tab .section-4-title a:before{
		right:auto;
		left:0;
		background: linear-gradient(90deg, rgba(29, 35, 69, 0.2) 0%, rgba(29, 35, 69, 0) 100%);
	}
	#product-page .section-5-tab .section-5-title a{
		padding:20px;
		font-size:20px;
	}
	#product-page .section-5-tab .section-5-title a span{
		margin-top:15px;
	}
	#product-page .section-5-tab .section-5-title a:hover, 
	#product-page .section-5-tab .section-5-title a.on, 
	#product-page .section-4-tab .section-4-title a:hover, 
	#product-page .section-4-tab .section-4-title a.on {
		border:none;
		border-left: 6px solid #1D213B;
	}
	#product-page .section-5-tab{
		height: auto;
    	flex-direction: column-reverse;
		margin-top:50px;
	}
	#product-page .section-5-tab .section-5-img{
		width:100%;
		margin-bottom:30px;
	}
	#product-page .section-6 .section-6-content h4{
		font-size:20px;
	}
	#product-page .section-6 .section-6-content h4 svg{
		width:26px;
		height:26px;
	}
	#product-page .section-2 .section-2-img{
		height:435px;
		width:100vw;
		overflow:hidden;
	}
	#product-page .section-2 .section-2-img img{
		transform: translate(calc(-50% + 55px), 0);
		object-fit:none;
		max-width:none;
	}
	#contactus2022 .contactus2022-section2, 
	#contactus2022 .contactus2022-section1{
		padding:20px;
	}
	#contactus2022 .section1-right{
		margin:30px 0 0;
	}
	#contactus2022 .shopyy-detail,
	#contactus2022 .shopyy-main-title{
		text-align:left;
	}
	#contactus2022 .section1-right .section1-list ul{
		grid-template-columns: repeat(2,1fr);
    	grid-column-gap: 20px;
	}
	#contactus2022 .contactus2022-section2 ul{
		grid-template-columns: repeat(1,1fr);
		grid-column-gap: 20px;
		grid-row-gap: 20px;
	}
	#contactus2022 .contactus2022-section2 li .section2-content{
		padding: 20px;
    	height: auto;
		justify-content: flex-start;
	}
	#contactus2022 .contactus2022-section2 li .section2-content p{
		margin-top:10px;
	}
	#contactus2022 .contactus2022-section3{
		padding:20px 0;
	}
	#contactus2022 .contactus2022-section3 li{
		flex-direction: column;
		height:auto;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(3) .img,
	#contactus2022 .contactus2022-section3 li:nth-child(3) .section3-content,
	#contactus2022 .contactus2022-section3 li .section3-left,
	#contactus2022 .contactus2022-section3 li .section3-right{
		width:100%;
	}
	#contactus2022 .contactus2022-section3 li{
		flex-direction: column;
		height: auto;
		margin-top:20px;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(7),
	#contactus2022 .contactus2022-section3 li:nth-child(5),
	#contactus2022 .contactus2022-section3 li:nth-child(1){
		flex-direction: column-reverse;
	}
	#contactus2022 .contactus2022-section3 li .section3-content-wrapper .shopyy-title{
		text-align:left;
	}
	#contactus2022 .contactus2022-section3 li:nth-child(3) .section3-right{
		flex-direction: column;
	}
	#contactus2022 .contactus2022-section4 .shopyy-title,
	#contactus2022 .contactus2022-section4 .shopyy-detail{
		padding:0 20px;
	}
	#contactus2022 .contactus2022-section4 .section4-loop-1 img, 
	#contactus2022 .contactus2022-section4 .section4-loop-2 img{
		max-height: 200px;
	}
	#contactus2022 .contactus2022-section3 li .section3-content-wrapper{
		padding: 30px 20px;
	}
	#contactus2022 .contactus2022-section3 li .section3-content p{
		margin-top:50px;
		line-height: 1.5;
	}
	#contactus2022 .contactus2022-section3 li .img{
		height:100vw;
	}
	#contactus2022 .contactus2022-section3 li .img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#contactus2022 .contactus2022-section3 li .section3-content{
		border:none;
	}

}





