@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

html,
body {
	font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #333333;
	background-color: #ffffff;
	overflow-x: hidden;
}

ul,
li {
	list-style-type: none;
	margin: 0;
}

input,
textarea,
select {
	resize: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border: 0;
}

a {
	text-decoration: none;
	color: #000;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

img {
	max-width: 100%;
	border-style: none;
	vertical-align: middle;
}
:root{
	--header-background:#e94836;
}
.f30{
	font-size: 30px!important;
}
.f18{
	font-size: 18px!important;
}
.w1800{
    width:95%;
    max-height: 1800px;
    margin:0 auto;
}
.zoom-img {
	overflow: hidden;
}

.zoom-img .img {
	overflow: hidden;
}

.zoom-img img {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.zoom-img:hover img {
	transform: scale(1.04);
	-ms-transform: scale(1.04);
	-webkit-transform: scale(1.04);
	-o-transform: scale(1.04);
	-moz-transform: scale(1.04);
}

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

.clear {
	zoom: 1;
}

.nav-page {
	font-size: 0;
	text-align: center;
}

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: none;
	box-shadow: none;
}

.btn-link:focus,
.btn-link:hover {
	text-decoration: none;
}
/*限制行数*/
.clamp1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.clamp2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.clamp3{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.clamp4{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.clamp5{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
/* header&home&footer */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: var(--header-background);
	transition: all 0.5s ease-in;
	z-index: 11;
	display: flex;
	align-items: center;
}

.header .w1800 {
	width: 95%;
	margin: 0 auto;
}

.header .wrap {
	display: flex;
	justify-content: flex-start;
    align-items: center;
}

.header .rHeadBox {
	display: flex;
	align-items: center;
	background:#f2f2f2;
	border-radius: 30px;
	height: 50px;
	transition: all 0.5s ease-in;
	margin-left: 20px;
}

.header .nav {
	position: relative;
	display: flex;
	align-items: center;
}

.header .nav.mNav {
	display: none;
}

.header .item {
	position: relative;
	margin: 0 5px;
}

.header .item>a {
	font-size: 18px;
	color: #000;
	line-height: 50px;
	padding: 0 20px;
}

.header .item.active>a {
	color: #000;
	background:#ffffff;
	border-radius: 30px;
	padding: 10px 20px;
}
.header .item:hover a{
    color: #000;
    background:#ffffff;
    border-radius: 30px;
    padding: 10px 20px;
}

.header .dropDown {
	position: absolute;
	display: none;
	z-index: 10;

}

.header .item .dropDown {
	display: none;
	min-width: 100%;
	top: 100%;
	left: 50%;
    border-radius: 10px;
	transform: translate(-50%, 0);
	background-color: rgba(255, 255, 255);
	// transition: all 0.5s ease-in;
}

.header .item .dropDown>a {
	display: block;
	font-size: 16px;
	color: #000;
	line-height: 40px;
	text-align: center;
	padding: 0 10px;
	white-space: nowrap;
}

.header .item .dropDown>a:last-child {
	margin-right: 0;
}

.header .item .dropDown>a:hover {
	text-decoration: none;
    color:#e94836;
}

.header .rBox {
	display: flex;
	align-items: center;
	margin-left: 12px;
	position: absolute;
    right: 0;
}

.header .input-search {
    position: relative;
    width: 200px;
    margin: 50px auto;
}
.header .search-input {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border-radius: 30px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    outline: none;
}
.header .search-input::placeholder {
    color: #aaa;
}
.header .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}
.header .search-btn img{
    width:20px;
}
.header .search-btn:hover {
    background: #f54142;
}



.header .item2 {
	position: relative;
	margin: 0 14px;
}

.header .item2 .icon {
	line-height: 104px;
}

.header .icon {
	cursor: pointer;
}

.header .language .icon {
	display: flex;
	align-items: center;
}

.header .language .icon img {
	margin-right: 8px;
}

.header.headBack {
	height: 80px;
	background-color: var(--header-background);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.header.headBack .rHeadBox {
	height: 80px;
}

.header.headBack .item>a {
	line-height: 80px;
}

.header .btnMenu {
	width: 40px;
	height: 30px;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	display: none;
}

.header .btnMenu>span {
	width: 40px;
	height: 2px;
	background-color: #fff;
	margin: 4px 0;
	transition: all 0.3s;
	-webkit-transform: skew(40deg);
	-moz-transform: skew(40deg);
	-o-transform: skew(40deg);
	-ms-transform: skew(40deg);
	transform: skew(40deg);
}

.header .btnMenu.on>span {
	width: 20px;
}

.header .btnMenu.on>span:first-child {
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.header .btnMenu.on>span:nth-child(2) {
	display: none;
}

.header .btnMenu.on>span:last-child {
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	margin-top: -6px;
}



.header .inputBox {
	display: flex;
	align-items: center;
}

.header .inputText {
	width: 250px;
	height: 40px;
}

.header .btnSubmit {
	background: none;
	cursor: pointer;
}

.header .language .dropDown {
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	background-color: #fff;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 3px 12px -5px rgba(0, 0, 0, 0.1);
	min-width: 100px;
	text-align: center;
}

.header .language .dropDown a {
	display: block;
	font-size: 14px;
	color: #333;
	line-height: 36px;
	padding: 0 5px;
	transition: all 0.5s ease-in;
}

.header .language .dropDown a:hover {
	background-color: #eee;
}

.header.headBack .item2 .icon {
	line-height: 80px;
}

.footer {
	background-image: url(../images/footer.jpg);
	background-size: 100% 100%;
	border-top:1px solid #c4c4c4;
}
.footer .cont {
    max-width: 1800px;
    width:95%;
    margin:0 auto;
	border-left:1px solid #c4c4c4;

}

.footer .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.footer .block {
    background: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
	border-right:1px solid #c4c4c4;
	padding-top:50px;
}
.footer .block-content {
    padding: 20px 20px;
    flex: 1;
}

.footer .block-footer {
    padding: 20px 20px;
    height:230px;
}
.footer .contact-info {
    margin-top: auto;
}

.footer .contact-info p {
    margin-bottom: 10px;
    color: #000;
}

.footer .nav-list {
    list-style: none;
}
.footer .nav-list a{
    color:#000;
}
.footer .nav-list a:hover{
	color:#e94836;
    border-bottom: 1px solid #e94836;
}


.footer .nav-list li {
    line-height: 2.5
}
.footer .li-c2 a{
    color:#999b9a
}
.footer .nav-list li:last-child {
    border-bottom: none;
}

.footer .btn {
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}
.footer .btn img{
    width:20px;
    opacity: 0.4;
}

.footer .email-container {
    position: relative;
    width: 300px;
    margin:20px 0;
}
.footer .email-input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.footer .submit-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f0ed;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.footer .submit-btn img{
    width:8px;
}

.footer .intro-text {
    text-align: left;
    color: #000;
    font-size: 14px;
}
.footer .grid2 {
	border-top:1px solid #c4c4c4;
}
.footer .grid2 .block {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}
.footer .grid2 .content {
    width: 100%;
    text-align: right;
}
@media (max-width: 768px) {
    .footer .grid {
        grid-template-columns: 1fr;
        gap:0;
    }
    .footer .block-content{
    	padding: 0;
    }
    .footer .block-footer{
    	height:auto;
    }
    .footer .grid .block:nth-child(3),
    .footer .grid .block:nth-child(4){
    	display: none;
    }
    .footer .grid2 .block{
    	padding:5px 0;
    }
    .footer .cont:nth-child(2){
    	padding-top: 0;
    }
}










.main {
	padding-top: 104px;
}

.homeMain {
	padding-top: 0;
}
.pageMain{
    padding-top: 80px;
}
.bannerSwiper .suspen {
	position: absolute;
	top: 50%;
	left: 70%;
	transform: translate(-50%, -50%);
	max-width: 40%;
	width: 100%;
	text-align: left;
}

.bannerSwiper .h1 {
	font-size: 40px;
	color: #000;
	line-height: 1;
	margin-bottom: 20px;
	font-weight: bold;
}

.bannerSwiper .h2 {
	font-size: 20px;
	color: #000;
	line-height: 40px;
	/* margin-bottom: 40px; */
	font-weight: bold;
}
.bannerSwiper .h3{
	font-size: 18px;
	color: #000;
	line-height: 40px;
	display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.bannerSwiper .h3 span{
	border-left:2px solid #000;
	padding:0 10px;
}
.bannerSwiper .h3 span img{
	margin-left: 150px;
}
.bannerSwiper .btnMore {
	display: inline-block;
	width: 175px;
	height: 55px;
	font-size: 16px;
	color: #ffffff;
	line-height: 55px;
	text-align: center;
	background-color: #009d33;
	border-radius: 27px;
	padding-right: 30px;
	background-image: url("../images/icon3.png")/*tpa=https://www.bioqinglam.com/Public/Home/images/icon3.png*/;
	background-repeat: no-repeat;
	background-position: 80% center;
}

.bannerSwiper .swiper-pagination {
	bottom: 9.3%;
}

.bannerSwiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: none;
	margin: 0 5px !important;
	border: 2px solid #fff;
	border-radius: 50%;
	opacity: 1;
}

.bannerSwiper .swiper-pagination-bullet-active {
	background-color: #fff;
}

.mImg {
	display: none;
}

.w15 {
	width: 78.12%;
	margin: 0 auto;
}
@media only screen and (max-width: 1750px) {
	.bannerSwiper .h3 span img{
		margin-left: 120px;
	}
}




/*字母滚动*/
.homeMain1 .marquee {
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #dddddd, #eff0f2, #e0e1e3);
    overflow: hidden;
    position: relative;
}

.homeMain1 .scroll-container {
    position: absolute;
    display: flex;
    width: max-content;
    height: 100%;
    animation: scroll 30s linear infinite;
}

.homeMain1 .scroll-item {
    font-size: 0.6rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}
.homeMain1 .scroll-item2 {
    font-size: 0.4rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

/* 从右向左无缝滚动动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

/*关于我们*/
.homeBox-2{
	background-image: url(../images/homeBox-2.jpg);
	background-size: 100% 100%;

}

.homeBox-2 .cont {
    display: flex;
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
    overflow: hidden;
}
.homeBox-2 .left {
    width: 25%;
    color: #000000;
	padding-top: 80px;
	padding-left:20px;
    display: flex;
    flex-direction: column;
	border-left:1px solid #c4c4c4;
}
.homeBox-2 .left h1 {
    font-size: 30px;
    margin-bottom: 5px;
    border-left:2px solid #000;
    padding-left: 20px;
}
.homeBox-2 .left h2 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color:#ababab;
}
.homeBox-2 .small-logo {
    margin: 80px 0;
}
.homeBox-2 .bottom-logo {
    width: 200px;
    font-size: 30px;
    font-weight: bold;
    color:#ababab;
    margin: auto auto 0 0;
}
.homeBox-2 .right {
    width: 75%;
    display: flex;
    flex-direction: column;
	border-left: 1px solid #c4c4c4;

}
.homeBox-2 .row {
    display: flex;
    flex: 1;
	border-right: 1px solid #c4c4c4;
}
.homeBox-2 .row:last-child {
    border-bottom: none;
}
.homeBox-2 .text-section {
    width: 50%;
	padding-top: 80px;
}
.homeBox-2 .text-section h3 {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    margin-bottom: 10px;
    border-left:2px solid #000;
    padding-left: 20px;
}
.homeBox-2 .text-section h3 span img{
	padding-right: 20px;
}
.homeBox-2 .text-section .desc {
    font-size: 16px;
    color: #666;
    line-height: 30px;
    padding: 20px 60px 20px 15px;
    text-align: justify;
}
.homeBox-2 .image-section {
    width: 50%;
	border-left: 1px solid #c4c4c4;
	padding-top: 80px;

}

.homeBox-2 .image-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	padding-right: 20px;
	padding-left: 20px;
}
.homeBox-2 .image-section:nth-child(3) img{
	 padding-left: 0;
	 padding-right: 20px;
 }

@media (max-width: 768px) {
	.homeBox-2{
		padding:0;
	}
    .homeBox-2 .cont {
        flex-direction: column;
    }
    .homeBox-2 .left, .homeBox-2 .right {
        width: 100%;
    }
    .homeBox-2 .small-logo{
        margin:20px 0;
    }
    .homeBox-2 .bottom-logo{
        display: none;
    }
    .homeBox-2 .row {
        flex-direction: column;
    }

    .homeBox-2 .text-section, .image-section {
        width: 100%!important;
        padding:20px;
    }
    .homeBox-2 .text-section .desc {
        padding: 20px 15px 20px 15px;
    }
    .homeBox-2 .image-section {
		padding: 0;
		border:none;
    }
    .homeBox-2 .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
		padding:0;
    }
	.homeBox-2 .image-section:nth-child(3) img{
		padding-left: 0;
		padding-right: 0px;
	}
	 .homeBox-2 .image-section h3{
		border:none;
	}
}
/*奖项设置*/
.homeBox-3{
	background:#f6f7fb;
}
.homeBox-3 .blocks-grid {
	max-width: 1800px;
    width:95%;
    margin: 0 auto;

	display: flex;
	flex-wrap: wrap;

}

.homeBox-3 .block-wrapper {
    position: relative;
	padding:80px 20px 80px 20px;
	width:25%;
	border-left:1px solid #c4c4c4;

}
.homeBox-3 .block-wrapper:nth-child(3){
	width:24.9999%;
}
.homeBox-3 .block-wrapper:nth-child(4){
	border-right:1px solid #c4c4c4;
	width:25.0011%;

}
/*.homeBox-3 .block-wrapper:not(:last-child)::after {*/
/*	content: "";*/
/*	position: absolute;*/
/*	top: 0;*/
/*	bottom: 0;*/
/*	border-right: 1px solid #c4c4c4;*/
/*}*/

.homeBox-3 .block-wrapper .l-left{

}
.homeBox-3 .block {
    background: #e2e6e7;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height:100%;
}

.homeBox-3 .block-shadow {
    position: absolute;
	width: 90%;
	height: 445px;
    background: #ff4d4d;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 0;
}

.homeBox-3 .block-wrapper:hover .block {
    transform: translate(16px, -16px);
}

.homeBox-3 .block-wrapper:hover .block-shadow {
    transform: translate(8px, -8px);
    opacity: 0.8;
}
.homeBox-3 .block-wrapper .l-left{
	border-left: 2px solid #000;
	padding-left: 20px;
}
.homeBox-3 .block-1 {
    background: #dadde2;
    color: white;
    position: relative;
    overflow: hidden;

}
.homeBox-3 .block-1::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 0px;
    width: 125px;
    height: 320px;
    background-image: url('../images/homeBox-3.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;

}
.homeBox-3 .block:hover .tag,
.homeBox-3 .block:hover .arrow-btn{
    background:#e94836;
    color:#fff;
}
.homeBox-3 .block:hover .arrow-btn img{
    filter: brightness(0) invert(1);
}
.homeBox-3 .block:hover .logo img{
    filter:none;
}

.homeBox-3 .block-title {
    font-size: 24px;
    font-weight: bold;
    margin-left: 5px;
    color:#000;
}

.homeBox-3 .block-subtitle {
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: bold;
    padding-left: 20px;
}
.homeBox-3 .tags-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}
.homeBox-3 .tag {
    background: #ffffff;
    padding: 4px 6px;
    border-radius: 15px;
    font-size: 12px;
    text-align: center;
}
.homeBox-3 .logo-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
}
.homeBox-3 .logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homeBox-3 .logo img{
    filter: grayscale(100%) brightness(0);
}
.homeBox-3 .item-list {
    margin-bottom: 30px;
    padding-left: 10px;
    flex-grow: 1;
}
.homeBox-3 .item-list li {
    font-size: 14px;
    margin-bottom: 8px;
    list-style-type: none;
    padding-left: 15px;
    position: relative;
}
.homeBox-3 .item-list li:before {
    content: "-";
    position: absolute;
    left: 0;
    color: #000;
}
.homeBox-3 .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #d2d5da;
    background:none;
}

.homeBox-3 .read-more {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

.homeBox-3 .arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.homeBox-3 .arrow-btn img{
    width:8px;
}

@media (max-width: 1024px) {
	.homeBox-3 .block-wrapper{
		width:100%;
		border:none;
		padding:10px;
	}

}
@media (max-width: 600px) {
    .homeBox-3 .blocks-grid {
        grid-template-columns: 1fr;
        padding:10px;
    }
}


/*新闻动态*/
.homeBox-4{
	background:#f6f7fb;
}
.homeBox-4 .homeBox-bg{
	background-image: url(../images/homeBox-4.png);
	background-size: cover;
}
.homeBox-4 .cont {
    display: flex;
    flex-wrap: wrap;
    max-width: 1800px;
    width:95%;
    margin: 0 auto;
	border-left:1px solid #c4c4c4;
	border-right: 1px solid #c4c4c4;

}

.homeBox-4 .left-section {
    width: 25%;
    background: #333;
    position: relative;
    overflow: hidden;
	padding:20px;
	margin-top: 80px;
}

.homeBox-4 .left-section .image-w {
    position: relative;
    width: 95%;
    max-width: 600px;
    margin: 10px auto;
}
.homeBox-4 .left-section .image-main {
    position: relative;
    width: 100%;
    height: 560px;
    border-radius: 8px;
    transform: translate(10px, 0px);
    z-index: 2;
	object-fit: cover;
}

.homeBox-4 .left-section .background-layer {
    position: absolute;
    bottom: -10px;
    width: calc(100% - 5px);
    height: 100%;
    background: #f54142;
    z-index: 1;
    border-radius: 8px;
}
.homeBox-4 .right-section {
    width: 75%;

}

.homeBox-4 .title {
    margin-bottom: 30px;
}

.homeBox-4 .title h1 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    border-left:2px solid #fff;
    padding-left:10px;
}

.homeBox-4 .title h2 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    padding-left:10px;
}

.homeBox-4 .news-container {
    display: flex;
	height:100%;
}

.homeBox-4 .news-column {
    flex: 1;
    padding:80px 20px 50px 20px;
	border-left:1px solid #c4c4c4;
}

.homeBox-4 .news-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-top: 80px;
    display: inline-block;
    padding-bottom: 2px;
    position: relative;
    text-decoration: none;
    line-height: 1.5;

}
.homeBox-4 .news-column h3 a{
    color: #868887;
}
.homeBox-4 .news-column h3 a:hover{
    color:#f54142;
}
.homeBox-4 .news-column h3::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f54142;
    transition: width 0.3s ease;

}

.homeBox-4 .news-column h3:hover::after {
    width: 100%;

}

.homeBox-4 .news-item {
    margin-bottom: 15px;
}

.homeBox-4 .news-item .t1 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
    text-decoration: none;
    line-height: 1.5;
}
.homeBox-4 .news-item .t1::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* 下划线位置调整 */
    width: 100%;
    height: 1px;
    background-color: #f54142;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
.homeBox-4 .news-item .t1:hover::after {
    transform: scaleX(1);
}

.homeBox-4 .news-item p {
    font-size: 12px;
    color: #888;
}

@media (max-width: 768px) {
	.homeBox-4{
		padding: 0
	}
	.homeBox-4 .homeBox-bg {
	    background-image: url(../images/homeBox-4.png);
	     background-size: cover;
	}
	.homeBox-4 .cont{
		padding:0;
	}
    .homeBox-4 .left-section {
		display: none;
    }

	.homeBox-4 .news-column{
		border:none;
	}
    .homeBox-4 .right-section {
        width: 100%;
        padding:20px 10px;
    }

    .homeBox-4 .news-container {
        flex-direction: column;
    }
	.homeBox-4 .news-column h3{
		padding-top: 0px;
	}
}


/*关注领域*/
.homePage1{
    background: url('../images/img04.jpg') center/cover no-repeat;
    position: relative;
    color: #000;
    overflow: hidden;
}
.homePage1 .cont {
    position: relative;
    width:95%;
    max-width: 1800px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homePage1 .heads {
    text-align: left;
    margin-bottom: 30px;
}

.homePage1 .main-title {
    font-size: 40px;
    margin-top: 60px;
}

.homePage1 .sub-title {
    font-size: 20px;
}
.homePage1 .bottom-logo {
    width: 200px;
    font-size: 30px;
    font-weight: bold;
    color: #ababab;
    margin: auto auto 0 0;
}

.homePage1 .content {
    display: flex;
    align-items: center;
    width: 100%;
	margin-bottom: 60px;
}

.homePage1 .left-section {
    width: 75%;
    display: flex;
}

.homePage1 .left-box {
    width: 34%;
    display: flex;
    flex-direction: column;
}
.homePage1 .left-box:nth-child(2){
    width:70%;
    padding-left: 20px;
}

.homePage1 .focus-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.homePage1 .focus-area .t1{
    border-left: 2px solid #000;
    padding-left: 10px;
    font-weight: bold;
    font-size: 30px;
}

.homePage1 .intro {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 18px;
}

.homePage1 .right-section {
    width: 25%;
}

.homePage1 .feature-image {
    width: 380px;
    float:right;
}

@media (max-width: 768px) {
    .homePage1 .content {
        flex-direction: column;
    }

    .homePage1 .left-section, .homePage1 .right-section {
        width: 100%;
        display: unset;
    }
    .homePage1 .left-box,.homePage1 .left-box:nth-child(2){
        width:100%;
        padding: 0;
    }
    .homePage1 .right-section {
        display: none;
    }
}



.homePage1{
    color:#000;
}
.homePage2 .cont {
    max-width: 1800px;
    width:95%;
    margin: 0 auto;
	border-left:1px solid #c4c4c4;
	border-right:1px solid #c4c4c4;
}

.homePage2 .row {
    display: flex;
    width: 100%;
}

.homePage2 .content-box {
    width: 49.9%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
}
.homePage2 .content-box .tb50{
    width:50%;
	height:100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding:20px;


}
.homePage2 .content-box .bl-x{
	border-left: 1px solid #c4c4c4;
}
.homePage2 .content-box .br-x{
	border-right: 1px solid #c4c4c4;
}
.homePage2 .content-box:nth-child(odd){
    align-items: flex-end;
}

.homePage2 .image-box {
    width: 50%;
	padding-right: 50px;
    overflow: hidden;
    position: relative;
}
.homePage2 .image-box:nth-child(odd){
	padding-right: 0;
	padding-left: 50px;
}
.homePage2 .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.homePage2 .image-box:hover img {
    transform: scale(1.05);
}

.homePage2 .main-title {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

.homePage2 .sub-title {
    font-size: 20px;
    color: #e94836;
    font-weight: 400;
}
.homePage2 .t1{
    border-left:2px solid #000;
    padding-left:20px;
    margin-bottom: 30px;
}
.homePage2 .t2 {
    font-size: 16px;
    line-height: 1.5;
}
.homePage2 .mp20{
	margin-top:20px;
}
.homePage2 .t3{
    font-size: 18px;
    margin-top: 20px;
}
.homePage2 .t3 b{
    color:#e94836;
}
.homePage2 .row2{
    width:75%;
    margin-left: 24.97%;
    padding: 0 40px;
	border-left:1px solid #c4c4c4;
}

.homePage2 .row2 .t1{
    border-left:2px solid #000;
    padding-left:20px;
}
.homePage2 .row2 .t2{
    font-size: 18px;
    color:#000;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .homePage2 .row {
        flex-direction: column;
        min-height: auto;
    }

    .homePage2 .content-box, .image-box {
        width: 100%;
    }

    .homePage2 .image-box {
		width:100%;
        height: 100%;
        order: 1;
    }

    .homePage2 .content-box {
        padding: 30px;
    }
	.homePage2 .content-box .tb50:nth-child(odd),
	.homePage2 .content-box .tb50 {
		width:100%;
		margin:0;
		border:0;
	}
	.homePage2 .row2{
		width: 100%;
		margin-left:0;
		padding: 0 40px;
	}
}







/*page banner*/
.banPage{
    width:100%;
}

.banPage .cont {
    position: absolute;
    top:0;
    width:95%;
    max-width: 1800px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banPage .focus-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.banPage .focus-area .t1 {
    border-left: 2px solid #000;
    padding-left: 20px;
    font-weight: bold;
    font-size: 30px;
}
.banPage .intro {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 20px;
    padding-left: 30px;
}
.banPage .intro ul li{
    width:50%;
    float:left;
    padding-top: 5px;
    padding-bottom: 30px;
}
.banPage .intro ul li a:hover{
    color:#ff4d4d;
    border-bottom: 1px solid #ff4d4d;
}
.banPage .active{
    color:#ff4d4d;
    border-bottom: 1px solid #ff4d4d;
}
.banPage .heads {
    text-align: left;
    margin-bottom: 30px;
    padding-top: 80px;
}

.banPage .main-title {
    font-size: 40px;
    margin-top: 60px;
}

.banPage .sub-title {
    font-size: 20px;
}
.banPage .content {
    display: flex;
    align-items: center;
    width: 100%;
}

.banPage .left-section {
    width: 50%;
    display: flex;
}

.banPage .left-box {
    width: 50%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1500px){
    .banPage .main-title {
        font-size: 38px;
        margin-top: 40px;
    }
    .banPage .intro ul li{
        padding-bottom: 10px;
    }
}
@media (max-width: 1320px){
    .banPage .intro ul li{
        padding-bottom: 5px;
    }
}
@media (max-width: 768px) {
    .banPage img{
        height:200px;
        object-fit:cover;
    }
    .banPage .left-section,
    .banPage .left-box {
        width:100%;
    }
    .banPage .heads{
        margin:0;
        padding-top: 70px;
    }
    .banPage .intro{
        padding:0;
    }
    .banPage .left-box:nth-child(1){
        display: none;
    }
    .banPage .main-title{
        margin:0;
        font-size: 20px;
    }
    .banPage .sub-title{
        font-size: 16px;
    }
}

/*新闻动态*/
.news{
    background: url('../images/news.jpg') center/cover no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
	background-size:100% 100%;
}
.news .blocks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1800px;
    width:95%;
    margin: 0 auto;
}

.news .block-wrapper {
    position: relative;
}
.news .block {
    background: #e2e6e7;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height:100%;
}

.news .block-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff4d4d;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 0;
}

.news .block-wrapper:hover .block {
    transform: translate(16px, -16px);
}

.news .block-wrapper:hover .block-shadow {
    transform: translate(8px, -8px);
    opacity: 0.8;
}


.news .block:hover .arrow-btn{
    background:#e94836;
    color:#fff;
}
.news .block:hover .arrow-btn img{
    filter: brightness(0) invert(1);
}
.news .block:hover .logo img{
    filter:none;
}

.news .block-title {
    font-size: 24px;
    font-weight: bold;
    color:#000;
}
.news .block-title2{
    font-size: 18px;
    color:#000;
    line-height: 1.5;
    margin-top: 10px;
}
.news .image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news .block-subtitle {
    font-size: 16px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 10px;
}

.news .desc{
    font-size: 14px;
    color: #888888;
    margin-top: 80px;
    margin-bottom: 20px;
    text-align: justify;
}

.news .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #d2d5da;
    background:none;
}

.news .read-more {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

.news .arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.news .arrow-btn img{
    width:8px;
}

@media (max-width: 1024px) {
    .news .blocks-grid {
        grid-template-columns: repeat(2, 1fr);
        padding:10px;
    }
}
@media (max-width: 600px) {
    .news .blocks-grid {
        grid-template-columns: 1fr;
        padding:10px;
    }
}

























/* 媒体查询 */
/* header&home&footer */
@media only screen and (max-width: 1680px) {

	.header .item:hover a{
		padding:10px 20px;
	}
	.header .item:hover .dropDown a{
		line-height: 10px;
		padding: 15px 20px;
	}
	.header .item.active>a{
		color: #000;
		background:#ffffff;
		border-radius: 30px;
		padding:10px 10px;
	}
	.header .item2 {
		margin: 0 10px;
	}
	.header .rBox .button-title {
	  font-size: 16px;
	  color: #fff;
	  padding:0 20px;
	}

	.header .item .dropDown a {
		font-size: 14px;
		line-height: 40px;
		text-align: center;
		padding: 0 20px;
		white-space: nowrap;
	}
	.bannerSwiper .h3 span img{
		margin-left: 60px;
	}

}

@media only screen and (max-width: 1600px) {
	.header .item:hover a{
		padding:10px 10px;
	}
	.header .item:hover .dropDown a{
		line-height: 10px;
	}
	.header .item.active>a{
		color: #000;
		background:#ffffff;
		border-radius: 30px;
		padding:10px 10px;
	}
	.header .logo {
		width: 150px;
	}

	.header .item>a {
		font-size: 16px;
		padding: 0 10px;
	}




	.bannerSwiper .h1 {
		font-size: 30px;
	}

	.bannerSwiper .h2 {
		font-size: 14px;
		line-height: 30px;
	}
	.bannerSwiper .h3 span img{
		margin-left: 40px;
	}

}

@media only screen and (max-width: 1280px) {
	.header .w1800 {
		width: 90%;
	}

	.w15 {
		width: 90%;
	}

	.bannerSwiper .suspen {
		max-width: 50%;
	}

	.homeBox-4 .title .wrap {
		max-width: 90%;
	}
	.bannerSwiper .h3 span img{
		margin-left: 10px;
	}

}

@media only screen and (max-width: 1199px) {
	.header {
		height: 70px;
		background-color: var(--header-background);
	}

	.header .rHeadBox {
		height: auto;
		background:none;
	}

	.header.headBack {
		height: 70px;
	}

	.header .nav {
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: #fff;
		border-top: 1px solid #eee;
		overflow-y: auto;
		flex-direction: column;
		display: none;
	}

	.header .nav::-webkit-scrollbar {
		display: none;
	}

	.header .item {
		width: 90%;
		margin: 0 auto;
	}

	.header .item>a {
		position: relative;
		display: block;
		padding: 0;
		line-height: 70px;
		border-bottom: 1px solid #eee;
	}

	.header .item>a::after {
		position: absolute;
		top: 50%;
		right: 0;
		content: "";
		width: 11px;
		height: 19px;
		margin-top: -10px;
		background-image: url("../images/icon6.png")/*tpa=https://www.bioqinglam.com/Public/Home/images/icon6.png*/;
		background-position: center center;
		background-size: cover;
		transition: all 0.3s ease-in;
	}

	.header .item>a.link::after {
		display: none;
	}

	.header .rBox {
		display: none;
	}

	.header .btnMenu {
		display: flex;
	}

	.header .item .dropDown {
		position: relative;
		top: 0;
		transition: none;
		background-color: #fff;
	}

	.header .item .dropDown>a {
		display: block;
		color: #333;
		line-height: 50px;
		text-align: left;
		margin-right: 0;
	}

	.header .item>a.active::after {
		transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
		-o-transform: rotate(90deg);
	}

	.main {
		padding-top: 70px;
	}


}



@media only screen and (max-width: 991px) {





}

@media only screen and (max-width: 580px) {
	.header {
		height: 50px;
	}

	.header .logo {
		width: 250px;
	}

	.header .btnMenu {
		width: 30px;
	}
	.header .wrap {
	    justify-content: space-between;
	}

	.header .btnMenu>span {
		width: 30px;
		margin: 3px 0;
	}

	.header .btnMenu.on>span:last-child {
		margin-top: -5px;
	}

	.header.headBack {
		height: 50px;
	}

	.header .nav {
		top: 50px;
		height: calc(100vh - 50px);
	}

	.header .item>a {
		line-height: 60px;
	}

	.header .item .dropDown>a {
		line-height: 40px;
	}

	.header.headBack .item>a {
		line-height: 60px;
	}

	.footer .infoBox .textBox {
		margin-bottom: 20px;
	}

	.main {
		padding-top: 50px;
	}

	.homeMain .bannerSwiper .suspen {
		max-width:90%;
		left:50%;
		top: 50%;
	}

	.bannerSwiper .swiper-pagination {
		bottom: 5%;
	}
	.bannerSwiper .h3 span{
		font-size: 14px;
	}
	.bannerSwiper .h3 span img{
		display: none;
	}
	.pImg {
		display: none;
	}

	.mImg {
		display: block;
	}


}

@media only screen and (max-width: 480px) {
	.header .logo {
		width: 120px;
	}

	.header .item>a {
		line-height: 50px;
		color:#000;
		border:none;
	}
	.header .item:hover a {
		padding:0;
	}

	.header .item>a::after {
		width: 8px;
		height: 13px;
	}

	.header.headBack .item>a {
		line-height: 50px;
	}


	.bannerSwiper .h1 {
		font-size: 20px;
		margin-bottom: 15px;
		color:#fff;
	}

	.bannerSwiper .h2 {
		line-height: 24px;
		color:#fff;
	}
	.bannerSwiper .h3 span{
		border-left: 2px solid #fff;
		color:#fff;
	}


}

/* 核心技术 */
.technicalBox-1 {
	padding: 125px 0 95px;
}

.technicalBox-1 .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.technicalBox-1 .h1{
	margin-bottom: 0;
}

.technicalBox-1 .h4 {
	font-size: 24px;
	color: #ffffff;
	line-height: 40px;
	margin-bottom: 20px;
}

.technicalBox-1 .textBox {
	width: 57%;
}

.technicalBox-1 .img {
	width: 27.7333%;
}

.technicalBox-1 .item {
	width: 45%;
	padding: 30px 0;
}

.technicalBox-1 .item:nth-child(2n) {
	padding: 30px 0;
}

.technicalBox-1 .item::after {
	display: none;
}

.technicalBox-1 .item:nth-child(n + 3) {
	border: 0;
}

.technicalBox-2 {
	padding: 50px 0;
	background-position: center center;
	background-size: cover;
}

.technicalBox-2 .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.technicalBox-2 .img {
	width: 48%;
}

.technicalBox-2 .textBox {
	width: 45.3333%;
}

.technicalBox-2 .h1 {
	font-size: 50px;
	color: #0c5b94;
	line-height: 1;
	margin-bottom: 60px;
}

.technicalBox-2 .text {
	font-size: 16px;
	color: #666666;
	line-height: 36px;
}

.technicalBox-3 {
	padding-top: 75px;
}

.technicalBox-3 .box {
	position: relative;
	padding: 55px 0 115px;
}

.technicalBox-3 .box-1 {
	padding: 105px 0 115px;
}

.technicalBox-3 .h1 {
	font-size: 50px;
	color: #2a6590;
	line-height: 60px;
	text-align: center;
}

.technicalBox-3 .h2 {
	display: inline-block;
	min-width: 136px;
	font-size: 20px;
	color: #ffffff;
	line-height: 48px;
	text-align: center;
	border-radius: 24px;
	margin: 0 auto;
	background-color: #2a6590;
	margin-bottom: 55px;
	padding: 0 15px;
}

.technicalBox-3 .wrap {
	text-align: center;
}

.technicalBox-3 .videoBox {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.technicalBox-3 .img {
	width: 100%;
}

.technicalBox-3 .tips {
	max-width: 935px;
	width: 100%;
	display: inline-block;
	font-size: 20px;
	color: #666666;
	line-height: 30px;
	text-align: center;
	padding: 23px 35px;
	margin-top: 50px;
	border: 1px solid #e7e7e7;
	border-radius: 34px;
}

.technicalBox-3 .name {
	color: #00aeef;
	font-weight: bold;
}

.technicalBox-3 .btnPlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}



/* 媒体查询 */
/* 核心技术 */
@media only screen and (max-width: 1600px) {
	.technicalBox-1 .h4 {
		font-size: 18px;
		color: #ffffff;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.technicalBox-2 .h1 {
		font-size: 30px;
		line-height: 40px;
		margin-bottom: 40px;
	}

	.technicalBox-2 .text {
		font-size: 14px;
		color: #666666;
		line-height: 30px;
	}

	.technicalBox-3 .h1 {
		font-size: 30px;
		line-height: 40px;
	}

	.technicalBox-3 .h2 {
		min-width: 100px;
		font-size: 16px;
		line-height: 40px;
		border-radius: 20px;
	}

	.technicalBox-3 .tips {
		font-size: 16px;
		line-height: 20px;
	}
}

@media only screen and (max-width: 991px) {
	.technicalBox-1 {
		padding: 70px 0;
	}

	.technicalBox-1 .wrap {
		flex-direction: column-reverse;
	}

	.technicalBox-1 .img {
		width: 30%;
	}

	.technicalBox-1 .textBox {
		width: 100%;
	}

	.technicalBox-2 .wrap {
		justify-content: center;
	}

	.technicalBox-2 .textBox {
		width: 100%;
	}
}

@media only screen and (max-width: 580px) {
	.technicalBox-1 {
		padding: 60px 0 40px;
	}

	.technicalBox-1 .img {
		width: 50%;
	}

	.technicalBox-1 .item {
		width: 48%;
		padding: 20px 0 !important;
	}

	.technicalBox-2 .img {
		width: 50%;
	}

	.technicalBox-3 {
		padding-top: 60px;
	}

	.technicalBox-3 .box {
		padding: 40px 0 60px;
	}

	.technicalBox-3 .tips {
		margin-top: 30px;
	}

	.technicalBox-3 .box-1 {
		padding: 60px 0;
	}

	.technicalBox-3 .btnPlay {
		width: 60px;
	}
}

@media only screen and (max-width: 480px) {
	.technicalBox-1 {
		padding: 40px 0 30px;
	}

	.technicalBox-1 .h4 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.technicalBox-1 .item {
		padding: 10px 0 !important;
	}

	.technicalBox-2 {
		padding: 40px 0;
	}

	.technicalBox-2 .h1 {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 15px;
	}

	.technicalBox-2 .text {
		line-height: 24px;
	}

	.technicalBox-3 {
		padding-top: 40px;
	}

	.technicalBox-3 .h1 {
		font-size: 20px;
		line-height: 30px;
	}

	.technicalBox-3 .box {
		padding: 20px 0 40px;
	}

	.technicalBox-3 .h2 {
		min-width: 90px;
		font-size: 14px;
		line-height: 34px;
		border-radius: 17px;
		margin-bottom: 30px;
	}

	.technicalBox-3 .box-1 {
		padding: 40px 0;
	}

	.technicalBox-3 .tips {
		font-size: 14px;
		padding: 10px 20px;
	}

	.technicalBox-3 .btnPlay {
		width: 40px;
	}
}

/* 药物研发服务 */
@media only screen and (max-width: 1600px) {
	.banner .cn {
		font-size: 30px;
	}

	.banner .en {
		font-size: 20px;
	}

	.sortNav a {
		font-size: 14px;
	}

	.researchBox-1 {
		padding: 95px 0 250px;
	}

	.researchBox-1 .en {
		font-size: 50px;
	}

	.researchBox-1 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.researchBox-1 .text {
		font-size: 14px;
		line-height: 30px;
	}

	.researchBox-1 .tips {
		font-size: 14px;
		line-height: 30px;
	}

	.researchBox-1 .h1 {
		font-size: 16px;
		line-height: 30px;
	}

	.researchBox-2 .h2 {
		font-size: 16px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.researchBox-3 .en {
		margin-bottom: 70px;
	}

	.researchBox-4 .topBox {
		margin-bottom: 70px;
	}

	.researchBox-4 .en {
		font-size: 50px;
	}

	.researchBox-4 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.researchBox-4 .h1 {
		font-size: 18px;
	}

	.researchBox-5 .en {
		font-size: 50px;
	}

	.researchBox-5 .cn {
		bottom: 5px;
		font-size: 20px;
	}

	.researchBox-4 .item {
		margin-bottom: 40px;
	}

	.researchBox-4 .name {
		font-size: 14px;
		line-height: 24px;
	}

	.researchBox-4 .text {
		font-size: 14px;
		line-height: 24px;
	}
}

@media only screen and (max-width: 1199px) {
	.researchBox-1 .textBox {
		width: 100%;
	}

	.researchBox-1 .img {
		display: none;
	}

	.researchBox-5 {
		padding: 80px 0 250px;
	}

	.sortNav .wrap {
		overflow-x: auto;
		white-space: nowrap;
	}
}

@media only screen and (max-width: 991px) {
	.researchBox-4 .topBox {
		margin-bottom: 40px;
	}

	.researchBox-4 .en {
		margin-bottom: 20px;
	}

	.researchBox-4 .h1 {
		margin-bottom: 20px;
	}

	.researchBox-4 .botBox {
		justify-content: center;
	}

	.researchBox-4 .img {
		width: 50%;
		margin-bottom: 30px;
	}

	.researchBox-4 .listBox {
		width: 100%;
	}

	.researchBox-5 {
		padding: 80px 0 200px;
	}
}

@media only screen and (max-width: 768px) {
	.sortNav {
		margin-top: -50px;
	}

	.sortNav .item>a {
		line-height: 50px;
	}
}

@media only screen and (max-width: 580px) {
	.researchBox-1 {
		padding: 60px 0 100px;
	}

	.sortNav {
		margin-top: 0;
		border-top: 0;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.sortNav .item>a {
		color: #fff;
	}

	.sortNav .item::after {
		height: 14px;
		margin-top: -7px;
	}

	.researchBox-4 {
		padding: 60px 0;
	}

	.researchBox-4 .topBox {
		margin-bottom: 20px;
	}

	.researchBox-4 .en {
		font-size: 36px;
	}

	.researchBox-4 .h1 {
		font-size: 16px;
	}

	.researchBox-4 .img {
		width: 70%;
	}

	.researchBox-4 .icon {
		width: 40px;
	}

	.researchBox-4 .textBox {
		width: calc(100% - 40px);
		padding-left: 15px;
	}

	.researchBox-4 .item {
		margin-bottom: 20px;
	}

	.researchBox-5 {
		padding: 60px 0 100px;
	}

	.researchBox-5 .en {
		font-size: 36px;
		margin-bottom: 30px;
	}

	.researchBox-1 .en {
		font-size: 30px;
	}

	.researchBox-1 .cn {
		position: relative;
		bottom: 0;
		margin-top: 10px;
	}
}

@media only screen and (max-width: 480px) {
	.banner .cn {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.banner .en {
		font-size: 14px;
	}

	.researchBox-1 {
		padding: 40px 0 60px;
	}

	.researchBox-1 .en {
		margin-bottom: 30px;
	}

	.researchBox-1 .text {
		line-height: 24px;
	}

	.researchBox-1 .tips {
		line-height: 24px;
	}

	.researchBox-1 .h1 {
		font-size: 14px;
	}

	.researchBox-2 .h2 {
		font-size: 14px;
		line-height: 24px;
	}

	.researchBox-4 {
		padding: 40px 0;
	}

	.researchBox-4 .topBox {
		margin-bottom: 10px;
	}

	.researchBox-5 {
		padding: 40px 0 60px;
	}
}

/* 医美妆品 */
.makeupBox-1 {
	padding: 90px 0 310px;
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% auto;
}

.makeupBox-1 .en {
	position: relative;
	font-size: 72px;
	color: #f5f4f4;
	line-height: 1;
	margin-bottom: 90px;
}

.makeupBox-1 .cn {
	position: absolute;
	left: 5px;
	bottom: 10px;
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.makeupBox-1 .title {
	text-align: center;
	margin-bottom: 70px;
}

.makeupBox-1 .h1 {
	font-size: 40px;
	color: #000000;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 30px;
}

.makeupBox-1 .h2 {
	font-size: 18px;
	color: #666666;
	line-height: 36px;
}

.makeupBox-1 .imgBox {
	text-align: center;
	margin-bottom: 10px;
}

.makeupBox-1 .listBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.makeupBox-1 .item {
	max-width: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 3%;
	text-align: center;
}

.makeupBox-1 .icon {
	margin-bottom: 35px;
}

.makeupBox-1 .name {
	font-size: 20px;
	color: #000000;
	line-height: 36px;
	margin-bottom: 18px;
}

.makeupBox-1 .h3 {
	font-size: 26px;
	color: #2a6590;
	line-height: 36px;
	margin-bottom: 35px;
}

.makeupBox-1 .h4 {
	font-size: 16px;
	color: #2a6590;
	line-height: 24px;
	margin-bottom: 25px;
}

.makeupBox-1 .text {
	font-size: 16px;
	color: #888888;
	line-height: 30px;
	margin-bottom: 30px;
}

.makeupBox-2 {
	padding: 95px 0 410px;
}

.makeupBox-2 .en {
	margin-bottom: 125px;
}

.makeupBox-2 .videoBox {
	display: flex;
	justify-content: center;
	align-items: center;
}

.makeupBox-2 .videoWrap {
	position: relative;
	overflow: hidden;
}

.makeupBox-2 .video {
	min-width: 1000px;
	width: 100%;
}

.makeupBox-2 .btnPlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 3;
}

.makeupBox-3 {
	padding: 90px 0 440px;
}

.makeupBox-3 .en {
	margin-bottom: 50px;
}

.makeupBox-3 .botBox-2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.makeupBox-3 .text-2 {
	width: 48%;
	font-size: 16px;
	color: #666666;
	line-height: 36px;
}

.makeupBox-3 .rBox {
	width: 43%;
}

.makeupBox-3 .h5 {
	font-size: 20px;
	color: #000000;
	line-height: 36px;
	font-weight: bold;
	margin-bottom: 45px;
	padding-left: 8px;
}

.makeupBox-3 .listBox-2 {
	position: relative;
}

.makeupBox-3 .listBox-2::after {
	position: absolute;
	top: -8%;
	left: 12px;
	content: "";
	width: 1px;
	height: 130%;
	background-color: #e8e8e8;
}

.makeupBox-3 .item-1 {
	position: relative;
	font-size: 16px;
	color: #888888;
	line-height: 36px;
	margin-bottom: 30px;
	padding-left: 45px;
}

.makeupBox-3 .item-1:last-child {
	margin-bottom: 0;
}

.makeupBox-3 .item-1::after,
.makeupBox-3 .item-1::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	border-radius: 50%;
}

.makeupBox-3 .item-1::after {
	width: 25px;
	height: 25px;
	background-color: #e8e8e8;
	z-index: 1;
}

.makeupBox-3 .item-1::before {
	left: 6px;
	width: 13px;
	height: 13px;
	background-color: #2a6590;
	z-index: 2;
}

.popupVideo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 12;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}

.popupVideo .wrap {
	max-width: 60%;
	width: 100%;
	max-height: 70%;
}

.popupVideo .close {
	position: absolute;
	top: 5%;
	right: 5%;
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.popupVideo .close img {
	width: 16px;
}

/* 媒体查询 */
/* 医美妆品 */
@media only screen and (max-width: 1600px) {
	.makeupBox-1 {
		padding: 90px 0 250px;
	}

	.makeupBox-1 .en {
		font-size: 50px;
	}

	.makeupBox-1 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.makeupBox-1 .h1 {
		font-size: 30px;
	}

	.makeupBox-1 .h2 {
		font-size: 14px;
		line-height: 24px;
	}

	.makeupBox-1 .icon {
		width: 140px;
	}

	.makeupBox-1 .name {
		font-size: 16px;
		line-height: 30px;
		margin-bottom: 10px;
	}

	.makeupBox-1 .h3 {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.makeupBox-1 .h4 {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.makeupBox-1 .text {
		font-size: 14px;
		line-height: 24px;
	}

	.makeupBox-2 .en {
		margin-bottom: 70px;
	}

	.makeupBox-3 .text-2 {
		font-size: 14px;
		line-height: 30px;
	}

	.makeupBox-3 .h5 {
		font-size: 16px;
		line-height: 30px;
	}

	.makeupBox-3 .item-1 {
		font-size: 14px;
		line-height: 30px;
	}

	.makeupBox-3 .listBox-2::after {
		top: 50%;
		height: 120%;
		transform: translate(0, -50%);
	}
}

@media only screen and (max-width: 1199px) {
	.popupVideo .wrap {
		max-width: 90%;
	}

	.makeupBox-2 .video {
		min-width: 100%;
	}
}

@media only screen and (max-width: 991px) {
	.makeupBox-3 .text-2 {
		width: 100%;
		margin-bottom: 30px;
	}

	.makeupBox-3 .rBox {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	.makeupBox-1 {
		padding: 90px 0 150px;
	}

	.makeupBox-1 .item {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.makeupBox-1 .item:last-child {
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 580px) {
	.makeupBox-1 {
		padding: 60px 0 100px;
	}

	.makeupBox-1 .en {
		font-size: 30px;
		margin-bottom: 50px;
	}

	.makeupBox-1 .cn {
		position: relative;
		bottom: 0;
		margin-top: 10px;
	}

	.makeupBox-1 .h1 {
		font-size: 20px;
		line-height: 1.5;
	}

	.makeupBox-2 .btnPlay {
		width: 60px;
	}

	.popupVideo .wrap {
		max-width: 90%;
		max-height: 100%;
	}
}

@media only screen and (max-width: 480px) {
	.makeupBox-1 {
		padding: 40px 0 60px;
	}

	.makeupBox-1 .en {
		margin-bottom: 30px;
	}

	.makeupBox-1 .title {
		margin-bottom: 40px;
	}

	.makeupBox-1 .h1 {
		margin-bottom: 20px;
	}

	.makeupBox-1 .icon {
		width: 100px;
		margin-bottom: 20px;
	}

	.makeupBox-2 .btnPlay {
		width: 40px;
	}

	.makeupBox-3 .text-2 {
		line-height: 24px;
	}

	.makeupBox-3 .h5 {
		margin-bottom: 20px;
	}

	.makeupBox-3 .listBox-2::after {
		height: 100%;
	}

	.makeupBox-3 .item-1 {
		line-height: 24px;
		margin-bottom: 20px;
	}
}

.navPage {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
    padding-top: 80px;
}
.navPage ul li{
    float:left;
}
.navPage span,
.navPage a {
	width: 30px;
	height: 30px;
	border: 1px solid #bfbfbf;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #999999;
	margin: 0 7px;
	transition: all 0.5s ease-in;
}

.navPage .active span {
	color: #fff;
	border: 1px solid #ff4d4d;
	background-color: #ff4d4d;
}

.navPage a:hover {
	color: #fff;
	border: 1px solid #ff4d4d;
	background-color: #ff4d4d;
}

.detailsBox {
	padding: 110px 0 70px;
}

.detailsBox .title {
	text-align: center;
	margin-bottom: 40px;
}

.detailsBox .title .h1 {
	font-size: 28px;
	color: #000000;
	line-height: 36px;
	font-weight: bold;
	margin-bottom: 40px;
}

.detailsBox .title .infoBox {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	border-top: 1px solid #eeeeee;
	padding-top: 10px;
}

.detailsBox .title .s1 {
	font-size: 16px;
	color: #ada5a5;
	line-height: 36px;
	margin: 0 6%;
}

.detailsBox .text {
	font-size: 16px;
	color: #888888;
	line-height: 36px;
	text-align: justify;
}
.detailsBox .text p,
.detailsBox .text span{
    font-size: 16px;
    color: #000000;
    line-height: 36px;
    margin:0;
}
.upDown {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border-top: 1px solid #eeeeee;
	margin: 50px 0 15px;
	padding-top: 50px;
}

.upDown a {
	width: 45%;
	font-size: 16px;
	color: #000000;
	line-height: 36px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.upDown a:last-child {
	text-align: right;
}

.upDown span {
	color: #ada5a5;
}

.detailsBox .shareBox {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 16px;
	color: #000000;
	line-height: 36px;
}

.detailsBox .shareBox a {
	margin: 0 5px;
}

/* 媒体查询 */
/* 新闻 */
@media only screen and (max-width: 1600px) {
	.newsBox-1 .en {
		font-size: 50px;
	}

	.newsBox-1 .cn {
		font-size: 20px;
		left: 0;
		bottom: 5px;
	}

	.newsBox-1 .item {
		padding: 60px 0;
	}

	.newsBox-1 .textBox {
		padding-left: 50px;
	}

	.newsBox-1 .time {
		font-size: 16px;
		line-height: 20px;
	}

	.newsBox-1 .h1 {
		font-size: 16px;
	}

	.newsBox-1 .text {
		font-size: 14px;
		line-height: 24px;
	}

	.newsBox-1 .more {
		font-size: 14px;
	}

	.detailsBox .title {
		margin-bottom: 40px;
	}

	.detailsBox .title .h1 {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 30px;
	}

	.detailsBox .title .s1 {
		font-size: 14px;
		line-height: 30px;
	}

	.detailsBox .text {
		font-size: 14px;
		line-height: 30px;
	}

	.upDown {
		margin: 30px 0 10px;
	}

	.upDown a {
		font-size: 14px;
		line-height: 30px;
	}

	.detailsBox .shareBox {
		font-size: 14px;
		line-height: 30px;
	}
}

@media only screen and (max-width: 768px) {
	.newsBox-1 .img {
		margin-bottom: 30px;
	}

	.newsBox-1 .item>a {
		justify-content: center;
	}

	.newsBox-1 .textBox {
		width: 100%;
		padding: 0;
	}
}

@media only screen and (max-width: 580px) {
	.newsBox-1 {
		padding: 60px 0;
	}

	.newsBox-1 .item {
		padding: 40px 0;
	}

	.newsBox-1 .img {
		width: 100%;
	}

	.newsBox-1 .navPage {
		margin-top: 40px;
	}

	.detailsBox {
		padding: 60px 0;
	}

	.upDown {
		padding-top: 30px;
	}

	.upDown a {
		width: 100%;
		text-align: left !important;
	}

	.newsBox-1 .en {
		font-size: 30px;
	}

	.newsBox-1 .cn {
		position: relative;
		margin-top: 10px;
	}
}

@media only screen and (max-width: 480px) {
	.newsBox-1 {
		padding: 40px 0;
	}

	.newsBox-1 .item {
		padding: 30px 0;
	}

	.newsBox-1 .img {
		margin-bottom: 20px;
	}

	.newsBox-1 .time {
		font-size: 14px;
	}

	.newsBox-1 .h1 {
		line-height: 30px;
		margin-bottom: 10px;
	}

	.newsBox-1 .text {
		margin-bottom: 10px;
	}

	.newsBox-1 .more {
		line-height: 24px;
		padding-right: 35px;
		background-size: auto 100%;
	}

	.navPage a {
		width: 30px;
		height: 30px;
		font-size: 14px;
		margin: 0 5px;
	}

	.detailsBox {
		padding: 40px 0;
	}

	.detailsBox .title .h1 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.detailsBox .title {
		margin-bottom: 20px;
	}

	.upDown {
		margin: 20px 0 10px;
		padding-top: 20px;
	}
}

/* 关于我们 */
.aboutBox-1 {
	padding: 95px 0 120px;
	background-repeat: no-repeat;
	background-position: 97% 3%;
	background-size: 50% auto;
}

.aboutBox-1 .topBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.aboutBox-1 .textBox {
	width: 62.6666%;
}

.aboutBox-1 .swiperBox {
	width: 30%;
	margin-top: 147px;
}

.aboutBox-1 .en {
	position: relative;
	font-size: 72px;
	color: #f5f4f4;
	line-height: 1;
	margin-bottom: 75px;
}

.aboutBox-1 .cn {
	position: absolute;
	left: 5px;
	bottom: 10px;
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.aboutBox-1 .text {
	font-size: 16px;
	color: #666666;
	line-height: 36px;
}

.aboutBox-1 .tips {
	font-size: 20px;
	color: #000000;
	font-weight: bold;
}

.aboutBox-1 .listBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 120px;
}

.aboutBox-1 .item {
	max-width: 25%;
	min-width: 15%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.aboutBox-1 .h1 {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-size: 22px;
	color: #405aa8;
	line-height: 36px;
	font-weight: bold;
	margin-bottom: 25px;
}

.aboutBox-1 .number {
	font-size: 50px;
	margin-right: 15px;
}

.aboutBox-1 .unit {
	font-size: 50px;
}

.aboutBox-1 .line {
	width: 40px;
	height: 2px;
	background-color: #999999;
	margin: 0 auto 10px;
}

.aboutBox-1 .h2 {
	font-size: 16px;
	color: #666666;
	line-height: 36px;
}

.aboutBox-1 .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	border: 2px solid #fff;
	background: none;
	opacity: 1;
}

.aboutBox-1 .swiper-pagination-bullet-active {
	background-color: #fff;
}

.aboutBox-2 .en {
	position: relative;
	font-size: 72px;
	color: #efefef;
	line-height: 1;
	margin-bottom: 105px;
}

.aboutBox-2 .cn {
	position: absolute;
	left: 5px;
	bottom: 10px;
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.aboutBox-3 {
	padding: 90px 0 165px;
	background-position: center center;
	background-size: cover;
}

.aboutBox-3 .en {
	position: relative;
	font-size: 72px;
	color: #efefef;
	line-height: 1;
	margin-bottom: 125px;
}

.aboutBox-3 .cn {
	position: absolute;
	left: 5px;
	bottom: 10px;
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.aboutBox-3 .swiperBox {
	position: relative;
}

.aboutBox-3 .swiper-slide {
	padding: 10px;
	background-color: #fff;
	display: flex;
	justify-content: center;
}

.aboutBox-3 .swiper-button-next,
.aboutBox-3 .swiper-button-prev {
	width: 18px;
	height: 37px;
	margin-top: -18px;
	background-size: cover;
}

.aboutBox-3 .swiper-button-prev {
	left: -5%;
	background-image: url("../images/icon35.png")/*tpa=https://www.bioqinglam.com/Public/Home/images/icon35.png*/;
}

.aboutBox-3 .swiper-button-next {
	right: -5%;
	background-image: url("../images/icon36.png")/*tpa=https://www.bioqinglam.com/Public/Home/images/icon36.png*/;
}

.aboutBox-3 .swiper-button-prev:hover {
	background-image: url("../images/icon35-1.png")/*tpa=https://www.bioqinglam.com/Public/Home/images/icon35-1.png*/;
}

.aboutBox-3 .swiper-button-next:hover {
	background-image: url("../images/icon36-1.png")/*tpa=https://www.bioqinglam.com/Public/Home/images/icon36-1.png*/;
}

.aboutBox-3 .swiper-button-next::after,
.aboutBox-3 .swiper-button-prev::after {
	display: none;
}

.aboutBox-4 {
	padding: 95px 0 60px;
}

.aboutBox-4 .en {
	position: relative;
	font-size: 72px;
	color: #efefef;
	line-height: 1;
	margin-bottom: 95px;
}

.aboutBox-4 .cn {
	position: absolute;
	left: 5px;
	bottom: 10px;
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.aboutBox-4 .btnBox {
	display: flex;
	justify-content: center;
	margin-top: 85px;
}

.aboutBox-4 .btnMore {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 16px;
	color: #8b8b8b;
	line-height: 36px;
	cursor: pointer;
}

.aboutBox-5 {
	padding: 95px 0 100px;
	background-position: top left;
	background-size: 100% auto;
}

.aboutBox-5 .en {
	position: relative;
	font-size: 72px;
	color: #efefef;
	line-height: 1;
	margin-bottom: 60px;
}

.aboutBox-5 .cn {
	position: absolute;
	left: 5px;
	bottom: 10px;
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.aboutBox-5 .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.aboutBox-5 .listBox {
	width: 40%;
}

.aboutBox-5 .mapBox {
	width: 50%;
}

.aboutBox-5 .item {
	display: flex;
	align-items: center;
	padding: 30px 0;
	border-bottom: 1px solid #e6e6e6;
}

.aboutBox-5 .icon {
	width: 70px;
}

.aboutBox-5 .text {
	width: calc(100% - 70px);
	padding-left: 18px;
}

.aboutBox-5 .h1 {
	font-size: 18px;
	color: #3f6fb5;
	line-height: 30px;
	font-weight: bold;
}

.aboutBox-5 .h2 {
	font-size: 16px;
	color: #666666;
	line-height: 28px;
}

.aboutBox-6 {
	padding: 95px 0 115px;
	background-color: #f5f5f5;
}

.aboutBox-6 .en {
	position: relative;
	font-size: 72px;
	color: #efefef;
	line-height: 1;
	margin-bottom: 65px;
}

.aboutBox-6 .cn {
	position: absolute;
	left: 5px;
	bottom: 10px;
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.aboutBox-6 .nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
}

.aboutBox-6 .nav .item {
	min-width: 138px;
	height: 48px;
	font-size: 20px;
	color: #666666;
	line-height: 48px;
	text-align: center;
	background-color: #d7d7d7;
	border-radius: 24px;
	margin: 0 35px;
	padding: 0 15px;
	cursor: pointer;
	white-space: nowrap;
}

.aboutBox-6 .nav .item.active {
	color: #ffffff;
	background-color: #2a6590;
}

.aboutBox-6 .box {
	position: relative;
	display: none;
}

.aboutBox-6 .box.active {
	display: block;
}

.aboutBox-6 .swiper-container {
	padding-bottom: 80px;
}

.aboutBox-6 .swiper-wrapper {
	align-items: flex-end;
}

.aboutBox-6 .swiper-pagination {
	bottom: 0;
}

.aboutBox-6 .swiper-pagination-bullet {
	background: none;
	border: 2px solid #aaaaaa;
	opacity: 1;
}

.aboutBox-6 .swiper-pagination-bullet-active {
	background-color: #aaa;
}

.aboutBox-6 .back {
	background-color: #f9f9f9;
	padding: 10px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.aboutBox-6 .listBox .item:nth-child(4n) {
	margin-right: 0;
}

.aboutBox-6 .swiper-button-next,
.aboutBox-6 .swiper-button-prev {
	width: 18px;
	height: 37px;
	margin-top: -55px;
	background-size: cover;
}

.aboutBox-6 .swiper-button-next::after,
.aboutBox-6 .swiper-button-prev::after {
	display: none;
}

.aboutBox-6 .swiper-button-prev {
	left: -40px;
	background-image: url("../images/icon35.png")/*tpa=https://www.bioqinglam.com/Public/Home/images/icon35.png*/;
}

.aboutBox-6 .swiper-button-next {
	right: -40px;
	background-image: url("../images/icon36.png")/*tpa=https://www.bioqinglam.com/Public/Home/images/icon36.png*/;
}

.aboutBox-7 {
	padding: 95px 0 130px;
	background-repeat: no-repeat;
	background-position: 97% 3%;
	background-size: 50% auto;
}

.aboutBox-7 .en {
	position: relative;
	font-size: 72px;
	color: #efefef;
	line-height: 1;
	margin-bottom: 60px;
}

.aboutBox-7 .cn {
	position: absolute;
	left: 5px;
	bottom: 10px;
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.aboutBox-7 .item {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 0;
	border-bottom: 1px solid #ebebeb;
}

.aboutBox-7 .img {
	width: 260px;
}

.aboutBox-7 .textBox {
	width: calc(100% - 440px);
	padding: 15px 0 15px 60px;
}

.aboutBox-7 .h1 {
	display: flex;
	flex-wrap: wrap;
	font-size: 18px;
	color: #1a1b1b;
	line-height: 36px;
	padding-bottom: 10px;
	border-bottom: 1px solid #dbdbdb;
	margin-bottom: 30px;
}

.aboutBox-7 .name {
	font-size: 24px;
	color: #2a6590;
	margin-right: 23px;
}

.aboutBox-7 .h2 {
	font-size: 18px;
	line-height: 36px;
	color: #666666;
	text-align: justify;

}
.aboutBox-7 .h2 p,
.aboutBox-7 .h2 span{
    font-size: 16px!important;
    margin: 0!important
}
.popupImg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 12;
	display: none;
}

.popupImg .wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.popupImg .swiper-container {
	max-width: 700px;
	width: 100%;
	padding-bottom: 59px;
}

.popupImg .swiper-button-next,
.popupImg .swiper-button-prev {
	color: #fff;
}

.popupImg .close {
	position: absolute;
	top: 5%;
	right: 5%;
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.popupImg .close img {
	width: 16px;
}

.popupImg .swiper-pagination {
	bottom: 0;
	right: 0;
	color: #fff;
	text-align: right;
	padding: 20px 30px;
	background-color: #405aa8;
}

/* 媒体查询 */
/* 关于我们 */
@media only screen and (max-width: 1600px) {
	.aboutBox-1 .en {
		font-size: 50px;
		margin-bottom: 50px;
	}

	.aboutBox-1 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.aboutBox-1 .text {
		font-size: 14px;
		line-height: 30px;
	}

	.aboutBox-1 .tips {
		font-size: 16px;
	}

	.aboutBox-1 .h1 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.aboutBox-1 .number {
		font-size: 30px;
	}

	.aboutBox-1 .h2 {
		font-size: 14px;
		line-height: 30px;
	}

	.aboutBox-2 .en {
		font-size: 50px;
		margin-bottom: 50px;
	}

	.aboutBox-2 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.aboutBox-3 .en {
		font-size: 50px;
		margin-bottom: 50px;
	}

	.aboutBox-3 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.aboutBox-4 .en {
		font-size: 50px;
		margin-bottom: 50px;
	}

	.aboutBox-4 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.aboutBox-5 .en {
		font-size: 50px;
		margin-bottom: 50px;
	}

	.aboutBox-5 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.aboutBox-5 .h1 {
		font-size: 16px;
	}

	.aboutBox-5 .h2 {
		font-size: 14px;
	}

	.aboutBox-4 .btnMore {
		font-size: 14px;
		line-height: 30px;
	}

	.aboutBox-4 .btnMore .icon {
		width: 30px;
	}

	.aboutBox-5 .icon {
		width: 60px;
	}

	.aboutBox-5 .text {
		width: calc(100% - 60px);
		padding-left: 15px;
	}

	.aboutBox-6 .en {
		font-size: 50px;
		margin-bottom: 50px;
	}

	.aboutBox-6 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.aboutBox-6 .nav .item {
		min-width: 110px;
		height: 40px;
		font-size: 16px;
		line-height: 40px;
		margin: 0 20px;
	}

	.aboutBox-7 .en {
		font-size: 50px;
		margin-bottom: 40px;
	}

	.aboutBox-7 .cn {
		left: 0;
		bottom: 5px;
		font-size: 20px;
	}

	.aboutBox-7 .item {
		padding: 25px 0;
	}

	.aboutBox-7 .img {
		width: 360px;
	}

	.aboutBox-7 .textBox {
		width: calc(100% - 360px);
		padding: 10px 0 10px 40px;
	}

	.aboutBox-7 .h1 {
		font-size: 16px;
		line-height: 30px;
	}

	.aboutBox-7 .name {
		font-size: 20px;
		margin-right: 15px;
	}

	.aboutBox-7 .h2 {
		font-size: 14px;
		line-height: 30px;
	}
}

@media only screen and (max-width: 1024px) {
	.aboutBox-1 .topBox {
		justify-content: center;
	}

	.aboutBox-1 .textBox {
		width: 100%;
	}

	.aboutBox-1 .swiperBox {
		width: 50%;
		margin-top: 50px;
	}

	.aboutBox-1 .listBox {
		margin-top: 70px;
	}

	.aboutBox-3 .swiper-button-prev {
		left: 0;
	}

	.aboutBox-3 .swiper-button-next {
		right: 0;
	}

	.aboutBox-5 .listBox {
		width: 100%;
		margin-bottom: 30px;
	}

	.aboutBox-5 .mapBox {
		width: 100%;
	}

	.aboutBox-6 .swiper-container {
		padding-bottom: 40px;
	}
}

@media only screen and (max-width: 768px) {
	.aboutBox-1 {
		padding: 90px 0 60px;
	}

	.aboutBox-1 .item {
		max-width: 50%;
		width: 100%;
		margin-bottom: 30px;
	}

	.aboutBox-6 .swiper-button-next,
	.aboutBox-6 .swiper-button-prev {
		width: 12px;
		height: 24px;
		margin-top: -45px;
	}

	.aboutBox-6 .swiper-button-prev {
		left: -20px;
	}

	.aboutBox-6 .swiper-button-next {
		right: -20px;
	}

	.aboutBox-7 .item {
		padding: 25px 0 15px;
	}

	.aboutBox-7 .img {
		width: 100%;
		text-align: center;
	}

	.aboutBox-7 .textBox {
		width: 100%;
		padding: 15px 0 0;
	}

	.aboutBox-7 .h1 {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 580px) {
	.aboutBox-1 {
		padding: 60px 0;
	}

	.aboutBox-1 .en {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.aboutBox-1 .cn {
		position: relative;
		left: auto;
		bottom: auto;
		margin-top: 10px;
	}

	.aboutBox-2 .en {
		font-size: 30px;
		margin-bottom: 30px;
	}

	.aboutBox-2 .cn {
		position: relative;
		left: auto;
		bottom: auto;
		margin-top: 10px;
	}

	.aboutBox-3 {
		padding: 60px 0;
	}

	.aboutBox-3 .en {
		font-size: 30px;
		margin-bottom: 30px;
	}

	.aboutBox-3 .cn {
		position: relative;
		left: auto;
		bottom: auto;
		margin-top: 10px;
	}

	.aboutBox-4 {
		padding: 60px 0;
	}

	.aboutBox-4 .en {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.aboutBox-4 .cn {
		position: relative;
		left: auto;
		bottom: auto;
		margin-top: 10px;
	}

	.aboutBox-4 .btnBox {
		margin-top: 40px;
	}

	.aboutBox-5 {
		padding: 60px 0;
	}

	.aboutBox-5 .en {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.aboutBox-5 .cn {
		position: relative;
		left: auto;
		bottom: auto;
		margin-top: 10px;
	}

	.aboutBox-6 .en {
		font-size: 30px;
		margin-bottom: 30px;
	}

	.aboutBox-6 .cn {
		position: relative;
		left: auto;
		bottom: auto;
		margin-top: 10px;
	}

	.aboutBox-6 {
		padding: 60px 0;
	}

	.aboutBox-6 .nav {
		justify-content: flex-start;
		margin-bottom: 30px;
		overflow-x: auto;
	}

	.aboutBox-6 .nav::-webkit-scrollbar {
		display: none;
	}

	.aboutBox-6 .nav .item {
		min-width: fit-content;
	}

	.aboutBox-6 .swiper-button-prev {
		left: 15px;
	}

	.aboutBox-6 .swiper-button-next {
		right: 15px;
	}

	.aboutBox-7 {
		padding: 60px 0;
	}

	.aboutBox-7 .item {
		padding: 30px 0 15px;
	}
}

@media only screen and (max-width: 480px) {
	.aboutBox-1 {
		padding: 40px 0 10px;
	}

	.aboutBox-1 .text {
		font-size: 14px;
		line-height: 24px;
	}

	.aboutBox-1 .tips {
		font-size: 14px;
	}

	.aboutBox-1 .swiperBox {
		width: 80%;
		margin-top: 30px;
	}

	.aboutBox-1 .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.aboutBox-1 .listBox {
		margin-top: 30px;
	}

	.aboutBox-1 .h1 {
		font-size: 16px;
		line-height: 30px;
		margin-bottom: 15px;
	}

	.aboutBox-1 .number {
		font-size: 24px;
		margin-right: 5px;
	}

	.aboutBox-1 .line {
		width: 30px;
	}

	.aboutBox-3 {
		padding: 40px 0;
	}

	.aboutBox-3 .swiper-button-next,
	.aboutBox-3 .swiper-button-prev {
		width: 12px;
		height: 25px;
	}

	.aboutBox-4 {
		padding: 40px 0;
	}

	.aboutBox-4 .btnBox {
		margin-top: 30px;
	}

	.aboutBox-5 {
		padding: 40px 0;
	}

	.aboutBox-5 .item {
		padding: 15px 0;
	}

	.aboutBox-5 .icon {
		width: 50px;
	}

	.aboutBox-5 .text {
		width: calc(100% - 50px);
	}

	.aboutBox-5 .h1 {
		font-size: 14px;
		line-height: 24px;
	}

	.aboutBox-5 .h2 {
		line-height: 24px;
	}

	.aboutBox-6 {
		padding: 40px 0;
	}

	.aboutBox-6 .nav {
		margin-bottom: 20px;
	}

	.aboutBox-6 .nav .item {
		min-width: fit-content;
		height: 34px;
		font-size: 14px;
		line-height: 34px;
		margin: 0 10px;
		border-radius: 17px;
	}

	.popupImg .swiper-container {
		padding-bottom: 39px;
	}

	.popupImg .swiper-button-next,
	.popupImg .swiper-button-prev {
		margin-top: -55px;
	}

	.popupImg .swiper-button-next:after,
	.popupImg .swiper-button-prev:after {
		font-size: 24px;
	}

	.popupImg .swiper-pagination {
		bottom: 39px;
		padding: 10px 20px;
	}

	.aboutBox-7 {
		padding: 40px 0;
	}

	.aboutBox-7 .en {
		font-size: 30px;
		margin-bottom: 10px;
	}

	.aboutBox-7 .cn {
		position: relative;
		left: auto;
		bottom: auto;
		margin-top: 10px;
	}

	.aboutBox-7 .h1 {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 15px;
	}

	.aboutBox-7 .name {
		font-size: 16px;
		margin-bottom: 5px;
	}
}

/*搜索结果*/
.xsousuo {
	padding-top: 90px;
	padding-bottom: 80px;
}

.xsousuo .conwidth {}

.xsousuo .xssbox {
	padding-top: 85px;
	padding-left: 4%;
	padding-right: 4%;
	padding-bottom: 80px;
	background-color: #FFFFFF;
}

.xssbox .title {
	font-family: sy-Regular;
	color: #000000;
	font-size: 28px;
	padding-bottom: 35px;
	border-bottom: #e8e8e8 solid 1px;
}

.xssbox .title .t1 {
	color: #148fee;
}

.xsdiv {}

.xsdiv ul li {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: #eae5e5 solid 1px;
}

.xsdiv ul li a {
	display: inline-block;
	width: 100%;
}

.xsousuo .l-wrap {
	float: left;
	width: 150px;
}

.xsousuo .l-wrap img {
	width: 100%;
}

.xsousuo .r-wrap {
	float: left;
	width: -moz-calc(100% - 150px);
	width: -webkit-calc(100% - 150px);
	width: calc(100% - 150px);
	padding-left: 30px;
	box-sizing: border-box;
}

.xsdiv ul li a .xtop {
	margin-bottom: 10px;
	overflow: hidden;
	color: #222222;
	font-size: 20px;
	margin-right: 30px;
	margin-bottom: 5px;
}

.xsdiv ul li a:hover .xtop {
	color: #148fee;
}

.xsdiv ul li a .xmid {
	color: #999999;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 15px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.xsdiv ul li a .time {
	color: #444444;
	font-size: 16px;
}

@media screen and (max-width: 1440px) {
	.xssbox .title {
		font-size: 26px;
	}
}

@media screen and (max-width: 1024px) {
	.xsousuo {
		padding-bottom: 70px;
	}

	.xsousuo .xssbox {
		padding-top: 30px;
		padding-bottom: 50px;
		padding-left: 0;
		padding-right: 0;
	}

	.xssbox .title {
		font-size: 24px;
	}
}

@media screen and (max-width: 768px) {
	.xsousuo {
		padding-bottom: 60px;
	}

	.xsousuo .xssbox {
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.xssbox .title {
		font-size: 20px;
		padding-bottom: 25px;
	}

	.xsdiv ul li {
		padding: 25px 0px;
	}
}

@media screen and (max-width: 640px) {
	.xsousuo .xssbox {
		padding-top: 0px;
		padding-bottom: 30px;
	}

	.xssbox .title {
		font-size: 18px;
		padding-bottom: 20px;
	}

	.xsdiv ul li {
		padding: 20px 0px;
	}

	.xsdiv ul li a .xtop {
		font-size: 18px;
	}

	.xsdiv ul li a .time {
		font-size: 15px;
	}
}

@media screen and (max-width: 576px) {
	.xsousuo .xssbox {
		padding-top: 0;
	}

	.xsousuo .l-wrap {
		width: 100px;
	}

	.xsousuo .r-wrap {
		padding-left: 20px;
		width: -webkit-calc(100% - 100px);
		width: calc(100% - 100px);
	}

	.xsdiv ul li a .xtop {
		font-size: 17px;
	}

	.xsdiv ul li a .xmid {
		margin-bottom: 10px;
	}

	.xsdiv ul li a .time {
		font-size: 14px;
	}
}
