* {
	margin: 0;
	padding: 0;
	/* 边际为0，即铺满整个页面 */
}

a {
	text-decoration: none !important;
	/* 所有的超链接a标签不带下划线，使用!important提高优先级 */
}
/* 导航栏 开始 */
.header {
    background: rgb(25, 56, 83);
    height: 60px;
    line-height: 60px;
    box-shadow: 2px 3px 5px #04133d;
}

.box {
    z-index: 1000;
    width: 100%;
    display: flex;
    position: fixed;
    background-color: rgb(25, 56, 83);
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 60px;
    line-height: 105px;
    margin-right: 10px;
    position: relative;
    left: -20px;
}

.nav ul, .nav li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav {
    display: flex;
    position: relative;
    left: -15px;
    height: 65px;
    margin: 0;
    flex-grow: 0;
    gap: 10px; /* 修改此处：原20px → 现10px（缩小50%） */
    justify-content: center; /* 新增：确保元素水平居中 */
}

.nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    font-size: 18px;
    padding: 0 15px; /* 调整：原20px → 现15px（辅助间距控制） */
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 2px; /* 调整：原3px → 现2px（优化文字密度） */
}

.nav > .item {
    height: 100%;
    position: relative;
    transition: .4s;
}

.list {
    position: absolute;
    width: 114px;
    top: 65px;
    display: none;
    transition: .4s;
    background-color: #037dc4;
    left: 50%;
    transform: translateX(-50%);
}

.list a {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
}

.itemTwo {
    height: 40px;
    transition: .4s;
}

.itemTwo a {
    text-decoration: none;
}

.nav > .item:hover {
    background-color: #037dc4;
}

.nav > .item:hover > .list {
    display: block;
    max-height: 500px;
    padding: 8px 10px;
    color: #fff;
}

.itemTwo:hover {
    background-color: rgba(255, 255, 255, .3);
}

.home-language {
    position: relative;
    left: -20px;
    display: flex;
    align-items: center;
    margin-left: 5px;
    margin-top: -15px;
    line-height: 20px;
    color: #69d0ff;
}

.home-language a {
    font-size: 16px;
    color: #fff;
    margin: 0 6px; /* 调整：原8px → 现6px（语言切换间距优化） */
    letter-spacing: 1px; /* 调整：原2px → 现1px（文字密度优化） */
}

.home-language a:hover {
    color: #6bd0ff;
}
/* 导航栏 结束 */


/* banner 开始 */
.carousel {
	position: relative;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	overflow: hidden;
}

.carousel-inner {
	position: relative;
	height: 600px;
}

.carousel-item {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.8s ease;
	transform: translateY(50px);
}

.carousel-item.active {
	opacity: 1;
	transform: translateY(0);
	z-index: 1;
}

.carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 导航控件 */
.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.3);
	padding: 15px;
	color: white;
	user-select: none;
}

.carousel-control.prev {
	left: 0;
}

.carousel-control.next {
	right: 0;
}

/* 指示点 */
.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 8px;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.5s;
}

.carousel-dot.active {
	background: white;
}

/* banner 结束 */


/* 产品轮播图 开始 */
:root {
	--primary: #009CFF;
	--secondary: #777777;
	--light: #F8F8F8;
	--dark: #252525;
}

.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 480px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

.container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

/*** Project ***/
.project-item h6 {
	text-align: center;
	font-size: 18px;
}

.project-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.project-item a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: rgba(0, 0, 0, .5);
	border-radius: 6px;
	opacity: 0;
	transition: .5s;

}

.project-item:hover a {
	opacity: 1;
}

.project-carousel .owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
}

.project-carousel .owl-dot {
	width: 35px;
	height: 35px;
	margin: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #DEE2E6;
	border-radius: 35px;
	transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
	color: #FFFFFF;
	border-color: var(--primary);
	background: var(--primary);
}



/* 产品轮播图 结束 */

/* 关于我们 开始 */
.home-about {
    margin: 0 auto;
    position: relative;
    padding: 20px 15px; /* Added side padding for small screens */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.home-about-img1 {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.home-about-img1 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.home-about-text {
    width: 100%;
    max-width: 1000px; /* Limit maximum width */
    display: flex;
    flex-direction: column; /* Stack vertically on small screens */
    align-items: center;
    gap: 30px; /* Consistent spacing */
    margin: 0 auto;
}

.home-about-img2 {
    width: 100%;
    max-width: 400px; /* Flexible up to 400px */
    margin: 0 auto; /* Center the image */
}

.home-about-img2 img {
    width: 100%;
    display: block;
    height: auto;
}

.home-about-word {
    width: 100%;
    max-width: 560px; /* Flexible up to 560px */
    padding: 0 15px; /* Side padding for small screens */
    box-sizing: border-box;
}

.home-about-word h2 {
    text-align: center;
    margin: 10px 0 20px; /* Simplified margins */
    font-size: clamp(1.5rem, 4vw, 2rem); /* Responsive font size */
}

.home-about-word p {
    line-height: 1.6; /* Relative line height */
    margin-bottom: 20px;
	margin-left: 10px;
    text-indent: 2em;
    text-align: justify;
    font-size: clamp(14px, 3vw, 16px); /* Responsive font size */
    word-wrap: break-word; /* Ensure text wraps */
}

.home-about-more {
    letter-spacing: 1px;
    width: 100px; /* Slightly wider for Chinese text */
    height: 30px;
    background-color: #e56600;
    border-radius: 6px;
    text-align: center;
    margin: 20px auto 0; /* Centered with top margin */
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about-more a {
    color: #ffffff;
    font-size: 14px; /* Slightly larger for readability */
    text-decoration: none;
}

.home-about-more:hover {
    box-shadow: 0 2px 4px rgba(63, 13, 0, 0.5);
}

/* Medium screens and up (side by side layout) */
@media (min-width: 768px) {
    .home-about-text {
        flex-direction: row; /* Side by side layout */
        align-items: flex-start;
        gap: 30px;
    }
    
    .home-about-img2 {
        width: 400px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .home-about-word {
        width: 560px;
        padding-right: 30px;
    }
}
/* 关于我们 结束 */

/* 视频开始 */
/* 视频容器 - 核心样式 */
.video-container {
	max-width: 950px;
	width: 100%;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.3);
	margin: 0 auto; /* 确保水平居中 */
}

/* 16:9 宽高比容器 */
.video-ratio-box {
	position: relative;
	padding-top: 56.25%; /* 16:9 宽高比 */
}

/* 视频元素 */
.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 中央播放按钮 */
.center-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(52, 152, 219, 0.8);
	color: white;
	border: none;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 2.5rem;
	transition: all 0.3s ease;
	z-index: 10;
	backdrop-filter: blur(2px);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.center-play-btn:hover {
	background: rgba(41, 128, 185, 0.9);
	transform: translate(-50%, -50%) scale(1.1);
}

/* 底部控制条 */
.video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
	padding: 15px;
	display: flex;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 10;
}

.video-container:hover .video-controls {
	opacity: 1;
}

/* 底部控制按钮 */
.control-btn {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.4rem;
	transition: all 0.3s ease;
	margin: 0 10px;
	backdrop-filter: blur(5px);
}

.control-btn:hover {
	background: rgba(52, 152, 219, 0.8);
	transform: scale(1.1);
}

/* 视频信息 */
video{
    max-width: 925px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 视频结束 */


/* 新闻和技术资讯 开始 */
.home-nesAndTech {
    display: flex;
    flex-direction: row;
    width: 100%; /* Full width to contain children */
    max-width: 1200px; /* Maximum content width */
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 40px; /* Space between news and tech sections */
    padding: 0 20px; /* Padding for small screens */
    box-sizing: border-box;
}

/* 新闻标题 */
.home-new-title {
    width: 100%;
    text-align: left;
}

.home-new-title h3 {
    font-size: 20px;
    color: #ff742b;
    border-left: 6px solid #ff742b;
    padding-left: 15px;
}

/* 技术参数标题 */
.home-tech-title {
    width: 100%;
}

.home-tech-title h3 {
    font-size: 20px;
    color: #ff742b;
    text-align: left;
    border-left: 6px solid #ff742b;
    padding-left: 15px;
}

.home-new01, .home-tech01 {
    width: 450px; /* Maintain original fixed width */
    height: 150px; /* Maintain original fixed height */
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
    display: flex;
    transition: .5s;
}

.home-new01:hover, .home-tech01:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .5);
}

.home-new01-img01, .home-tech01-img01 {
    /* width: 120px;  */
    height: 120px;
    object-fit: cover;
}

.home-new01 img, .home-tech01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-new>p {
    margin-bottom: 120px;
}

.home-new01-content p, .home-tech01-content p {
    white-space: normal;
    margin: 5px;
    margin-left: 5%;
    width: 220px; /* Maintain original text width */
}

.home-new {
    width: 420px; /* Fixed width for news section */
}

.home-tech {
    width: 420px; /* Fixed width for tech section */
    /* margin-left removed for small screens */
}

/* Medium screens and up (side by side layout) */
@media (min-width: 1000px) {
    .home-nesAndTech {
        flex-wrap: nowrap; /* Prevent wrapping */
        width: 80%; /* Adjusted container width */
    }
    
    .home-tech {
        margin-left: 40px; /* Restore original spacing */
    }
}
/* 新闻和技术资讯 结束 */







/* 我们的优势 开始 */
.home-advantages {
	margin-left: 100px;
	text-align: center;
}

.home-advantages-content {
	color: #00d2ff;
	margin: auto;
	width: 72%;
	display: flex;
	box-sizing: border-box;
	padding: 20px;
}

.home-advantages-box {
	width: 500;
	color: #00d2ff;
	box-sizing: border-box;
	padding: 20px;
	box-shadow: 0 3px 3px rgb(0 0 0 / 20%);
}

.home-advantages-box:hover {
	box-shadow: 0 15px 15px rgb(0 0 0 / 20%);
}

.home-advantages-box a {
	display: flex;
	flex-direction: column;
	/* flex-direction:决定子元素的排列方向, column垂直方向，元素从上到下排列;column-reverse‌：垂直方向，但元素从下到上排列‌
    row‌：默认值，主轴为水平方向，元素从左到右排列;row-reverse‌：主轴为水平方向，但元素从右到左排列;*/
	align-items: center;
	color: #535353;
	text-decoration: none;
}

.home-advantages-boximg img {
	width: 70px;
	height: 70px;
	transition: all 0.3s ease;
	overflow: hidden;
	/* overflow:hidden作用是当元素内的内容溢出的时候使它隐藏溢出的部分，即超出部分隐藏。 */
}

.home-advantages-boximg img:hover {
	width: 80px;
	height: 80px;

}

.home-advantages-title {
	border: 1px solid #535353;
	padding: 6px 20px;
	border-radius: 25px;
	margin: 20px;
	transition: all 0.3s ease;
}

.home-advantages-title:hover {
	border: 2px solid #535353;
	padding: 8px 25px;
	border-radius: 30px;
	margin: 25px;
}

.home-advantages-h3 {
	margin-bottom: 20px;
	font-size: 20px;
}

.home-advantages-text {
	font-size: 14px;
	line-height: 160%;
	text-align: justify;
	width: 100%;
}

/* 我们的优势 结束 */


/* 友情链接 开始 */
.home-friend-list {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-sizing: border-box;
}

.home-friend-links {
    text-align: center;
    margin-bottom: 30px;
}

.home-friend-text {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 0;
}

.home-friend-btn {
    display: inline-block;
    height: 45px;
    border: solid 1px #dfdfdf;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    color: #181818;
    font-size: 15px;
    line-height: 43px;
    padding: 0 28px;
    border-radius: 0;
    background-color: #ffffff;
    text-align: center;
    text-decoration: none;
    min-width: 150px;
    transition: all 0.3s ease;
    margin: 0;
}

.home-friend-btn:hover {
    background-color: #44abff;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .home-friend-text {
        flex-direction: column;
        align-items: center;
    }
    
    .home-friend-btn {
        width: 200px;
        margin: 10px 0;
    }
}
/* 友情链接 结束 */

/* 底部导航栏开始 */
/* 底部导航栏开始 */
.footer {
    width: 100%;
    padding: 30px 0;
    background-color: rgb(25, 56, 83);
    position: relative;
    z-index: 0;
}

.footer-info {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.addr {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateY(15px);
}

.addr img {
    width: 180px;
    margin-bottom: 10px;
    margin-left: 0;
    transform: translateX(30px);
}

.addr h3 {
    font-size: 20px;
    color: #ffffff;
    margin: 5px 0;
    white-space: nowrap;
}

.addr span, .addr p {
    font-size: 14px;
    color: #ffffff;
    margin: 8px 0;
    line-height: 1.5;
    white-space: nowrap;
}

.footer-links {
    flex: 2;
    min-width: 450px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 0;
    padding: 0 10px;
}

.footer-links dl {
    text-align: center;
    margin: 0;
    flex: 1;
    min-width: 0;
    position: relative;
}

.footer-links dl:nth-child(3){
    transform: translateY(10px);
} 

.footer-links dt {
    margin-bottom: 12px;
    font-size: 18px;
    color: #ffffff;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
}

.footer-links dt a {
    color: #ffffff;
    display: inline-block;
    padding: 0 10px;
}

.footer-links dt a:hover {
    color: #4db8ff;
}

.footer-links dd {
    padding: 6px 0;
}

.footer-links dd a {
    font-size: 15px;
    color: #ffffff;
    display: block;
    transition: color 0.3s;
    padding: 2px 0;
}

.footer-links dd a:hover {
    color: #4db8ff;
}

.footer-weixin {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* 添加居中对齐 */
    justify-content: center; /* 垂直居中 */
    transform: translateY(40px);
}

.footer-weixin img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.footer-weixin p {
    color: #fff;
    font-size: 14px;
    margin-top: 8px;
    width: 100px;
    flex-shrink: 0;
    text-align: center; /* 文字居中 */
    transform: translateX(-72px); /* 移除水平偏移 */
}

.home-copyright {
    display: flex;
    height: 45px;
    background-color: rgb(13, 41, 65);
    position: relative;
    z-index: 0;
}

.home-copyright p {
    margin: auto;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.home-copyright p a img {
    margin: 5px 0px -10px 10px;
    width: 28px;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .footer-info {
        gap: 15px;
    }
    
    .footer-links {
        gap: 10px;
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .addr, .footer-links, .footer-weixin {
        width: 100%;
        max-width: 500px;
        text-align: center;
        padding: 0;
    }
    
    .addr {
        white-space: normal;
        text-align: center;
    }
    
    .addr img {
        margin: 0 auto 15px;
    }
    
    .footer-links {
        flex-direction: column;
        min-width: unset;
        gap: 20px;
    }
    
    .footer-links dl {
        margin-bottom: 15px;
    }
    
    .footer-weixin {
        margin-top: 10px;
        height: auto;
        transform: none;
    }
}

@media (max-width: 480px) {
    .addr h3, .addr span, .addr p {
        white-space: normal;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links dt a {
        padding: 0 5px;
    }
}
/* 底部导航栏结束 */












/* 首页轮播图开始 */

.font-default {
	font-family: "Poppins", sans-serif;
}

.font-accent {
	font-family: "Poppins", sans-serif;
}

h1,
.h1 {
	margin-top: 10px;
	margin-left: 150px;
	letter-spacing: 10px;
	margin-bottom: 25px;
	font-size: 36px;
	line-height: 1.5;
}

@media (min-width: 768px) {

	h1,
	.h1 {
		line-height: 1.2;
		font-size: 60px;
	}
}


h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
	transition: .3s all ease;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
	color: #ff6b6b;
}

p,
.p,
.list {
	margin-top: 18px;
	margin-left: 150px;
	margin-bottom: 18px;
}

p a:hover,
.p a:hover,
.list a:hover {
	text-decoration: underline;
}

@media (min-width: 480px) {
	.big {
		font-size: 112.25%;
		line-height: 1.5;
	}

	h1 .big,
	.h1 .big {
		font-size: 142.22%;
		line-height: 1.125;
	}

	h2 .big,
	.h2 .big {
		font-size: 147.36%;
		line-height: 1.142857142857143;
	}
}

blockquote small,
blockquote .small,
small,
.small {
	font-size: 93.75%;
}

blockquote small:before,
blockquote .small:before,
small:before,
.small:before {
	display: none;
}

h1 blockquote small,
.h1 blockquote small,
h1 blockquote .small,
.h1 blockquote .small,
h1 small,
.h1 small,
h1 .small,
.h1 .small {
	font-size: 75%;
}


.btn-primary {
	margin-left: 150px;
	color: #fff;
	background-color: #ff6b6b;
	border-color: #ff6b6b;
}

.btn-primary:focus,
.btn-primary.focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.open>.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #ff3838;
	border-color: #ff3838;
}

.btn-primary:active,
.btn-primary.active,
.open>.btn-primary.dropdown-toggle {
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open>.btn-primary.dropdown-toggle:hover,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle.focus {
	color: #fff;
	background-color: #ff3838;
	border-color: #ff3838;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary {
	pointer-events: none;
	opacity: .5;
}

.btn-primary .badge {
	color: #ff6b6b;
	background-color: #fff;
}

.btn-xs {
	padding: 6px 16px;
	font-size: 12px;
	line-height: 20px;
	border-radius: 3px;
	border-width: 2px;
}

.btn-sm {
	padding: 8px 35px;
	font-size: 12px;
	line-height: 24px;
	border-radius: 3px;
	border-width: 2px;
	padding-bottom: 7px;
}

@media (min-width: 480px) {
	.btn-lg {
		padding: 17px 24px;
		font-size: 17px;
		line-height: 32px;
		border-radius: 5px;
	}
}

.btn-rect {
	border-radius: 0;
}

.btn-ellipse.btn {
	border-radius: 22.5px;
}

.btn-ellipse.btn-xs {
	border-radius: 18px;
}

.btn-ellipse.btn-sm {
	border-radius: 22px;
}

.btn-ellipse.btn-lg {
	border-radius: 35px;
}

.btn.btn-icon {
	padding-left: 17px;
	padding-right: 17px;
}

.btn.btn-icon .icon {
	font-size: 28px;
	line-height: 28px;
	vertical-align: middle;
	transition: 0s;
}

.btn.btn-icon-left .icon {
	float: left;
	padding-right: 10px;
}

.btn.btn-icon-right .icon {
	float: right;
	padding-left: 10px;
}

.btn-sm.btn-icon {
	padding-left: 35px;
	padding-right: 35px;
}

.btn-sm.btn-icon .icon {
	font-size: 16px;
	line-height: 22px;
}

.btn-sm.btn-icon-left .icon {
	padding-right: 8px;
}

.btn-sm.btn-icon-right .icon {
	padding-left: 8px;
}

.btn-lg.btn-icon {
	padding-left: 30px;
	padding-right: 30px;
}

.btn-lg.btn-icon .icon {
	font-size: 32px;
	line-height: 32px;
}

.btn-lg.btn-icon-left .icon {
	padding-right: 14px;
}

.btn-lg.btn-icon-right .icon {
	padding-left: 14px;
}

.btn-toolbar {
	margin-left: 0;
	transform: translate(-10px, -10px);
}

.btn-toolbar>.btn,
.btn-toolbar>.input-group,
.btn-toolbar>.btn-group {
	margin-left: 10px;
	margin-top: 10px;
}

/**
 * @subsection   Swiper 3.1.7
 * @description  Most modern mobile touch slider and framework with
 *               hardware accelerated transitions
 * @author       Vladimir Kharlampidi
 * @see          http://www.idangero.us/swiper/
 * @licesne      MIT License
 */
.swiper-container {
	height: 100vh;
	min-height: 400px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	/* Fix of Webkit flickering */
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 1920px;
	height: 650px;
	z-index: 1;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	-moz-transform: translate3d(0px, 0, 0);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex: 0 0 auto;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
}

/* a11y */
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
	display: none;
	position: absolute;
	top: 50%;
	width: 46px;
	height: 46px;
	line-height: 46px;
	font-size: 46px;
	text-align: center;
	margin-top: -23px;
	z-index: 10;
	cursor: pointer;
	opacity: .5;
	color: #fff;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	opacity: 1;
}

@media (min-width: 768px) {

	.swiper-button-prev,
	.swiper-button-next {
		display: block;
	}
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev {
	left: 3.5%;
}

.swiper-button-next {
	right: 3.5%;
}

/* Pagination Styles */
.swiper-pagination {
	display: block;
	position: absolute;
	text-align: center;
	transition: 300ms;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #fff;
	opacity: 1;
	position: relative;
	transition: 0.35s all ease;
}

.swiper-pagination-bullet:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: #ff6b6b;
	width: 0;
	height: 0;
	border-radius: 50%;
	margin-left: -2px;
	margin-top: -2px;
}

.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
	transform: scale(1.5);
}

.swiper-pagination-bullet:hover:after,
.swiper-pagination-bullet-active:after {
	width: 4px;
	height: 4px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
	background: #fff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000;
}

.swiper-container-vertical>.swiper-pagination {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0px, -50%, 0);
	-moz-transform: translate3d(0px, -50%, 0);
	-o-transform: translate(0px, -50%);
	-ms-transform: translate3d(0px, -50%, 0);
	transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination .swiper-pagination-bullet {
	margin: 5px 0;
	display: block;
}

.swiper-container-horizontal>.swiper-pagination {
	bottom: 20px;
	left: 0;
	width: 100%;
}

@media (min-width: 1200px) {
	.swiper-container-horizontal>.swiper-pagination {
		bottom: 50px;
	}
}

.swiper-container-horizontal>.swiper-pagination .swiper-pagination-bullet {
	margin: 0 15px;
}

/* 3D Container */
.swiper-container-3d {
	-webkit-perspective: 1200px;
	-moz-perspective: 1200px;
	-o-perspective: 1200px;
	perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper {
	/* Windows 8 IE 10 fix */
	-ms-perspective: 1200px;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

/* Cube */
.swiper-container-cube {
	overflow: visible;
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
	pointer-events: auto;
	visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0;
}

/* Scrollbar */
.swiper-scrollbar {
	position: relative;
	-ms-touch-action: none;
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	bottom: 0;
	z-index: 50;
	height: 3px;
	width: 100%;
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: #ff6b6b;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	-moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	-webkit-background-size: 100%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg);
	}
}

.swiper-slide>.vide__body,
.swiper-slide>.parallax_cnt {
	height: 100%;
}

.swiper-slide {
	white-space: nowrap;
}

.swiper-slide:not(.vide):not(.rd-parallax):before,
.swiper-slide .parallax_cnt:before,
.swiper-slide .vide__body:before {
	content: '';
	display: inline-block;
	height: 50%;
}

.swiper-slide-caption {
	display: inline-block;
	width: 100%;
	max-height: 100%;
	vertical-align: middle;
	white-space: normal;
}

.swiper-slide-caption p {
	display: none;
}

.swiper-slide,
.swiper-slide h1,
.swiper-slide h2,
.swiper-slide h3,
.swiper-slide h4,
.swiper-slide h5,
.swiper-slide h6,
.swiper-slide .heading-1,
.swiper-slide .heading-2,
.swiper-slide .heading-3,
.swiper-slide .heading-4,
.swiper-slide .heading-5,
.swiper-slide .heading-6 {
	color: #fff;
}

@media (min-width: 768px) {
	.swiper-slide-caption p {
		display: block;
	}
}


/** @section Preloader */
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #fff;
	transition: .3s all ease;
}

.preloader.loaded {
	opacity: 0;
	visibility: hidden;
}

.preloader-body {
	text-align: center;
}

.preloader-body p {
	position: relative;
	right: -8px;
}

/* 首页轮播图结束 */