:root {
	--m: #6959a1;
	--v: #b0a2e0;
	--w: #fff;
	--b: #292c37;
	--b1: #999999;
	--g: #F6F4EB;
	--g1: #aaaaaa;
	--g2: #e5e5e5;
	--i: inline-block;
	--r: relative;
	--a: absolute;
	--t: all 0.3s ease-in-out;
	--s: 0 0 5px rgba(0,0,0,0.2);
	--f: Outfit-Regular,Helvetica,Verdana,Tahoma,sans-serif;
	--f1: Arial,Times New Roman,Helvetica,Verdana,Tahoma,sans-serif;
}

.maincon {
    width: 100%;
    margin: auto;
    height: auto;
    padding: 0px 12%;
    max-width: 2000px;
}

p {
    color: var(--b);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
}

p a {
    font-family: inherit;
    color: var(--purple-color);
}

a strong,
a b{
    font-family: inherit;
    color: var(--purple-color);
}

.push {
    margin-top: 70px;
}

.toper {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;
    min-height: 70px;
}

.toper-content {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
    position: relative;
}

.logos {
    width: auto;
}

.logos img {
    height: 60px;
    width: auto;
    display: block;
    margin: auto;
    display: none;
}
.toper .logos img.logo2  {
    display: none;
}
.toper.fixed .logos img.logo2  {
    display: block;
}
.toper .logos img.logo1  {
    display: block;
}
.toper.fixed .logos img.logo1  {
    display: none;
}

.sp_nav {
    width: 25px;
    position: relative;
    cursor: pointer;
    height: 22px;
    margin-top: 9px;
    display: none;
}

.sp_nav span {
    display: block;
    background: var(--w);
    width: 25px;
    height: 2px;
    position: absolute;
    left: 0px;
    transition: all ease 0.35s
}

.fixed .sp_nav span {
    background: var(--b);
}

.sp_nav span:nth-of-type(1) {
    top: 0px
}

.sp_nav span:nth-of-type(2) {
    top: 10px
}

.sp_nav span:nth-of-type(3) {
    top: 20px
}

.sp_nav_se span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
    width: 0
}

.sp_nav_se span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg)
}

.nav-box {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navs {
    width: auto;
    height: 100%;
    position: relative;
    margin-top: 0;
}

.navs a {
    font-size: 18px;
    color: var(--b);
}

.navs a:first-child {
    margin-left: 0px;
}

.navs a:hover {
    color: #B6D3A2;
}

.navs a.shows {
    color: #fcc10e;
}

.navs>ul>li {
    width: auto;
    height: 70px;
    line-height: 70px;
    float: left;
    margin-left: 80px;
    position: relative;
    padding: 0px 0px 0px;
}

.navs>ul>li:first-child {
    margin-left: 0px;
}

.navs>ul>li>a {
    color: var(--w);
    font-size: 20px;
}

.navs>ul>li:after {
    /*content: '';*/
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--w);
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.navs>ul>li>span {
    float: right;
    margin-left: 5px;
    color: var(--b);
    font-size: 14px;
    transition: all 0s;
}

.navs>ul>li>span::before {
    content: '\e90e';
    font-family: 'icomoon';
    right: 0;
    top: 0;
    color: var(--w);
}

.toper.fixed .navs>ul>li>span::before {
    color: var(--b);
}

.navs>ul>li>a.actives {
    color: var(--b);
}

.navs>ul>li>span.act::before {
    color: var(--b);
}

.navs>ul>li:hover:after {
    width: 100%;
}

.navs>ul>li:hover>a {
    color: var(--v);
}

.navs>ul>li:hover>span {
    color: var(--v);
}

.navs>ul>li:hover>span:before {
    color: var(--v);
}

.navs>ul>li:hover:after {
    background: var(--v);
}

.navs ul li ul li {
    width: 100%;
    height: auto;
    padding: 7px 10px;
    border-bottom: 1px solid var(--w);
    margin-bottom: 0px;
    position: relative;
    line-height: 25px;
    float: left;
}

.navs ul li ul li span::before {
    content: ">";
    color: var(--b1);
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 15px;
    position: absolute;
    transform: translateY(-50%);
}

.navs ul li ul li a {
    font-family: 'Outfit-Regular', sans-serif;
    font-size: 17px;
    line-height: 20px;
    color: var(--b);
    display: inline-block;
    max-width: 90%;
    transition: all .1s ease-out;
}

.navs ul li ul li:hover {
    /*background: #062134;*/
    /*border-bottom: 1px solid #062134;*/
}

.navs ul li ul li:hover>a {
    color: var(--v);
}

.navs ul li ul li:hover>span::before {
    color: var(--v);
}

.navs ul li ul li a.shows {
    color: var(--v);
}

.navs ul li ul li img {
    height: 7px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 12px;
    top: 50%;
    position: absolute;
    right: 5px;
    transform: translateY(-50%);
}

.navs ul li ul li img.down {
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.navs>ul>li>ul {
    position: absolute;
    left: 0px;
    top: 90%;
    background: var(--w);
    width: 280px;
    height: auto;
    display: none;
    z-index: 101;
}

.navs ul li ul li ul {
    position: absolute;
    left: 100%;
    top: 0px;
    background: var(--w);
    width: 100%;
    height: auto;
}
@media screen and (min-width: 1200px) {
    .navs ul li ul li ul {
    display: none;
    }
}

.nav-right {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 30px;
}

.searchicon {
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 70px;
    border-radius: 70px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--b);
    margin-right: 0px;
}

.searchicon:before {
    content: '\e99a';
    font-family: 'icomoon';
    font-weight: bolder;
    font-size: 22px;
    line-height: 22px;
    /*margin-bottom: 4px;*/
}
.toper .searchicon:before{
    color: var(--w);
}
.toper.fixed .searchicon:before{
    color: var(--b);
}

.searchicon:hover {
    color: var(--v);
}

.searchicon.shows:before {
    content: '\2716';
}

.search-info {
    position: absolute;
    top: calc(100% - 1px);
    right: 0px;
    width: 450px;
    height: auto;
    padding: 12px 20px;
    background: var(--w);
    border-top: 3px solid #6959A1;
    display: none;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .3);
}

.search-info form {
    width: 100%;
    height: 46px;
    border: 1px solid #E6E6E6;
    display: flex;
    justify-content: flex-start;
}

.search-info input {
    width: 100%;
    height: 100%;
    border: none;
    font-size: 18px;
    color: var(--b);
    float: left;
    border-radius: 0px;
    background: none;
    box-shadow: none;
    padding: 0px 10px;
    height: 46px;
}

.search-info input:focus {
    box-shadow: none;
    border: none;
}

.search-info input::-webkit-input-placeholder {
    color: #999;
    font-size: 18px;
}

.search-info input:-moz-placeholder {
    color: #999;
    font-size: 18px;
}

.search-info input::-moz-placeholder {
    color: #999;
    font-size: 18px;
}

.search-info input::-ms-input-placeholder {
    color: #999;
    font-size: 18px;
}

.search-info button {
    height: 100%;
    width: 40px;
    color: #6959A1;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-info button:after {
    content: '\e997';
    font-family: 'icomoon';
    font-size: 20px;
}

.search-info button:hover {
    color: var(--v);
}

.search-info .popover-content {
    padding: 5px 12px
}

.search-info .popover {
    top: 60px;
    left: 30px;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 14px;
    background-color: var(--w);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover>.arrow,
.popover>.arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover>.arrow {
    border-width: 11px
}

.popover>.arrow:after {
    border-width: 10px;
    content: ""
}

.popover.top>.arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px
}

.popover.top>.arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: var(--w)
}

.popover.right>.arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25)
}

.popover.right>.arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: var(--w)
}

.popover.bottom>.arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px
}

.popover.bottom>.arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: var(--w)
}

.popover.left>.arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, 0.25)
}

.popover.left>.arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: var(--w);
    bottom: -10px
}

.toper.fixed {
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .15);
    background: var(--w);
}

.toper.fixed .navs>ul>li>a {
    color: var(--b);
}

.toper.fixed .navs>ul>li>span {
    color: var(--b);
}

.toper.fixed .searchicon {
    color: var(--b);
}

.toper.fixed .navs>ul>li:hover>a {
    color: #6959A1;
}

.toper.fixed .navs>ul>li:hover>span {
    color: #6959A1;
}


.toper.fixed .navs>ul>li:hover>span:before {
    color: #6959A1;
}

.toper.fixed .searchicon:hover {
    color: #6959A1;
}

/*.toper.fixed .logos .logo1 {*/
/*    display: none;*/
/*}*/

/*.toper.fixed .logos .logo2 {*/
/*    display: block;*/
/*}*/

.toper.fixed .sp_nav span {
    background: var(--b);
}

.toper.fixed .carticon {
    color: var(--b);
}

.toper.fixed .carticon:hover {
    color: #6959A1;
}

.toper.fixed .carticon .number {
    color: #6959A1;
}

.toper.fixed2 {
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .15);
    background: var(--w);
}

.toper.fixed2 .navs>ul>li>a {
    color: var(--b);
}

.toper.fixed2 .navs>ul>li>span {
    color: var(--b);
}

.toper.fixed2 .searchicon {
    color: var(--b);
}

.toper.fixed2 .navs>ul>li:hover>a {
    color: #6959A1;
}

.toper.fixed2 .navs>ul>li:hover>span {
    color: #6959A1;
}

.toper.fixed2 .searchicon:hover {
    color: #6959A1;
}

.toper.fixed2 .logos .logo1 {
    display: none;
}

.toper.fixed2 .logos .logo2 {
    display: block;
}

.toper.fixed2 .sp_nav span {
    background: var(--b);
}

.toper.fixed2 .carticon {
    color: var(--b);
}

.toper.fixed2 .carticon:hover {
    color: #6959A1;
}

.toper.fixed2 .carticon .number {
    color: #6959A1;
}

.footer {
    width: 100%;
    height: auto;
    background: #6959A1;
}
.footer .maincon{
	width: 1470px;
	max-width: 100%;
	padding: 0px 15px;
}
.footer p {
    color: var(--w);
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer p a {
    line-height: inherit;
}

.footer a {
    color: var(--w);
}

.footer a:hover {
    color: #AD9BEC;
}

.footer .foottitle {
    color: var(--w);
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    display: block;
    border-bottom: 1px solid #C5C1EA;
}

.foot-info {
    width: 100%;
    height: auto;
    padding: 50px 0px 35px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    column-gap: 20px;
}

.foot-logo {
    width: auto;
}

.foot-logo img {
    width: auto;
    height: 60px;
    max-width: 100%;
    margin-bottom: 30px;
}

.foot-logo p {
    max-width: 400px;
}

.foot-contact-list {
    margin-bottom: 15px;
}

.foot-contact-list p {
    padding-left: 28px;
}

.foot-contact-list p:nth-child(1) {
    background: url(../images/foot-address.svg) no-repeat 0px 2px/15px;
}

.foot-contact-list p:nth-child(2) {
    background: url(../images/foot-email.svg) no-repeat 0px 6px/18px;
}

.foot-contact-list p:nth-child(3) {
    background: url(../images/foot-phone.svg) no-repeat 0px 3px/17px;
}

.foot-link-icon {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
}

.foot-link-icon a {
    font-size: 18px;
    transition: all .3s;
    color: var(--w);
}

.foot-link-icon a:hover {
    transform: translateY(-3px);
    color: var(--w);
}

.foot-link-icon .twitter-pic {
    width: auto;
    height: 16px;
    margin-bottom: 3px;
}

.foot-link-icon p {
    margin-bottom: 0px;
}

.foot-follow {
    max-width: 300px;
}

.foot-nav {
    width: auto;
    max-width: 100%;
}


.foot-nav p a {
    padding-left: 20px;
    position: relative;
    display: inline-block;
    transition: all .3s;
}

.foot-nav p a:before {
    content: '>';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.foot-nav p a:hover {
    transform: translateX(5px);
}

.copyright {
    width: 100%;
    height: auto;
    padding: 12px 0px;
    position: relative;
    background: #595999;
}

.copyright p {
    text-align: center;
    margin-bottom: 0px;
    color: var(--w);
    font-size: 15px;
}
.foot-contact-list-box {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 30px;
}
.foot-contact-list-box .list-item .foottitle {
    margin-bottom: 15px;
    display: block;
    border: none;
    padding: 0;
}
.foot-contact-list-box .list-item p {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}
.foot-contact-list-box .list-item p:before {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0px;
    top: 3px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}
.foot-contact-list-box .list-item p:nth-child(1):before {
    background-image: url(../images/foot-address.svg);
}
.foot-contact-list-box .list-item p:nth-child(2):before {
    background-image: url(../images/foot-email.svg);
}
.foot-contact-list-box .list-item p:nth-child(3):before {
    background-image: url(../images/foot-phone.svg);
}
.go_top {
    width: 40px;
    height: 40px;
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    display: flex;
    border-radius: 4px;
    background-size: 50%;
    background-color: var(--v);
    position: fixed;
    right: 5px;
    bottom: 120px;
    opacity: 0;
    z-index: 5;
    justify-content: center;
    align-items: center;
}


.go_top:hover {
    background-color: #595999;
}

.maintitle {
    margin-bottom: 35px;
    text-align: center;
}

.maintitle .titles {
    color: #3F3F3F;
}

.maintitle .titles span {
    color: #6959A1;
}

.maintitle p {
    max-width: 1000px;
    text-align: center;
    margin: 10px auto 0px;
}

.titles {
    font-size: 35px;
    line-height: 1.2;
    font-family: var(--bz-ff-heading);
}

.maintitle.left {
    text-align: left;
}

.maintitle.icon1 {
    margin-bottom: 25px;
}

.maintitle.icon1 .titles {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.maintitle.icon1 .titles:before {
    content: '';
    width: 50px;
    height: 50px;
    background: url(../images/title-icon1.png) no-repeat center center/contain;
    flex-shrink: 0;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.mainsection1 {
    width: 100%;
    height: auto;
    padding: 100px 0px;
}

.mainsection1-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainsection1-info .pic {
    width: 46%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.mainsection1-info .text {
    width: 46%;
}

.mainsection1-info .pic1 {
    width: 100%;
    padding-bottom: 460px;
    overflow: hidden;
    position: relative;
}

.mainsection1-info .pic1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}

.mainsection1-info .text p:last-child {
    margin-bottom: 0px;
}

.mainsection1-info .pic-list {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    padding: 40px 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 0px;
    top: 0px;
}

.mainsection1-info .pic-list .list-title {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.mainsection1-info .pic-list .list-title .titles {
    color: var(--w);
}

.mainsection1-info .pic-list .lists {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.mainsection1-info .pic-list .lists .list-item {
    width: 48%;
    margin: 30px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mainsection1-info .pic-list .lists .list-item img {
    width: auto;
    height: 55px;
    margin-bottom: 10px;
}

.mainsection1-info .pic-list .lists .list-item p {
    color: var(--w);
    text-align: center;
    font-family: var(--bz-ff-heading);
    margin-bottom: 0px;
}

.mainsection1-info .pic-list .lists .list-item:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0px;
    margin-bottom: 0px;
}

.mainsection2 {
    width: 100%;
    height: auto;
    padding: 0px 0px 60px;
}

.mainsection2-list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 2.66%;
}

.mainsection2-list .list-item {
    width: 23%;
    margin-bottom: 40px;
    border-radius: 15px;
    background: var(--w);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .3);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all .3s;
}

.mainsection2-list .list-item:hover {
    transform: translateY(-6px);
}

.mainsection2-list .list-item img {
    width: auto;
    height: 90px;
    margin-bottom: 20px;
    transition: all .4s;
}

.mainsection2-list .list-item:hover img {
    transform: rotate(90deg);
}

.mainsection2-list .list-item h3 {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
    color: var(--b);
    font-size: 18px;
}

.mainsection2-list .list-item:hover h3 {
    color: #6959A1;
}

.mainsection2-list .list-item p {
    text-align: center;
    width: 100%;
    margin-bottom: 0px;
}

.mainsection2-list .list-item2 {
    width: 23%;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.mainsection2-list .list-item2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}

.mainsection2-list .list-item2 .titles {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--w);
    background: rgba(0, 0, 0, .5);
}

.mainsection3 {
    width: 100%;
    height: auto;
    padding-bottom: 100px;
}

.mainsection3-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.mainsection3-info .pic {
    width: 35%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.mainsection3-info .text {
    width: 60%;
}

.mainsection3-info .pic1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.mainsection3-info .pic1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}

.mainsection3-info .pic .pic-list {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    padding: 30px 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 0px;
    top: 0px;
}

.mainsection3-info .pic .pic-list .list-title {
    text-align: center;
    margin-bottom: 0px;
    width: 100%;
}

.mainsection3-info .pic .pic-list .list-title .titles {
    color: var(--w);
}

.mainsection3-info .pic .pic-list .lists {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.mainsection3-info .pic .pic-list .lists .list-item {
    width: 48%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mainsection3-info .pic .pic-list .lists .list-item span {
    font-size: 17px;
    text-align: center;
    font-family: var(--bz-ff-heading);
    color: #E1DEF9;
}

.mainsection3-info .pic .pic-list .lists .list-item p {
    color: var(--w);
    text-align: center;
    font-family: var(--bz-ff-heading);
    margin-bottom: 0px;
    font-size: 19px;
}

.mainsection3-info .text .list-item {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    background: var(--w);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .2);
    border-radius: 10px;
    border-right: 8px solid #4E8580;
}

.mainsection3-info .text .list-item:hover {
    border-right: 8px solid #6959A1;
}

.mainsection3-info .text .list-item:last-child {
    margin-bottom: 0px;
}

.mainsection3-info .text .list-item .list-pic {
    width: 100px;
    overflow: hidden;
    border-radius: 50%;
}

.mainsection3-info .text .list-item .list-pic img {
    width: 100%;
    height: auto;
    transition: all .5s;
}

.mainsection3-info .text .list-item:hover .list-pic img {
    transform: rotate(20deg) scale(1.1);
}

.mainsection3-info .text .list-item .list-text {
    width: calc(100% - 140px);
}

.mainsection3-info .text .list-item .list-text h3 {
    font-size: 18px;
    color: var(--b);
    margin-bottom: 10px;
}

.mainsection3-info .text .list-item:hover .list-text h3 {
    color: #6959A1;
}

.mainsection3-info .text .list-item .list-text p {
    margin-bottom: 15px;
}

.mainsection4 {
    width: 100%;
    height: auto;
    padding: 100px 0px;
}

.mainsection4-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainsection4-info .pic {
    width: 660px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.mainsection4-info .text {
    width: calc(100% - 740px);
}

.mainsection4-info .text p:last-child {
    margin-bottom: 0px;
}

.mainsection4-info .pic1 {
    width: 100%;
    padding-bottom: 460px;
    overflow: hidden;
    position: relative;
}

.mainsection4-info .pic-list {
    width: 55%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    margin-top: 15px;
    margin-left: -20px;
}

.mainsection4-info .pic-list .pic-icon {
    width: 100%;
    height: auto;
}

.mainsection4-info .pic-list .pic-logo {
    width: 50%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: -10px;
}

.mainsection4-info .pic-list .list-box p {
    font-size: 16px;
    margin-bottom: 0px;
    color: var(--b);
    width: 100px;
    position: absolute;
    font-family: var(--bz-ff-heading);
    line-height: 1.4;
}

.mainsection4-info .pic-list .list-box p:nth-child(1) {
    top: -30px;
    left: 35px;
    width: 100%;
    text-align: center;
}

.mainsection4-info .pic-list .list-box p:nth-child(2) {
    top: 22%;
    left: -100px;
    text-align: right;
}

.mainsection4-info .pic-list .list-box p:nth-child(3) {
    top: 22%;
    right: -110px;
}

.mainsection4-info .pic-list .list-box p:nth-child(4) {
    top: 67%;
    left: -100px;
    text-align: right;
}

.mainsection4-info .pic-list .list-box p:nth-child(5) {
    top: 70%;
    right: -100px;
}

.mainsection4-info .text .style1 {
    padding-left: 20px;
    border-left: 3px solid #6959A1;
    margin-top: 35px;
}

.mainsection4-info .text .text-btn {
    margin-top: 40px;
}

.more-btn {
    display: inline-block;
    padding: 7px 27px;
    background: #6959A1;
    color: var(--w);
    font-size: 16px;
    border-radius: 6px;
    font-family: var(--bz-ff-heading);
}

.more-btn:hover {
    background: var(--v);
    color: var(--w);
}

.mainsection5 {
    width: 100%;
    height: auto;
    padding: 110px 0px;
}

.mainsection5-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainsection5-info .pic {
    width: 47%;
    position: relative;
}

.mainsection5-info .pic img {
    width: 100%;
    height: auto;
}

.mainsection5-info .text {
    width: 47%;
}

.mainsection5-info .text .text-list {
    width: 100%;
    margin-top: 25px;
}

.mainsection5-info .text .text-list p {
    padding-left: 32px;
    position: relative;
    margin-bottom: 10px;
}

.mainsection5-info .text .text-list p:before {
    content: '\2714';
    width: 22px;
    height: 22px;
    background: #6959A1;
    border-radius: 50%;
    color: var(--w);
    font-size: 15px;
    position: absolute;
    left: 0px;
    top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainsection5-info .text .text-btn {
    margin-top: 40px;
    text-align: left;
}

.mainsection6 {
    width: 100%;
    height: auto;
    padding: 110px 0px 70px;
    background: #f5f4f8;
}

.mainsection6-list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mainsection6-list .list-pic {
    width: calc(33.33% - 26.66px);
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
    margin-bottom: 40px;
}

.mainsection6-list .list-pic .pic {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.mainsection6-list .list-pic .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}

.mainsection6-list .list-pic .text {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mainsection6-list .list-pic .text h2 {
    width: 100%;
    text-align: center;
    font-size: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--w);
    color: var(--w);
}

.mainsection6-list .list-item {
    width: calc(33.33% - 26.66px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
    margin-bottom: 40px;
    background: linear-gradient(to bottom, var(--w), #EDEDED);
    padding: 25px 25px 10px;
    position: relative;
    transition: all .3s;
}

.mainsection6-list .list-item:hover {
    transform: translateY(-6px);
}

.mainsection6-list .list-item .list-title {
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #6959A1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mainsection6-list .list-item .list-title .pic {
    width: 55px;
    height: 55px;
    background: #6959A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    transition: all .3s;
}

.mainsection6-list .list-item:hover .list-title .pic {
    transform: rotate(15deg);
}

.mainsection6-list .list-item .list-title .pic img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.mainsection6-list .list-item .list-title h3 {
    line-height: 1.3;
    font-size: 17px;
    color: var(--b);
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.mainsection6-list .list-item:hover .list-title h3 {
    color: #6959A1;
}

.mainsection6-list .list-item p {
    color: var(--b);
}

.mainsection6-list .list-item span {
    position: absolute;
    left: 25px;
    bottom: 20px;
    color: #6959A1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mainsection6-list .list-item span:after {
    content: '\279E';
    font-size: 25px;
    line-height: 12px;
    margin-left: 8px;
}

.mainsection6-list .list-item span:hover {
    color: var(--v);
}

.mainsection7 {
    width: 100%;
    height: auto;
    padding: 0px 0px 110px;
}

.mainsection7-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.mainsection7-info .mainsection7-list {
    width: 65%;
}

.mainsection7-info .pic {
    width: 30%;
    position: relative;
}

.mainsection7-info .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}

.mainsection7-info .pic:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, .25);
    z-index: 2;
}

.mainsection7-info .pic-text {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 3;
}

.mainsection7-info .pic-text h2 {
    width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 1.3;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--w);
    color: var(--w);
}

.mainsection7-info .mainsection7-list .list-item {
    width: 100%;
    margin-bottom: 25px;
    background: var(--w);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, .2);
    border-radius: 8px;
    border-right: 2px solid #6959A1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
}

.mainsection7-info .mainsection7-list .list-item:last-child {
    margin-bottom: 0px;
}

.mainsection7-info .mainsection7-list .list-item .list-pic {
    width: 80px;
    height: 80px;
    background: #6959A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.mainsection7-info .mainsection7-list .list-item:hover .list-pic {
    transform: rotate(15deg);
}

.mainsection7-info .mainsection7-list .list-item:hover {
    background: #f2efff;
}

.mainsection7-info .mainsection7-list .list-item .list-pic img {
    width: 55%;
    height: 55%;
    object-fit: contain;
}

.mainsection7-info .mainsection7-list .list-item .text {
    width: calc(100% - 110px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 120px;
}

.mainsection7-info .mainsection7-list .list-item .text h3 {
    line-height: 1.3;
    font-size: 17px;
    color: var(--b);
    margin-bottom: 12px;
}

.mainsection7-info .mainsection7-list .list-item:hover .text h3 {
    color: #6959A1;
}

.mainsection7-info .mainsection7-list .list-item .text p {
    margin-bottom: 0px;
}

.mainsection8 {
    width: 100%;
    height: auto;
    padding: 110px 0px 70px;
    background: #f5f4f8;
}

.mainsection8-list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 15px;
}

.mainsection8-list .list-item {
    width: 24%;
    margin-bottom: 30px;
    border: 2px solid #BAB3D3;
    padding: 5px 5px;
    margin-bottom: 40px;
    transition: all .3s;
}

.mainsection8-list .list-item:hover {
    border: 2px solid #6959A1;
    transform: translateY(-5px);
}

.mainsection8-list .list-item .pic {
    width: 100%;
    padding-bottom: 70%;
    overflow: hidden;
    position: relative;
}

.mainsection8-list .list-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}

.mainsection8-list .list-item:hover .pic img {
    transform: scale(1.1);
}

.mainsection8-list .list-item .text {
    width: 100%;
    padding: 15px 10px 10px;
}

.mainsection8-list .list-item .text h3 {
    font-size: 16px;
    color: var(--b);
    text-align: center;
}

.mainsection8-list .list-item:hover .text h3 {
    color: #6959A1;
}

.mainsection9 {
    width: 100%;
    height: auto;
    padding: 110px 0px;
}

.mainsection9-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.mainsection9 .maintitle {
    margin-bottom: 50px;
}

.mainsection9 .maintitle p {
    max-width: 100%;
    margin: 20px auto 0px;
}

.mainsection9-info .mainsection9-forms {
    width: 55%;
}

.mainsection9-info .mainsection9-maps {
    width: 40%;
    position: relative;
}

.mainsection9-info .mainsection9-maps iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 15px;
}

.mainsection9-info .mainsection9-forms .forms .form_button {
    text-align: left;
}

.mainsection10 {
    width: 100%;
    height: auto;
    padding: 110px 0px 70px;
    background-image: url(../images/index-pic31.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.mainsection10 .maintitle .titles {
    color: var(--w);
}

.mainsection10 .maintitle p {
    color: var(--w);
}

.mainsection10-list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-top: 10px;
}

.mainsection10-list .list-item {
    width: 23%;
    margin-bottom: 40px;
    margin-top: 40px;
    background: var(--w);
    position: relative;
    padding-top: 60px;
    padding-bottom: 90px;
    transition: all .3s;
}

.mainsection10-list .list-item:hover {
    transform: translateY(-6px);
}

.mainsection10-list .list-item .pic {
    width: 70px;
    height: 70px;
    padding: 14px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
    background: #6959A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainsection10-list .list-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .3s;
}

.mainsection10-list .list-item:hover .pic img {
    transform: rotate(50deg);
}

.mainsection10-list .list-item .text {
    width: 100%;
    height: auto;
}

.mainsection10-list .list-item .text p {
    width: 100%;
    height: auto;
    padding: 20px 15px;
    text-align: center;
}

.mainsection10-list .list-item .text h3 {
    width: 100%;
    height: auto;
    padding: 15px 15px;
    text-align: center;
    background: #6959A1;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--w);
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.mainsection10-list .list-item:hover .text h3 {
    background: #6650b6;
}

.mainsection10-list .list-item .text h3:before {
    content: '';
    width: 40px;
    height: 16px;
    background: #6959A1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.go-btn {
    display: inline-block;
    padding: 5px 35px;
    border: 2px solid #6959A1;
    color: #6959A1;
    font-size: 16px;
    border-radius: 7px;
    font-weight: bold;
}

.go-btn:hover {
    background: #6959A1;
    color: var(--w);
}

.pagebanner {
    width: 100%;
    height: 350px;
    position: relative;
}

.pagebanner:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
}

.pagebanner:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 3;
}

.pagebanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pagebanner .text {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    transform: translateY(-50%);
}

.pagebanner .pagebanner-title {
    font-size: 40px;
    line-height: 1.4;
    color: var(--w);
    text-align: left;
    margin-bottom: 0px;
    margin-top: 40px;
    font-family: var(--bz-ff-heading);
}

.pagebanner p {
    font-size: 16px;
    color: var(--w);
    text-align: left;
    margin-top: 5px;
    margin-bottom: 0px;
}

.crumbnav {
    width: 100%;
    height: auto;
    padding: 15px 0px 15px;
    text-align: left;
    margin-top: 0px;
}

.crumbnav ul {
    width: 100%;
    height: auto;
    margin: auto;
    font-size: 15px;
    color: var(--w);
}

.crumbnav ul li {
    font-size: 16px;
    color: var(--w);
    display: inline-block;
    margin-right: 5px;
}

.crumbnav ul li a {
    font-size: 16px;
    color: var(--w);
    display: inline-block;
}

.crumbnav ul li a:hover {
    color: #e8b2ff;
}

.crumbnav ul li::before {
    content: "/";
    color: var(--w);
    margin-right: 7px
}

.crumbnav ul li:first-child {
    padding-left: 22px;
    background: url(../images/icon-home.svg) no-repeat left 5px/17px;
}

.crumbnav ul li:first-child::before {
    content: "";
    margin-right: 0px;
}

.page-info-title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 15px;
    font-family: var(--bz-ff-heading);
    color: #3F3F3F;
    font-size: 30px;
    position: relative;
}

.page-info-title span {
    color: #6959A1;
}

.page-info-title:before {
    content: '';
    width: 80px;
    height: 3px;
    background: #6959A1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}

.about-section1 {
    width: 100%;
    height: auto;
    padding: 40px 0px 30px;
}

.about-section1-list {
    width: 100%;
    height: auto;
}

.about-section1-list .list-item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.about-section1-list .list-item .pic {
    width: 550px;
    height: 320px;
}

.about-section1-list .list-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section1-list .list-item .text {
    width: calc(100% - 650px);
}

.about-section1-list .list-item .text .about-section-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--bz-ff-heading);
}

.about-section1-list .list-item .text p {
    margin-bottom: 0px;
}

.about-section2 {
    width: 100%;
    height: auto;
}

.about-section2-list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.about-section2-list .list-item {
    width: 25%;
    padding-bottom: 40px;
    margin-right: 25%;
    position: relative;
}

.about-section2-list .list-item:before {
    content: '';
    width: 45%;
    height: 12px;
    background: #6959A1;
    position: absolute;
    left: 0px;
    bottom: -6px;
}

.about-section2-list .list-item .about-section-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--bz-ff-heading);
}

.about-section2-list .list-item p {
    margin-bottom: 0px;
}

.about-section3 {
    width: 100%;
    height: auto;
    background: #f2efff;
    padding-bottom: 80px;
}

.about-section3-list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.about-section3-list .list-item {
    width: 25%;
    padding-top: 40px;
    margin-left: 25%;
    position: relative;
}

.about-section3-list .list-item:before {
    content: '';
    width: 45%;
    height: 12px;
    background: #6959A1;
    position: absolute;
    left: 0px;
    top: -6px;
}

.about-section3-list .list-item .about-section-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--bz-ff-heading);
}

.about-section3-list .list-item p {
    margin-bottom: 0px;
}

.about-section4 {
    width: 100%;
    height: auto;
    padding: 100px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../images/about-pic3.jpg);
    background-attachment: fixed;
    position: relative;
}

.about-section4:before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(41, 50, 96, .53);
    position: absolute;
    left: 0px;
    top: 0px;
}

.about-section4 .maincon {
    position: relative;
    z-index: 2;
}

.about-section4 .about-section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 25px;
    color: var(--w);
    font-family: var(--bz-ff-heading);
}

.about-section4 p {
    text-align: center;
    color: var(--w);
    margin-bottom: 0px;
}

.about-section5 {
    width: 100%;
    height: auto;
    padding: 0px 0px 80px;
}

.about-section5-title {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 2px solid #6959A1;
    position: relative;
}

.about-section5-title:before {
    content: '';
    width: 26px;
    height: 12px;
    position: absolute;
    right: -20px;
    bottom: -2px;
    background: #6959A1;
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}

.about-section5-title .title-item {
    width: 25%;
    padding: 0px 20px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.about-section5-title .title-item:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../images/arrow1.png) no-repeat center center/contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
}

.about-section5-title .title-item img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    margin-right: 20px;
    object-fit: contain;
}

.about-section5-title .title-item p {
    margin-bottom: 0px;
    font-family: var(--bz-ff-heading);
    color: var(--b);
    font-size: 19px;
}

.about-section5-list {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.about-section5-list .list-item {
    width: 25%;
    padding: 10px 20px;
    border-right: 1px dashed #6959A1;
}

.about-section5-list .list-item:last-child {
    border-right: none;
}

.about-section5-list .list-item p {
    margin-bottom: 0px;
}

.contact-section-title {
    font-size: 26px;
    margin-bottom: 35px;
    color: var(--b);
    font-family: var(--bz-ff-heading);
    position: relative;
    padding-bottom: 6px;
}

.contact-section-title:before {
    content: '';
    width: 60px;
    height: 2px;
    background: #796EAF;
    position: absolute;
    left: 0%;
    bottom: 0px;
}

.contact-section1 {
    width: 100%;
    height: auto;
    padding: 40px 0px 80px;
}

.contact-section1-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.contact-section1-info .text {
    width: 500px;
}

.contact-section1-info .text .text-list {
    width: 100%;
}

.contact-section1-info .text .text-list .list-item {
    width: 100%;
    margin-bottom: 30px;
    padding-left: 70px;
    position: relative;
}

.contact-section1-info .text .text-list .list-item:before {
    content: '';
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: 0px;
    top: 6px;
}

.contact-section1-info .text .text-list .list-item:nth-child(1):before {
    background-image: url(../images/icon-address.svg);
}

.contact-section1-info .text .text-list .list-item:nth-child(2):before {
    background-image: url(../images/icon-email.svg);
}

.contact-section1-info .text .text-list .list-item:nth-child(3):before {
    background-image: url(../images/icon-phone.svg);
}

.contact-section1-info .text .text-list .list-item:last-child {
    margin-bottom: 0px;
}

.contact-section1-info .text .text-list .list-item p {
    color: var(--b);
    margin-bottom: 0px;
}

.contact-section1-info .text .text-list .list-item p a {
    color: #796EAF;
}

.contact-section1-info .text .text-list .list-item p a:hover {
    color: var(--v);
}

.contact-section1-info .text .text-list .list-item .style1 {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-section1-info .maps {
    width: calc(100% - 500px);
}

.contact-section1-info .maps iframe {
    width: 100%;
    height: 100%;
}

.forms .form_control {
    width: 100%;
    height: 46px;
    border: none;
    border: 1px solid #C1C1C1;
    padding: 0px 10px;
    margin-bottom: 0px;
    font-size: 16px;
    color: var(--b);
    box-shadow: none;
    border-radius: 5px;
    background: none;
}

.forms .form_group {
    margin-bottom: 15px;
}

.forms textarea.form_control {
    height: 80px;
    padding: 11px 10px;
    line-height: 22px;
    display: inherit;
}

.forms textarea.form_control.title {
    height: 46px;
}

.forms .form_control.file {
    padding-top: 10px;
}

.forms .inquiry-quantity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.forms .inquiry-quantity select.form_control {
    width: 110px;
    font-size: 18px;
    outline: none;
}

.forms label {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--b);
    margin-left: 0px;
    display: block;
}

.forms {
    width: 100%;
}

.forms .inquiry-quantity {
    width: 100%;
}

.forms .inquiry-quantity input#iquantity {
    width: calc(100% - 110px);
    margin-right: 0px;
    border-right: none;
}

.forms .inquiry-quantity input.form_control:after {
    content: " ";
    position: absolute;
    z-index: 2;
    top: -25px;
    width: 110%;
    height: 50px;
    background-color: var(--w);
    transform: rotate(-0.5deg)
}

.forms #otherunit {
    margin-left: 0px;
    background: none;
    width: 110px;
    border-left: none;
}

.forms .form_button {
    margin-top: 10px;
    text-align: right;
}

.forms .submit-btn {
    padding: 8px 30px;
    width: 160px;
    max-width: 100%;
    background: #b0a2e0;
    color: var(--w);
    border: none;
    outline: none;
    border-radius: 6px;
    position: relative;
    font-size: 16px;
}

.forms .submit-btn:hover {
    background: var(--m);
}

.services-container a.submit-btn {
    padding: 8px 30px;
    width: 160px;
    max-width: 100%;
    background: #b0a2e0;
    color: var(--w);
    border: none;
    outline: none;
    border-radius: 6px;
    position: relative;
    font-size: 16px;
}

.services-container a.submit-btn:hover {
    color: var(--w);
    background: var(--m);
}

.forms .form-check {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
    margin-top: 10px;
}

.forms .form-check label {
    line-height: 1.3;
}

.forms .form-check .form-check-input {
    flex-shrink: 0;
    margin-right: 8px;
    margin-top: 3px;
}

.mainsection9-forms .forms .row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 2%;
    flex-wrap: wrap;
}

.mainsection9-forms .forms .row .col-lg-6 {
    width: 49%;
}

.mainsection9-forms .forms .row .col-lg-12 {
    width: 100%;
}

.contact-section2 {
    width: 100%;
    height: auto;
    padding: 0px 0px 80px;
}

.contact-section2-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.contact-section2-info .pic {
    width: 500px;
    position: relative;
}

.contact-section2-info .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}

.contact-section2-info .contact-forms {
    width: calc(100% - 600px);
}

.contact-section2-info .contact-forms .contact-section-title {
    margin-bottom: 15px;
}

.contact-section2-info .contact-forms .style1 {
    color: var(--b);
    margin-bottom: 15px;
}

.inquiry-section {
    width: 100%;
    height: auto;
    padding: 150px 0px 80px;
    background: linear-gradient(to bottom, rgba(209, 207, 206, 1), rgba(255, 255, 255, 1));
}

.inquiry-section-info {
    width: 100%;
    height: auto;
    background: var(--w);
    padding: 50px 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .3);
}

.inquiry-section-info .style1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--b);
    max-width: 1000px;
    margin: 0px auto 25px;
}

.inquiry-section-info .page-info-title {
    margin-bottom: 25px;
}

.inquiry-section-info .forms .form_button {
    text-align: center;
}

.inquiry-section-info .forms .form_group {
    margin-bottom: 25px;
}

.by-services-banner {
    width: 100%;
    height: 450px;
    position: relative;
}

.by-services-banner .swiper-slide {
    height: 450px;
}

.by-services-banner .swiper-slide:before {
    content: '';
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to bottom,rgba(24,95,157,.45),rgba(99,145,186,.31),rgba(242,242,242,.0));*/
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
}

.by-services-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.by-services-banner .swiper-slide .text {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
}

.by-services-banner .swiper-slide .pagebanner-title {
    font-size: 40px;
    line-height: 1.4;
    color: var(--w);
    text-align: center;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 40px;
    font-family: var(--bz-ff-heading);
    text-shadow: 1px 2px 2px rgba(0, 0, 0, .3);
}

.by-services-banner .swiper-slide .text-btn {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 30px;
}

.by-services-banner .swiper-slide .text-btn a {
    display: inline-block;
    padding: 7px 35px;
    background: #6959A1;
    color: var(--w);
    font-size: 16px;
    border-radius: 6px;
    font-family: var(--bz-ff-heading);
}

.by-services-banner .swiper-slide .text-btn a:hover {
    background: var(--w);
    color: #6959A1;
}

.by-services-banner .swiper-banner-pagination {
    width: 14px;
    height: 100%;
    right: 20px;
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.by-services-banner .swiper-banner-pagination span {
    margin: 8px 0px;
    width: 8px;
    height: 30px;
    background: var(--w);
    border-radius: 30px;
}

.by-services-banner .swiper-banner-pagination span.swiper-pagination-bullet-active {
    background: #6959A1;
}

.pagecontent {
    width: 100%;
    height: auto;
    padding: 40px 0px 60px;
}


.leftnav {
    width: 330px;
}

.rightcon {
    width: calc(100% - 380px);
}

.sidenav {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #f2efff;
}

.leftnav .side-title {
    font-size: 19px;
    line-height: 1.3;
    display: block;
    color: var(--w);
    margin-bottom: 0px;
    padding: 14px 15px;
    background: #6959A1;
    font-family: var(--bz-ff-heading);
}

.leftnav .side-title a {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

.leftnavli {
    width: 100%;
    height: auto;
    padding: 15px 20px;
}

.leftnavli>ul {
    width: 100%;
    height: auto;
    margin-bottom: 0px !important;
}

.leftnavli ul li a {
    font-family: 'Outfit-regular';
    font-size: 16px;
    line-height: 24px;
    color: var(--b);
    display: inline-block;
    max-width: calc(100% - 24px);
}

.leftnavli ul li ul li a {
    font-size: 16px;
    line-height: 22px;
}

.leftnavli>ul>li>a {
    color: var(--b);
    font-size: 16px;
}

.leftnavli>ul>li>ul>li>a {
    color: var(--b);
}

.leftnavli ul li a:hover {
    color: #6959A1;
}

.leftnavli ul {
    margin-top: 0px;
    margin-bottom: 7px;
}


.leftnavli ul li ul li:last-child {
    border-bottom: 0px solid #e2e2e2;
    margin-bottom: 0px;
    padding: 5px 0px 0px;
}

.leftnavli>ul>li:last-child {
    border-bottom: 0px solid #8cc7b5;
    margin-bottom: 0px;
}

.leftnavli ul li span {
    float: right;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.leftnavli ul li span::before {
    content: '\e98f';
    font-family: 'icomoon';
    font-weight: bold;
    color: #7e7e7e;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all .2s;
}

.leftnavli ul li span.down::before {
    content: '\e98f';
    color: #6959A1;
}

.leftnavli ul li ul {
    display: none;
    padding-left: 12px;
    margin-top: 5px;
}

.leftnavli>ul>li {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
    padding: 10px 0px;
    border-bottom: 1px solid #ffffff;
}

.leftnavli>ul>li.shows>a {
    color: #222;
    font-weight: bold;
}

.leftnavli ul li ul li {
    padding: 8px 0px 8px;
    margin-bottom: 0px;
    border-bottom: 1px solid #ffffff;
}

.leftnavli>ul>li>ul {
    padding: 0px 0px 10px 10px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.side-inquiry {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    background: #f2efff;
}

.side-inquiry .forms {
    width: 100%;
    height: auto;
    padding: 30px 15px 40px;
}

.side-inquiry .forms label {
    color: #111;
    font-weight: normal;
    margin-bottom: 3px;
    line-height: 1.5;
}

.side-inquiry .forms .form-check .form-check-input {
    margin-top: 5px;
}

.side-inquiry .forms .form_control {
    background: var(--w);
    border: none;
}

.side-inquiry .forms .form_group {
    margin-bottom: 15px;
}

.side-inquiry .forms .row>div {
    width: 100%;
}

.side-inquiry .forms .submit-btn {
    width: 100%;
    background: var(--m);
}
.side-inquiry .forms .submit-btn:hover {
    background: var(--v);
}
.side-inquiry .forms textarea.form_control.title {
    height: 80px;
}

.side-inquiry .forms textarea.form_control {
    height: 80px;
}

.pagetitle {
    margin-bottom: 25px;
    padding-bottom: 6px;
    padding-top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pagetitle .pagetitle-info {
    padding-bottom: 15px;
    padding-top: 0px;
    margin-bottom: 0px;
    font-size: 32px;
    line-height: 1.2;
    margin-top: 0px;
    text-align: left;
    color: var(--b);
    position: relative;
    font-family: var(--bz-ff-heading);
    width: 100%;
}

.pagetitle .pagetitle-info:before {
    content: '';
    width: 100px;
    height: 2px;
    background: #6959A1;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.pagetitle .to_inquiry {
    color: var(--w);
    padding: 7px 27px;
    font-size: 16px;
    display: inline-block;
    border-radius: 150px;
    line-height: 1.2;
    background: #6959A1;
    flex-shrink: 0;
    margin-left: 25px;
    margin-top: 4px;
}

.pagetitle .to_inquiry:hover {
    background: #76C2F6;
    color: var(--w);
}

.row.center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.notice {
    background: url(../images/notice.svg) no-repeat 15px 9px/20px #f2efff;
    color: #6959A1 !important;
    padding: 8px 15px 8px 45px !important;
    margin-bottom: 30px !important;
    margin-top: 30px !important;
    line-height: 1.4 !important;
    border-radius: 6px;
}

.related-box {
    width: 100%;
    height: auto;
    margin-top: 35px;
}

.related-box .related-title {
    font-family: var(--bz-ff-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--b);
}

.related-box .related-list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.related-box .related-list a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 49%;
    padding: 9px 10px 9px 30px;
    border: 1px solid rgba(21, 21, 21, 0.2);
    color: #6959A1;
    margin-bottom: 20px;
    position: relative;
}

.related-box .related-list a:before {
    content: '\e972';
    font-family: 'icomoon';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.related-box .related-list a:hover {
    background: #6959A1;
    border: 1px solid #6959A1;
    color: var(--w);
}

.services-container .title-background {
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    background: #6959A1;
    color: var(--w);
}

.product-search-box {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-search-box p {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 0px;
}

.product-search {
    margin-bottom: 0px;
    margin-top: 0px;
    flex-shrink: 0;
    width: 450px;
    margin-left: 30px;
}

.product-list-search {
    width: 100%;
    max-width: 100%;
    height: 44px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    margin-bottom: 0px;
}

.product-list-search input {
    width: calc(100% - 60px);
    height: 100%;
    border: none;
    background: var(--w);
    border: 1px solid #C1C1C1;
    box-shadow: none;
    padding: 0px 15px;
    font-size: 16px;
    border-right: none;
    color: var(--b);
    border-radius: 0px;
}

.product-list-search .search-btn {
    height: 100%;
    width: 60px;
    border: none;
    font-size: 16px;
    color: var(--w);
    background: #6959A1;
    flex-shrink: 0;
    padding: 0px 10px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-search .search-btn:before {
    content: '\e997';
    font-family: 'icomoon';
    font-size: 20px;
    line-height: 22px;
}

.product-list-search .search-btn:hover {
    background: var(--v);
    color: var(--w);
}

.product-list {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.product-list table {
    width: 100%;
    height: auto;
    border: none;
}

.product-list table tr td {
    text-align: center;
    border: none;
    border-right: 2px solid var(--w);
    border-bottom: 2px solid var(--w);
}

.product-list table tr th {
    text-align: center;
    border: none;
    border-right: 2px solid var(--w);
    border-bottom: 2px solid var(--w);
    background: #6959A1;
    color: var(--w);
    font-weight: bold;
}

.product-list table tr:nth-child(2n-1) td {
    background: #F0EFF4;
}

.product-list table .add-to-cart {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6959A1;
    cursor: pointer;
}

.product-list table .add-to-cart:before {
    content: '\e930';
    font-family: 'icomoon';
    font-size: 22px;
    line-height: 22px;
}

.product-list table .add-to-cart:hover {
    color: var(--v);
}

.pages {
    text-align: center;
    margin-bottom: 30px;
}

.services-container .pagination {
    padding-left: 0px;
}

.pagination>li>a,
.pagination>li>span {
    margin-left: 3px;
    color: #666666;
    border: 1px solid #666;
    padding: 6px 14px;
    margin-bottom: 10px;
    font-size: 16px;
    display: inline-block;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    color: var(--w);
    background-color: #6959A1;
    border-color: #6959A1;
}

.services-container .pagination>li {
    list-style: none;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    color: var(--w);
    background-color: #6959A1;
    border-color: #6959A1;
}

.pagination>li {
    display: inline-block;
}

.pro-detail-section1 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.pro-detail-section1 .pic {
    width: 550px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .3);
}

.pro-detail-section1 .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pro-detail-section1 .text {
    width: calc(100% - 650px);
}

.pro-detail-section1 .text .text-list {
    margin-bottom: 30px;
}

.pro-detail-section1 .text .text-list p {
    color: var(--b);
    margin-bottom: 10px;
}

.pro-detail-section1 .text .text-list p .pdf-down:before {
    content: '\e990';
    font-family: 'icomoon';
    font-size: 22px;
    line-height: 22px;
}

.pro-detail-section1 .text .text-list p a {
    color: #6959A1;
    position: relative;
    top: 3px;
    margin-left: 10px;
}

.pro-detail-section1 .text .text-list p a:hover {
    color: var(--v);
}

.pro-detail-section1 .text .text-btn {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 30px;
}

.pro-detail-section1 .text .text-btn a {
    padding: 5px 20px;
    text-align: center;
    min-width: 150px;
    display: inline-block;
    background: #6959A1;
    border: 1px solid #6959A1;
    color: var(--w);
    border-radius: 4px;
}

.pro-detail-section1 .text .text-btn a:hover {
    background: var(--w);
    color: #6959A1;
}

.pro-detail-section1 .text .text-btn a.inquire-btn {
    background: var(--w);
    color: #6959A1;
    border-radius: 4px;
}

.pro-detail-section1 .text .text-btn a.inquire-btn:hover {
    background: #6959A1;
    color: var(--w);
}

.pro-detail-section2 {
    width: 100%;
    height: auto;
}

.pro-detail-section2 .pro-detail-section2-title {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pro-detail-section2 .pro-detail-section2-title span {
    font-size: 18px;
    height: 50px;
    line-height: 1.3;
    width: 24%;
    padding: 0px 10px;
    text-align: center;
    background: #F0EFF4;
    color: #6959A1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
}

.pro-detail-section2 .pro-detail-section2-title span.shows {
    background: #6959A1;
    color: var(--w);
}

.pro-detail-section2 .pro-detail-section2-list {
    width: 100%;
    height: auto;
    padding: 10px 30px;
}

.pro-detail-section2 .pro-detail-section2-list .list-item {
    width: 100%;
    height: auto;
    display: none;
}

.pro-detail-section2 .pro-detail-section2-list .list-item:nth-child(1) {
    display: block;
}

.pro-detail-section2 .pro-detail-section2-list .list-item .list-title {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 24px;
    font-family: var(--bz-ff-heading);
    color: var(--b);
}

.pro-detail-section2 .pro-detail-section2-list .list-item .specification-table {
    width: 100%;
    height: auto;
    border: none;
    margin-top: 30px;
}

.pro-detail-section2 .pro-detail-section2-list .list-item .specification-table tr td {
    text-align: left;
    border: none;
    border-right: 2px solid var(--w);
    border-bottom: 2px solid var(--w);
    padding: 10px 20px;
}

.pro-detail-section2 .pro-detail-section2-list .list-item .specification-table tr th {
    text-align: left;
    border: none;
    border-right: 2px solid var(--w);
    border-bottom: 2px solid var(--w);
    background: #6959A1;
    color: var(--w);
    font-weight: bold;
}

.pro-detail-section2 .pro-detail-section2-list .list-item .specification-table tr:nth-child(2n-1) td {
    background: #EDEDED;
}

.product-list-basket {
    margin-bottom: 70px;
}

.product-list-basket .input-group {
    width: auto !important;
    justify-content: center;
    display: flex;
}

.product-list-basket .input-group input {
    width: 70px !important;
    height: 30px;
    margin: 0px 5px;
    text-align: center;
    border: none;
    font-size: 16px;
    color: var(--b);
    background: var(--w);
    border: 1px solid #6959A0;
}

.product-list-basket .input-group .input-group-addon {
    font-size: 20px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    padding: 0px 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #6959A0;
    border: none;
    border-radius: 0px;
    color: var(--w);
}

.product-list-basket .input-group .input-group-addon:hover {
    background: var(--v);
    color: var(--w);
}

.product-list-basket table tr td {
    text-align: left;
}

.product-list-basket table tr th {
    text-align: left;
}

.product-list-basket table tr .text-center {
    text-align: center;
}

.product-list table .delete-btn {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6959A1;
    cursor: pointer;
}

.product-list table .delete-btn:before {
    content: "\e020";
    font-family: 'Glyphicons Halflings';
    font-size: 18px;
    line-height: 18px;
}

.product-list table .delete-btn:hover {
    color: var(--v);
}
.related-services-container {
    margin-top: 35px;
}
.related-services-container h2 {
    color: #000;
    margin-bottom: 15px;
    font-size: 22px;
}
.related-services-container ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    align-items: stretch;
    justify-content: space-between;
}
.related-services-container ul > li {
    width: 49%;
    list-style: none;
    padding: 0px 0;
    margin-bottom: 10px;
}
.related-services-container ul > li a {
    color: #6959A1;
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 25px;
    line-height: 22px;
    height: 100%;
    min-height: 44px;
    background: #f0f1f2;
    break-inside: avoid;
    position: relative;
    transition: all ease-out 0.3s;
}
.related-services-container ul > li a:hover {
    background: #e6e0ec;
    transition: all ease-out 0.3s;
}
.related-services-container ul > li a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 12px;
    border-left: 3px solid #1f2632;
    border-top: 3px solid #1f2632;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: rotateZ(135deg) translateY(70%);
    transition: border-left-color ease-out 0.3s, border-top-color ease-out 0.3s;
}

.about-content-add-css .contact-container {
    margin-top: 15px;
}
.about-content-add-css .contact-container > p {
    margin-bottom: 5px;
}
.info-pic-left {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.info-pic-left .pic {
    width: auto;
    flex-shrink: 0;
    margin-right: 25px;
    max-width: 100%;
}

.info-pic-left .pic img {
    height: auto;
    max-width: 100%;
}

.info-pic-left .text {
    width: 100%;
}

.info-pic-left .text p:last-child {
    padding-bottom: 0px;
}

.info-pic-left .text ul:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.info-pic-left .text h2:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.info-pic-left .text h3:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.info-pic-right {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.info-pic-right .pic {
    width: auto;
    flex-shrink: 0;
    margin-left: 25px;
    max-width: 100%;
}

.info-pic-right .pic img {
    height: auto;
    max-width: 100%;
}

.info-pic-right .text {
    width: 100%;
}

.info-pic-right .text p:last-child {
    padding-bottom: 0px;
}

.info-pic-right .text ul:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.info-pic-right .text h2:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.info-pic-right .text h3:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.services-container .bg-box {
    display: block;
    margin-bottom: 25px !important;
    padding: 10px 20px;
    text-align: center;
    background: #6959A1;
    color: var(--w);
    border-radius: 0px;
}

strong a {
    font-weight: bold;
}

.info-item1 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 2%;
}

.info-item1 .list-item {
    width: 32%;
    margin-bottom: 25px;
    border: 3px solid #C8C5DF;
    padding: 20px 20px 5px;
}

.info-item1.info-style2 .list-item {
    border: 3px solid;
    border-image: linear-gradient(to bottom, #C8C5DF, #B0C6E1 74%, #B0C6E1 83%, #CAD9EB 100%);
    border-image-slice: 3;
}

.info-item2 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0px;
}


.info-item2 .list-item {
    width: 50%;
    padding-right: 160px;
    position: relative
}

.info-item2 .list-item:nth-child(2n) {
    padding-left: 160px;
    padding-right: 0px;
}

.info-item2 .list-item:nth-child(1):before {
    content: '';
    width: 280px;
    padding-bottom: 280px;
    position: absolute;
    left: calc(100% - 140px);
    bottom: -140px;
    background: url(../images/1-4-5-angelman-syndrome-as-5.jpg) no-repeat center center/contain;
}

.info-item2 .list-item.pic-6:nth-child(1):before {
    content: '';
    width: 280px;
    padding-bottom: 280px;
    position: absolute;
    left: calc(100% - 140px);
    bottom: -140px;
    background: url(../images/1-4-5-angelman-syndrome-as-6.jpg) no-repeat center center/contain;
}

.info-item2 .list-item.pic-7:nth-child(1):before {
    content: '';
    width: 280px;
    padding-bottom: 280px;
    position: absolute;
    left: calc(100% - 140px);
    bottom: -140px;
    background: url(../img/2-1-3-4-chronic-lymphocytic-leukemia-cll-2.png) no-repeat center center/contain;
}

.info-item2 .list-item.pic-8:nth-child(1):before {
    content: '';
    width: 280px;
    padding-bottom: 280px;
    position: absolute;
    left: calc(100% - 140px);
    bottom: -140px;
    background: url(../img/2-1-3-7-extranodal-nk-t-cell-lymphoma-enktcl-4.png) no-repeat center center/contain;
}

.services-container .info-item3 {
    padding-bottom: 5px !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.3;
    min-height: 48px;
}

.services-container .info-item3 img {
    margin-right: 22px;
    height: 50px;
    width: 50px;
    padding: 5px;
    background: #e0dde9;
    border: 2px dashed var(--m);
    border-radius: 50px;
}

.info-item4 {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
}

.info-item4 .list-item {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.info-item4 .list-item .pic {
    width: 70px;
    height: auto;
}

.info-item4 .list-item .pic:before {
    content: '';
    width: 8px;
    height: 30px;
    background: url(../images/arrow2.png) no-repeat center center/contain;
    position: absolute;
    left: 31px;
    bottom: -27px;
}

.info-item4 .list-item:last-child .pic:before {
    content: none;
}

.info-item4 .list-item .pic img {
    width: 100%;
    height: auto;
}

.info-item4 .list-item .text {
    width: calc(100% - 100px);
}

.info-item4 .list-item .text p:last-child {
    padding-bottom: 0px;
}

.info-item4 .list-item .text ul:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.info-item5 {
    width: 800px;
    height: auto;
    max-width: 100%;
    margin: auto;
    margin-bottom: 25px;
}

.info-item5 .pic {
    width: 100%;
    height: auto;
}

.info-item5 .pic img {
    width: 100%;
    height: auto;
}

.info-item5 .style1 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.info-item5 .style1 p {
    width: 200px;
    padding-bottom: 5px;
    text-align: center;
}

.info-item5 .style1 p:nth-child(2) {
    margin-right: 3%;
    margin-left: 18%;
    position: relative;
    top: 28px;
}

.info-item5 .style2 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.info-item5 .style2 p {
    width: 220px;
    padding-bottom: 0px;
    padding-top: 5px;
    text-align: center;
}

.info-item5 .style2 p:nth-child(1) {
    margin-left: 5%;
    margin-right: 18%;
    position: relative;
    top: -25px;
}


.info-item6 {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
}

.info-item6 .list-item {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    ;
}

.info-item6 .list-item .pic {
    width: 150px;
    height: 100px;
}

.info-item6 .list-item .pic:before {
    content: '';
    width: 11px;
    height: 28px;
    background: url(../images/arrow3.png) no-repeat center center/contain;
    position: absolute;
    left: 70px;
    bottom: -25px;
}

.info-item6 .list-item:last-child .pic:before {
    content: none;
}

.info-item6 .list-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-item6 .list-item .pic img.contain {
    object-fit: contain;
}

.info-item6 .list-item .text {
    width: calc(100% - 180px);
}

.info-item6 .list-item .text p:last-child {
    padding-bottom: 0px;
}

.info-item6 .list-item .text ul:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.info-item7 {
    width: 100%;
    height: auto;
}

.info-item7 .list-item {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    padding: 20px 20px 20px;
    border: 1px dashed #6959A1;
    border-radius: 20px;
}

.info-item7 .list-item .info-pic-left {
    margin-bottom: 0px;
}

.info-item7 .list-item .info-pic-right {
    margin-bottom: 0px;
}

.info-item7 .list-item .info-item3 {
    padding-bottom: 5px !important;
    margin-bottom: 20px !important;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.3;
    min-height: 48px;
    margin-right:15px;
}

.info-item6.style2 .list-item .pic:before {
    width: 10px;
    height: 20px;
    top: calc(100% + 4px);
}

.info-item8 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-item8 .list-item {
    width: 49%;
    margin-bottom: 25px;
    padding: 25px 20px 10px;
    border: 1px dashed #6959A1;
    border-radius: 30px;
}

.info-item8 .list-item .style1 {
    width: 350px;
    max-width: 100%;
    margin: auto;
    padding: 5px 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #f2efff;
    text-align: center;
    border-bottom: 3px solid #999999;
    line-height: 1.4;
    margin-bottom: 15px;
}

.info-item8 .list-item .style2 {
    text-align: center;
}

.info-item8.info-style2 {
    justify-content: flex-start;
    column-gap: 2%;
}

.info-item8.info-style2 .list-item {
    width: 32%;
}

.info-item9 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.info-item9 .list-item {
    width: 50%;
    padding-right: 170px;
    position: relative
}

.info-item9 .list-item p {
    font-size: 15px;
    line-height: 24px;
}

.info-item9 .list-item:nth-child(2n) {
    padding-left: 170px;
    padding-right: 0px;
}

.info-item9 .list-item:nth-child(1):before {
    content: '';
    width: 300px;
    padding-bottom: 300px;
    position: absolute;
    left: calc(100% - 150px);
    bottom: -150px;
    background-image: url(../img/1-1-1-4-ivd-reagent-kit-optimization-service-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.info-item10 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 0%;
}

.info-item10 .list-item {
    width: 49%;
    margin-bottom: 25px;
    border: 3px solid #C8C5DF;
    padding: 20px 20px 5px;
}

.info-item11 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 25px;
}

.info-item11 .list-item {
    width: calc(33.33% - 16.66px);
    margin-bottom: 25px;
    border: 2px dashed #ccc;
    padding: 16px 15px 1px;
    position: relative;
}

.info-item11 .list-item .info-pic-left {
    margin-bottom: 10px;
}

.info-item11 .list-item .info-pic-left .pic {
    margin-right: 12px;
}

.info-item11 .list-item .info-pic-left p {
    line-height: 1.3;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.info-item11 .list-item:after {
    content: '';
    width: 25px;
    height: 35px;
    position: absolute;
    left: calc(100% + 2px);
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/arrow4.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.info-item11 .list-item:nth-child(3):after {
    width: 35px;
    height: 25px;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/arrow5.png);
}

.info-item11 .list-item:nth-child(5):after {
    left: auto;
    right: calc(100% + 2px);
    background-image: url(../images/arrow6.png);
}

.info-item11 .list-item:nth-child(6):after {
    left: auto;
    right: calc(100% + 2px);
    background-image: url(../images/arrow6.png);
}

.info-item11 .list-item:nth-child(4):after {
    content: none;
}

.info-item12 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.info-item12 .list-item {
    width: 50%;
    padding-right: 140px;
    position: relative
}

.info-item12 .list-item p {
    font-size: 15px;
    line-height: 24px;
}

.info-item12 .list-item:nth-child(2n) {
    padding-left: 140px;
    padding-right: 0px;
}

.info-item12 .list-item:nth-child(1):before {
    content: '';
    width: 240px;
    padding-bottom: 240px;
    position: absolute;
    left: calc(100% - 120px);
    bottom: -120px;
    background-image: url(../img/1-1-1-ivd-reagent-kit-development-service-icon1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.info-item13 {
    width: 800px;
    max-width: 100%;
    margin: auto;
    position: relative;
    margin-bottom: 15px;
}

.info-item13 .pic {
    width: 100%;
    margin: auto;
}

.info-item13 .pic img {
    width: 100%;
    height: auto;
}

.info-item13 .text {
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: -20px;
}

.info-item13 .text p {
    width: 19%;
    text-align: center;
    line-height: 1.3;
}

.info-item13 .text p a {
    line-height: inherit;
}

.info-item13 .text p:nth-child(1) {
    width: 20%;
    margin-left: 3%;
}

.info-item13 .text p:nth-child(2) {
    position: relative;
    top: -100px;
}

.info-item13 .text p:nth-child(4) {
    margin-right: 3%;
    position: relative;
    top: -100px;
}

.info-item14 {
    width: 800px;
    height: auto;
    max-width: 100%;
    margin: auto;
    margin-bottom: 25px;
}

.info-item14 .pic {
    width: 100%;
    height: auto;
}

.info-item14 .pic img {
    width: 100%;
    height: auto;
}

.info-item14 .style1 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.info-item14 .style1 p {
    width: 200px;
    padding-bottom: 5px;
    line-height: 1.3;
    text-align: center;
}

.info-item14 .style1 p a {
    line-height: inherit;
}

.info-item14 .style1 p:nth-child(2) {
    margin-right: -3%;
    margin-left: 20%;
    position: relative;
    top: 28px;
}

.info-item14 .style2 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.info-item14 .style2 p {
    width: 220px;
    padding-bottom: 0px;
    padding-top: 5px;
    text-align: center;
    line-height: 1.3;
}

.info-item14 .style2 p a {
    line-height: inherit;
}

.info-item14 .style2 p:nth-child(1) {
    margin-left: 8%;
    margin-right: 21%;
    position: relative;
    top: -25px;
}

.info-item15 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    column-gap: 2%;
    flex-wrap: wrap;
}

.info-item15 .list-item {
    width: 32%;
    margin-bottom: 25px;
    padding: 0px 20px 10px;
    background: #f2efff;
    border-radius: 20px;
    margin-top: 30px;
}

.info-item15 .list-item .style1 {
    width: 80%;
    max-width: 100%;
    margin-left: 10%;
    margin-top: -30px;
    padding: 5px 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #6959a1;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
    border-radius: 10px;
    color: var(--w);
}

.info-item15 .list-item .style1 a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.info-item16 {
    width: 800px;
    height: auto;
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-item16 .list-item {
    width: 47%;
    margin-bottom: 25px;
    padding: 25px 25px 10px;
    background: linear-gradient(to bottom, #c8c5df, #f9f7fa);
}

.info-item16 .list-item .pic {
    width: 100%;
    padding-bottom: 68%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.info-item16 .list-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}

.info-item16 .list-item:hover .pic img {
    transform: scale(1.1);
}

.info-item16 .list-item .pic p {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 8px 10px;
    text-align: left;
    color: var(--w);
    font-weight: bold;
    background: rgba(116, 75, 177, .38);
	margin-bottom: 0;
}

.info-item16 .list-item .pic p a {
    color: var(--w);
}

.info-item16 .list-item .pic p a:hover {
    color: #e8e1ff;
}

.info-item17 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 0%;
}

.info-item17 .list-item {
    width: 32%;
    margin-bottom: 25px;
    border: 3px solid var(--w);
    background: #f2efff;
    padding: 20px 20px 5px;
    border-radius: 8px;
    box-shadow: 4px 4px 4px rgba(105, 90, 162, .4);
}

.info-item17.style2 .list-item {
    background: linear-gradient(180deg, #ffffff, #f2efff);
    box-shadow: 0px 0px 4px rgba(105, 90, 162, .4)
}

.info-item18 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-item18 .list-item {
    width: 49%;
    margin-bottom: 20px;
    border: 2px dashed rgb(135 135 135);
    padding: 20px 20px 5px;
}

.info-item18 .list-item .info-item3 {
    border-bottom: none;
    margin-bottom: 10px !important;
    justify-content: center;
}

.info-item19 {
    width: 100%;
    height: auto;
}

.info-item19 .list-item {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.info-item19 .list-item .list-title {
    width: 220px;
    height: auto;
    padding: 15px 20px;
    background: #f2efff;
    position: relative;
    z-index: 2;
    border-radius: 200px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item19 .list-item .list-title p {
    padding-bottom: 0px;
    line-height: 1.3;
    text-align: center
}

.info-item19 .list-item .list-text {
    width: calc(100% - 170px);
    margin-left: -50px;
    background: rgba(220, 230, 242, .3);
    border-radius: 200px;
    padding: 20px 30px 5px 80px;
}

.info-item20 .show-center {
    position: relative;
}

.info-item20 .show-center:after {
    content: '';
    width: 40px;
    height: 20px;
    background: url(../images/arrow7.png) no-repeat center center/contain;
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
}

.info-item20>div:last-child .show-center:after {
    content: none;
}
.row:has(.info-item21){
	margin-bottom: 20px;
}
.info-item21 {
    width: 600px;
    max-width: 100%;
    box-shadow: 7px 7px 7px rgba(79, 129, 189, .1);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #f2efff;
	height:100%;
	margin-bottom:20px
}

.info-item21 .pic {
    width: 25%;
    position: relative;
}

.info-item21 .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}

.info-item21 .text {
    width: 75%;
    padding: 25px 30px 10px;
}

.info-item21 .text .style1 {
    padding-top: 14px;
    position: relative;
}

.info-item21 .text .style1:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 30px;
    height: 4px;
    background: #6959A1;
}

.info-item22 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-item22 .list-item {
    width: 49%;
    margin-bottom: 35px;
    padding: 0px 20px 10px;
    border: 1px solid #BFBFBF;
    border-radius: 20px;
    margin-top: 35px;
}

.info-item22 .list-item .style1 {
    width: 80%;
    max-width: 100%;
    margin-left: 10%;
    margin-top: -30px;
    padding: 5px 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #f2efff;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
    border-radius: 10px;
    color: var(--b);
}

.info-item22 .list-item .style1 a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.info-item23 {
    width: 800px;
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px
}

.info-item23 .pic {
    width: 100%;
    height: auto;
}

.info-item23 .pic img {
    width: 100%;
    height: auto;
}

.info-item23 .list-item {
    position: absolute;
    width: 46%;
    left: 0px;
    top: 35px;
    padding: 0px 20px;
}

.info-item23 .list-item:nth-child(2) {
    left: 54%;
}

.info-item23 .list-item p {
    color: var(--w);
    font-size: 15px;
    line-height: 24px;
    padding-bottom: 0px;
}

.info-item23 .list-item .style1 {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
}

.info-item23 .list-item .style2 {
    color: var(--b);
}

.info-item24 {
    width: 100%;
    height: auto;
}

.info-item24 .list-item {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.info-item24 .list-item:before {
    content: '';
    width: 10px;
    height: 40px;
    background: url(../images/arrow8.png) no-repeat center center/contain;
    position: absolute;
    left: 75px;
    bottom: -35px;
}

.info-item24 .list-item:last-child:before {
    content: none;
}

.info-item24 .list-item .pic {
    width: 150px;
    flex-shrink: 0;
}

.info-item24 .list-item .pic img {
    width: 100%;
    height: auto;
}

.info-item24 .list-item .text {
    width: calc(100% - 180px);
}

.info-item24 .list-item .text p {
    padding-bottom: 10px;
}

.info-item24 .list-item .text p:last-child {
    padding-bottom: 0px;
}

.info-item25 {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    padding: 20px 20px 20px;
    border: 1px dashed #6959A1;
    border-radius: 20px;
}

.info-item25 .info-pic-left {
    margin-bottom: 0px;
}

.info-item25 .info-pic-right {
    margin-bottom: 0px;
}

.info-item25 .text {
    padding-left: 50px;
}

.info-item26 {
    border: #6a5aa1 solid 1px;
    border-radius: 4px;
    margin-bottom: 25px;
    position: relative;
    padding-top: 40px;
    margin-top: 60px;
}

.info-item26 .it-img {
    width: 80px;
    height: 80px;
    background: #6a5aa1;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: absolute;
    top: -40px;
    left: calc(50% - 40px);
}

.info-item26 .it-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-item26 .content {
    margin: 0;
    padding: 15px 15px 0 15px;
}

.info-item26 .title {
    margin: 0;
    padding: 15px;
    text-align: center;
    color: var(--w);
    background: #6a5aa1;
    margin-top: 15px;
}

.triangle {
    position: relative;
}

.triangle::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 10px solid #6a5aa1;
    position: absolute;
    top: -9px;
    left: calc(50% - 14px);
}

.info-item27 {
    width: 100%;
    position: relative;
}

.info-item27 .it-img {
    position: absolute;
    z-index: 9;
}

.info-item27 .line {
    position: relative;
    height: 43px;
    display: block;
    margin-bottom: 10px;
}

.info-item27 .line::before {
    content: "";
    width: calc(100% + 15px);
    position: absolute;
    border-bottom: #6650b6 dotted 2px;
    height: 1px;
    top: 100%;
}
.info-item28 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 0%;
}

.info-item28 .list-item {
    width: 49%;
    margin-bottom: 25px;
    border: 1px solid #c8c2dd;
    background: linear-gradient(180deg, var(--w)fff, #f2efff);
    padding: 20px 20px 5px;
    border-radius: 8px;
}

.info-item28.style2 .list-item {
    width: 30%;
}

.info-item29 .it-img {
    width: 80px;
    height: 80px;
    background: #6a5aa1;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.info-item30-box{
	width: 100%;
	padding-top: 10px;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
}
.info-item30{
	width: auto;
	max-width: 100%;
	margin: 0px auto 0px;
	padding-left: 10px;
	position: relative;
	padding: 5px 0px;
}
.info-item30:before{
	content: '';
	width: 3px;
	height: 100%;
	background: linear-gradient(to bottom,#6959A1,#6959A1 70%,#f7fafd);
	position: absolute;
	left: 0px;
	top: 0px;
}
.info-item30 .list-item{
	width: 100%;
	height: auto;
	margin: 30px 0px;
	padding-left: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.info-item30 .list-item .pic{
	width: 60px;
	height: 60px;
	background: #6959A1;
	border-radius: 50%;
	padding: 11px;
	flex-shrink: 0;
	margin-right: 40px;
	position: relative;
}
.info-item30 .list-item .pic:before{
	content: '';
	width: 12px;
	height: 12px;
	background: #6959A1;
	border-radius: 50%;
	position: absolute;
	left: -44px;
	top: 50%;
	transform: translateY(-50%);
}
.info-item30 .list-item .pic img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.info-item30 .list-item .text{
	width: calc(100% - 100px);
}
.info-item30 .list-item .text ul:last-child{
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.info-item30 .list-item .text p:last-child{
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.info-item31 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info-item31 .list-item {
    width: 49%;
    margin-bottom: 25px;
    padding: 25px 20px 10px;
    border: 1px solid #95B3D7;
    border-radius: 30px;
    background: linear-gradient(to bottom,#F6F9FC,#F6F9FC,#f2efff);
}
.info-item31 .list-item p{
	text-align: center;
}
.info-item31 .list-item .style1{
	font-weight: bold;
	font-size: 18px;
}
.info-item31.info-style2{
	justify-content: flex-start;
	column-gap: 2%;
}
.info-item31.info-style2 .list-item{
	width: 31%;
	padding: 25px 10px 10px;
}

.info-item32{
	width: 100%;
	height: auto;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.info-item32 .pic{
	width: 160px;
	height: 160px;
	background: linear-gradient(135deg,#C8C5DF 9%,#6959a1 62%);
	border-radius: 50%;
	padding: 12px;
}
.info-item32 .pic-box{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}
.info-item32 .pic-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.info-item32 .text{
	width: calc(100% - 180px);
}
.info-item32 .text .list-item{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
	position: relative;
}
.info-item32 .text .list-item:before{
	content: '';
	width: 1px;
	height: calc(50% + 50px);
	background: #6959a1;
	position: absolute;
	left: 35px;
	top: 50%;
}
.info-item32 .text .list-item:after{
	content: '';
	width: 1px;
	height: calc(50% + 10px);
	background: #6959a1;
	position: absolute;
	left: 35px;
	top: 0%;
}
.info-item32 .text .list-item:first-child:after{
	content: none;
}
.info-item32 .text .list-item:last-child:before{
	content: none;
}
.info-item32 .text .list-item:last-child{
	margin-bottom: 0px;
}
.info-item32 .text .list-item .icon{
	width: 70px;
	height: 70px;
	background: linear-gradient(to bottom,#C8C5DF 9%,#6959a1 62%);
	border-radius: 50%;
	padding: 12px;
	position: relative;
	z-index: 2;
	margin-right: 20px;
}
.info-item32 .text .list-item .icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.info-item32 .text .list-item .text-info{
	width: 100%;
	border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(0,0,0,.2);
	padding: 10px 20px 10px 20px;
	border-left: 4px solid #6959a1;
}
.info-item33{
	width: 100%;
	height: auto;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.info-item33 .pic{
	width: 140px;
	height: 140px;
	background: linear-gradient(135deg,#C8C5DF 9%,#6959a1 62%);
	border-radius: 50%;
	padding: 10px;
}
.info-item33 .pic-box{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}
.info-item33 .pic-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.info-item33 .text{
	width: calc(100% - 180px);
	border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(0,0,0,.2);
	padding: 20px 20px 5px;
	border-left: 4px solid #6959a1;
}

.info-item34 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info-item34 .list-item {
    width: 49%;
    margin-bottom: 25px;
    padding: 0px 15px 10px;
    background: #f2efff;
    border: 2px solid #6959a1;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0px 0px 8px rgb(12,150,217,.12);
    position: relative;
}
.info-item34 .list-item .style1 {
    width: 80%;
    max-width: 100%;
    margin-left: 10%;
    margin-top: -25px;
    padding: 5px 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #6959a1;
    box-shadow: 0px 0px 8px rgb(105,90,162,.6);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
    border-radius: 10px;
    color: #fff;
}
.info-item34 .list-item .style1 a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}
.info-item34 .list-item .text{
    width: 100%;
    padding-right: 60px;
}
.info-item34 .list-item .pic{
    width: 40px;
    height: 40px;
    position: absolute;
    right: 15px;
    bottom: 20px;
}
.info-item34 .list-item .pic img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.info-item35 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 3.5%;
}
.info-item35 .list-item {
    width: 31%;
    margin-bottom: 25px;
    border: 1px solid #fff;
    background: linear-gradient(180deg, #ffffff, #c8c5df);
    box-shadow: 5px 5px 5px #c6c1dc;
    padding: 20px 20px 5px;
    border-radius: 12px;
}
.info-item35 .list-item .style1{
    text-align: center;
    font-weight: bold;
}
.info-item35 .list-item .style1 a{
    font-weight: bold;
}
.info-item35 .list-item .style2{
    text-align: center;
}
.info-item36{
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.info-item36 .text{
    width: 48%;
    padding: 20px 20px 5px;
    background: #f2efff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.info-item36 .pic{
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.info-item36 .pic img{
    max-width: 100%;
}
.info-item36 .pic p{
    margin-bottom: 0px !important;
}
.info-item37 {
    width: 100%;
    max-width: 100%;
    margin: 0px auto 25px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #f2efff;
}
.info-item37 .pic {
    width: 150px;
    position: relative;
}
.info-item37 .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}
.info-item37 .text {
    width: calc(100% - 150px);
    padding: 25px 30px 10px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.info-item38{
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #f2f2f2;
}
.info-item38 .pic {
    width: 40%;
    position: relative;
}
.info-item38 .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .5s;
}
.info-item38 .text {
    width: 60%;
    padding: 25px 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info-item39{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info-item39 .list-item{
    width: 40%;
    margin-bottom: 25px;
    border: 2px dashed #6959a1;
    padding: 20px 15px 5px;
    position: relative;
}
.info-item39 .list-item:nth-child(1) .pic{
    width: 50%;
    position: absolute;
    left: 100%;
    top: calc(100% + 12px);
    transform: translateY(-50%);
    padding: 0px 20px;
}
.info-item39 .list-item:nth-child(1) .pic img{
    width: 100%;
    height: auto;
}
.info-item40{
    padding-bottom: 8px !important;
    margin-bottom: 15px !important;
    position: relative;
}
.info-item40:after{
    content: '';
    width: 75px;
    height: 4px;
    background: #6959a1;
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.info-item41{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info-item41 .list-item{
    width: 47%;
    margin-bottom: 35px;
    margin-top: 40px;
    border: 2px solid #C8C5DF;
    padding: 30px 30px 15px;
    position: relative;
    background: #fff;
    border-radius: 20px;
}
.info-item41 .list-item:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to right,#A49DC8,#A49DC8 50%,#f2efff);
    border-radius: 20px;
    left: 0px;
    bottom: 10px;
    z-index: -1;
    transform: rotate(8deg);
}
.info-item41 .list-item .info-pic-left{
    margin-bottom: 10px;
}
.info-item41 .list-item .info-pic-left .pic{
    margin-right: 10px;
}
.info-item42{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info-item42 .list-item{
    width: 49%;
    margin-bottom: 25px;
    padding: 30px 30px 15px;
    background: #f2efff;
    border-radius: 20px;
}
.info-item43{
	width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: 2px 0px 5px #c6c1dc;
}
.info-item43 .pic{
	width: 26%;
	overflow: hidden;
	position: relative;
}
.info-item43 .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: all .5s;
}
.info-item43:hover .pic img{
	transform: scale(1.1); 
}
.info-item43 .text{
	width: 74%;
	border: 1px solid #fff;
    background: linear-gradient(148deg, #fefdff, #e0daf1);
    padding: 20px 20px 5px;
}
.info-item44{
	width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 20px;
}
.info-item44 .pic{
	width: 22%;
	overflow: hidden;
	position: relative;
}
.info-item44 .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: all .5s;
}
.info-item44:hover .pic img{
	transform: scale(1.1); 
}
.info-item44 .text{
	width: 78%;
    background: #eeeeee;
    padding: 20px 20px 5px;
}
.info-item44 .text .desc{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 15px;
}
.info-item45{
	width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 20px;
}
.info-item45 .pic{
	width: 22%;
	overflow: hidden;
	position: relative;
}
.info-item45 .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: all .5s;
}
.info-item45:hover .pic img{
	transform: scale(1.1); 
}
.info-item45 .text{
	width: 78%;
    background: #f5f2ff;
    padding: 20px 20px 5px;
}
.info-item45 .text .desc{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 15px;
}
.new-info-item1{
    display: flex;
    align-items: center;
    background: linear-gradient(294deg, #6959a19c, transparent);
    padding: 0;
}
.new-info-item1 p{
    padding-left:10px;
    font-size: 15px !important;
	margin-bottom: 0 !important;
}
.new-info-item2{
    width: 100%;
    height: auto;
    padding: 20px 20px 5px;
    border: 2px dashed #b4b4b4;
    margin-bottom: 25px;
    border-radius: 20px;
}
.new-info-item2 .info-pic-left{
    margin-bottom: 15px;
}
.new-info-item2 .info-pic-left .text .title-style1{
    margin-bottom: 0;
    display: inline-block;
    background: #f6f5fb;
    padding: 10px;
    border-radius: 8px;
}
.new-info-item2 .info-pic-right{
    margin-bottom: 15px;
}
.fc-color-primary {
    color: #6959a1
}
.services-container .case-title {
    position: relative;
    padding-left: 30px
}
.services-container .case-title::after,.case-title::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 16px;
    background-color: #6959a1;
    transform: translateY(-50%) skewX(-20deg)
}
.services-container .case-title::before {
    left: 0
}
.services-container .case-title::after {
    left: 12px
}
.services-container .info-box1{
	width: 100%;
	height: auto;
	border: 1px dashed #6959a1;
	padding: 16px 16px 1px;
	margin-bottom: 20px;
	border-radius: 10px;
}
.services-container .info-box1 .info-pic-left,.services-container .info-box1 .info-pic-right{
	margin-bottom: 15px;
}




@media screen and (min-width:2000px){

.maincon{
	padding: 0px 240px;
}	
}

@media screen and (max-width:1580px) {
    .info-item25 .text {
        padding-left: 0px;
    }
    .info-item19 .list-item .list-text {
        border-radius: 40px;
    }
    .mainsection4-info .pic {
        width: 550px;
    }
    .mainsection4-info .text {
        width: calc(100% - 600px);
    }
    .about-section5-list .list-item {
        padding: 0px 10px;
    }
    .about-section5-title .title-item {
        padding: 0px 10px 30px;
    }
    .about-section5-title .title-item img {
        width: 75px;
        height: 75px;
        margin-right: 10px;
    }
    .about-section5-title .title-item p {
        font-size: 18px;
    }
    .titles {
        font-size: 30px;
    }
    .logos img {
        height: 45px;
    }
    .maincon {
        padding: 0px 9%;
    }
}

@media screen and (max-width:1400px) {


    .info-item35 {
        column-gap: 2%;
    }
    .info-item35 .list-item {
        width: 32%;
    }
    .mainsection10-list .list-item {
        width: 24%;
    }
    .mainsection10-list .list-item .text p {
        padding: 20px 10px;
    }
    .pro-detail-section1 .text {
        width: calc(100% - 580px);
    }
    .pro-detail-section1 .pic {
        width: 500px;
        height: 340px;
    }
    .product-search {
        width: 350px;
    }
    .rightcon {
        width: calc(100% - 330px);
    }
    .leftnav {
        width: 300px;
    }
    .pagetitle .pagetitle-info {
        font-size: 26px;
    }
    .by-services-banner .swiper-slide .pagebanner-title {
        font-size: 35px;
    }
    .contact-section1-info .maps {
        width: calc(100% - 500px);
    }
    .about-section4 .about-section-title {
        font-size: 25px;
    }
    .page-info-title {
        font-size: 26px;
    }
    .pagebanner .pagebanner-title {
        font-size: 35px;
    }
    .mainsection1-info .pic-list .lists .list-item img {
        height: 45px;
    }
    .mainsection1-info .pic-list .list-title {
        margin-bottom: 15px;
    }
    .mainsection1-info .pic {
        width: 51%;
    }
    .titles {
        font-size: 25px;
    }
    .navs>ul>li {
        margin-left: 50px;
    }
    .maincon {
        padding: 0px 5%;
    }
}


@media screen and (min-width:1200px){

    .navs {
        position: static;
    }
    .navs>ul>li.spread-nav {
        position: static;
    }
    .navs>ul>li.spread-nav:after {
        content: none;
    }
    .navs>ul>li.spread-nav>ul {
        width: 1600px;
        max-width: 100%;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        padding: 20px 20px !important;
        box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
        flex-wrap: wrap;
        align-items: stretch;
    }
    .navs>ul>li.spread-nav>ul::-webkit-scrollbar {
        width: 5px;
        background: #1e1e1e;
    }
    .navs>ul>li.spread-nav>ul::-webkit-scrollbar-thumb {
        border-radius: 0px;
        -webkit-box-shadow: inset 0 0 0px #ab7525;
        background: #6959A1;
        width: 5px;
        height: 5px;
    }
    .navs>ul>li.spread-nav>ul::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 0px #1e1e1e;
        border-radius: 0px;
        background: #fff;
    }
    .navs>ul>li.spread-nav>ul .navbox-level1 {
        width: 340px;
    }
    .navs>ul>li.spread-nav>ul .navbox-level1>li {
        float: none;
        border-bottom: none;
        padding: 10px 10px;
        position: relative;
    }
    .navs>ul>li.spread-nav>ul .navbox-level1>li>a {
        color: #000;
        font-size: 16px;
    }
    .navs>ul>li.spread-nav>ul .navbox-level1>li.act {
        background: #F4F8FD;
    }
    .navs>ul>li.spread-nav>ul .navbox-level1>li.act>a {
        color: #6959A1;
    }
    .navs>ul>li.spread-nav>ul .navbox-level1>li>span:before {
        content: "\e91d";
        font-family: 'icomoon';
        font-weight: normal;
    }
    .navs>ul>li.spread-nav>ul .navbox-level1>li.act>span:before {
        color: #6959A1;
    }
    .navs>ul>li.spread-nav>ul .navbox-level1>li:after {
        content: '';
        width: 3px;
        height: 0px;
        background: #6959A1;
        position: absolute;
        right: -2px;
        top: 50%;
        transform: translateY(-50%);
        transition: all .5s;
    }
    .navs>ul>li.spread-nav>ul .navbox-level1>li.act:after {
        height: 100%;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2 {
        width: calc(100% - 340px);
        border-left: 1px solid #d2d7da;
        padding-left: 40px;
        display: block;
        min-height: auto;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li {
        display: none;
        float: none;
        border-bottom: none;
        padding: 0px 0px;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li.shows {
        display: block;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2 ul {
        display: block;
        position: static;
        box-shadow: none;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li {
        width: 49%;
        float: none;
        border-bottom: none;
        padding: 0px 0px;
        margin-bottom: 15px;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>a {
        color: #6959A1;
        font-size: 17px;
        /*font-weight: bold !important;*/
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>a:hover {
        color: #8466ed;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li a {
        font-weight: normal;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2 a:hover {
        color: #8466ed;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>span {
        display: none;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul {
        padding-left: 10px;
        padding-top: 5px;
        padding-right: 15px;
        display: none;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li {
        padding: 3px 0px;
        border-bottom: none;
        float: none;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>span:before {
        content: none;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>ul>li>span {
        right: 0px !important;
        border-top: 5px solid;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        color: #888;
        top: 13px;
        transform: none;
        width: auto;
        height: auto;
        /*position: absolute;*/
        margin-bottom: 2px;
        line-height: 5px;
        height: 5px;
        display: inline-block;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>ul>li>span:before {
        content: none;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>a {
        font-size: 15px;
        color: #000;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul::-webkit-scrollbar {
        width: 3px;
        border-radius: 10px;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #6959A1;
        width: 3px;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px #dedede;
        border-radius: 10px;
        background: #fff;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>ul {
        position: static;
        left: auto;
        top: auto;
        padding: 5px 0px;
        box-shadow: none;
        width: 100%;
        border: none;
        padding-left: 0px;
        margin-left: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        display: block !important;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>ul>li {
        float: none;
        padding: 0px;
        border-bottom: none;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>ul>li>a {
        font-size: 15px;
        padding: 5px 10px;
        color: #999;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>ul>li>ul {
        position: absolute;
        left: 20px;
        top: calc(100% - 3px);
        background: #fff;
        padding: 10px 15px;
        width: 95%;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .3);
        z-index: 2;
        display: none;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>ul>li>ul li {
        padding: 4px 0px;
        border-bottom: none;
    }
    .navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li>ul>li>ul li a {
        font-size: 15px;
        color: #999;
    }




}


@media screen and (max-width:1200px) {
    .mainsection6-list .list-item {
        width: calc(50% - 20px);
    }
    .mainsection6-list .list-pic {
        width: calc(50% - 20px);
    }
    .foot-nav {
        min-width: auto;
    }
    .mainsection4-info .pic1 {
        padding-bottom: 400px
    }
    .mainsection4-info .pic {
        width: 500px;
    }
    .mainsection4-info .text {
        width: 100%;
        margin-bottom: 25px;
    }
    .mainsection4-info {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .pro-detail-section2 .pro-detail-section2-list .list-item .list-title {
        font-size: 20px;
    }
    .pro-detail-section2 .pro-detail-section2-list {
        padding: 10px 0px;
    }
    .pro-detail-section2 .pro-detail-section2-title span {
        font-size: 16px;
    }
    .pro-detail-section1 .text {
        width: calc(100% - 500px);
    }
    .pro-detail-section1 .pic {
        width: 450px;
        height: 320px;
    }
    .push {
        margin-top: 65px;
    }
    .rightcon {
        width: 100%;
        margin-bottom: 30px;
    }
    .leftnav {
        width: 100%;
    }
    .contact-section2-info .contact-forms {
        width: calc(100% - 460px);
    }
    .contact-section2-info .pic {
        width: 420px;
    }
    .contact-section1-info .maps {
        width: calc(100% - 420px);
    }
    .contact-section1-info .text {
        width: 400px;
    }
    .about-section4 .about-section-title {
        font-size: 22px;
    }
    .about-section1-list .list-item .pic {
        width: 48%;
        height: 360px;
    }
    .about-section1-list .list-item .text {
        width: 48%;
    }
    .page-info-title:before {
        width: 60px;
        height: 2px;
    }
    .page-info-title {
        font-size: 22px;
    }
    .by-services-banner .swiper-slide .pagebanner-title {
        font-size: 30px;
    }
    .pagebanner .pagebanner-title {
        font-size: 30px;
    }
    .mainsection3-info .pic .pic-list .lists .list-item span {
        font-size: 16px;
    }
    .mainsection3-info .pic .pic-list .lists .list-item p {
        font-size: 17px;
    }
    .mainsection2-list {
        justify-content: space-between;
        column-gap: 0%;
    }
    .mainsection2-list .list-item {
        width: 48%;
    }
    .mainsection2-list .list-item2 {
        width: 48%;
    }
    .mainsection1-info .pic1 {
        padding-bottom: 0px;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
    }
    .mainsection1-info .pic-list {
        position: relative;
        height: auto;
        padding: 40px 15px 30px;
        z-index: 2;
    }
    .mainsection1-info .pic {
        width: 500px;
    }
    .mainsection1-info .text {
        width: 100%;
        margin-bottom: 25px;
    }
    .mainsection1-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    .titles {
        font-size: 22px;
    }
    .toper {
        padding: 10px 0px;
    }
    .search-info {
        right: 5%;
    }
    .toper-content {
        position: static;
    }
    .sp_nav {
        display: block;
        margin-top: 0px;
    }
    .navs {
        width: 100%;
        height: auto;
        position: absolute;
        top: 100%;
        margin-top: 0px;
        right: 0px;
        bottom: auto;
        background: var(--b);
        padding-top: 0px;
        padding-left: 0px;
        z-index: 99;
        transition: .15s ease-in-out;
        -webkit-transition: .15s ease-in-out;
        -moz-transition: .15s ease-in-out;
        -ms-transition: .15s ease-in-out;
        -o-transition: .15s ease-in-out;
        transform: translateY(15px);
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -ms-transform: translateY(15px);
        -o-transform: translateY(15px);
        opacity: 0;
        visibility: hidden;
        max-height: calc(100vh - 120px);
        overflow: auto;
    }
    .navs a {
        font-family: 'Outfit-Regular', sans-serif;
        width: 100%;
        height: auto;
        border-bottom: 1px solid #d8d8d8;
        line-height: 50px;
        line-height: 50px;
        display: block;
        margin-left: 0px;
        z-index: 999;
        padding: 0px 20px;
        float: left;
        color: var(--w);
        font-size: 18px;
        text-align: center;
    }
    .navs.visible {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .navs>ul {
        width: 100%;
        height: auto;
    }
    .navs ul li a {
        font-size: 15px;
        line-height: 40px;
        color: var(--w) !important;
        display: inline-block;
        width: auto;
        text-align: left;
        border-bottom: none;
        padding: 0px 0px;
        font-weight: normal;
    }
    .navs ul {
        margin-top: 0px;
    }
    .navs ul li {
        width: 100%;
        height: auto;
        padding: 0px 0px 0px 15px;
        margin-bottom: 0px;
        position: relative;
        margin-left: 0px;
        line-height: 40px;
        border-bottom: 1px solid #404040;
        display: inline-block;
    }
    .navs ul li:last-child {
        margin-bottom: 0px;
    }
    .navs>ul>li:last-child {
        border-bottom: 1px solid #404040;
        margin-bottom: 0px;
    }
    .navs ul li img {
        height: 8px;
        cursor: pointer;
        transition: all 0.3s;
        line-height: 12px;
        top: 15px;
        position: absolute;
        right: 20px;
    }
    .navs ul li ul li img {
        height: 8px;
        cursor: pointer;
        transition: all 0.3s;
        line-height: 12px;
        top: 20px;
        position: absolute;
        right: 20px;
    }
    .navs ul li img.down {
        transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
    }
    .navs ul li ul {
        /*display: none;*/
        padding-left: 10px;
        overflow: hidden;
    }
    .navs ul li ul li {
        padding: 0px 0px;
    }
    .navs ul li ul li:last-child {
        border-bottom: none;
    }
    .navs ul li ul li a {
        line-height: 22px;
        padding: 10px 0px;
        font-weight: normal;
    }
    .navs>ul>li>ul {
        position: static;
        width: 100%;
        padding-left: 20px;
        background: none;
    }
    .navs ul li ul li ul {
        position: static;
    }
    .navs ul li ul li ul {
        position: static;
        width: 100%;
    }
    .navs>ul>li:hover {
        padding-bottom: 0px;
    }
    .navs>ul>li>ul>li>a {
        color: var(--w);
    }
    .navs>ul>li>ul>li>ul>li>a {
        color: var(--w);
    }
    .navs>ul>li>ul>li>ul>li>ul>li>a {
        color: var(--w);
    }
    .navs>ul>li>ul>li>ul>li>ul>li>ul>li>a {
        color: var(--w);
    }
    .navs>ul li span {
        float: right;
        margin-right: 15px;
        font-weight: bold;
        font-size: 18px;
    }
    .navs ul li span::before {
        color: var(--w);
        content: "+";
        font-weight: bold;
        font-size: 18px;
    }
    .navs ul li span.down::before {
        color: var(--w);
        content: "-";
        font-weight: bold;
    }
    .navs>ul>li:hover {
        background: none;
        border-bottom: 1px solid #404040;
    }
    .navs ul li ul li span::before {
        color: var(--w);
        content: "+";
    }
    .navs ul li ul li span.down::before {
        content: "-";
    }
    .navs ul li ul li:hover>span::before {
        color: var(--w);
    }
    .navs ul li ul li {
        border-bottom: 1px solid #404040;
    }
    .navs ul li ul li:hover {
        background: none;
        border-bottom: 1px solid #404040;
    }
    .navs>ul>li:after {
        content: none;
    }
    .navs ul li ul li ul {
        background: none;
        padding-left: 20px;
    }
    .navs ul li ul li span::before {
        top: 18px;
    }
    .navs a:hover {
        color: var(--w);
    }
    .navs>ul>li:hover>a {
        color: var(--w);
    }
    .navs ul li ul li:hover>a {
        color: var(--w);
    }
    .navs>ul>li>a {
        line-height: 22px;
        margin: 8px 0px;
        max-width: calc(100% - 40px);
    }
}

@media screen and (max-width:1000px) {



.related-services-container ul > li{
	width: 100%;
}
.foot-contact-list-box {
    flex-wrap: wrap;
}
.foot-contact-list-box .list-item {
    width: 100%;
}
    .info-item35 {
        column-gap: 0%;
        justify-content: space-between;
    }
    .info-item35 .list-item {
        width: 48%;
    }
    .info-item31.info-style2{
        justify-content: space-between;
        column-gap: 0%;
    }
    .info-item31.info-style2 .list-item{
        width: 48%;
    }
    .info-item20>div .show-center:after {
        content: none;
    }
    .mainsection9-forms .forms .row .col-lg-6 {
        width: 100%;
    }
    .info-item16 .list-item {
        width: 49%;
    }
    .info-item15 .list-item {
        width: 100%;
    }
    .mainsection10-list {
        flex-wrap: wrap;
    }
    .mainsection10-list .list-item {
        width: 48%;
    }
    .mainsection9-info {
        flex-wrap: wrap;
    }
    .mainsection9-info .mainsection9-forms {
        width: 100%;
        margin-bottom: 40px;
    }
    .mainsection9-info .mainsection9-maps {
        width: 100%;
        height: 350px;
    }
    .mainsection8-list .list-item {
        width: 48%;
    }
    .mainsection7-info {
        flex-wrap: wrap;
    }
    .mainsection7-info .mainsection7-list {
        width: 100%;
        margin-bottom: 40px;
    }
    .mainsection7-info .pic {
        width: 100%;
        height: 250px;
    }
    .mainsection7-info .pic-text h2 {
        font-size: 20px;
    }
    .mainsection6-list .list-pic .text h2 {
        font-size: 20px;
    }
    .mainsection5-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    .mainsection5-info .pic {
        width: 400px;
        max-width: 100%;
    }
    .mainsection5-info .text {
        width: 100%;
        margin-bottom: 40px;
    }
    .maintitle.icon1 .titles:before {
        width: 40px;
        height: 40px;
    }
    .info-item12 .list-item {
        width: 100%;
    }
    .info-item12 .list-item {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .info-item12 .list-item p {
        font-size: 16px;
        line-height: 28px;
    }
    .info-item12 .list-item:nth-child(1):before {
        content: none;
    }
    .info-item11 .list-item:after {
        content: none !important;
    }
    .info-item11 .list-item .info-pic-left .pic {
        margin-right: 0px;
    }
    .info-item11 {
        justify-content: space-between;
        column-gap: 0%;
    }
    .info-item11 .list-item {
        width: 49%;
    }
    .info-item9 .list-item {
        width: 100%;
    }
    .info-item9 .list-item {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .info-item9 .list-item p {
        font-size: 16px;
        line-height: 28px;
    }
    .info-item9 .list-item:nth-child(1):before {
        content: none;
    }
    .info-pic-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    .info-pic-right .pic {
        max-width: 100%;
        margin-top: 20px;
        margin-right: 0px;
        margin-left: 0px;
    }
    .info-pic-right .pic img {
        max-width: 100%;
        height: auto;
    }
    .info-pic-right .text {
        width: 100%;
    }
    .info-pic-left {
        flex-wrap: wrap;
        justify-content: center;
    }
    .info-pic-left .pic {
        max-width: 100%;
        margin-bottom: 20px;
        margin-right: 0px;
        margin-left: 0px;
    }
    .info-pic-left .pic img {
        max-width: 100%;
        height: auto;
    }
    .info-pic-left .text {
        width: 100%;
    }
    .info-item2 .list-item {
        width: 100%;
    }
    .info-item2 .list-item {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .info-item2 .list-item:nth-child(1):before {
        content: none;
    }
    .about-section5-list .list-item .style1 {
        display: block !important;
        margin-bottom: 15px;
        font-weight: bold;
        font-size: 18px;
        color: var(--b);
    }
    .about-section5-list .list-item {
        width: 100%;
        border-right: none;
        margin-bottom: 20px;
        padding: 0px 0px;
    }
    .about-section5-list .list-item:last-child {
        margin-bottom: 0px;
    }
    .about-section5-list {
        flex-wrap: wrap;
    }
    .about-section5-title {
        display: none;
    }
    .product-list-basket .input-group {
        justify-content: flex-start;
    }
    .product-list-basket table tr td {
        text-align: left !important;
    }
    .pro-detail-section1 {
        flex-wrap: wrap;
    }
    .pro-detail-section1 .text {
        width: 100%;
    }
    .pro-detail-section1 .pic {
        width: 420px;
        height: 300px;
        margin-bottom: 35px;
        max-width: 100%;
    }
    .table-detail tr:first-child th {
        padding: 15px 10px;
    }
    .table-detail tr th {
        display: block;
        width: 100% !important;
        text-align: left;
        padding: 15px 10px 5px !important;
        border: none !important;
        background: none !important;
        color: var(--b) !important;
    }
    .table-detail tbody tr {
        padding: 10px 0px 15px;
        border-bottom: 1px solid #dee2e6;
        border-top: none;
        display: block;
    }
    .table-detail tr td {
        display: block;
        border: none !important;
        width: 100% !important;
        padding: 0px 10px 5px !important;
        background: none !important;
    }
    .tablebox table tr th {
        display: none;
    }
    .tablebox table tr {
        border-bottom: 1px solid #ccc;
        padding: 20px 0px 15px;
        display: block;
        width: 100%;
    }
    .tablebox table thead {
        display: none;
    }
    .tablebox table tr:last-child {
        border-bottom: 0px solid #ccc;
    }
    .tablebox table tr td {
        display: block;
        height: auto;
        width: auto !important;
        text-align: left;
        border: 0px solid #ccc;
        padding: 0px 10px 10px !important;
        background: none !important;
    }
    .tablebox table tr td .table-inquiry {
        display: inline;
    }
    .tablebox table tr td a {
        display: inline !important;
        word-break: break-all;
    }
    .product-search-box p {
        width: 100%;
        margin-bottom: 20px;
    }
    .product-search-box {
        flex-wrap: wrap;
    }
    .product-search {
        width: 400px;
        max-width: 100%;
        margin-left: 0px;
    }
    .related-box .related-list a {
        width: 100%;
    }
    .pagetitle .to_inquiry {
        margin-left: 0px;
        margin-top: 20px;
    }
    .pagetitle {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .row.center {
        display: block;
    }
    .contact-section-title {
        font-size: 22px;
    }
    .contact-section2-info {
        flex-wrap: wrap;
    }
    .contact-section2-info .contact-forms {
        width: 100%;
    }
    .contact-section2-info .pic {
        width: 100%;
        height: 300px;
        margin-bottom: 35px;
    }
    .contact-section1-info {
        flex-wrap: wrap;
    }
    .contact-section1-info .maps {
        width: 100%;
        height: 400px;
    }
    .contact-section1-info .text {
        width: 100%;
        margin-bottom: 35px;
    }
    .about-section4 .about-section-title {
        font-size: 20px;
    }
    .about-section3 {
        background: none;
        padding-bottom: 60px;
    }
    .about-section3-list .list-item:before {
        content: none;
    }
    .about-section3-list {
        flex-wrap: wrap;
    }
    .about-section3-list .list-item {
        width: 100%;
        margin-left: 0px;
        padding-top: 0px;
        padding-bottom: 20px;
    }
    .about-section2-list .list-item:before {
        content: none;
    }
    .about-section2-list {
        flex-wrap: wrap;
    }
    .about-section2-list .list-item {
        width: 100%;
        margin-right: 0px;
        padding-bottom: 20px;
    }
    .by-services-banner .swiper-slide .pagebanner-title {
        font-size: 25px;
    }
    .pagebanner .pagebanner-title {
        font-size: 25px;
    }
    .mainsection3-info .pic {
        width: 100%;
        height: 350px;
    }
    .mainsection3-info .text {
        width: 100%;
        margin-bottom: 50px;
    }
    .mainsection3-info {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .footer .foottitle {
        display: inline-block;
    }
    .foot-contact {
        width: 100%;
    }
    .foot-nav {
        width: 100%;
        margin-top: 25px;
    }
    .foot-logo img {
        height: 50px;
    }
    .foot-logo {
        width: 100%;
    }
    .foot-info {
        flex-wrap: wrap;
    }
    .search-info {
        position: absolute;
        left: 0px;
        top: calc(100% - 2px);
        width: 100%;
        padding: 5px 15px 10px;
    }
    .toper.fixed .search-info {
        background: var(--w);
    }
    .maincon {
        padding: 0px 30px;
    }
}

@media screen and (max-width:800px) {



.info-item45{
	flex-wrap: wrap;
}
.info-item45 .pic{
	width: 100%;
	height: 200px;
}
.info-item45 .text{
	width: 100%;
    padding: 20px 15px 5px;
}
.info-item44{
	flex-wrap: wrap;
}
.info-item44 .pic{
	width: 100%;
	height: 200px;
}
.info-item44 .text{
	width: 100%;
    padding: 20px 15px 5px;
}
.info-item43{
	flex-wrap: wrap;
}
.info-item43 .pic{
	width: 100%;
	height: 200px;
}
.info-item43 .text{
	width: 100%;
    padding: 20px 15px 5px;
}
    .info-item42 .list-item{
        width: 100%;
    }
    .info-item41 .list-item{
        width: 100%;
    }
    .info-item39 .list-item{
        width: 100%;
    }
    .info-item39 .list-item:nth-child(1) .pic{
        display: none;
    }
    .info-item38{
        flex-wrap: wrap;
    }
    .info-item38 .pic {
        width: 100%;
        height: 200px;
    }
    .info-item38 .text {
        width: 100%;
    }
    .info-item36{
        flex-wrap: wrap;
    }
    .info-item36 .text{
        width: 100%;
        margin-bottom: 20px;
        padding: 20px 10px 5px;
    }
    .info-item36 .pic{
        width: 100%;
    }
    .info-item34 .list-item{
        width: 100%;
    }
    .info-item32{
        flex-wrap: wrap;
        justify-content: center;
    }
    .info-item32 .pic{
        margin-bottom: 30px;
    }
    .info-item32 .text{
        width: 100%;
    }
    .info-item27 {
        margin: 20px auto!important;
    }
    .info-item27 .it-img {
        position: unset;
        text-align: center;
    }
    .info-item27 .line::before {
        display: none;
    }
    .info-item27 .line {
        text-align: center;
    }
    .info-item24 .list-item .text {
        width: 100%;
    }
    .info-item24 .list-item .pic {
        max-width: 100%;
        margin-bottom: 25px;
    }
    .info-item24 .list-item {
        flex-wrap: wrap;
        justify-content: center;
    }
    .info-item24 .list-item:before {
        content: none;
    }
    .info-item23 .list-item p {
        color: var(--b);
        font-size: 16px !important;
        line-height: 28px !important;
        text-align: left;
    }
    .info-item23 .list-item {
        width: 100%;
        position: static;
        padding: 0px 0px;
        margin-bottom: 15px;
    }
    .info-item23 .list-item:nth-child(2) {
        padding-top: 0px;
        width: 100%;
        left: 0%;
    }
    .info-item23 {
        width: 100%;
    }
    .info-item23 .pic {
        display: none;
    }
    .info-item22 .list-item {
        width: 100%;
        padding: 0px 10px 10px;
    }
    .info-item19 .list-item .list-title {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .info-item19 .list-item {
        flex-wrap: wrap;
        justify-content: center;
    }
    .info-item19 .list-item .list-text {
        border-radius: 20px;
        width: 100%;
        margin-left: 0px;
        padding: 20px 15px 5px;
    }
    .info-item18 .list-item {
        width: 100%;
    }
    .info-item17 .list-item {
        width: 100%;
    }
    .info-item14 .style1 {
        flex-wrap: wrap;
    }
    .info-item14 .style1 p {
        width: 100%;
        padding-bottom: 10px;
        text-align: left;
        padding-top: 0px !important;
        margin: 0px !important;
        top: 0px !important;
        line-height: 28px;
    }
    .info-item14 .style2 {
        flex-wrap: wrap;
    }
    .info-item14 .style2 p {
        width: 100%;
        padding-bottom: 10px;
        text-align: left;
        padding-top: 0px !important;
        margin: 0px !important;
        top: 0px !important;
        line-height: 28px;
    }
    .info-item14 .pic {
        display: none;
    }
    .info-item14 {
        margin-bottom: 10px;
    }
    .info-item13 .text p {
        width: 100% !important;
        line-height: 28px;
        margin: 0px !important;
        top: 0px !important;
        text-align: left;
        position: static;
    }
    .info-item13 .text {
        flex-wrap: wrap;
        margin-top: 0px;
    }
    .info-item13 .pic {
        display: none;
    }
    .info-item8.info-style2 .list-item {
        width: 100%;
    }
    .mainsection6-list .list-item {
        width: 100%;
    }
    .mainsection6-list .list-pic {
        width: 100%;
        min-height: 230px;
    }
    .info-item8 .list-item {
        width: 100%;
    }
    .info-item6 .list-item {
        flex-wrap: wrap;
        justify-content: center;
    }
    .info-item6 .list-item .pic {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .info-item6 .list-item .pic:before {
        content: none;
    }
    .info-item6 .list-item .text {
        width: 100%;
    }
    .info-item5 .pic {
        display: none;
    }
    .info-item5 .text {
        flex-wrap: wrap;
    }
    .info-item5 .text .list-item {
        width: 100%;
        margin-right: 0%;
        margin-left: 0px !important;
    }
    .info-item1 .list-item {
        width: 100%;
    }
    .pro-detail-section2 .pro-detail-section2-title {
        flex-wrap: wrap;
    }
    .pro-detail-section2 .pro-detail-section2-title span {
        width: 49%;
        margin-bottom: 15px;
    }
    .pro-detail-section1 .text .text-btn {
        column-gap: 20px;
    }
    .pro-detail-section1 .text .text-btn a {
        min-width: 120px;
    }
    .push {
        margin-top: 55px;
    }
    .by-services-banner .swiper-banner-pagination span {
        margin: 0px 5px;
        width: 30px;
        height: 8px;
        background: var(--w);
        border-radius: 30px;
    }
    .by-services-banner .swiper-banner-pagination {
        width: 100%;
        height: 10px;
        left: 0px;
        bottom: 20px;
        right: auto;
        top: auto;
        flex-direction: row;
    }
    .inquiry-section {
        padding: 120px 0px 60px;
    }
    .about-section4 {
        padding: 40px 0px;
    }
    .about-section1-list .list-item {
        flex-wrap: wrap;
    }
    .about-section1-list .list-item .pic {
        width: 100%;
        height: 250px;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    .about-section1-list .list-item .text {
        width: 100%;
    }
    .mainsection3-info .pic .pic-list .lists .list-item {
        width: 49%;
    }
    .mainsection3-info .pic .pic-list .lists .list-item p {
        font-size: 16px;
    }
    .mainsection2-list .list-item {
        width: 100%;
    }
    .mainsection2-list .list-item2 {
        width: 100%;
        height: 300px;
    }
    .go_top {
        width: 34px;
        height: 34px;
        right: 0px;
    }
    .search-info {
        right: 0px;
        width: 100%;
    }
    .maincon {
        padding: 0px 15px;
    }
}

@media screen and (max-width:600px) {




    .info-item42 .list-item{
        padding: 30px 15px 15px;
    }
    .info-item37 {
        flex-wrap: wrap;
    }
    .info-item37 .pic {
        width: 100%;
        height: 200px;
    }
    .info-item37 .text {
        width: 100%;
        padding: 20px 15px 5px;
        min-height: auto;
    }
    .info-item35 .list-item {
        width: 100%;
        padding: 20px 10px 5px;
    }
    .info-item34 .list-item .pic{
        position: static;
        margin: 15px auto;
    }
    .info-item34 .list-item .text{
        padding-right: 0px;
    }
.info-item31.info-style2 .list-item{
	width: 100%;
}
.info-item33{
	flex-wrap: wrap;
	justify-content: center;
}
.info-item33 .pic{
	margin-bottom: 25px;
}
.info-item33 .text{
	width: 100%;
}
.info-item32 .text .list-item .text-info{
	width: 100%;
	padding: 20px 10px 5px;
}
.info-item32 .text .list-item .icon{
	margin-bottom: 20px;
}
.info-item32 .text .list-item{
	flex-wrap: wrap;
	justify-content: center;
}
.info-item32 .text .list-item:before{
	content: none;
}
.info-item32 .text .list-item:after{
	content: none;
}    

.info-item31 .list-item{
	width: 100%;
}
.info-item30 .list-item .pic:before{
	left: -25px;
}
.info-item30 .list-item .text {
    width: 100%;
    margin-top: 15px;
}
.info-item30 .list-item{
	padding-left: 20px;
	flex-direction: column;
}
.info-item30{
	width: 100%;
}    
    .info-item21 {
        flex-wrap: wrap;
    }
    .info-item21 .pic {
        width: 100%;
        height: 200px;
    }
    .info-item21 .text {
        width: 100%;
        padding: 25px 15px 10px;
    }
    .info-item16 .list-item {
        width: 100%;
    }
    .mainsection10-list .list-item {
        width: 100%;
    }
    .mainsection8-list .list-item {
        width: 100%;
    }
    .mainsection7-info .mainsection7-list .list-item {
        flex-wrap: wrap;
        justify-content: center;
        padding: 25px 15px;
    }
    .mainsection7-info .mainsection7-list .list-item .list-pic {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    .mainsection7-info .mainsection7-list .list-item .text {
        width: 100%;
    }
    .mainsection6-list .list-pic .text {
        padding: 20px 15px;
    }
    .mainsection6-list .list-item .list-title h3 {
        font-size: 16px;
    }
    .mainsection6-list .list-item span {
        left: 10px;
    }
    .mainsection6-list .list-item {
        padding: 25px 10px 50px;
    }
    .info-item11 .list-item {
        width: 100%;
    }
    .info-item10 .list-item {
        width: 100%;
    }
    .info-item4 .list-item .text {
        width: calc(100% - 60px);
    }
    .info-item4 .list-item .pic:before {
        content: none;
    }
    .info-item4 .list-item .pic {
        width: 50px;
    }
    .mainsection4-info .pic1 {
        padding-bottom: 0px;
    }
    .mainsection4-info .pic {
        width: 100%;
    }
    .mainsection4-info .pic-list {
        width: 100%;
        padding: 0px 0px;
        margin: 0px !important;
        position: static;
        transform: none;
    }
    .mainsection4-info .pic-list .pic-logo {
        display: none;
    }
    .mainsection4-info .pic-list .pic-icon {
        display: none;
    }
    .mainsection4-info .pic-list .list-box p {
        position: static;
        width: 100%;
        text-align: left !important;
        margin: 10px 0px;
        font-size: 16px;
        line-height: 28px;
    }
    .pro-detail-section2 .pro-detail-section2-title span {
        width: 100%;
    }
    .inquiry-section-info {
        padding: 50px 15px;
    }
    .mainsection3-info .text .list-item .list-pic {
        width: 75px;
    }
    .mainsection3-info .text .list-item .list-text {
        width: 100%;
        margin-top: 30px;
    }
    .mainsection3-info .text .list-item {
        flex-wrap: wrap;
        justify-content: center;
    }
    .mainsection1-info .pic-list .lists .list-item:last-child {
        margin-top: 15px;
    }
    .mainsection1-info .pic-list .lists .list-item p {
        font-size: 15px;
        line-height: 1.3;
    }
    .mainsection1-info .pic-list .lists .list-item img {
        height: 40px;
        margin-bottom: 5px;
    }
    .mainsection1-info .pic-list .lists .list-item {
        margin-bottom: 80px;
    }
    .mainsection1-info .pic-list .lists .list-item:nth-child(3) {
        margin-bottom: 0px;
    }
    .mainsection1-info .pic-list .lists .list-item:nth-child(4) {
        margin-bottom: 0px;
    }
    .nav-right {
        column-gap: 15px;
    }
}

.pagecontent .service-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media screen and (max-width: 1200px) {
	.pagecontent .service-content {
		flex-direction: column-reverse;
		flex-wrap: wrap;
	}
}
.table-responsive table{
	width: 100%;

}
.table-responsive table tr td{
	padding-left: 10px;
}

.rightcon .show-center img, .show-left img, .show-right img {
	display: block;
	margin-right: auto;
	margin-bottom: 8px;
	margin-left: auto;
	height: auto;
	max-width: 100%;
	margin-top: 6px;
}
.rightcon .show-center {
	margin-bottom: 15px !important;
	padding-bottom: 0px !important;
}
.rightcon .show-center, .show-left, .show-right {
	color: #8b8b8b !important;
	text-align: center;
	font-size: 15px !important;
	line-height: 28px !important;
}



/*---------------services page ---------------*/
.services-container{}
.services-container .italic{font-style: italic;}
.services-container p{line-height: 28px; padding-bottom:0px;font-size: 16px;margin-bottom: 15px;}
.services-container p.justify{text-align: justify;}
.services-container a{color:#6959A1; text-decoration:none;}
.services-container a:hover{color:#9783dc;}
.services-container h2,.services-container h3,.services-container h4,.services-container h5,.services-container h6 { font-size:24px;line-height: 1.3;}
.services-container h2{color: #000;margin-bottom: 15px;}
.services-container h3{margin-bottom: 15px;font-size: 20px;}
.services-container h4,.services-container h5{margin-bottom: 15px;font-size: 18px;}
.services-container h2 a,.services-container h3 a,.services-container h4 a,.services-container h5 a,.services-container h6 a{font-family: inherit;font-size: inherit;line-height: inherit;font-weight: inherit;}
.purple-dashed{margin: 20px 0;}
.purple-dashed img{height: 100%;}
.purple-dashed .text{display:flex;align-items: center;border:2px dashed var(--m);justify-content: center;}
.purple-dashed .gradient-bg{display: flex ; align-items: center; justify-content: center; border: 1px solid #fff; background: linear-gradient(148deg, #fefdff, #e0daf1); box-shadow: 2px 0px 5px #c6c1dc; padding: 20px 20px 5px; border-radius: 2px;}
.purple-bg{ padding: 15px 15px 0; margin: 0 0 15px 0; background: #f5f2ff; border-radius: 10px; }
.purple-bg p{ display:flex;align-items:center;height:100%; }
.gradient-bg-box{ border: 1px solid #fff; background: linear-gradient(148deg, #fefdff, #e0daf1); box-shadow: 2px 0px 5px #c6c1dc; padding: 20px 20px 5px; border-radius: 2px;display: flex ; justify-content: center; align-items: center;}
.gradient-bg-box .desc { display: flex;align-items: center; justify-content: center; }
.light-gray-box{margin-bottom: 20px;display: flex;}
.light-gray-box .left{ width: 20%;}
.light-gray-box .left img{ width: 100%;height: fit-content;}
.light-gray-box .right{ width: 80%; border: none; background: #eeeeee; padding: 10px 20px 0px 20px; border-radius: 2px;display: flex ;justify-content: center; align-items: center;}
.light-gray-box .right .desc{display: flex;justify-content: center;align-items: center;gap:40px; }
@media (max-width:768px){.light-gray-box .right .desc,.light-purple-box .left .desc{display: block; }}
.light-purple-box{margin-bottom: 20px;display: flex;}
.light-purple-box .right{ width: 20%;}
.light-purple-box .right img{ width: 100%;height: fit-content;}
.light-purple-box .left{width: 80%; border: none; background: #f5f2ff; padding: 10px 20px 0px 20px; border-radius: 2px;display: flex ;justify-content: center; align-items: center;}
.light-purple-box .left .desc{display: flex;justify-content: center;align-items: center;gap:40px;  }
@media (max-width:768px){.purple-dashed .text{display:block;}}
.border-primary-color{border: 2px dashed #6959a1;}
.border-primary-color p{padding-top: 20px;}
.border-primary-color p.regular{padding-top: 0; margin-bottom: 0;}
.purple-dashed .border-primary-color .desc{display:flex;}
.purple-dashed p:last-child{padding-bottom: 0px;}
.text-info{color: #000 !important;}
.services-container ol li{
    list-style: decimal;
}
.services-container ul li{
    list-style: disc;
}
.services-container ul li ul{
	margin-top: 0px;
}
.services-container ul li ul li{
    list-style: circle;
}
.services-container .noul li{
    padding-left:0;list-style:none
}
.services-container ul,.services-container ol{padding-left:18px;margin-bottom:15px}
.services-container ul li,.services-container ol li{margin-bottom:0px}
.services-container ul ul,.services-container ol ul,.services-container ul ol{margin-bottom:10px;margin-top:10px}

.show-center,.show-left,.show-right{color:#8b8b8b !important;text-align:center;font-size:15px !important;line-height:22px !important;}
.show-center img,.show-left img,.show-right img{display:block;margin-right:auto;margin-bottom:8px;margin-left:auto;height:auto;max-width:100%;margin-top: 6px;}
.show-center{
    margin-bottom: 15px !important;
    padding-bottom: 0px !important;
}
@media (min-width:992px){
    .show-left,.show-right{display:inline-block}
    .show-right{float:right;margin-left:15px}
    .show-left{float:left;margin-right:15px}
}
@media (max-width:992px){
    .show-right,.show-left{width:100%;margin:0}
}




