<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
body {
    min-width: 1280px;
    user-select: none;
}


/* 浮动布局 */

.fl {
    float: left;
}

.fl {
    float: right;
}

.clearfix:after {
    height: 0;
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

.clearfix {
    zoom: 1;
}

* html .clearfix {
    zoom: 1;
}


/* 最多显示一行 */

.line-text--one {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* 最多显示两行 */

.line-text--two {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 最多显示三行 */

.line-text--three {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 设置滚动条的样式 */

::-webkit-scrollbar {
    width: 11px;
}


/* 滚动槽 */

::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}


/* 滚动条滑块 */

::-webkit-scrollbar-thumb {
    background: #ccc;
}

.container.inner {
    box-sizing: border-box;
    padding-top: 100px;
}


/* head */

.head {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 13vw;
    box-sizing: border-box;
    z-index: 10;
}

.head .nav-list {
    display: flex;
    align-items: center;
    margin: 0 5.83% 0 auto;
}

.head .nav-list .nav-fir {
    margin: 0 24px;
    flex-shrink: 0;
    font-size: 18px;
    color: #333;
    position: relative;
    padding: 30px 0;
}

.head .nav-list .nav-fir::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: -2px;
    bottom: 0;
    background: #e67817;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.head .nav-list .nav-fir.current::after {
    width: calc(100% + 4px);
}

.head .nav-list .nav-fir.current .fir-item::after {
    font-weight: bold;
    transform: translateY(0%);
}

.head .nav-list .nav-fir.current .fir-item span {
    transform: translateY(-100%);

}
.head .nav-list .nav-fir.current .fir-item a{
    color: #0056b3;

}

.head .nav-list .nav-fir .fir-item {
    width: 100%;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.head .nav-list .nav-fir .fir-item::after {
    content: attr(data-title);
    color: #e67817;
    position: absolute;
    left: 0;
    transform: translateY(100%);
    width: 100%;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.head .nav-list .nav-fir .fir-item span {
    display: inline-block;
    transform: translateY(0%);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.head .nav-list.hover .nav-fir.hover .fir-item::after {
    transform: translateY(0%);
}

.head .nav-list.hover .nav-fir.hover .fir-item span {
    transform: translateY(-100%);
}

.head .nav-list.hover .nav-fir .nav-sec {
    height: 260px;
    padding-top: 8px;
}
.head .nav-list.hover .nav-fir.hover .nav-sec {
    background: rgba(0, 0, 0, 0.4);
}

.head .nav-list.hover::before {
    height: 260px;
}

.head .nav-list .nav-sec {
    width: 120px;
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: -60px;
    z-index: 2;
    box-sizing: border-box;
    padding-top: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.head .nav-list .nav-sec ol {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.head .nav-list .nav-sec .sec-item {
    text-align: center;
}

.head .nav-list .nav-sec .sec-item a {
    color: #fff;
    white-space: nowrap;
    font-size: 16px;
    line-height: 36px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.head .nav-list .nav-sec .sec-item a:hover {
    color: #e67817;
}

.head .nav-list::before {
    content: "";
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.head .change-website {
    width: 84px;
    height: 36px;
    border-radius: 18px;
    background: #f5f5f5;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    text-align: center;
    line-height: 34px;
    font-style: italic;
    font-size: 18px;
    font-weight: bold;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head .change-website a {
    color: #ccc;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.head .change-website a.current,
.head .change-website a:hover {
    color: #011b43;
}

.head .search-box {
    width: 70px;
    height: 36px;
    margin-left: 30px;
    position: relative;
}

.show-search {
    display: block;
}

.head .search-box .iconfont {
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    background: #e67817;
    text-align: center;
    color: #fff;
    cursor: default;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.head .search-box .ipt-box {
    width: 0;
    height: 36px;
    border-radius: 18px;
    position: absolute;
    right: 0;
    border: solid #dbdbdb;
    border-width: 0;
    box-sizing: border-box;
    background: #fff;
    line-height: 34px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.head .search-box .ipt-box input {
    width: 100%;
    font-size: 14px;
    color: #333;
    border: none;
    background-color: transparent;
}

.head .search-box .ipt-box input::placeholder {
    color: #ccc;
}

.head .search-box .ipt-box.show {
    /* width: 184px; */
    /* padding: 0 80px 0 18px; */
    /* border-width: 1px; */
}


/* foot */

.foot {
    width: 100%;
    height: 343px;
    background: url(../images/foot-bg.png) no-repeat top center;
    background-size: cover;
    overflow: hidden;
}

.foot .link-group {
    width: 100%;
    height: 282px;
    display: flex;
    border-bottom: 1px solid #fff;
}

.foot .foot-nav {
    flex-grow: 1;
    height: 100%;
    padding-left: 13vw;
    box-sizing: border-box;
    display: flex;
}

.foot .foot-nav .nav-fir {
    width: 20%;
    height: 100%;
    border-left: 1px solid #fff;
    position: relative;
    box-sizing: border-box;
    padding: 46px 0 0 36px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.foot .foot-nav .nav-fir .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 40px;
    left: -18.5px;
    overflow: hidden;
}

.foot .foot-nav .nav-fir .icon img {
    width: 100%;
}

.foot .foot-nav .nav-fir .title {
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    color: #333;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.foot .foot-nav .nav-fir .nav-sec {
    margin-top: 4px;
}

.foot .foot-nav .nav-fir .nav-sec .sec-item {
    font-size: 14px;
    line-height: 30px;
}

.foot .foot-nav .nav-fir .nav-sec .sec-item a {
    color: #666;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.foot .foot-nav .nav-fir .nav-sec .sec-item a:hover {
    color: #e67817;
}

.foot .foot-nav .nav-fir:hover {
    background: #666;
}

.foot .foot-nav .nav-fir:hover .title,
.foot .foot-nav .nav-fir:hover .sec-item a {
    color: #fff;
}

.foot .contact {
    height: 100%;
    padding: 0 13vw 0 2vw;
    box-sizing: border-box;
    background: rgba(153, 153, 153, 0.2);
    text-align: right;
    box-sizing: border-box;
    padding-top: 46px;
    z-index: 999;
}

.foot .contact .label {
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    color: #333;
}

.foot .contact .tel {
    font-size: 50px;
    color: #e67817;
    position: relative;
    white-space: nowrap;
    margin-top: 10px;
}

.foot .contact .tel::after {
    content: "";
    width: 18px;
    height: 3px;
    background: #e67817;
    position: absolute;
    bottom: 0;
    right: 0;
}

.foot .contact .addr {
    line-height: 26px;
    color: #666;
    white-space: nowrap;
    margin: 12px 0;
}

.foot .contact .friend-links {
    width: 230px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #dbdbdb;
    margin: 0 0 0 auto;
    position: relative;
}

.foot .contact .friend-links .links {
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
}

.foot .contact .friend-links .links span {
    text-align: center;
    width: calc(100% - 48px);
    color: #767676;
    display: inline-block;
}

.foot .contact .friend-links .links .iconfont {
    width: 48px;
    height: 38px;
    background: #e67817;
    font-size: 12px;
    color: #fff;
    line-height: 38px;
    cursor: pointer;
}

.foot .contact .friend-links .links .iconfont b {
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    display: inline-block;
}

.foot .contact .friend-links .links-box {
    width: 100%;
    height: 0;
    overflow-y: auto;
    background: #fff;
    box-sizing: border-box;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    position: absolute;
    bottom: 38px;
    left: 0;
    z-index: 1;
    opacity: 0;
}

.foot .contact .friend-links .links-box li {
    text-align: center;
}

.foot .contact .friend-links .links-box li a {
    line-height: 36px;
    color: #767676;    width: 100%;
    display: inline-block;
}

.foot .contact .friend-links .links-box li a:hover {
    color: #e67817;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.foot .contact .friend-links.show .links .iconfont b {
    transform: rotate(-180deg);
}

.foot .contact .friend-links.show .links-box {    height: 200px;
    padding: 10px;
    opacity: 1;
    box-shadow: 0 -1px 3px #bdbdbd;}

.foot .copy {
    width: 100%;
    height: 60px;
    background: #999999;
    text-align: center;
    line-height: 60px;
    color: #fff;
    cursor: default;
}

.foot .copy a {
    color: #fff;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.foot .copy a:hover {
    opacity: 0.6;
}


/* container */

.container.inner .inner-poster {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.container.inner .sec-menu {
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0px 0px 12px 1px #f5f5f5;
    box-sizing: border-box;
    padding: 0 13vw;
    position: relative;
}

.container.inner .sec-menu .page-title {
    position: absolute;
    top: 50%;
    left: 13vw;
    transform: translateY(-50%);
}

.container.inner .sec-menu .page-title h3 {
    font-size: 20px;
    line-height: 26px;
    color: #999;
}

.container.inner .sec-menu .page-title h5 {
    font-size: 12px;
    line-height: 20px;
    color: #ccc;
}

.container.inner .sec-menu .menu-list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container.inner .sec-menu .menu-list .menu-item {
    width: 8.33vw;
    max-width: 160px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container.inner .sec-menu .menu-list .menu-item .menu-link {
    width: 100%;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    color: #333;
    text-align: center;
    position: relative;
}

.container.inner .sec-menu .menu-list .menu-item .menu-link span {
    display: inline-block;
    transform: translateY(0%);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.container.inner .sec-menu .menu-list .menu-item .menu-link::after {
    content: attr(data-title);
    color: #e67817;
    position: absolute;
    left: 0;
    transform: translateY(100%);
    width: 100%;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.container.inner .sec-menu .menu-list .menu-item.current {
    border-bottom: 2px solid #e67817;
}

.container.inner .sec-menu .menu-list .menu-item.current .menu-link span {
    transform: translateY(-100%);
}

.container.inner .sec-menu .menu-list .menu-item.current .menu-link::after {
    transform: translateY(0%);
}

.container.inner .sec-menu .menu-list .menu-item:hover .menu-link span {
    transform: translateY(-100%);
}

.container.inner .sec-menu .menu-list .menu-item:hover .menu-link::after {
    transform: translateY(0%);
}

.container.inner .inner-container {
    background: #f5f5f5;
    padding: 84px 13vw 74px;
}
.minshow{
	display: none;
}
@media screen and (max-width: 1000px) {
	body{
		padding-top: 16vw;
		min-width: 100vw;
	}
	.maxshow{
		display: none;
	}
	.minshow{
		display: block;
	}
	.keepOut{
		position: fixed;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		z-index: 80;
		background-color: rgba(0,0,0,0.6);
		align-items: flex-end;
		justify-content: center;
		padding-bottom: 2vw;
		box-sizing: border-box;
		display: none;
	}
	.keepOut.showheader{
		display:flex;
	}
	.keepOut .close{
		color: #FFFFFF;
		font-size: 3.4vw;
		border: 1px solid #FFFFFF;
		width: 8vw;
		height: 8vw;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
	}
    .head {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 16vw;
		display: inline-block;
		padding: 3vw 3vw;
		z-index: 100;
		transition: all 0.3s;
		-webkit-transition: all 0.3s;
		}
	.head .toplogo{
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 10vw;
	}
    .head .logo{
        width: 50%;
        display: inline-block;
    }
	.head .logo img{
		height: 10vw;
	}
	.head .toplogo .more{
		font-size: 4vw;
		border: 1px solid #c3c3c3;
		width: 8vw;
		height: 8vw;
		display: flex;
		justify-content: center;
		color: #666666;
		align-items: center;
	}
    .head .nav-list {
	    width: 100%;
	    margin: 0;
	    max-height: calc(88vh - 38vw);
	    overflow-y: auto;
	    overflow-x: hidden;
	    display: none;
	    padding-top: 5vw;
	    box-sizing: border-box;
	   }
	.head .nav-list::-webkit-scrollbar{width:0px;height:0px;cursor: pointer;}
    
    .head .nav-list .nav-fir {
	    margin: 0;
	    padding: 0;
	   }
    .head .nav-list .nav-fir .fir-item {
	    height: 9vw;
	    line-height: 9vw;
	    font-size: 3.4vw;
	   }
    
    .head .nav-list.hover .nav-fir .nav-sec {
	    height: auto;
		padding-top: 0;
    }
    .head .nav-list.hover .nav-fir.hover .nav-sec {
	    background-color: #FFFFFF;
	    height: auto;
	    padding-bottom: 1vw;
	   }
    .head .nav-list .nav-sec {
	    height: auto;
	    position: initial;
	    margin: 0;
	    width: 100%;
		padding-bottom: 1vw;
    }
    
    .head .nav-list .nav-sec .sec-item {
	    margin-right: 4vw;
	    display: inline-block;
	    float: left;
	   }
    
    .head .nav-list .nav-sec .sec-item a {
	    color: #696969;
	    float: left;
	    line-height: 5vw;
	    font-size: 3vw;
	   }
    
    .head .nav-list::before {
	    display: none;
    }
    
    .head .change-website {
	    margin: 2vw auto;
	    display: none;
	    font-size: 3.4vw;
	    width: 23vw;
	    height: 8vw;
	    line-height: 8vw;
	    border-radius: 4vw;
	   }
    
    .head .search-box {
		width: 70%;
		margin: 0 auto;
		display: none;
		height: 6vw;
	}
	.head .search-box .iconfont{
		height: 8vw;
		border-radius: 4vw;
		width: 15vw;
	}
	.head .search-box .iconfont img{
		width: 4vw;
	}
	.head .search-box .ipt-box {
		width: 100%;
		padding: 0 2vw 0 3vw;
		border-width: 1px;
		height: 8vw;
		line-height: 8vw;
		border-radius: 4vw;
	}
	.head .search-box .ipt-box input{
		height: 100%;
		width: 78%;
		float: left;
		font-size: 3vw;
	}
	.head.showheader{
		height:88%;
	}
	.head.showheader .nav-list,
	.head.showheader .change-website,
	.head.showheader .search-box{
		display: block;
	}
	
	.foot {
		height: auto;
		width: 100vw;
	}

	.foot .link-group {
		height: auto;
		display: block;
	}

	.foot .foot-nav {
		display: block;
		padding: 3vw 3vw !important;
	}
	
	.foot .foot-nav .nav-fir {
		width: 100%;
		box-sizing: border-box;
		padding: 2vw 3vw;
		border-left: none;
		border-bottom: 1px solid #c3c3c3;
		position: relative;
		display: inline-block;
	}
	.foot .foot-nav .nav-fir:after{
		content:"";
		width: 0;
		height: 0;
		border-top: 1.5vw solid #b3b3b3;
		border-left: 1.5vw solid transparent;
		border-right: 1.5vw solid transparent;
		position: absolute;
		right: 3vw;
		top: 5vw;
	}
	.foot .foot-nav .nav-fir .icon {
	  display: none;
	}
	
	.foot .foot-nav .nav-fir .icon img {
	}
	
	.foot .foot-nav .nav-fir .title {
	font-size: 3.4vw;
	}
	
	.foot .foot-nav .nav-fir .nav-sec {
	   display: none;
	   box-sizing: border-box;
	   border-radius: 0 0 22px 20px;
	   width: 100%;
	}
	
	.foot .foot-nav .nav-fir .nav-sec .sec-item {
	  font-size: 3.4vw;
	  text-align: center;
	  line-height: 6vw;
	  width: 50%;
	  float: left;
	}
	
	.foot .foot-nav .nav-fir .nav-sec .sec-item a {
	}
	
	.foot .foot-nav .nav-fir .nav-sec .sec-item a:hover {
	}
	
	.foot .foot-nav .nav-fir:hover {
	background-color: rgba(255,255,255,0);
	}
	
	.foot .foot-nav .nav-fir:hover .title,
	.foot .foot-nav .nav-fir:hover .sec-item a {
		color: #333333;
	}
	.foot .contact {
		padding: 4vw;
		text-align: left;
	}

	.foot .contact .label{
		font-size: 3.4vw;
		line-height: 4vw;
	}
	.foot .contact .tel {
		font-size: 3vw;
		line-height: 5vw;
	}

	.foot .contact .tel::after {
		left: 0;
	}
	.foot .contact .addr {
		margin-bottom: 0;
		font-size: 3vw;
		line-height: 4vw;
		margin-top: 1vw;
	}

	.foot .contact .friend-links {
		display: none;
	}
	.foot .copy {
		height: auto;
		line-height: 4vw;
		padding: 4vw;
		box-sizing: border-box;
		font-size: 2.8vw;
	}
}</pre></body></html>