@charset "UTF-8";
/* #region 初始化 */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
}
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}
body {
	margin: 0;
	padding: 0;
	word-wrap: break-word;
	color: #333;
	background-color: #fff;
	line-height: 1.5;
}
body,table,input,textarea,select,option {
	font-family: 'PingFang SC', 'Microsoft YaHei', 'Avenir', 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif;
	font-weight: 400;
}
a {
	text-decoration: none;
	color: inherit;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-transition: all .5s;
	transition: all .5s;
}
ol,ul {
	list-style: none;
}
img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
dl,dd,h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
button,input,optgroup,select,textarea {
	color: inherit;
	outline: none;
}
button[disabled],html input[disabled] {
	cursor: default;
}
input[type="checkbox"],input[type="radio"] {
	padding: 0;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media screen and (min-width: 769px) {
	.sp {display: none !important;}
}
/* #region */
.comWidth {
  padding: 0 50px;
  max-width: 1600px;
  margin: 0 auto;
}
#toolbar{position: fixed;bottom: 0;width: 100%;z-index: 100;left: 0;display: none;}
#toolbar .list{display: flex;}
#toolbar .list li{width: 33.33%;background-color: #FC4400;border-radius: 8rem;}
#toolbar .list li:nth-child(2){background-color: #1AAD19;}
#toolbar .list li:nth-child(3){background-color: #0069FF;}
#toolbar .list a{display: flex;align-items: center;justify-content: center;font-size: 1.28rem;color: #fff;padding: .8rem 0;}
#toolbar .list img{width: 2.08rem;margin-right: .4rem;}
#wxnr{width:100%;height: 100%;position:fixed;top: 0;z-index:1000;display:none;background: rgba(0,0,0,.6);}
#wxnr .nrdf{position: absolute;top: 50%;left: 0;right: 0;width: 24rem;height: 24rem;padding: 1.6rem .8rem;text-align:center;background-color: rgba(255, 255, 255, 0.8);box-shadow: 0px 2px 6px #777;-webkit-box-shadow: 0px 2px 6px #777;-moz-box-shadow: 0px 2px 6px #777;border-radius:.8rem;box-sizing: border-box;margin: -12rem auto 0;}
#wxnr img{width: 10.8rem;height: 10.8rem;display: block;margin: 0 auto;}
#wxnr p{font-size: 1.12rem;text-align:center;line-height: 2.4rem;}
#wxnr i{position: absolute;top: .4rem;right:.4rem;width: 1.6rem;height: 1.6rem;font-size: 1.12rem;text-align:center;color: #fff;font-weight: bold;font-style: normal;background: #333;border-radius: 100%;cursor: pointer;}
#wxnr span{display:inline-block;padding: 0 .4rem;background-color: #1AAD19;color:#fff;border-radius: .4rem;cursor:pointer;}
#weixin{position: fixed;top: 50%;margin-top: -2.08rem;z-index: 9999999;font-size: 1.28rem;color: #fff;width: 90%;right: 5%;text-align: center;background: rgba(0, 0, 0, 0.8);border: 2px solid #333;border-radius: .4rem;display: none;line-height: 4rem;}
#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 500;
    padding: 0 50px;
}
#header:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    -webkit-transition: all .5s;transition: all .5s;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    content: "";
}
#header .width {
    max-width: 1600px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 2rem;
}
#header .logo {
    width: 13rem;
}
#header .navlist {
    display: flex;
}
#header .navlist > li {
    position: relative;
}
#header .navlist > li > a {
    font-size: .9rem;
    color: #fff;
    padding: 1.5rem;
    display: block;
    position: relative;
}
#header .navlist > li > a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: .6rem;
    bottom: 0;
    margin-left: -.3rem;
    background: url("../img/icon01.png") no-repeat center center;
    background-size: 100% auto;
    content: "";
}
#header .navlist > li:first-child > a:before {
    display: none;
}
#header .navlist > li > a:after {
    position: absolute;
    left: 50%;
    top: 0;
    width: .6rem;
    height: .6rem;
    margin-left: -.3rem;
    content: "";
    background: url("../img/icon03.png") no-repeat center center;
    background-size: 100% auto;
    opacity: 0;
    -webkit-transition: all .5s;
	transition: all .5s;
}
#header .navlist > li:hover > a:after {
    top: .8rem;
    opacity: 1;
}
#header .navhide {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(10px);
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;transition: all .5s;
}
#header .navlist > li:hover .navhide {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
}
#header .navhide .list {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-left: 2px solid #FDA735;
}
#header .navhide .list a {
    display: block;
    font-size: .85rem;
    padding: .55rem 1.4rem;
    white-space: nowrap;
    border-bottom: 1px solid #dbdbdb;
}
#header .navhide .list a:last-child {
    border-bottom: none;
}
#header .navhide .list a:hover,
#header .navhide .prolist a:hover {
    background-color: #FDA735;
    color: #fff;
}
#header .navhide .prolist {
    display: flex;
    flex-wrap: wrap;
    width: 18rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-left: 2px solid #FDA735;
}
#header .navhide .prolist a {
    width: 50%;
    display: block;
    font-size: .85rem;
    padding: .55rem 1rem;
    border-bottom: 1px solid #dbdbdb;
}
#header .navhide .prolist a:nth-child(2n) {
    border-left: 1px solid #dbdbdb;
}
#header .navhide .prolist a:last-child,
#header .navhide .prolist a:nth-last-child(2) {
    border-bottom: none;
}
#header .search {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2rem;
    background: url("../img/icon02.png") no-repeat center center;
    background-size: 50% auto;
}
#header .searchide {
    position: absolute;
    top: 100%;
    right: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;transition: all .5s;
}
#header .search:hover .searchide {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
#header .searchinn {
    width: 20rem;
    padding: .55rem 1rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-left: 2px solid #FDA735;
}
#header .search form {
    border-bottom: 1px solid #dbdbdb;
    position: relative;
}
#header .search input {
	width: 100%;
	height: 2.5rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: .8rem;
	color: #666;
	padding: 0 2.5rem 0 0;
}
#header .search button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 2.5rem;
	width: 2.5rem;
	background: url("../img/icon02-c.png") no-repeat center center;
	background-size: 38% auto;
}
#header .search ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: .8rem;
}
#header .search li {
    margin: 0 .4rem .4rem 0;
}
#header .search ul a {
    display: block;
    font-size: .8rem;
    background-color: #e1e1e1;
    border: 2px solid #e1e1e1;
    color: #999;
    padding: .4rem;
}
#header .search ul a:hover {
    background-color: transparent;
    color: #333;
    border-color: #FDA735;
}
#header.fix:before {
    height: 100%;
    background: #0271bd;
}
#header.fix .width {
    border-bottom: none;
}
.comFix {
    position: fixed;
    right: 0;
    top: 50%;
    width: 5.5rem;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);
    z-index: 100;
    transform: translate(0,-50%);
    -webkit-transition: all .5s;
    transition: all .5s;
}
.comFix.noshow {
    transform: translate(5.5rem,-50%);
}
.comFix .logo {
    background-color: #0271bd;
    border-radius: 10px 10px 0 0;
    padding: .6rem .5rem;
}
.comFix ul {
    background-color: #fff;
}
.comFix li {
    border-bottom: 1px solid #dbdbdb;
}
.comFix li:last-child {
    border-bottom: none;
}
.comFix li a {
    display: block;
    padding: .6rem 0;
}
.comFix .icon {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 auto .3rem;
    background: #0271bd url("../img/icon05.png") no-repeat center center;
    background-size: 60% auto;
    border-radius: 100%;
    border: 2px solid #0271bd;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.comFix li:nth-child(2) .icon {
    background-image: url("../img/icon06.png");
}
.comFix li:nth-child(3) .icon {
    background-image: url("../img/icon07.png");
}
.comFix a:hover .icon {
    background-color: #fff;
    background-image: url("../img/icon05-c.png");
}
.comFix li:nth-child(2) a:hover .icon {
    background-image: url("../img/icon06-c.png");
}
.comFix li:nth-child(3) a:hover .icon {
    background-image: url("../img/icon07-c.png");
}
.comFix p {
    font-size: .7rem;
    color: #576c87;
    text-align: center;
}
.comFix a:hover p {
    color: #0271bd;
}
.comFix .hide {
    position: absolute;
    right: 100%;
    top: 50%;
    width: 1rem;
    height: 6rem;
    margin-top: -3rem;
    background: #0271bd url("../img/icon08.png") no-repeat center center;
    background-size: 60% auto;
    border-radius: 10px 0 0 10px;
}
.comFix.noshow .hide {
    background-image: url("../img/icon08-c.png");
}
.index01 .swiper {
    height: 100%;
}
.index01 .slide-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1) rotate(0deg);
    -webkit-transition: all 50s;
	transition: all 50s;
    z-index: 1;
}
.index01 .swiper-slide-active .slide-inner {
    transform: scale(1.8) rotate(20deg);
}
.index01 .swiper .txt {
    color: #fff;
    position: absolute;
    left: 5%;
    right: 5%;
    text-align: center;
    top: 50%;
    z-index: 2;
	-moz-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.index01 .swiper .txt span {
    display: inline-block;
}
.index01 .swiper .txt01 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.index01 .swiper .txt02 {
    font-size: 1.4rem;
}
.index01 .swiper .en {
    font-size: .9rem;
    margin-bottom: .8rem;
    text-transform: uppercase;
}
.index01 .swiper-num {
    position: absolute;
    left: 5%;
    bottom: 5%;
    z-index: 10;
    color: #fff;
    font-size: .8rem;
}
.index01 .swiper-num .active {
    font-size: 2rem;
    font-weight: bold;
}
.index01 .scroll {
    position: absolute;
    left: 50%;
    bottom: 5%;
    z-index: 10;
    width: 2rem;
    margin-left: -1rem;
    -webkit-animation: updown 2s linear infinite;
    animation: updown 2s linear infinite;
}
@-webkit-keyframes updown {
  0% {-webkit-transform: translate(0px, 0px);transform: translate(0px, 0px);}
  25% {-webkit-transform: translate(0px, -10px);transform: translate(0px, -10px);}
  50% {-webkit-transform: translate(0px, 0px);transform: translate(0px, 0px);}
  75% {-webkit-transform: translate(0px, 10px);transform: translate(0px, 10px);}
  100% {-webkit-transform: translate(0px, 0px);transform: translate(0px, 0px);}
}
@keyframes updown {
  0% {transform: translate(0px, 0px);}
  25% {transform: translate(0px, -10px);}
  50% {transform: translate(0px, 0px);}
  75% {transform: translate(0px, 10px);}
  100% {transform: translate(0px, 0px);}
}
.index02 {
    background: url("../img/bg02.jpg") no-repeat center center;
    background-size: cover;
}
.index02 .comWidth {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}
.index02 .lbox {
    width: 50%;
}
.index02 .rbox {
    width: 45%;
}
.index02 .swiper {
    width: 28rem;
    height: 28rem;
}
.index02 .swiper:before {
    position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: url("../img/bg01.png") no-repeat;
	background-size: 100%;
	-webkit-animation: zhuan360 20s linear 0s infinite;
	animation: zhuan360 20s linear 0s infinite;
	opacity: 0.2;
}
@-webkit-keyframes zhuan360 {
	0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
@keyframes zhuan360 {
	0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}
.index02 .swiper a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.index02 .swiper .swiper-slide-active a {
    opacity: 1;
}
.index02 .swiper .photo {
    width: 19rem;
    height: 19rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index02 .swiper .photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.index02 .swiper p {
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
}
.index02 .swiper p span {
    display: block;
    font-size: 1rem;
}
.index02 .catelist {
    display: flex;
    flex-wrap: wrap;
}
.index02 .catelist li {
    width: 17%;
    margin: 0 3.75% 1rem 0;
}
.index02 .catelist li:nth-child(5n) {
    margin-right: 0;
}
.index02 .catelist a {
    padding-bottom: 100%;
    display: block;
    box-shadow: 0 0 20px rgba(0,0,0,.05);
    border-radius: 1rem;
    background-color: rgba(255,255,255,0.6);
    position: relative;
}
.index02 .catelist a:before {
    position: absolute;
    left: 0;
    top: 0;
    right: -3px;
    bottom: -3px;
    box-sizing: border-box;
    content: "";
    border: 2px solid #fff;
    border-radius: 1rem;
    -webkit-transition: all .5s;transition: all .5s;
}
.index02 .catelist div {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
	-moz-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    text-align: center;
    font-size: .9rem;
}
.index02 .catelist img {
    width: 2rem;
    display: block;
    margin: 0 auto .4rem;
}
.index02 .catelist .active a {
    background-color: #fff;
    font-weight: bold;
    border-radius: 100%;
}
.index02 .catelist .active a:before {
    right: 0;
    bottom: 0;
    border-radius: 100%;
}
.index02 .catelist .cate1.active a {
    color: #107C10;
}
.index02 .catelist .cate1.active a:before {
    border-color: #107C10;
}
.index02 .catelist .cate2.active a {
    color: #A1887F;
}
.index02 .catelist .cate2.active a:before {
    border-color: #A1887F;
}
.index02 .catelist .cate3.active a {
    color: #4D6AFF;
}
.index02 .catelist .cate3.active a:before {
    border-color: #4D6AFF;
}
.index02 .catelist .cate4.active a {
    color: #43DEFF;
}
.index02 .catelist .cate4.active a:before {
    border-color: #43DEFF;
}
.index02 .catelist .cate5.active a {
    color: #01AC89;
}
.index02 .catelist .cate5.active a:before {
    border-color: #01AC89;
}
.index02 .catelist .cate6.active a {
    color: #6EC4C4;
}
.index02 .catelist .cate6.active a:before {
    border-color: #6EC4C4;
}
.index02 .catelist .cate7.active a {
    color: #F56C6C;
}
.index02 .catelist .cate7.active a:before {
    border-color: #F56C6C;
}
.index02 .catelist .cate8.active a {
    color: #177CB0;
}
.index02 .catelist .cate8.active a:before {
    border-color: #177CB0;
}
.index02 .catelist .cate9.active a {
    color: #7A94FF;
}
.index02 .catelist .cate9.active a:before {
    border-color: #7A94FF;
}
.index02 .catelist .cate10.active a {
    color: #FB8944;
}
.index02 .catelist .cate10.active a:before {
    border-color: #FB8944;
}
.index02 .catelist .cate11.active a {
    color: #F5AC00;
}
.index02 .catelist .cate11.active a:before {
    border-color: #F5AC00;
}
.index02 .catelist .cate12.active a {
    color: #5C90BC;
}
.index02 .catelist .cate12.active a:before {
    border-color: #5C90BC;
}
.index02 .catelist .cate13.active a {
    color: #00A0E9;
}
.index02 .catelist .cate13.active a:before {
    border-color: #00A0E9;
}
.index02 .catelist .cate14.active a {
    color: #3F536D;
}
.index02 .catelist .cate14.active a:before {
    border-color: #3F536D;
}
.index02 .catelist .cate15.active a {
    color: #A97D56;
}
.index02 .catelist .cate15.active a:before {
    border-color: #A97D56;
}
.comTtl {
    font-weight: bold;
    position: relative;
    padding-bottom: .7rem;
    margin-bottom: 2rem;
}
.comTtl:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 1.7rem;
    height: .2rem;
    background-color: #FDA735;
}
.comTtl:after {
    position: absolute;
    left: 1.8rem;
    bottom: 0;
    content: "";
    width: 1.7rem;
    height: .2rem;
    background-color: #0271bd;
}
.comTtl .en {
    display: block;
    text-transform: uppercase;
    color: #eaeaea;
    font-size: 2.7rem;
    line-height: 1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, rgba(234,234,234,.9) , rgba(234,234,234,0.3));
    margin-bottom: -1.5rem;
    font-family: Arial;
}
.comTtl .cn {
    font-size: 2rem;
    color: #0271bd;
}
.comLink {
   margin-top: 2rem; 
}
.comLink a {
    display: inline-block;
    font-size: .9rem;
    color: #0271bd;
    position: relative;
    padding: .8rem 0 .8rem 3.8rem;
    letter-spacing: 1px;
}
.comLink a:before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    width: 2.8rem;
    height: 2.8rem;
    margin-top: -1.4rem;
    background: url("../img/icon10-c.png") no-repeat;
    background-size: 100% 100%;
    -webkit-animation: zhuan360 10s linear infinite;
	animation: zhuan360 10s linear infinite;
}
.comLink a:after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    width: 2.8rem;
    height: 2.8rem;
    margin-top: -1.4rem;
    background: url("../img/icon09-c.png") no-repeat center center;
    background-size: 36% auto;
}
.comLink span {
    display: inline-block;
    position: relative;
    transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.comLink span:before {
    content: attr(data-word);
    position: absolute;
    top: 110%;
    color: transparent;
    transition: color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.comLink span:nth-child(1):before {
    transition-delay: 0s;
}
.comLink span:nth-child(2),
.comLink span:nth-child(2):before {
    transition-delay:0.035s;
}
.comLink span:nth-child(3),
.comLink span:nth-child(3):before {
    transition-delay:0.07s;
}
.comLink span:nth-child(4),
.comLink span:nth-child(4):before {
    transition-delay:0.105s;
}
.comLink a:hover span {
    transform: translateY(-100%);
    color: transparent;
}
.comLink a:hover span:before {
    color: #0271bd;
}
.comLink a:hover {
    transform: translateY(-6px);
}
.index03 {
    background: url("../img/bg03.jpg") no-repeat center center;
    background-size: cover;
}
.index03 .comWidth {
    margin-top: 4.4rem;
}
.index03 .txtbox {
    width: 47%;
}
.index03 .txtbox p {
    font-size: 1rem;
    line-height: 1.8;
}
.index03 .txtbox .icon {
    margin-top: 1rem;
}
.index04 .swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.index04 .swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 3s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.index04 .swiper .swiper-slide-active img {
    transform: none;
}
.index04 .swiper-num {
    position: absolute;
    left: 5%;
    bottom: 20%;
    color: #fff;
    font-size: 1rem;
    z-index: 2;
}
.index04 .swiper-num .active {
  font-size: 3rem;
  font-weight: bold;
}
.index04 .comTtl {
    position: absolute;
    left: 5%;
    top: 20%;
    z-index: 2;
}
.index04 .comTtl .cn {
    color: #fff;
}
.index04 .comLink {
    position: absolute;
    left: 5%;
    bottom: 10%;
    z-index: 2;
}
.index04 .comLink a {
    color: #fff;
}
.index04 .comLink a:before {
    background-image: url("../img/icon10.png");
}
.index04 .comLink a:after {
    background-image: url("../img/icon09.png");
}
.index04 .comLink a:hover span:before {
    color: #fff;
}
.index04 .cont {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    z-index: 2;
}
.index04 .cont > img {
    width: 100%;
}
.index04 .cont li {
    position: absolute;
    transform: translateY(-50%);
    z-index: 3;
}
.index04 .cont li:first-child {
    left: 11%;
    top: 10%;
}
.index04 .cont li:nth-child(2) {
    left: 26%;
    top: 4%;
}
.index04 .cont li:nth-child(3) {
    left: 41.5%;
    top: 34.5%;
}
.index04 .cont li:nth-child(4) {
    left: 57%;
    top: 74%;
}
.index04 .cont li:nth-child(5) {
    left: 73%;
    top: 97%;
}
.index04 .cont li:nth-child(6) {
    left: 88.5%;
    top: 78%;
}
.index04 .cont .yuan {
    width: 1rem;
    height: 1rem;
    position: relative;
}
.index04 .cont .yuan span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(.5);
    transition: all .5s ease;
    background-color: #fff;
    border-radius: 100%;
}
.index04 .cont .yuan span:before,
.index04 .cont .yuan span:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    content: '';
}
.index04 .cont .yuan span:before {
    animation: dong1 5.5s ease-out 2.4s infinite;
}
.index04 .cont .yuan span:after {
    animation: dong1 5.5s ease-out 225ms infinite;
}
@keyframes dong1 {
  0% {opacity: 1;transform: scale(1);}
  100% {opacity: 0;transform: scale(7);}
}
.index04 .cont .txt {
    color: #fff;
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translate(-50%,100%);
    white-space: nowrap;
    transition: transform .65s ease,opacity .65s ease;
    opacity: 0;
    font-size: 1.5rem;
}
.index04 .cont li.show .txt {
    opacity: 1;
    transform: translate(-50%,0);
}
.index04 .cont .num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.5);
    opacity: 0;
    transition: transform .65s ease,opacity .65s ease;
    color: #0271bd;
    background-color: #fff;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 100%;
    text-align: center;
    line-height: 2.2rem;
    font-weight: bold;
    font-size: 1rem;
}
.index04 .cont li.show .num {
    opacity: 1;
    transform: translate(-50%,-50%);
}
.index04 .cont .dot {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    animation: dong2 30s infinite linear;
}
@keyframes dong2 {
	from {transform:rotateZ(0deg);}
	to {transform: rotateZ(360deg);}
}	
.index04 .cont .dot span {
    width: .6rem;
    height: .6rem;
    position: absolute;
}
.index04 .cont .dot span:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 100%;
    animation: dong3 3s infinite linear;
    background-color: #fff;
}
.index04 .cont .dot span:nth-child(1) {
    left: 0;
    top: 50%;
    transform: translate(-100%,100%);
}
.index04 .cont .dot span:nth-child(2) {
    left: 0;
    top: 0;
    transform: translate(-50%,-100%);
}
.index04 .cont .dot span:nth-child(3) {
    right: 0;
    top: 0;
    transform: translate(0,-100%);
}
.index04 .cont .dot span:nth-child(4) {
    right: 0;
    top: 50%;
    transform: translate(120%,-100%);
}
.index04 .cont .dot span:nth-child(5) {
    right: 0;
    top: 50%;
    transform: translate(100%,100%);
}
.index04 .cont .dot span:nth-child(1):before {animation-delay: 0s;}
.index04 .cont .dot span:nth-child(2):before {animation-delay: 0.8s;}
.index04 .cont .dot span:nth-child(3):before {animation-delay: 0.6s;}
.index04 .cont .dot span:nth-child(4):before {animation-delay: 0.2s;}
.index04 .cont .dot span:nth-child(5):before {animation-delay: 0.4s;}
@keyframes dong3 {
 	0% {transform: scale(.1);opacity: 1;}
 	50% {transform: scale(1);opacity: 0;}
 	100% {transform: scale(.1);opacity: 1;}
}
.index05 {
    background: url("../img/bg04.jpg") no-repeat center center;
    background-size: cover;
}
.index05 .comWidth {
    margin-top: 3rem;
}
.index05 .comTtl {
    margin-bottom: 4rem;
    text-align: center;
}
.index05 .comTtl .cn {
    color: #fff;
}
.index05 .comTtl:before {
    left: 50%;
    margin-left: -1.75rem;
}
.index05 .comTtl:after {
    left: 50%;
    margin-left: .05rem;
}
.index05 .map {
    width: 20rem;
    height: 20rem;
    padding: 1rem;
    margin: 0 auto;
    position: relative;
}
.index05 .map:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px dashed #fff;
    content: "";
    -webkit-animation: zhuan360 50s linear 0s infinite;
	animation: zhuan360 50s linear 0s infinite;
}
.index05 .map img {
    border-radius: 100%;
}
.index05 .map li {
    position: absolute;
    color: #fff;
    width: 21rem;
    font-size: .8rem;
}
.index05 .map li .txt01 {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: .5rem;
}
.index05 .map li:before {
    position: absolute;
    top: 2.4rem;
    content: "";
    width: .6rem;
    height: .6rem;
    background-color: #fff;
    border-radius: 100%;
}
.index05 .map li:first-child {
    right: 100%;
    top: 0;
    text-align: right;
    padding-right: 2rem;
}
.index05 .map li:first-child:before {
    right: -3.5rem;
}
.index05 .map li:nth-child(2) {
    left: 100%;
    top: 0;
    padding-left: 2rem;
}
.index05 .map li:nth-child(2):before {
    left: -3.4rem;
}
.index05 .map li:nth-child(3) {
    right: 100%;
    bottom: 0;
    text-align: right;
    padding-right: 2rem;
}
.index05 .map li:nth-child(3):before {
    right: -3.95rem;
    top: inherit;
    bottom: 2rem;
}
.index05 .map li:nth-child(4) {
    left: 100%;
    bottom: 0;
    padding-left: 2rem;
}
.index05 .map li:nth-child(4):before {
    left: -2.7rem;
    top: inherit;
    bottom: 3rem;
}
.index06 {
    background: url("../img/bg05.jpg") no-repeat center center;
    background-size: cover;
}
.index06 .comWidth {
    margin-top: 4.4rem;
}
.index06 .topbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index06 .topbox ul {
    display: flex;
}
.index06 .topbox ul li {
    margin-left: 2rem;
}
.index06 .topbox ul a {
    display: block;
    font-size: 1rem;
}
.index06 .topbox ul a:hover {
    color: #0271bd;
    text-decoration: underline;
}
.index06 .cont {
    display: flex;
    justify-content: space-between;
}
.index06 .cont .item {
    width: 32%;
    background-color: #F8F8F8;
    border-radius: 1rem;
}
.index06 .cont .item01 {
    width: 31%;
    background-color: #F8F8F8;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
}
.index06 .cont .item a {
    display: block;
    height: 100%;
    position: relative;
}
.index06 .cont .item .photo {
    padding-bottom: 63%;
    position: relative;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}
.index06 .cont .item .photo img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    border-radius: 1rem 1rem 0 0;
}
.index06 .cont .item a:hover .photo img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.index06 .cont .item .photo:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "最近资讯";
    white-space: nowrap;
    background-color: #0271bd;
    z-index: 2;
    color: #fff;
    padding: .5rem 1rem;
    font-size: .85rem;
    border-radius: 1rem 0 1rem 0;
}
.index06 .cont .item h3 {
    font-size: 1.2rem;
    margin: 1rem 1rem 5rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.index06 .cont .item a:hover h3 {
    color: #0271bd;
}
.index06 .cont .item .btm {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index06 .cont .item .time {
    font-size: .8rem;
    font-family: Arial;
}
.index06 .cont .item .comLink {
    margin-top: 0;
}
.index06 .cont .item .comLink .tda {
    display: inline-block;
    font-size: .9rem;
    color: #0271bd;
    position: relative;
    padding: .5rem 0 .5rem 2.6rem;
    letter-spacing: 1px;
}
.index06 .cont .item .comLink .tda:before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
    background: url("../img/icon10-c.png") no-repeat;
    background-size: 100% 100%;
    -webkit-animation: zhuan360 10s linear infinite;
	animation: zhuan360 10s linear infinite;
}
.index06 .cont .item .comLink .tda:after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
    background: url("../img/icon09-c.png") no-repeat center center;
    background-size: 36% auto;
}
.index06 .cont .item a:hover .comLink span {
    transform: translateY(-100%);
    color: transparent;
}
.index06 .cont .item a:hover .comLink span:before {
    color: #0271bd;
}
.index06 .cont .item01 li:not(:last-child) {
    margin-bottom: 2rem;
}
.index06 .cont .item01 a {
    display: block;
}
.index06 .cont .item01 h3 {
    font-size: 1.1rem;
    position: relative;
    padding-right: 5rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: .2rem;
}
.index06 .cont .item01 h3 span {
    position: absolute;
    right: 0;
    bottom: .2rem;
    font-size: .8rem;
    font-family: Arial;
}
.index06 .cont .item01 p {
    font-size: .8rem;
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.index06 .cont .item01 a:hover h3 {
    color: #0271bd;
}
#footer {
    background: url("../img/bg06.jpg") no-repeat center center;
    background-size: cover;
}
#footer .width {
    max-width: 1600px;
    margin: 0 auto;
}
#footer .ftop {
    padding: 2rem 50px 1.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}
#footer .ftop .width {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer .flogo {
    width: 13rem;
}
#footer .ftop .lbox {
    display: flex;
    align-items: center;
}
#footer .ftop .lbox ul {
    display: flex;
}
#footer .ftop .lbox li {
    font-size: .9rem;
    color: #fff;
    margin-left: 2rem;
    position: relative;
    padding-left: 1.2rem;
}
#footer .ftop .lbox li img {
    width: 1rem;
    position: absolute;
    left: 0;
    top: .1rem;
}
#footer .ftop .rbox {
    width: 2rem;
    height: 2rem;
    background: rgba(255,255,255,0.2) url("../img/sp-wx.png") no-repeat center center;
    background-size: 55% auto;
    border-radius: 100%;
    position: relative;
    -webkit-transition: all .5s;
    transition: all .5s;
}
#footer .ftop .rbox:hover {
    background-color: #fff;
    background-image: url("../img/sp-wx-c.png");
}
#footer .ftop .rbox .fhide {
    position: absolute;
    right: 130%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 5px;
    width: 12rem;
    padding: .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
}
#footer .ftop .rbox:hover .fhide {
    right: 120%;
    opacity: 1;
    visibility: visible;
}
#footer .ftop .rbox .fhide .code {
    width: 50%;
}
#footer .ftop .rbox .fhide .txt {
    width: 48%;
    font-size: .8rem;
}
#footer .ftop .rbox .fhide .txt span {
    display: block;
    font-size: .9rem;
    font-weight: bold;
    margin-bottom: .5rem;
}
#footer .fcot {
    padding: 3rem 50px;
}
#footer .fcot .width {
    display: flex;
    justify-content: space-between;
}
#footer .fcot .lul li:not(:last-child) {
    margin-bottom: 2rem;
}
#footer .fcot .lul .list {
    position: relative;
    padding-left: 1.5rem;
    font-size: .9rem;
    color: #fff;
    margin-bottom: .5rem;
}
#footer .fcot .lul .list img {
    width: 1rem;
    position: absolute;
    left: 0;
    top: .1rem;
}
#footer .fcot .lul .list a {
    opacity: 0.8;
}
#footer .fcot .rul {
    width: 62%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: .9rem;
}
#footer .fcot .rul a {
    display: inline-block;
}
#footer .fcot .rul .link {
    margin-top: .6rem;
}
#footer .fcot .rul .link a {
    opacity: 0.8;
    position: relative;
}
#footer .fcot .rul .link a:before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: -webkit-transform .5s cubic-bezier(.215,.61,.355,1);
    transition: transform .5s cubic-bezier(.215,.61,.355,1);
    background-color: #fff;
}
#footer .fcot .rul a:hover {
    opacity: 1;
}
#footer .fcot .rul a:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
#footer .fcot .rul .ttl a {
    font-weight: bold;
}
.friendlink {
    padding: 1rem 50px;
    background-color: #0e55a5;
    font-size: .8rem;
    color: rgba(255,255,255,0.6);
}
.friendlink ul {
    display: flex;
    flex-wrap: wrap;
}
.friendlink ul a {
    display: inline-block;
}
.friendlink ul a:hover {
    text-decoration: underline;
    color: #fff;
}
.friendlink ul span {
    margin: 0 .5rem;
    display: inline-block;
}
.friendlink li:last-child span {
    display: none;
}
.copyright {
    color: #fff;
    text-align: center;
    font-size: .8rem;
    padding: 1rem 1rem .5rem;
    border-top: 2px solid rgba(255,255,255,0.2);
}
.copyright span {
    margin-left: 1rem;
}
.copyright img {
    display: inline-block;
    vertical-align: middle;
    margin: -0.2rem 0.2rem 0 1rem;
}
#footer .fnote {
    text-align: center;
    font-size: .7rem;
    color: rgba(255,255,255,0.5);
    padding: 0 1rem 1rem;
}
.contactPage .sec01 .comWidth {
    margin-top: 4.4rem;
    position: relative;
    z-index: 2;
}
.contactPage .sec01 .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.contactPage .sec01 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: mybig 3s;
}
@keyframes mybig {
  0% {
    transform:scale(1.1)
  }
  100% {
    transform:scale(1)
  }
}
.contactPage .sec01 h2 {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
}
.contactPage .sec01 ul {
    display: flex;
}
.contactPage .sec01 ul li {
    width: 33.33%;
    border: 1px solid rgba(221,221,221,0.5);
    padding: 2rem 1.5rem;
    position: relative;
    backdrop-filter: blur(5px);
    min-height: 17rem;
    color: #fff;
}
.contactPage .sec01 ul li:first-child {
    border-radius: 1rem 0 0 1rem;
}
.contactPage .sec01 ul li:last-child {
    border-radius: 0 1rem 1rem 0;
}
.contactPage .sec01 ul .ttl {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: .8rem;
}
.contactPage .sec01 ul .txt {
    font-size: .9rem;
    line-height: 1.8;
}
.contactPage .sec01 ul .icon {
    position: absolute;
    right: 2.5rem;
    bottom: 2rem;
    width: 4rem;
}
.contactPage .sec01 ul .code {
    display: flex;
    flex-wrap: wrap;
}
.contactPage .sec01 ul .code .item {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background-color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 1rem 1rem 0;
}
.contactPage .sec01 ul .code .item > img {
    width: 1.3rem;
}
.contactPage .sec01 ul .cohide {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(20px);
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 8rem;
    padding: .5rem;
    background-color: #fff;
}
.contactPage .sec01 ul .cohide:before{
    content: "";
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    top: -6px;
    left: 50%;
    margin-left: -7px;
    background-color: #fff;
    position: absolute;
}
.contactPage .sec01 ul .code .item:hover .cohide {
    -webkit-transform: translateX(-50%) translateY(10px);
    transform: translateX(-50%) translateY(10px);
    opacity: 1;
    visibility: visible;
}
.aboutPage .sec01 .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.aboutPage .sec01 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: mybig 3s;
}
.aboutPage .sec01 .comWidth {
    margin-top: 4.4rem;
    position: relative;
    z-index: 2;
}
.aboutPage .sec01 .comTtl {
    text-align: center;
    margin-bottom: 3rem;
}
.aboutPage .sec01 .comTtl .cn {
    color: #fff;
}
.aboutPage .comTtl:before {
    left: 50%;
    margin-left: -1.75rem;
}
.aboutPage .comTtl:after {
    left: 50%;
    margin-left: .05rem;
}
.aboutPage .sec01 .txt {
    color: #fff;
    font-size: .9rem;
    text-indent: 2em;
    line-height: 2;
    max-width: 50rem;
    margin: 0 auto;
}
.aboutPage .sec01 .txt p {
    margin-top: .5rem;
}
.aboutPage .sec02 {
    background: url("../img/bg09.jpg") no-repeat center center;
    background-size: cover;
}
.aboutPage .sec02 .comTtl {
    text-align: center;
}
.aboutPage .sec02 .comTtl .cn {
    color: #fff;
}
.aboutPage .sec02 .comWidth {
    margin-top: 4.4rem;
}
.aboutPage .sec02 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 65rem;
    margin: 0 auto;
}
.aboutPage .sec02 ul li {
    margin-top: 1.5rem;
    width: 48%;
    backdrop-filter: blur(8px);
    padding: 2rem 2rem 2rem 8rem;
    background-color: rgba(255,255,255,0.2);
    position: relative;
    border-radius: 1rem;
}
.aboutPage .sec02 ul p {
    color: #fff;
    font-size: .9rem;
}
.aboutPage .sec02 ul p span {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.aboutPage .sec02 ul img {
    position: absolute;
    left: 2rem;
    top: 50%;
    width: 4rem;
    margin-top: -2rem;
}
.aboutPage .sec03 {
    background: url("../img/bg10.jpg") no-repeat right center;
    background-size: cover;
}
.aboutPage .sec03 .comWidth {
    margin-top: 4.4rem;
}
.aboutPage .sec03 .comTtl {
    text-align: center;
}
.aboutPage .sec03 .swiper-wrapper {
    align-items: center;
}
.aboutPage .sec03 .swiper-slide {
    width: 18rem;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.aboutPage .sec03 .swiper-slide-active {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.aboutPage .sec03 .swiper-slide .photo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.aboutPage .sec03 .swiper-slide p {
    opacity: 0;
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
}
.aboutPage .sec03 .swiper-slide-active p {
    opacity: 1;
}
.aboutPage .sec03 .swiperbox {
    position: relative;
    padding: 0 4rem;
}
.aboutPage .sec03 .swiper-button-next,
.aboutPage .sec03 .swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    border: 1px dashed #FDA735;
}
.aboutPage .sec03 .swiper-button-next:after,
.aboutPage .sec03 .swiper-button-prev:after {
    font-size: 1rem;
    color: #FDA735;
}
.aboutPage .sec03 .swiper-button-next:hover,
.aboutPage .sec03 .swiper-button-prev:hover {
    background-color: #FDA735;
}
.aboutPage .sec03 .swiper-button-next:hover:after,
.aboutPage .sec03 .swiper-button-prev:hover:after {
    color: #fff;
}
.comTop {
    position: relative;
    overflow: hidden;
    height: 29rem;
    margin-bottom: 4rem;
}
.comTop .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.comTop .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: mybig 3s;
}
.comTop h2 {
    position: absolute;
    left: 0;
    width: 100%;
    top: 40%;
    text-align: center;
    color: #fff;
    z-index: 2;
    font-weight: bold;
    padding: 0 1rem;
}
.comTop h2 .cn {
    font-size: 1.8rem;
    letter-spacing: 1px;
    display: block;
}
.comTop h2 .en {
    text-transform: uppercase;
    font-size: 2.4rem;
    display: block;
}
.comTop h2 .line {
    display: block;
    width: 2rem;
    height: 3px;
    margin: .7rem auto .5rem;
    background-color: #fff;
}
.comTop .scroll {
    position: absolute;
    left: 50%;
    bottom: 5%;
    z-index: 10;
    width: 1.4rem;
    margin-left: -.7rem;
    -webkit-animation: updown 2s linear infinite;
    animation: updown 2s linear infinite;
}
.comUp {
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}
.comUp .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.comUp .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: mybig 3s;
}
.comUp .comWidth {
    position: relative;
    z-index: 2;
    min-height: 29rem;
    padding-top: 7.5rem;
    padding-bottom: 2rem;
}
.comUp .path {
    min-height: 5rem;
    padding-left: 1rem;
    color: #fff;
    font-size: .7rem;
    background: url("../img/icon12.png") no-repeat left top 0.1rem;
    background-size: .8rem auto;
}
.comUp .path a:hover {
    text-decoration: underline;
}
.comUp .name {
    min-height: 10rem;
    color: #fff;
    padding-bottom: 2rem;
}
.comUp h1 {
    font-size: 2.1rem;
    font-weight: bold;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}
.comUp .en {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: capitalize;
}
.comUp .scroll {
    width: 1.4rem;
    -webkit-animation: updown 2s linear infinite;
    animation: updown 2s linear infinite;
}
.comUp .link a {
    width: 9rem;
    display: block;
    background-color: #FDA735;
    color: #fff;
    text-align: center;
    padding: .7rem 0;
    border-radius: 5rem;
    letter-spacing: 2px;
    font-size: 1rem;
}
.comUp .link a:hover {
    transform: scale(1.1);
}
.productPage #footer {
    margin-top: 2rem;
}
.productPage .catelist {
    display: flex;
    flex-wrap: wrap;
}
.productPage .catelist .item {
    width: 23%;
    margin: 0 2.66% 2rem 0;
    position: relative;
}
.productPage .catelist .item:nth-child(4n) {
    margin-right: 0;
}
.productPage .catelist .item:after {
    position: absolute;
    left: -.3rem;
    top: -.3rem;
    right: -.3rem;
    bottom: -.3rem;
    border-radius: 1rem;
    background-color: #0271bd;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: all .65s ease;
    content: "";
}
.productPage .catelist .item:hover:after {
    -webkit-clip-path: polygon(0 0, 50% 0, 20% 100%, 0% 100%);
    clip-path: polygon(0 0, 50% 0, 20% 100%, 0% 100%);
}
.productPage .catelist .item > div {
    position: relative;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0 6px 20px 1px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}
.productPage .catelist h3 {
    margin-bottom: 1rem;
}
.productPage .catelist h3 a {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #0271bd;
}
.productPage .catelist h3 span {
    display: block;
    font-weight: normal;
    color: #999;
    font-size: .7rem;
}
.productPage .catelist ul {
    max-height: 12rem;
    overflow-y: auto;
}
.productPage .catelist li a {
    display: block;
    font-size: .9rem;
    padding: .25rem 0 .25rem 1rem;
    position: relative;
}
.productPage .catelist li a:before {
    position: absolute;
    left: 0;
    top: .6rem;
    content: "";
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    border: 1px solid #ddd;
    -webkit-transition: all .5s;transition: all .5s;
}
.productPage .catelist li a:hover {
    color: #0271bd;
}
.productPage .catelist li a:hover:before {
    background-color: #0271bd;
    border-color: #0271bd;
}
.productPage .catelist .icon {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    opacity: 0.1;
    z-index: -1;
}
.sidebar {
    width: 25%;
    padding-right: 3rem;
    border-right: 1px solid #e4e9ec;
}
.sidebar .proul > li > a {
    display: block;
    font-size: .9rem;
    border-bottom: 1px solid #e4e9ec;
    padding: .9rem 0 .9rem 1.5rem;
    background: url("../img/icon26.png") no-repeat left center;
    background-size: 1.2rem auto;
}
.sidebar .proul > li.on > a,
.sidebar .proul > li:hover > a {
    color: #0271bd;
    background-image: url("../img/icon26-c.png");
}
.sidebar .protwo {
    display: none;
    padding-left: 1.5rem;
    border-bottom: 1px solid #e4e9ec;
}
.sidebar .protwo li:not(:last-child) {
    border-bottom: 1px solid #e4e9ec;
}
.sidebar .protwo a {
    padding: .7rem 0;
    display: block;
    font-size: .85rem;
}
.sidebar .protwo .on a,
.sidebar .protwo a:hover {
    color: #0271bd;
}
.conts {
    width: 75%;
    padding-left: 3rem;
}
.casePage #footer,
.videoPage #footer,
.product2ndPage #footer,
.productdetailPage #footer,
.newsPage #footer,
.newsdetailPage #footer,
.searchPage #footer {
    margin-top: 4rem;
}
.product2ndPage .sec01 {
    overflow-x: hidden;
    padding-top: 1rem;
    margin-top: -1rem;
}
.product2ndPage .sec01 .comWidth {
    display: flex;
}
.product2ndPage .conts .listul {
    display: flex;
    flex-wrap: wrap;
}
.product2ndPage .conts .listul li {
    width: 31%;
    margin: 0 3.5% 1.5rem 0;
}
.product2ndPage .conts .listul li:nth-child(3n) {
    margin-right: 0;
}
.product2ndPage .conts .listul a {
    display: block;
    height: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(9,21,37,0.1);
    padding: 1rem 1rem 3.5rem;
    position: relative;
}
.product2ndPage .conts .listul .photo {
    padding-bottom: 80%;
    position: relative;
}
.product2ndPage .conts .listul .photo div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product2ndPage .conts .listul .photo img {
    width: auto;
    height: auto;
    max-width: 86%;
    max-height: 86%;
    transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.product2ndPage .conts .listul h2 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}
.product2ndPage .conts .listul .typebox {
    color: #666;
    font-size: .8rem;
}
.product2ndPage .conts .listul .note {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding-top: .5rem;
    font-size: .75rem;
    color: #666;
    border-top: 1px solid #e4e9ec;
}
.product2ndPage .conts .listul a:hover .photo img {
	-webkit-transform: scale(1.1) translateY(-10px);
    transform: scale(1.1) translateY(-10px);
}
.product2ndPage .conts .listul a:hover h2 {
    color: #0271bd;
}
.product2ndPage .conts .listul a:hover .note {
    color: #0271bd;
    border-top-color: #0271bd;
}
.pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.pagination a {
	margin: 0 .15rem .25rem;
	display: inline-block;
	padding: .4rem .4rem;
	box-sizing: border-box;
	min-width: 2rem;
	text-align: center;
	border-radius: .5rem;
    font-size: .8rem;
    border: 1px solid #e4e9ec;
}
.pagination .page-status {
	margin-right: .5rem;
}
.pagination a:hover,
.pagination .page-num-current {
	background-color: #0271bd;
	color: #fff;
    border-color: #0271bd;
}
.newsdetailPage .sec01 .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}
.newsdetailPage .sec01 .lbox {
    width: 75%;
    padding: 0 3rem 3rem 0;
    border-right: 1px solid #e4e9ec;
}
.newsdetailPage .sec01 .lbox .info,
.newsdetailPage .sec01 .lbox .info * {
    font-size: .9rem !important;
    line-height: 2 !important;
}
.newsdetailPage .sec01 .rbox {
    width: 25%;
    padding: 0 0 3rem 3rem;
    position: sticky;
    top: 6rem;
}
.newsdetailPage .sec01 .lbox .info a {
    color: #0070C0;
    text-decoration: underline;
}
.productdetailPage .comUp .en {
    color: rgba(255, 255, 255, 0.8);
}
.productdetailPage .sec01 .comWidth {
    position: relative;
}
.productdetailPage .sec01 .prophoto {
    position: absolute;
    right: 28%;
    top: -20rem;
    z-index: 2;
}
.productdetailPage .sec01 .prophoto a {
    width: 22rem;
    height: 22rem;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-animation: updown 3s linear infinite;
    animation: updown 3s linear infinite;
    position: relative;
}
.productdetailPage .sec01 .prophoto img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
}
.productdetailPage .sec01 .prophoto a:before {
    position: absolute;
    left: 70%;
    top: 0;
    content: "点击仪器查看图文介绍";
    white-space: nowrap;
    background-color: #fff;
    border-radius: .5rem;
    font-size: .8rem;
    padding: .6rem;
    opacity: 0.9;
}
.productdetailPage .sec01 .lbox {
    padding-bottom: 1rem;
}
.productdetailPage .sec01 .lbox .info,
.productdetailPage .sec01 .lbox .info * {
    font-size: .9rem;
    line-height: 2;
}
.productdetailPage .sec01 .lbox .info h2 {
    padding-left: 1.5rem;
    margin-bottom: .5rem;
    background: url("../img/icon27.png") no-repeat left center;
    background-size: 1.2rem auto;
    color: #0271bd;
}
.productdetailPage .sec01 .lbox .info h2,
.productdetailPage .sec01 .lbox .info h2 * {
    font-size: 1.3rem;
    line-height: 1.5;
}
.newsdetailPage .sec01 .lbox .info table,
.productdetailPage .sec01 .tabbox table {
	border-collapse: collapse;
	width: 100% !important;
}
.newsdetailPage .sec01 .lbox .info table tr:nth-child(2n+1),
.productdetailPage .sec01 .tabbox table tr:nth-child(2n+1) {
  background-color: #F4F4F4;
}
.newsdetailPage .sec01 .lbox .info table th,
.newsdetailPage .sec01 .lbox .info table td,
.productdetailPage .sec01 .tabbox table th,
.productdetailPage .sec01 .tabbox table td {
	border: 1px solid #a9c6c9;
	padding: 5px;
	word-break: break-all;
}
.newsdetailPage .sec01 .lbox .info img,
.productdetailPage .sec01 .tabbox img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    margin: .5rem auto !important;
    display: block !important;
}
.productdetailPage .sec01 .tabbox,
.productdetailPage .sec01 .tabbox * {
    font-size: .9rem;
    line-height: 2;
}
.productdetailPage .sec01 .tabbox table tr:hover {
    cursor: pointer;
    background-color: rgba(2, 113, 189,0.2);
}
.productdetailPage .sec01 .tabul {
    display: flex;
    margin: 3rem 0 2rem;
    background-color: #F5F5F7;
    padding-top: .5rem;
}
.productdetailPage .sec01 .tabul li {
    width: 33.33%;
    text-align: center;
    font-size: 1rem;
    border-top: 2px solid #F5F5F7;
    padding: 1rem .5rem;
    cursor: pointer;
}
.productdetailPage .sec01 .tabul li.on {
    background-color: #fff;
    color: #0271bd;
    border-top-color: #0271bd;
}
.productdetailPage .sec01 .tabbox h2 {
    font-size: 1rem;
    margin-bottom: .5rem;
    position: relative;
    padding-left: .6rem;
    line-height: 1.5;
    color: #0271bd;
}
.productdetailPage .sec01 .tabbox h2:before {
    position: absolute;
    left: 0;
    top: .3rem;
    bottom: .3rem;
    content: "";
    width: .2rem;
    background-color: #0271bd;
}
.productdetailPage .sec01 .tabbox ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.productdetailPage .sec01 .tabbox ul li {
    position: relative;
    width: 48.8%;
    margin-bottom: 1rem;
    padding-left: 2.6rem;
}
.productdetailPage .sec01 .tabbox ul p {
    background-color: #F5F5F7;
    padding: .5rem .8rem;
    height: 100%;
    line-height: 1.8;
}
.productdetailPage .sec01 .tabbox ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.6rem;
    height: 2.6rem;
    line-height: 2.6rem;
    background-color: rgba(2, 113, 189,0.8);
    color: #fff;
    text-align: center;
    font-size: .9rem;
    content: "01";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(2):before {
    content: "02";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(3):before {
    content: "03";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(4):before {
    content: "04";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(5):before {
    content: "05";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(6):before {
    content: "06";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(7):before {
    content: "07";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(8):before {
    content: "08";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(9):before {
    content: "09";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(10):before {
    content: "10";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(11):before {
    content: "11";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(12):before {
    content: "12";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(13):before {
    content: "13";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(14):before {
    content: "14";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(15):before {
    content: "15";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(16):before {
    content: "16";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(17):before {
    content: "17";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(18):before {
    content: "18";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(19):before {
    content: "19";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(20):before {
    content: "20";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(21):before {
    content: "21";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(22):before {
    content: "22";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(23):before {
    content: "23";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(24):before {
    content: "24";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(25):before {
    content: "25";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(26):before {
    content: "26";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(27):before {
    content: "27";
}
.productdetailPage .sec01 .tabbox ul li:nth-child(28):before {
    content: "28";
}
.productdetailPage .sec02 {
    margin: 3rem 0;
    background-color: #F5F5F7;
    padding: 3rem 0;
}
.productdetailPage .sec02 .comTj {
    margin-bottom: 1rem;
}
.productdetailPage .sec02 .swiper a {
    display: block;
}
.productdetailPage .sec02 .swiper .photo {
    position: relative;
    padding-bottom: 70%;
    background-color: #fff;
}
.productdetailPage .sec02 .swiper .photo div {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.productdetailPage .sec02 .swiper .photo img {
    width: auto;
    height: auto;
    max-width: 85%;
    max-height: 85%;
    transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.productdetailPage .sec02 .swiper p {
    font-size: .9rem;
    text-align: center;
    background-color: rgba(2, 113, 189,0.9);
    color: #fff;
    padding: .5rem;
}
.productdetailPage .sec02 .swiper a:hover p {
    background-color: rgba(2, 113, 189,1);
}
.productdetailPage .sec02 .swiper a:hover .photo img {
    transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.productdetailPage .sec03 .comTnews {
    display: flex;
    flex-wrap: wrap;
}
.productdetailPage .sec03 .comTnews li {
    width: 31%;
    margin: .6rem 3.5% 0 0;
}
.productdetailPage .sec03 .comTnews li:nth-child(3n) {
    margin-right: 0;
}
.productdetailPage .sec03 .comTnews a {
    font-size: .9rem;
}
#pop {
    display: none;
}
#pop img {
    display: block;
}
.fancybox-content {
    max-width: 86% !important;
}
.fancybox-is-open .fancybox-bg {
    opacity: 0.7 !important;
}
.fancybox-close-small {
    position: fixed !important;
    right: 1rem !important;
    top: 1rem !important;
    width: 3rem !important;
    height: 3rem !important;
    background-color: #fff !important;
    border-radius: 100% !important;
}
.comTj {
    background: url("../img/icon28.png") no-repeat left center;
    background-size: 1.2rem auto;
    padding-left: 1.5rem;
    font-size: 1.2rem;
    margin-bottom: .5rem;
}
.comTnews li {
    margin-bottom: .4rem;
}
.comTnews a {
    display: block;
    font-size: .8rem;
    position: relative;
    padding-left: .8rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.comTnews a:before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    width: .3rem;
    height: .3rem;
    margin-top: -.15rem;
    background-color: #999;
}
.comTnews a:hover {
    color: #0271bd;
}
.comTnews a:hover:before {
    background-color: #0271bd;
}
.comTpros a {
	display: block;
}
.comTpros .photo {
	-webkit-transition: all .5s;
  transition: all .5s;
	position: relative;
	padding-bottom: 100%;
}
.comTpros a:hover .photo {
	transform: translateY(10px);
}
.comTpros .photo div {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.comTpros .photo img {
	width: auto;
  height: auto;
	max-width: 90%;
	max-height: 90%;
}
.comTpros p {
	text-align: center;
    font-size: .9rem;
}
.comTpros a:hover p {
	color: #0271bd;
}
.comHeight {
    height: 2rem;
}
.comPageList {
    padding: .5rem 10rem 0 0;
    border-top: 1px solid #e4e9ec;
    position: relative;
}
.comPageList li {
    margin-top: .5rem;
    font-size: .9rem;
}
.comPageList li a:hover {
    text-decoration: underline;
    color: #0271bd;
}
.comPageList .link {
    position: absolute;
    right: 0;
    top: 1.4rem;
}
.comPageList .link a {
    display: block;
    background-color: #0271bd;
    border-radius: 10rem;
    color: #fff;
    font-size: .85rem;
    padding: .5rem 1.5rem;
}
.comPageList .link a:hover {
    transform: scale(1.1);
}
.comFen {
    margin: -4rem 0 4rem;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
}
.comFen li {
    margin: 0 1rem;
}
.comFen a {
    display: block;
    padding: 1rem;
    font-size: .95rem;
    position: relative;
}
.comFen a:before {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  transition: -webkit-transform .5s cubic-bezier(.215,.61,.355,1);
  transition: transform .5s cubic-bezier(.215,.61,.355,1);
  background-color: #0271bd;
}
.comFen a:hover:before,
.comFen li.on a:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.comFen a:hover,
.comFen li.on a {
    color: #0271bd;
}
.newsPage .sec01 .listul {
    display: flex;
    flex-wrap: wrap;
}
.newsPage .sec01 .listul li {
    width: 23%;
    margin: 0 2.66% 1.5rem 0;
}
.newsPage .sec01 .listul li:nth-child(4n) {
    margin-right: 0;
}
.newsPage .sec01 .listul a {
    display: block;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(9,21,37,0.1);
    padding: 1rem 1.3rem 2.8rem;
    height: 100%;
    position: relative;
}
.newsPage .sec01 .listul .time {
    max-width: 6rem;
    margin: 0 auto;
    font-size: .8rem;
    text-align: center;
}
.newsPage .sec01 .listul .time span {
    display: block;
    font-size: 1.6rem;
    border-bottom: 1px solid #e4e9ec;
    margin-bottom: .5rem;
}
.newsPage .sec01 .listul .photo {
    padding-bottom: 66%;
    position: relative;
    margin: 1rem 0;
    overflow: hidden;
}
.newsPage .sec01 .listul .photo img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.newsPage .sec01 .listul a:hover .photo img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.newsPage .sec01 .listul h2 {
    font-size: 1rem;
}
.newsPage .sec01 .listul .link {
    color: #999;
    font-size: .6rem;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
}
.newsPage .sec01 .listul a:hover .link,
.newsPage .sec01 .listul a:hover .time {
    color: #0271bd;
}
.newsPage .sec01 .listul a:hover .time span {
    border-bottom-color: #0271bd;
}
.videoPage .sec01 .listul {
    display: flex;
    flex-wrap: wrap;
}
.videoPage .sec01 .listul li {
    width: 32%;
    margin: 0 2% 1.5rem 0;
}
.videoPage .sec01 .listul li:nth-child(3n) {
    margin-right: 0;
}
.videoPage .sec01 .listul a {
    display: block;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(9,21,37,0.1);
    height: 100%;
}
.videoPage .sec01 .listul .photo {
    border-radius: 1rem 1rem 0 0;
    position: relative;
    padding-bottom: 60%;
}
.videoPage .sec01 .listul .photo:before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    width: 3rem;
    height: 3rem;
    margin: -1.5rem 0 0 -1.5rem;
    background: url("../img/icon29.png") no-repeat;
    background-size: 100% 100%;
    z-index: 2;
    opacity: 0.9;
    -webkit-transition: all .5s;transition: all .5s;
}
.videoPage .sec01 .listul .photo:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: -webkit-linear-gradient(rgba(2, 113, 189,0) 50%,rgba(2, 113, 189,.6) 100%);
    z-index: 2;
    -webkit-transition: all .5s;transition: all .5s;
}
.videoPage .sec01 .listul .photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem 1rem 0 0;
}
.videoPage .sec01 .listul p {
    font-size: .9rem;
    padding: 1rem;
}
.videoPage .sec01 .listul a:hover .photo:after {
    height: 0;
}
.videoPage .sec01 .listul a:hover .photo:before {
    opacity: 0;
}
.videoPage .sec01 .listul a:hover p {
    color: #0271bd;
}
.casePage .sec01 .listul {
    display: flex;
    flex-wrap: wrap;
}
.casePage .sec01 .listul li {
    width: 31.5%;
    margin: 0 2.75% 1.8rem 0;
}
.casePage .sec01 .listul li:nth-child(3n) {
    margin-right: 0;
}
.casePage .sec01 .listul a {
    display: block;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(9,21,37,0.1);
    height: 100%;
    position: relative;
    padding-bottom: 4.5rem;
}
.casePage .sec01 .listul .photo {
    border-radius: 1rem 1rem 0 0;
    position: relative;
    padding-bottom: 66%;
    overflow: hidden;
}
.casePage .sec01 .listul .photo img {
    border-radius: 1rem 1rem 0 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.casePage .sec01 .listul a:hover .photo img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.casePage .sec01 .listul .txt {
    font-size: .8rem;
    color: #FDA735;
    margin: 1rem 1rem .5rem;
}
.casePage .sec01 .listul h2 {
    font-size: 1rem;
    margin: 0 1rem;
}
.casePage .sec01 .listul .link {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    right: 1rem;
    color: #999;
    font-size: .7rem;
    text-transform: uppercase;
}
.casePage .sec01 .listul .time {
    position: absolute;
    right: 0;
    bottom: 0;
    background: url("../img/icon30.png") no-repeat;
    background-size: 100% 100%;
    border-radius: 0 0 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    color: #fff;
    font-size: .7rem;
    line-height: 1.2;
    height: 0;
    width: 0;
    visibility: hidden;
    -webkit-transition: all .5s;transition: all .5s;
}
.casePage .sec01 .listul .time span {
    display: block;
    font-size: 1.6rem;
}
.casePage .sec01 .listul a:hover .time {
    width: 4.6rem;
    height: 4.8rem;
    visibility: visible;
}
.casePage .sec01 .listul a:hover .link {
    color: #0271bd;
}
.searchPage .sec01 .listul {
    display: flex;
    flex-wrap: wrap;
}
.searchPage .sec01 .listul li {
    width: 31.5%;
    margin: 0 2.75% 1.8rem 0;
}
.searchPage .sec01 .listul li:nth-child(3n) {
    margin-right: 0;
}
.searchPage .sec01 .listul a {
    display: block;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(9,21,37,0.1);
    height: 100%;
    padding-bottom: 3rem;
    position: relative;
}
.searchPage .sec01 .listul .photo {
    border-radius: 1rem 1rem 0 0;
    position: relative;
    padding-bottom: 66%;
    overflow: hidden;
}
.searchPage .sec01 .listul .photo img {
    border-radius: 1rem 1rem 0 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
	-webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.searchPage .sec01 .listul a:hover .photo img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.searchPage .sec01 .listul .txt {
    font-size: .8rem;
    color: #FDA735;
    margin: 1rem 1rem .5rem;
}
.searchPage .sec01 .listul h2 {
    font-size: 1rem;
    margin: 0 1rem .5rem;
}
.searchPage .sec01 .listul p {
    font-size: .8rem;
    color: #666;
    margin: 0 1rem;
}
.searchPage .sec01 .listul .link {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    right: 1rem;
    color: #999;
    font-size: .7rem;
    text-transform: uppercase;
}
.searchPage .sec01 .listul a:hover .link {
    color: #0271bd;
}
.comUrl {
    font-size: .8rem;
    margin-top: 2rem;
    color: #666;
}
@media screen and (min-width: 1540px) {
	html,body {font-size: 20px;}
}
@media screen and (max-width: 1539px) {
	html,body {font-size: 19px;}
    .comTtl .en {font-size: 2.5rem;}
}
@media screen and (max-width: 1380px) {
    #header {padding: 0 20px;}
}
@media screen and (max-width: 1299px) {
	html,body {font-size: 18px;}
	/* #region */
    #header {padding: 0 15px;}
    #header .logo {width: 10rem;}
    #header .navlist > li > a {padding-left: 1rem;padding-right: 1rem;}
    .comTtl .en {font-size: 2.3rem;}
    .comWidth {padding: 0 15px;}
    .index05 .map li {width: 18rem;}
    #footer .ftop {padding-left: 15px;padding-right: 15px;}
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
	.comWidth {width: 95%;padding-left: 0;padding-right: 0;}
	/* #region */
}
@media screen and (max-width: 768px) {
    body {font-size: inherit !important;}
	.pc {display: none !important;}
	a[href^="tel:"] {cursor: pointer;pointer-events: auto;}
	.comWidth {width: 95%;padding-left: 0;padding-right: 0;}
	#toolbar{display: block;}
	/* #region */
    #header {
        padding: 0 15px;
    }
    #header .width {
        max-width: inherit;
        display: block;
        padding: .9rem 8rem .9rem 0;
    }
    #header .logo {
        width: 16rem;
    }
    #header .menu {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -1.8rem;
        width: 3.6rem;
        padding: .8rem;
        transition: ease-out .36s;
    }
    #header .menu.on {
        transform: rotate(90deg);
    }
    #header .menu-shadow {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 600;
    }
    #header .nav {
        position: fixed;
        left: -101%;
        top: 0;
        width: 60%;
        height: 100vh;
        background-color: #fff;
        padding: 3rem 0;
        transition: ease-out .36s;
        z-index: 666;
        overflow-y: auto;
    }
    #header .nav.on {
        left: 0;
    }
    #header .navlist {
        display: block;
    }
    #header .navlist > li > a {
        font-size: 1.44rem;
        color: #333;
        padding: 1rem;
        text-align: center;
    }
    #header .navlist > li > a:before {
        display: none;
    }
    #header .navlist > li > a:after {
        display: none;
    }
    #header .navhide {
        display: none;
    }
    #header .search {
        right: 4rem;
        width: 3rem;
    }
    #header .search input {
        height: 3.2rem;
        font-size: 1.28rem;
        padding: 0 3.2rem 0 0;
    }
    #header .search button {
        height: 3.2rem;
        width: 3.2rem;
        background-size: 42% auto;
    }
    #header .search li {
        margin: 0 .6rem .6rem 0;
    }
    #header .search ul a {
        font-size: 1.12rem;
        padding: .4rem .6rem;
    }
    .comFix {
        display: none;
    }
    .index01 .swiper .txt01 {
        font-size: 2.45rem;
    }
    .index01 .swiper .txt02 {
        font-size: 1.6rem;
    }
    .index01 .swiper .en {
        font-size: 1.2rem;
        margin-bottom: .8rem;
    }
    .index01 .swiper-num {
        bottom: 6rem;
        font-size: 1.3rem;
    }
    .index01 .swiper-num .active {
        font-size: 2.3rem;
    }
    .index01 .scroll {
        bottom: 6rem;
    }
    .index02 .comWidth {
        display: block;
        margin-top: 0;
    }
    .index02 .lbox {
        width: auto;
    }
    .index02 .rbox {
        display: none;
    }
    .index02 .catelist li {
        width: 23%;
        margin: 0 2.66% 1rem 0 !important;
    }
    .index02 .catelist li:nth-child(4n) {
        margin-right: 0 !important;
    }
    .index02 .catelist div {
        font-size: 1.3rem;
    }
    .comLink a {
        font-size: 1.35rem;
    }
    .index03 .comWidth {
        margin-top: 0;
    }
    .index03 .txtbox {
        width: auto;
    }
    .index03 .txtbox p {
        font-size: 1.3rem;
        line-height: 1.6;
    }
    .index04 .swiper-num {
        bottom: 12rem;
        font-size: 1.3rem;
    }
    .index04 .comTtl {
        top: 10rem;
    }
    .index04 .comLink {
        bottom: 6rem;
    }
    .index04 .cont .txt {
        font-size: 1.7rem;
    }
    .index04 .cont li:first-child.show .txt {
        transform: translate(-10%,0);
    }
    .index04 .cont li:last-child.show .txt {
        transform: translate(-90%,0);
    }
    .index04 .cont .num {
        font-size: 1.2rem;
    }
    .index05 .comWidth {
        margin-top: 0;
    }
    .index05 .comTtl {
        margin-bottom: 2rem;
    }
    .index05 .map {
        width: auto;
        height: auto;
        padding: 0;
    }
    .index05 .map:before {
        display: none;
    }
    .index05 .map .photo {
        width: 20rem;
        height: 20rem;
        margin: 0 auto;
        position: relative;
        padding: .8rem;
    }
    .index05 .map .photo:before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 100%;
        border: 1px dashed #fff;
        content: "";
        -webkit-animation: zhuan360 50s linear 0s infinite;
        animation: zhuan360 50s linear 0s infinite;
    }
    .index05 .map li {
        position: static;
        width: auto;
        text-align: center !important;
        padding: 0 !important;
    }
    .index05 .map li .txt01 {
        font-size: 1.4rem;
        margin: .8rem 0 0;
    }
    .index05 .map li .txt02 {
        display: none;
    }
    .index05 .map li:before {
        display: none;
    }
    .index06 .comWidth {
        margin-top: 0;
    }
    .index06 .topbox {
        display: block;
    }
    .index06 .topbox ul {
        display: none;
    }
    .index06 .cont {
        display: block;
    }
    .index06 .cont .item {
        width: auto;
    }
    .index06 .cont .item:nth-child(2) {
        display: none;
    }
    .index06 .cont .item01 {
        width: auto;
        padding: 1rem;
        margin-top: 1rem;
    }
    .index06 .cont .item .photo:before {
        font-size: 1.2rem;
    }
    .index06 .cont .item h3 {
        font-size: 1.4rem;
        margin: 0;
        padding: 1rem 1rem 5rem;
        overflow: auto;
        white-space: inherit;
        text-overflow: inherit;
    }
    .index06 .cont .item .time {
        font-size: 1.2rem;
    }
    .index06 .cont .item .comLink .tda {
        font-size: 1.2rem;
    }
    .index06 .cont .item01 li:not(:last-child) {
        margin-bottom: 0;
    }
    .index06 .cont .item01 li+li {
        display: none;
    }
    .index06 .cont .item01 h3 {
        font-size: 1.3rem;
        padding-right: 7rem;
    }
    .index06 .cont .item01 h3 span {
        font-size: 1.2rem;
    }
    .index06 .cont .item01 p {
        font-size: 1.13rem;
    }
    #footer .width {
        max-width: inherit;
    }
    #footer .ftop {
        padding: 1.5rem 1rem 0;
        border-bottom: none;
    }
    #footer .ftop .width {
        display: block;
    }
    #footer .flogo {
        display: none;
    }
    #footer .ftop .lbox {
        display: block;
    }
    #footer .ftop .lbox ul {
        display: block;
    }
    #footer .ftop .lbox li {
        font-size: 1.3rem;
        margin-left: 0;
        padding-left: 2rem;
    }
    #footer .ftop .lbox li img {
        width: 1.3rem;
        top: .3rem;
    }
    #footer .ftop .rbox {
        display: none;
    }
    #footer .fcot {
        padding: 1.5rem 1rem;
    }
    #footer .fcot .width {
        display: block;
    }
    #footer .fcot .lul li:not(:last-child) {
        margin-bottom: 1.5rem;
    }
    #footer .fcot .lul .list {
        padding-left: 2rem;
        font-size: 1.3rem;
        margin-bottom: 0;
    }
    #footer .fcot .lul .list img {
        width: 1.3rem;
        top: .3rem;
    }
    #footer .fcot .rul {
        display: none;
    }
    .friendlink {
        padding: 1rem;
        font-size: 1.16rem;
    }
    .copyright {
        font-size: 1.16rem;
    }
    #footer .fnote {
        padding-bottom: 4.5rem;
        font-size: 1rem;
    }
    .copyright span {
        margin-left: 0;
        display: block;
    }
    .contactPage .sec01 .comWidth {
        margin-top: 0;
    }
    .contactPage .sec01 h2 {
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }
    .contactPage .sec01 ul {
        display: block;
    }
    .contactPage .sec01 ul li {
        width: auto;
        padding: 1.5rem 5rem 1.5rem 2rem;
        min-height: auto;
    }
    .contactPage .sec01 ul li:first-child {
        border-radius: 1rem 1rem 0 0;
    }
    .contactPage .sec01 ul li:last-child {
        border-radius: 0 0 1rem 1rem;
    }
    .contactPage .sec01 ul .ttl {
        font-size: 1.4rem;
        margin-bottom: .6rem;
    }
    .contactPage .sec01 ul .txt {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    .contactPage .sec01 ul .icon {
        right: 1.5rem;
        bottom: 1.5rem;
        width: 3rem;
    }
    .contactPage .sec01 ul .code .item {
        width: 2.6rem;
        height: 2.6rem;
    }
    .contactPage .sec01 ul .code .item > img {
        width: 1.6rem;
    }
    .contactPage .sec01 ul .cohide {
        top: inherit;
        bottom: 100%;
        -webkit-transform: translateX(-50%) translateY(-20px);
        transform: translateX(-50%) translateY(-20px);
    }
    .contactPage .sec01 ul .cohide:before{
        top: inherit;
        bottom: -6px;
    }
    .contactPage .sec01 ul .code .item:hover .cohide {
        -webkit-transform: translateX(-50%) translateY(-10px);
        transform: translateX(-50%) translateY(-10px);
    }
    .aboutPage .sec01 .comWidth {
        margin-top: 0;
    }
    .aboutPage .sec01 .comTtl {
        margin-bottom: 2rem;
    }
    .aboutPage .sec01 .txt {
        font-size: 1.2rem;
        line-height: 1.5;
        max-width: inherit;
    }
    .aboutPage .sec02 .comWidth {
        margin-top: 0;
    }
    .aboutPage .sec02 ul {
        display: block;
        max-width: inherit;
    }
    .aboutPage .sec02 ul li {
        margin-top: 1rem;
        width: auto;
        padding: 1.5rem 1.5rem 1.5rem 7rem;
    }
    .aboutPage .sec02 ul p {
        font-size: 1.2rem;
    }
    .aboutPage .sec02 ul p span {
        font-size: 1.45rem;
        margin-bottom: .5rem;
    }
    .aboutPage .sec02 ul img {
        left: 1.5rem;
    }
    .aboutPage .sec03 .comWidth {
        margin-top: 0;
    }
    .aboutPage .sec03 .swiper-slide p {
        font-size: 1.3rem;
    }
    .comTop {
        height: 26rem;
        margin-bottom: 2rem;
    }
    .comTop h2 .en {
        font-size: 1.8rem;
    }
    .comTop h2 .line {
        height: 2px;
        margin: .4rem auto .2rem;
    }
    .comUp {
        margin-bottom: 2rem;
    }
    .comUp .comWidth {
        min-height: 26rem;
        padding-top: 7rem;
        padding-bottom: 2rem;
    }
    .comUp .path {
        font-size: 1rem;
        background-position: left top 0.3rem;
    }
    .comUp h1 {
        font-size: 2rem;
    }
    .comUp .en {
        font-size: 1.2rem;
    }
    .comUp .link a {
        width: 10rem;
        font-size: 1.2rem;
    }
    .productPage #footer {
        margin-top: 3rem;
    }
    .productPage .catelist {
        display: block;
    }
    .productPage .catelist .item {
        width: auto;
        margin: 0 0 1.5rem;
    }
    .productPage .catelist h3 a {
        font-size: 1.6rem;
    }
    .productPage .catelist h3 span {
        font-size: 1.1rem;
    }
    .productPage .catelist li a {
        font-size: 1.3rem;
        padding: .25rem 0 .25rem 1.3rem;
    }
    .productPage .catelist li a:before {
        top: .8rem;
        width: .6rem;
        height: .6rem;
    }
    .productPage .catelist .icon {
        opacity: 0.5;
    }
    .sidebar {
        width: auto;
        padding-right: 0;
        border-right: none;
        margin-top: 2rem;
    }
    .sidebar .proul > li > a {
        font-size: 1.5rem;
        padding: .9rem 0 .9rem 2rem;
        background-size: 1.5rem auto;
    }
    .sidebar .protwo {
        padding-left: 2rem;
    }
    .sidebar .protwo a {
        font-size: 1.3rem;
    }
    .conts {
        width: auto;
        padding-left: 0;
    }
    .casePage #footer,
    .videoPage #footer,
    .product2ndPage #footer,
    .productdetailPage #footer,
    .newsPage #footer,
    .newsdetailPage #footer,
    .searchPage #footer {
        margin-top: 3rem;
    }
    .product2ndPage .sec01 .comWidth {
        flex-direction: column-reverse;
    }
    .product2ndPage .conts .listul {
        display: block;
    }
    .product2ndPage .conts .listul li {
        width: auto;
        margin: 0 0 1rem;
    }
    .product2ndPage .conts .listul a {
        padding: 1rem 1rem 4.5rem;
    }
    .product2ndPage .conts .listul .photo {
        padding-bottom: 60%;
    }
    .product2ndPage .conts .listul h2 {
        font-size: 1.45rem;
    }
    .product2ndPage .conts .listul .typebox {
        font-size: 1.2rem;
    }
    .product2ndPage .conts .listul .note {
        font-size: 1rem;
    }
    .pagination a {
        min-width: 2.7rem;
        font-size: 1.16rem;
    }
    .productdetailPage .sec01 .prophoto {
        position: static;
        right: inherit;
        top: inherit;
        margin-top: -4rem;
    }
    .productdetailPage .sec01 .prophoto a {
        margin: 0 auto;
    }
    .productdetailPage .sec01 .prophoto img {
        max-width: 80%;
        max-height: 80%;
    }
    .productdetailPage .sec01 .prophoto a:before {
        font-size: 1.13rem;
        left: 57%;
    }
    .newsdetailPage .sec01 .inner {
        display: block;
    }
    .newsdetailPage .sec01 .lbox {
        width: auto;
        padding: 0 0 2rem;
        border-right: none;
    }
    .newsdetailPage .sec01 .lbox .info,
    .newsdetailPage .sec01 .lbox .info * {
        font-size: 1.3rem !important;
        line-height: 1.7 !important;
    }
    .productdetailPage .sec01 .lbox .info,
    .productdetailPage .sec01 .lbox .info * {
        font-size: 1.3rem;
        line-height: 1.7;
    }
    .productdetailPage .sec01 .lbox .info h2 {
        padding-left: 1.8rem;
        background-size: 1.4rem auto;
    }
    .productdetailPage .sec01 .lbox .info h2,
    .productdetailPage .sec01 .lbox .info h2 * {
        font-size: 1.6rem;
    }
    .newsdetailPage .sec01 .rbox {
        width: auto;
        padding: 0 0 2rem;
        position: static;
        top: inherit;
    }
    .productdetailPage .sec01 .tabbox,
    .productdetailPage .sec01 .tabbox * {
        font-size: 1.3rem;
        line-height: 1.7;
    }
    .productdetailPage .sec01 .tabbox {
        overflow-x: auto;
    }
    .productdetailPage .sec01 .tabbox h2 {
        font-size: 1.4rem;
    }
    .productdetailPage .sec01 .tabul li {
        font-size: 1.3rem;
    }
    .productdetailPage .sec01 .tabbox ul {
        display: block;
    }
    .productdetailPage .sec01 .tabbox ul li {
        width: auto;
        margin-bottom: .7rem;
    }
    .productdetailPage .sec01 .tabbox ul li:before {
        height: 3.36rem;
        line-height: 3.36rem;
        font-size: 1.1rem;
    }
    .productdetailPage .sec01 .tabbox ul p {
        padding: .6rem .8rem;
        line-height: 1.7;
    }
    .productdetailPage .sec02 {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    .productdetailPage .sec02 .swiper p {
        font-size: 1.3rem;
        padding: .8rem;
    }
    .productdetailPage .sec03 .comTnews a {
        font-size: 1.3rem;
    }
    .productdetailPage .sec03 .comTnews {
        display: block;
    }
    .productdetailPage .sec03 .comTnews li {
        width: auto;
        margin: .8rem 0 0;
    }
    .fancybox-content {
        padding: 0 !important;
    }
    .comTj {
        background-size: 1.6rem auto;
        padding-left: 1.9rem;
        font-size: 1.66rem;
    }
    .comTnews a {
        font-size: 1.3rem;
        padding-left: 1rem;
    }
    .comTnews a:before {
        width: .5rem;
        height: .5rem;
        margin-top: -.25rem;
    }
    .comTpros .photo {
        padding-bottom: 80%;
    }
    .comTpros p {
        font-size: 1.3rem;
    }
    .comPageList {
        padding: .5rem 9rem 0 0;
    }
    .comPageList li {
        margin-top: .5rem;
        font-size: 1.2rem;
    }
    .comPageList .link a {
        font-size: 1.16rem;
    }
    .comFen {
        margin: -2rem 0 2rem;
        justify-content: flex-start;
        overflow-x: auto;
    }
    .comFen li {
        margin: 0 0.5rem;
    }
    .comFen a {
        font-size: 1.2rem;
        white-space: nowrap;
        padding: 1rem .5rem;
    }
    .newsPage .sec01 .listul {
        display: block;
    }
    .newsPage .sec01 .listul li {
        width: auto;
        margin: 0 0 1rem;
    }
    .newsPage .sec01 .listul a {
        padding: 1rem 1.3rem 3.8rem;
    }
    .newsPage .sec01 .listul .time {
        max-width: 8rem;
        font-size: 1.2rem;
    }
    .newsPage .sec01 .listul .time span {
        font-size: 1.8rem;
    }
    .newsPage .sec01 .listul .photo {
        padding-bottom: 63%;
    }
    .newsPage .sec01 .listul h2 {
        font-size: 1.4rem;
    }
    .newsPage .sec01 .listul .link {
        font-size: 1rem;
    }
    .videoPage .sec01 .listul {
        display: block;
    }
    .videoPage .sec01 .listul li {
        width: auto;
        margin: 0 0 1rem;
    }
    .videoPage .sec01 .listul .photo {
        padding-bottom: 55%;
    }
    .videoPage .sec01 .listul p {
        font-size: 1.3rem;
    }
    .casePage .sec01 .listul {
        display: block;
    }
    .casePage .sec01 .listul li {
        width: auto;
        margin: 0 0 1rem;
    }
    .casePage .sec01 .listul .photo {
        padding-bottom: 62%;
    }
    .casePage .sec01 .listul .txt {
        font-size: 1.2rem;
    }
    .casePage .sec01 .listul h2 {
        font-size: 1.5rem;
    }
    .casePage .sec01 .listul .link {
        font-size: 1rem;
    }
    .casePage .sec01 .listul .time {
        font-size: 1rem;
        height: 4.8rem;
        width: 6rem;
        visibility: visible;
    }
    .casePage .sec01 .listul .time span {
        font-size: 1.4rem;
    }
    .casePage .sec01 .listul a:hover .time {
        width: 6rem;
    }
    .searchPage .sec01 .listul {
        display: block;
    }
    .searchPage .sec01 .listul li {
        width: auto;
        margin: 0 0 1rem;
    }
    .searchPage .sec01 .listul a {
        padding-bottom: 3.5rem;
    }
    .searchPage .sec01 .listul .photo {
        padding-bottom: 62%;
    }
    .searchPage .sec01 .listul .txt {
        font-size: 1.2rem;
    }
    .searchPage .sec01 .listul h2 {
        font-size: 1.5rem;
    }
    .searchPage .sec01 .listul .link {
        font-size: 1rem;
    }
    .searchPage .sec01 .listul p {
        font-size: 1.15rem;
    }
    .comUrl {
        font-size: 1.1rem;
    }
}