@charset "utf-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.6.1/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap');
.loading{
	background:rgba(255,255,255,.95);
	z-index:1999;
	position:fixed;
	width:100%;
	height:100vh;
	top:0;
}

@keyframes wave {
	0% {
	  transform: rotateZ(0deg) translate3d(0,1.2%,0) rotateZ(0deg); 
	}
	100% {
	  transform: rotateZ(360deg) translate3d(0,1.2%,0) rotateZ(-360deg); 
	} 
}
@keyframes wave2 {
	0% {
	  transform: rotateZ(0deg) translate3d(0,2.5%,0) rotateZ(0deg); 
	}
	100% {
	  transform: rotateZ(360deg) translate3d(0,2.5%,0) rotateZ(-360deg); 
	} 
}
@keyframes wave3 {
	0% {
	  transform: rotateZ(0deg) translate3d(0,4.5%,0) rotateZ(0deg); 
	}
	100% {
	  transform: rotateZ(360deg) translate3d(0,4.5%,0) rotateZ(-360deg); 
	} 
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-50px);
	}
	100% {
		transform: translatey(0px);
	}
}

@keyframes rotate360 {
	to {
	  transform: rotate(360deg)
	}
}

@keyframes spin {
	0%	{transform: rotate(0deg);}
	55% {transform: rotate(360deg);}
	56%{
		opacity:1;
	}
	85%{
		opacity:0;
		transform: rotate(360deg);
	}
	86%{
		transform: rotate(0deg);
	}
	88%{
		opacity:0;
	}
	95%{
		opacity:1;
	}
}
@keyframes spin-cover {
	0%	{opacity:0}
	55% {opacity:0}
	56%{
		opacity:1;
	}
	85%{
		opacity:1;
	}
	94%{
		opacity:1;
	}
	95%{
		opacity:0;
	}
}

@keyframes shake {
	0% { transform: rotate(0) }
	4% { transform: rotate(5deg) }
	8% { transform: rotate(-6deg) }
	11% { transform: rotate(10deg) }
	14% { transform: rotate(-11deg) }
	16% { transform: rotate(15deg) }
	18% { transform: rotate(-16deg) }
	21% { transform: rotate(9deg) }
	24% { transform: rotate(-10deg) }
	28% { transform: rotate(5deg) }
	32% { transform: rotate(-4deg) }
	36% { transform: rotate(0) }
}

@keyframes breathing {
	0% {transform: scale(1);}
	30% {transform: scale(1.3);}
	50% {transform: scale(0.75);}
	80% {transform: scale(1.22);}
}

.flex-sec{display:flex;flex-flow: row wrap;}
.v-helper{display: inline-block;height: 100%;vertical-align: middle;}
.flex-between{justify-content: space-between;}
/*
.flex-sec.flex-between::after{
	content:'';
  	flex: auto;
}
*/
.flex-start{justify-content:flex-start;}
.flex-end{justify-content:flex-end;}
.flex-reverse{
	flex-direction:row-reverse;
}
.flex-grid-2{
	width:calc(50% - 20px);
}
.flex-center{
	justify-content: center;
}
.flex-middle{
	align-items: center;
}
.flex-stretch{
	align-items: stretch;
}
.flex-grid-3-2{
	width:calc(66.67% - 20px);
}
.flex-grid-3-1{
	width:calc(33.33% - 20px);
}
.flex-grid-4-1{
	width:calc(25% - 20px);
	margin:0 10px;
}
.flex-grid-4-3{
	width:calc(75% - 20px);
	margin:0 10px;
}
.flex-autoh{
	align-items: flex-start;
  align-content: flex-start;
}

.rwd-width-limited{
	width:1160px;
	margin:0 auto;
}
.full-bg{width:100%;min-height:100vh;}

.rwd-mg-t-20{margin-top:20px;}
.rwd-mg-t-40{margin-top:40px;}
.rwd-mg-t-60{margin-top:60px;}
.rwd-mg-t-80{margin-top:80px;}
.rwd-mg-b-10{margin-bottom:10px;}
.rwd-mg-b-20{margin-bottom:20px;}
.rwd-mg-b-30{margin-bottom:30px;}
.rwd-mg-b-40{margin-bottom:40px;}
.rwd-mg-b-60{margin-bottom:60px;}
.rwd-pd-t-20{padding-top:20px;}
.rwd-pd-t-30{padding-top:30px;}
.rwd-pd-t-40{padding-top:40px;}
.rwd-pd-t-60{padding-top:60px;}
.rwd-pd-t-80{padding-top:80px;}
.rwd-pd-b-20{padding-bottom:20px;}
.rwd-pd-b-30{padding-bottom:30px;}
.rwd-pd-b-40{padding-bottom:40px;}
.rwd-pd-b-60{padding-bottom:60px;}
.rwd-pd-b-80{padding-bottom:80px;}

h1,h2,h3,h4{
	line-height:1.35em;
}
p{
	line-height:1.6em;
}

.rwd-mo{display: none !important;}

.btn{
	width:240px;
	height:66px;
	box-sizing: border-box;
	border:1px solid #fff;
	line-height:66px;
	color:#fff;
	font-size:16px;
	text-align:center;
	position:relative;
	display: block;
	margin:0 auto;
	transition:0.3s;
}
.btn:after{
	content:'';
	width:20px;
	height:6px;
	display: block;
	position:absolute;
	right:35px;
	bottom:29px;
	transition:0.3s;
}
.btn:hover{
	background:#fff;
	color:#335394;
}
.btn:hover:after{
	background: url('../images/common/arrow-b.png') no-repeat;
	right:10px;
}
.btn.btn-o{
	color:#f0815c;
	border-color:#f0815c;
}
.btn.btn-o:hover{
	background:#f0815c;
	color:#fff;
}
.btn.btn-o:hover:after{
	background: url('../images/common/arrow-w.png') no-repeat;
	right:10px;
}
.btn.btn-b{
	color:#335394;
	border-color:#335394;
}
.btn.btn-b:hover{
	background:#335394;
	color:#fff;
}
.btn.btn-b:hover:after{
	background: url('../images/common/arrow-w.png') no-repeat;
	right:10px;
}

/*select customize*/
.sel-custom{
	height:42px;
	padding:0 15px;
	box-sizing: border-box;
	line-height:40px;
	min-width:140px;
	color:#333;
	font-size:15px;
	background:#dedede;
}
.customSelectInner {
	background: url(../images/common/custom-sel-arrow.png) no-repeat center right;
	padding-right: 20px;
}

/*popup*/
.dark-popup{
	position: relative;
	padding: 30px 40px;
	width: auto; 
	max-width: 500px;
	margin: 20px auto;
	overflow:hidden;
	min-height:20vh;
	background:rgba(255, 255, 255, 1);
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.9;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

header{
	width:100%;
	height:100px;
	top:0;
	position:fixed;
	z-index:10;
	background: rgba(255,255,255,.2);
	transition:0.5s;
}
header.index-header-y{
	background: rgba(219,224,233,.9);
	height:80px;
}
/*
header .flex-sec.flex-between.hlp::after{
	flex: initial;
}
*/
header .inner{
	height:100px;
	padding:0 20px;
}
header.index-header-y .inner{
	height:80px;
}
header .inner .hlp{
	position: relative;
}
header .inner .signuplogin{
	height:100px;
	padding: 0 16px;
	position:absolute;
	right:54px;
	line-height:100px;
	font-size:14px;
	color:#fff;
	font-weight:bold;
}
header.index-header-y .inner .signuplogin{
	height:80px;
	line-height:80px;
}
header .inner .signuplogin:hover,header .inner .signuplogin.nav-active{
	background: rgba(0, 0, 0, 0.12);
}
header .inner .logo{
	margin:23px 0 22px;
	width:190px;
	height:55px;
	padding:0 15px;
	transition:0.5s;
}
header.index-header-y .inner .logo{
	margin:16px 0 16px;
	width:166px;
	height:48px;
}
header.index-header-y .inner .logo{
	margin:12px 0 13px;
}
header .inner .logo-text{
	position:absolute;
	left:-999999px;
}
header .inner .logo img{
	display: block;
	width:100%
}

body{
	font-size:12px;
	font-family:'Noto Sans TC',Helvetica,Arial,'微軟正黑體','新細明體',sans-serif;
	word-wrap:break-word;
	width:100%;
	letter-spacing:0.1em;
	line-height:1.5em;
	font-weight:400;
	background:#fff;
}
.wrapper.pages{
	padding-top:100px;
	background:#fff;
}

footer{
	padding:34px 0 30px;
	background:#fff;
	position:relative;
}
footer .line{
	width:100%;
	height:4px;
	position:absolute;
	top:0;
	background: rgb(209,18,119);
	background: linear-gradient(90deg, rgba(209,18,119,1) 0%, rgba(3,110,183,1) 50%, rgba(30,170,57,1) 100%); 
}
.footer-l p{
	font-size:16px;
	color:#333333;
	font-weight: bold;
	vertical-align: middle;
	margin-right:10px;
	display: inline-block;
}
.footer-l .footer-icon{
	height:52px;
	display: inline-block;
	vertical-align: middle;
	margin:10px 10px 10px 0;
}
.footer-l .footer-icon img{
	height:100%;
	display: block;
}
.footer-r p{
	font-size:13px;
	line-height:1.45em;
	color:rgba(0, 0, 0, 0.55);
}

.visual-wrap .visual-con{
	width:100%;
	height:100%;
	position:relative;
}

.visual-wrap .visual-con .one-visual{
	height:100vh;
	position:relative;
}
.visual-wrap .visual-con .one-visual .bg{
	width:100%;
	height:100%;
	object-fit: cover;
	position:absolute;
	background: rgb(254,241,221);
	background: linear-gradient(180deg, rgba(254,241,221,1) 0%, rgba(255,225,171,1) 25%, rgba(247,176,199,1) 100%); 	
}
.visual-wrap .visual-con .one-visual .item{
	width:100%;
	height:100%;
	position:absolute;
	overflow:hidden;
}
.visual-wrap .visual-con .one-visual .item .color-shape{
	width:100%;
	height:100%;
	position:absolute;
}
.visual-wrap .visual-con .one-visual .item .color-shape .shape1{
	width:28.5%;
	max-width:453px;
	position:absolute;
	display: block;
	top:-12%;
	left:-4%;
	animation: wave3 8.8s 0s infinite linear reverse ;
}
.visual-wrap .visual-con .one-visual .item .color-shape .shape1-line{
	width:33.8125%;
	max-width:541px;
	position:absolute;
	display: block;
	top:-16%;
	left:-12%;
	animation: wave3 5.8s 0s infinite linear ;
}
.visual-wrap .visual-con .one-visual .item .color-shape .shape2{
	width:33%;
	max-width:514px;
	position:absolute;
	display: block;
	bottom:-19%;
	left:-8%;
	animation: wave3 8.8s 0s infinite linear reverse ;
}
.visual-wrap .visual-con .one-visual .item .color-shape .shape2-line{
	width:37.75%;
	max-width:519px;
	position:absolute;
	display: block;
	bottom:-21%;
	left:-6%;
	animation: wave3 5s 0s infinite linear ;
}
.visual-wrap .visual-con .one-visual .item .color-shape .shape3{
	width:37.5%;
	max-width:600px;
	position:absolute;
	display: block;
	bottom:-9%;
	right:-17%;
	animation: wave3 9.6s 0s infinite linear reverse ;
}
.visual-wrap .visual-con .one-visual .item .color-shape .shape3-line{
	width:37.75%;
	max-width:604px;
	position:absolute;
	display: block;
	bottom:-7%;
	right:-19%;
	animation: wave3 5.2s 0s infinite linear ;
}
.visual-wrap .visual-con .one-visual .item .color-shape img{
	width:100%;
	display: block;
}

.visual-wrap .visual-con .one-visual .m-item.cenmid{
	width:47.3125%;
	max-width:757px;
}
.visual-wrap .visual-con .one-visual .m-item .visual-center{
	flex-direction: row-reverse;
}
.visual-wrap .visual-con .one-visual .m-item .left-text{
	width:54.689%;
	max-width:414px;
	position:relative;
}
.visual-wrap .visual-con .one-visual .m-item .left-text .title1{
	width:100%;
	position:relative;
}
.visual-wrap .visual-con .one-visual .m-item .left-text img{
	width:100%;
	top:0;
	left:0;
	display: block;
}
.visual-wrap .visual-con .one-visual .m-item .left-text .title2,.visual-wrap .visual-con .one-visual .m-item .left-text .title3{
	width:100%;
	position:absolute;
	top:0;
	left:0;
}
.visual-wrap .visual-con .one-visual .m-item .left-text .title1-heart{
	width:12.077%;
	max-width:50px;
	position:absolute;
	top:0;
	left:0;
	right:0;
	margin:0 auto;
	animation: shake 2.2s infinite 2s;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo{
	width:38.044%;
	max-width:288px;
	position:relative;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .tw{
	position:relative;
	width:100%;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .logo72{
	position:absolute;
	width:40.277%;
	max-width: 116px;
	left:0;
	top:25.359%;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .heart1{
	position:absolute;
	width:10.416%;
	max-width: 30px;
	right:2.43%;
	top:26.236%;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .heart2{
	position:absolute;
	width:10.416%;
	max-width: 30px;
	right:6.25%;
	top:33.118%;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .heart3{
	position:absolute;
	width:10.416%;
	max-width: 30px;
	right:10.069%;
	top:40%;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .ctitle{
	position:absolute;
	width:33.333%;
	max-width: 96px;
	right:23.958%;
	top:15.268%;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .mt{
	position:absolute;
	width:47.222%;
	max-width:136px;
	right:26.736%;
	top:48.817%;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .ctext{
	position:absolute;
	width:40.625%;
	max-width:117px;
	right:32.638%;
	top:57.849%;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .plus{
	position:absolute;
	width:6.597%;
	max-width:19px;
	right:57.986%;
	top:64.516%;
	animation: spin 2.5s infinite ease-in-out 2s;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo .plus2{
	position:absolute;
	width:6.597%;
	max-width:19px;
	right:57.986%;
	top:64.516%;
	opacity:0;
	animation: spin-cover 2.5s infinite ease-in-out 2s;
}
.visual-wrap .visual-con .one-visual .m-item .right-logo img{
	width:100%;
	display: block;
}

.sec-pd{
	padding:80px 0;
}

.mt-wrapper{
	margin-bottom:10px;
}
.mt-wrapper2{
	margin-bottom:40px;
}
.mt-icon{
	margin-right:5px;
	width:35px;
	height:35px;
	position:relative;
}
.mt-icon .mt-icon-ani{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	animation: spin 2.5s infinite ease-in-out 1s;

}
.mt-icon .mt-icon-ani2{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	animation: spin-cover 2.5s infinite ease-in-out 1s;

}
.mt-icon img{
	width:100%;
	display: block;
}
.m-title{
	font-size:36px;
	font-weight: bold;
	font-family: 'Lato';
}
.m-title2{
	font-size:18px;
	font-family: 'Lato';
	color:#999;
}

.search-wrapper{
	width:600px;
	background:#fff;
	height:60px;
	display: block;
	margin:0 auto 50px;
	position: relative;
	transition:0.4s;
}
.search-wrapper .search{
	width:100%;
	padding:0 100px 0 30px;
	height:60px;
	line-height:60px;
	font-size:20px;
	color:#666;
	border:none;
	background:none;
	outline:none;
	font-weight: 100;
	border:1px solid #ddd;
	border-radius: 40px;
	box-sizing: border-box;
	transition:0.4s;
}
.search-wrapper .search:focus{
	border:1px solid #000;
}
.search-wrapper .search-text{
	height:22px;
	position:absolute;
	width:80px;
	right:15px;
	top:19px;
}
.search-wrapper .search-text p{
	font-size:22px;
	font-weight:100;
	color:#000;
	height:22px;
	line-height:22px;
}
.search-wrapper .search-text .icon{
	width:22px;
	height:22px;
	margin-left:5px;
}
.search-wrapper .search-text .icon img{
	width:100%;
	display: block;
}

.one-link{
	border-radius:120px;
	border:1px solid #ddd;
	height:160px;
	width:66.666%;
	max-width:900px;
	margin-bottom:30px;
	transition:0.4s;
	background:#fff;
}
.one-link:nth-of-type(even){
	margin-left:33%;
	margin-right:0;
}
.one-link:nth-of-type(odd){
	margin-right:33%;
	margin-left:0;
}
.one-link.onsearch.onsearch-left{
	margin-left:33% !important;
	margin-right: 0 !important;;
}
.one-link.onsearch.onsearch-right{
	margin-right:33% !important;
	margin-left:0 !important;;
}
.one-link:hover{
	border-color:#000;
}
.one-link .logo{
	width:213px;
	height:160px;
	overflow:hidden;
	margin:0 20px 0 22px;
	border-radius:120px 0 0 120px;
}
.one-link .logo .name-hide{
	display: none;
}
.one-link .logo img{
	width:100%;
	height:100%;
	object-fit: cover;
	display: block;
	transition:.6s;
}
.one-link .logo:hover img{
	transform: scale(1.04);
}
.one-link .info{
	width:calc(100% - 255px);
	height:100%;
}
.one-link .info .title{
	width:calc(100% - 80px);
	font-size:26px;
	font-weight:400;
	line-height:1.4em;
	color:#000;
	overflow: hidden;
	transition:0.4s;
}
.one-link .info:hover .title{
	color:#036eb7;
}
.one-link .info .icon{
	width:40px;
	margin-right:25px;
	margin-left:15px;
	transition:0.4s;
	position:relative
}
.one-link .info .icon img{
	display: block;
	transition:0.4s;
}
.one-link .info:hover .icon img{
	margin-left:15px;
}

.sheart-1{
	width:9vw;
	max-width:100px;
	position:absolute;
	top:15%;
	left:-40px;
	animation: breathing 4s ease-out infinite;
}
.sheart-2{
	width:6vw;
	max-width:80px;
	position:absolute;
	top:50%;
	right:-25px;
	animation: breathing 4.5s ease-out infinite reverse;
}
.sheart-3{
	width:7vw;
	max-width:80px;
	position:absolute;
	bottom:15%;
	left:-25px;
	animation: breathing 5.2s ease-out infinite;
}

.sheart-1 img,.sheart-2 img,.sheart-3 img{
	width:100%;
	display: block;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.rwd-width-limited{width:calc(100% - 40px);}
	.one-link .info .title{
		font-size:24px;
		line-height:1.3em;
	}
	.visual-wrap .visual-con .one-visual .m-item.cenmid{
		width:65%;
		max-width:620px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape1{
		width:220px;
		top:-20px;
		left:-40px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape1-line{
		width:260px;
		top:-48px;
		left:-60px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape2{
		width:270px;
		bottom:-114px;
		left:-30px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape2-line{
		width:340px;
		bottom:-158px;
		left:-55px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape3{
		width:290px;
		bottom:-20px;
		right:-190px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape3-line{
		width:290px;
		bottom:-30px;
		right:-195px;
	}
	.sheart-1{
		width: 10vw;
		max-width:64px;
		top:8%;
		left:-24px;
	}
	.sheart-2{
		width: 10vw;
		max-width:64px;
		right:-24px;
	}
	.sheart-3{
		width: 10vw;
		max-width:64px;
		left:-24px;
	}
	.link-wrapper{
		width:calc(100% - 80px);
		margin:0 auto;
	}
	.one-link{
		width:78%;
		max-width:900px;
	}
	.one-link:nth-of-type(even){
		margin-left:22%;
		margin-right:0;
	}
	.one-link:nth-of-type(odd){
		margin-right:22%;
		margin-left:0;
	}
	.one-link.onsearch.onsearch-left{
		margin-left:22% !important;
		margin-right: 0 !important;;
	}
	.one-link.onsearch.onsearch-right{
		margin-right:22% !important;
		margin-left:0 !important;;
	}
	.one-link .info .title{
		font-size:22px;
		line-height:1.3em;
	}
}
@media screen and (min-width: 768px) and (max-width: 899px){
	header .inner .hlp{
		width:0;
	}
	header .inner .hrp{
		width: initial;
		height:100px;
		position: absolute;
		right:60px;
	}
	.m-title{
		font-size:36px;
	}
	.one-link{
		width:calc(100% - 80px);
		max-width:initial;
	}
	.one-link:nth-of-type(even){
		margin-left:80px;
		margin-right:0;
	}
	.one-link:nth-of-type(odd){
		margin-right:80px;
		margin-left:0;
	}
	.one-link.onsearch.onsearch-left{
		margin-left:80px !important;
		margin-right: 0 !important;;
	}
	.one-link.onsearch.onsearch-right{
		margin-right:80px !important;
		margin-left:0 !important;;
	}
	.one-link .info .title{
		font-size:20px;
		line-height:1.3em;
	}
}

@media screen and (max-width: 767px) {
	.rwd-width-limited{width:calc(100% - 20px);}
	.header-gap {
    margin-top: 100px;
	}
	
	header{height:100px;}
	header .inner{
		height:100px;
	}
	header .inner .logo{
		width:152px;
		height:44px;
		margin: 28px 0;
	}
	header.index-header-y .inner .logo{
		width:138px;
		height:40px;
		margin: 20px 0;
	}
	header .inner .hlp{
		width:0;
	}

	.footer-r{
		width:100%;
		margin-top:20px;
	}

	.rwd-mo{display: block !important;}
	.rwd-pc{display: none !important;}		

	.sec-pd{
		padding:40px 0;
	}

	.m-title{
		font-size:28px;
	}
	.m-title2{
		font-size:15px;
	}
	.mt-icon{
		width:25px;
		height:25px;
	}
	.search-wrapper .search{
		padding-right:86px;
	}
	.search-wrapper .search-text p{
		font-size:18px;
	}
	.search-wrapper .search-text{
		width:70px;
		right:10px;
	}

	.visual-wrap .visual-con .one-visual .item .color-shape .shape1{
		width:200px;
		top:-30px;
		left:-50px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape1-line{
		width:200px;
		top:-38px;
		left:-40px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape2{
		width:230px;
		bottom:-87px;
		left:-70px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape2-line{
		width:230px;
		bottom:-98px;
		left:-55px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape3{
		width:270px;
		bottom:-20px;
		right:-190px;
	}
	.visual-wrap .visual-con .one-visual .item .color-shape .shape3-line{
		width:270px;
		bottom:-30px;
		right:-195px;
	}

	.visual-wrap .visual-con .one-visual .m-item.cenmid{
		width:60%;
		max-width:280px;
	}
	.visual-wrap .visual-con .one-visual .m-item .visual-center{
		flex-direction: row;
	}
	.visual-wrap .visual-con .one-visual .m-item .right-logo{
		width:100%;
		margin-bottom:30px;
	}
	.visual-wrap .visual-con .one-visual .m-item .left-text{
		width:100%;
	}

	.search-wrapper{
		width:100%;
		margin-bottom:30px;
	}
	.search-wrapper .search{
		font-size:16px;
	}
	
	.one-link{
		width:100%;
		height:101px;
		max-width:initial;
		margin-bottom: 20px;
	}
	.one-link .logo{
		width:130px;
		height:101px;
		margin:0 8px 0 15px;
	}
	.one-link .info{
		width:calc(100% - 153px);
	}
	.one-link .info .title{
		width:calc(100% - 40px);
	}
	.one-link .info .icon{
		width:18px;
		margin-right: 14px;
		margin-left: 8px;
	}
	.one-link .info .icon img{
		width:100%;
	}
	.one-link .info:hover .icon img {
		margin-left: initial;
	  }
	.one-link:nth-of-type(even){
		margin-left:0;
		margin-right:0;
	}
	.one-link:nth-of-type(odd){
		margin-right:0;
		margin-left:0;
	}
	.one-link.onsearch.onsearch-left{
		margin-left:0 !important;
		margin-right: 0 !important;;
	}
	.one-link.onsearch.onsearch-right{
		margin-right:0 !important;
		margin-left:0 !important;;
	}
	.one-link .info .title{
		font-size:15px;
		line-height:1.3em;
	}
	.sheart-1{
		display: none;
	}
	.sheart-2{
		display: none;
	}
	.sheart-3{
		display: none;
	}
	
}

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

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