.maincon {
    width: 100%;
    margin: auto;
    height: auto;
    padding: 0px 20px;
    max-width: 1400px;
}


.push {
    margin-top: 70px;
}

.toper {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 99;
    min-height: 70px;
	border-bottom: 1px solid var(--border);
	background:rgba(255, 255, 255, 0.92);
}

.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: 50px;
    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(--text);
    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: 16px;
    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: 30px;
    position: relative;
    padding: 0px 0px 0px;
}

.navs>ul>li:first-child {
    margin-left: 0px;
}

.navs>ul>li>a {
    color: var(--text);
    font-size: 16px;
}

.navs>ul>li:after {
    /*content: '';*/
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--text);
    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: '\f107';
    font-family: 'FontAwesome';
    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: '\f105';
    font-family: 'FontAwesome';
    color: var(--b1);
    right: 15px;
    position: absolute;
}

.navs ul li ul li a {
    font-family: 'Outfit-Regular', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #1a1a2e;
    display: inline-block;
    max-width: 90%;
    transition: all .1s ease-out;
}

.navs ul li ul li:hover {
    background: #f8fafc;
	border-radius: 10px;
}

.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: #fff;
    width: 280px;
    height: auto;
    display: none;
    z-index: 101;
	border: 1px #e2e8f0 solid;
	border-radius: 10px;
}

.navs ul li ul li ul {
    position: absolute;
    left: 100%;
    top: 0px;
    background: #fff;
    width: 100%;
    height: auto;
	border: 1px #e2e8f0 solid;
	border-radius: 10px;
}
@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: '\f002';
    font-family: 'FontAwesome';
    font-weight: bolder;
    font-size: 22px;
    line-height: 22px;
    /*margin-bottom: 4px;*/
}
.toper .searchicon:before{
	 color:var(--text);
}
.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: '\e99a';
    font-family: 'FontAwesome';
    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(--text);
}

.toper.fixed .carticon {
    color: var(--text);
}

.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(--text);
}

.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: #001E38;
}
.footer .maincon{
	width: 1470px;
	max-width: 100%;
	padding: 0px 15px;
}
.footer p {
	color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
	font-size: 14px;
}

.footer p a {
    line-height: inherit;
}

.footer a {
    color: var(--w);
}

.footer a:hover {
    color: #007aff;
}

.footer .foottitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    padding-bottom: 10px;
	margin-bottom: 10px;
    display: block;
	font-weight: bold;
    /*border-bottom: 1px solid #C5C1EA;*/
}

.foot-info {
    width: 100%;
    height: auto;
    padding: 50px 0px 35px;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    column-gap: 20px;
	
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.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: #00325d;
}

.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: flex-start;
    padding-bottom: 30px;
}
.foot-contact-list-box .list-item{
	width: 32%;
}
.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: #00325d;
    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;
}

.side-title{ font-size: 19px;
    line-height: 1.3;
    display: block;
    color: var(--w);
    margin-bottom: 0px;
    padding: 14px 15px;
    background: #001E38;
    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: 'FontAwesome';
    font-weight: bold;
    color: #7e7e7e;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all .2s;
}

.leftnavli ul li span.down::before {
    content: '\e97c';
    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: #F2F9FF;
}

.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: 'FontAwesome';
    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: 'FontAwesome';
    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: 'FontAwesome';
    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;
}






@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: 30px;
    }
    .maincon {
        padding: 0px 5%;
    }
}


@media screen and (min-width:1200px){

    /* 桌面端: CSS :hover 驱动多级下拉 */
    .navs ul li:hover > ul {
        display: block;
    }

}


@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: #fff;
        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;
        display: inline-block;
    }
    .navs ul li:last-child {
        margin-bottom: 0px;
    }
    .navs>ul>li:last-child {
        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: 10px;
        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;
        color: #fff !important;
    }
    .navs ul li span::before {
        color: #000 !important;
        content: "+";
        font-weight: bold;
        font-size: 18px;
    }
    .navs ul li span.down::before {
        color: #000;
        content: "-";
        font-weight: bold;
    }
    .navs>ul>li:hover {
        background: none;
    }
    .navs ul li ul li span::before {
        color: #000;
        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 {
    }
    .navs ul li ul li:hover {
        background: none;
    }
    .navs>ul>li:after {
        content: none;
    }
    .navs ul li ul li ul {
        background: none;
        padding-left: 10px;
        display: none;
    }
    .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) {



.info-item47>.row>div{
    width: 100%;
}
.footer p{
	margin-bottom: 5px;
}
.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;
        margin-bottom: 10px;
        padding-bottom: 5px
    }
    .foot-contact {
        width: 100%;
    }
    .foot-nav {
        width: 100%;
        margin-top: 15px;
    }
    .foot-logo img {
        height: 50px;
    }
    .foot-logo {
        width: 100%;
    }
    .foot-info {
        flex-wrap: wrap;
        padding-bottom: 10px;
    }
    .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-item46 .list-item{
	width: 100%;
}
.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-item46 .list-item{
	padding-top: 45px;
	padding-left: 0px;
}
.info-item46 .list-item .pic{
	width: 90px;
	height: 90px;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
}
.info-item46 .list-item .text{
	padding: 55px 10px 5px 10px;
	border-radius: 10px;
	height: auto;
}
    .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-title{background: #00325d; color: #fff; padding: 10px 0;}
.border-box{border: 1px #8ea9c1 solid; border-radius: 30px; margin: 15px 0; padding: 20px;}
/*---------------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:#005fb0; text-decoration:none;}
.services-container a:hover{color:#00325d;}
.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:14px !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}
    .purple-dashed img{height: 200px;width: 100%;object-fit: cover;}
    .purple-dashed>div.col-md-2{
    	padding: 0px !important;
    }
}


