:root {
    /* 主色 */
    --primary-color: #9E948B ;
    --primary-1: #f0f7ff;
    --primary-2: #dae6f5;
    --primary-3: #a9c2e8;
    --primary-4: #7da0db;
    --primary-5: #557dcf;
    --primary-6: #9E948B;
    --primary-7: #595240;
    --primary-8: #122975;
    --primary-9: #08164f;
    --primary-10: #040a29;
    /* 中性色板 */
    --black-color: #333;
    --white-color: #fff;
    --black-1: #fafafa;
    --black-2: #fafafa;
    --black-3: #f5f5f5;
    --black-4: #f0f0f0;
    --black-5: #d9d9d9;
    --black-6: #bfbfbf;
    --black-7: #8c8c8c;
    --black-8: #595959;
    --black-9: #434343;
    --black-10: #262626;
    --black-11: #1f1f1f;
    --black-12: #141414;
}
@font-face {
  font-family: 'SourceHanSerifCN';
  src: url('../fonts/SourceHanSerifCN-Medium.otf') format('opentype');
  font-weight: 400;
}
html {
    -webkit-font-smoothing: subpixel-antialiased;
}
body {
    -webkit-overflow-scrolling: touch;
    height: calc(100% - env(safe-area-inset-bottom));
    font-family: "SourceHanSerifCN","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-display: swap;
    color:#9E948B
}

a {
    color: #666;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:hover,
a:focus {
    color: var(--primary-10);
    text-decoration: none;
}

.input-text {
    -webkit-appearance: none;
    background-color: var(--white-color);
    background-image: none;
    border-radius: 4px;
    border: 1px solid var(--black-1);
    box-sizing: border-box;
    color: #333;
    display: inline-block;
    font-size: inherit;
    height: 40px;
    line-height: 40px;
    outline: none;
    padding: 0 15px;
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.input-text:hover {
    border: 1px solid var(--black-9);
}

.input-text:focus {
    border: 1px solid var(--primary-7);
}

.lh-22 {
    line-height: 22px;
}

.lh-24 {
    line-height: 24px;
}

.lh-26 {
    line-height: 26px;
}

.lh-32 {
    line-height: 32px;
}

.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-gray {
    background-color: #f5f6fb;
}

.line-b-1-list .line-item {
    border-bottom: 1px solid #f3f3f3
}

.bg-white {
    background: var(--white-color);
}

.bg-black {
    background: #222;
}

.bg-primary {
    background: var(--primary-color);
}

.text-white {
    color: var(--white-color);
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: var(--black-2);
}

.text-secondary {
    color: rgba(0, 0, 0, 0.4)
}

.text-primary {
    color: var(--primary-color);
}

#header {
    transition: all .4s cubic-bezier(.4, .01, .165, .99);
}


#header #search input {
    width: 260px;
    line-height: 34px;
    text-indent: 15px;
    display: block;
    flex: 1;
    border: 2px solid var(--primary-color);
    background: var(--white-color);
    outline: none;
}

#header #search button {
    cursor: pointer;
    padding: 0 12px;
    height: 100%;
    line-height: 40px;
    text-align: center;
    color: var(--white-color);
    background: var(--primary-color);
    border: none 0
}

/* 导航 */
#header #head-nav {
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

#header.header-fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    margin: auto;
    transition: .36s ease;
    background-color: var(--white-color);
}






#header .logo {
    display: flex;
    align-items: center !important;
}

#header .logo img {
    height: 60px
}

/* 导航菜单 */
#header #head-nav-list ul li {
    display: inline-block;
    position: relative;
    margin-left: 60px
}

#header #head-nav-list ul li:first-child {
    margin-left: 0;
}

#header #head-nav-list>ul>li>a {
    display: block;
    color: var(--black-8);
    position: relative;
    font-size: 16px;
}

#header #head-nav-list>ul>li.active>a,
#header #head-nav-list>ul>li>a:hover {
    color: var(--primary-6);
}

#header #head-nav-list>ul>li>a span {
    line-height: 115px;
    display: inline-block;
    position: relative;
}

#header #head-nav-list>ul>li>a span::before {
    width: 0;
    height: 2px;
    content: '';
    position: absolute;
    top:90px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -1px;
    background-color: var(--primary-6);
    transition: width 0.2s ease-out;
}

#header #head-nav-list ul li.active span::before,
#header #head-nav-list ul li span:hover::before {
    width: 100%;
}

#header #head-nav-list ul li .shudou-xiangxia {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}


#header #head-nav-list .has-sub>ul {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    width: 160px;
    transition: .26s ease;
    transform: translateX(20px);
    opacity: 0;
    padding: 13px 0;
    background: var(--white-color);
    -webkit-box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
    box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
}

#header #head-nav-list .has-sub li a {
    padding: 12px 26px;
}

#header #head-nav-list .has-sub li {
    margin-left: 0 !important;
    float: left;
    width: 100%;
    text-align: left;
}

#header #head-nav-list .has-sub:hover>ul {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
    margin-top: 0px;
    z-index: 999;
}

#header #head-nav-list .has-sub ul li a {
    display: block;
    color: #808080;
    font-size: 14px
}

#header #head-nav-list .has-sub ul li.active a {
    color: var(--primary-6) !important;
}

#header #head-nav-list .has-sub ul li a:hover {
    color: var(--primary-6) !important;
    padding-left: 40px !important;
}


#header.header-fixed.header-sticky {
    padding-top: 0;
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
    top: 0px;
}

#header.header-fixed.header-sticky #head-nav {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
}

#header.header-fixed.header-sticky .logo img {
    height: 54px
}

#header.header-fixed.header-sticky #head-nav-list>ul>li>a span {
    line-height: 74px;
}
#header.header-sticky  #head-nav-list>ul>li>a span::before{
    top: 60px;
}





#noIndex #header.header-fixed {
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
}

/*  手机端 */

#m-head-nav {
    width: 100%;
    height: 90px;
    padding: 0 20px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 101;
    background-color: var(--white-color);
    transition: all .4s cubic-bezier(.4, .01, .165, .99);
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
}

#m-head-nav .logo {
    height: inherit;
    display: flex;
    align-items: center !important;
    overflow: hidden;
}

#m-head-nav .logo img {
    width: auto;
    height: calc(100% - 4vw);
}

#m-head-nav .nav-top {
    width: 22px;
    height: 22px;
    position: relative;
    float: right
}

#m-head-nav .nav-top .nvas-toggle {
    bottom: 0;
    display: block;
    height: .53333vw;
    left: 0px;
    right: -.53333vw;
    margin: auto;
    position: absolute;
    top: 0;
    transition: all .3s;
    background-color: currentColor;
    border-radius: .53333vw;
}

#m-head-nav .nav-top .nvas-toggle::before,
#m-head-nav .nav-top .nvas-toggle::after {
    content: "";
    height: .53333vw;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    transition: top .3s ease-in-out, background .3s, -webkit-transform .3s ease-in-out;
    transition: top .3s ease-in-out, transform .3s ease-in-out, background .3s;
    transition: top .3s ease-in-out, transform .3s ease-in-out, background .3s, -webkit-transform .3s ease-in-out;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background-color: currentColor;
    border-radius: .53333vw;
}

#m-head-nav .nav-top .nvas-toggle::before {
    width: 18px;
    right: -6px;
    top: 8px
}

#m-head-nav .nav-top .nvas-toggle::after {
    top: -8px;
    right: -8px;
    width: 15px
}

.m-sidebar-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding-right: 35.33333vw;
    z-index: 10;
    background: var(--white-color);
    opacity: 0;
    visibility: hidden;
}

.m-sidebar-nav.show {
    opacity: 1;
    visibility: visible;
}

.m-sidebar-nav .navbar-nav {
    height: 100%;
    padding: 19.73333vw 0 0 9.33333vw;
    font-size: 1.4rem
}

.m-sidebar-nav .navbar-nav>ul {
    padding-bottom: 28vw;
    border-bottom: 1px solid #f2f2f2;
}

.m-sidebar-nav .navbar-nav>ul>li>a {
    height: 42px;
    line-height: 42px;
    color: var(--black-7);
    text-transform: capitalize;
    display: block;
    position: relative;
}

.m-sidebar-nav .navbar-nav>ul>li.active>ul>li.active a,
.m-sidebar-nav .navbar-nav>ul>li.active>a {
    color: var(--primary-6)
}

.m-sidebar-nav .navbar-nav>ul>li>ul a {
    height: 10.4vw;
    line-height: 10.4vw;
    color: var(--black-7);
    text-transform: capitalize;
    display: block;
    position: relative;
    padding-left: 1em;
}

.m-sidebar-nav ul li a .shudou-xiangxia {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    margin: auto;
}

.m-sidebar-nav .has-sub ul {
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.m-sidebar-nav .has-sub.active ul {
    height: auto;
    visibility: inherit;
    opacity: 1;
    padding-bottom: 3vw
}

.m-sidebar-nav .contact {
    padding-top: 8.8vw;
    display:none !important;
}

.canvas-mask {
    position: fixed;
    background: transparent;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    z-index: 102;
    opacity: 1;
    transition: .3s;
}

.offcanvas-overly.active {
    opacity: .5;
    visibility: visible;
}

#main {
    height: auto;
    position: relative;
    z-index: 100;
    overflow-x: hidden;
    transition: all .36s cubic-bezier(.215, .61, .355, 1) 0s;
}

/* 打开手机端 */
body.show-m-nav {
    height: 100vh;
    height: calc(100% - env(safe-area-inset-bottom));
    overflow: hidden;
    background-color: var(--white-color);
}

body.show-m-nav #m-head-nav,
body.show-m-nav #footer {
    opacity: 0;
    visibility: hidden;
}

body.show-m-nav #main {
    overflow: hidden;
    height: 100vh;
    border-radius: 4vw;
    box-shadow: 0 0 9.06667vw 0 rgb(91 91 91 / 41%);
    -webkit-transform: translate3d(65.33333vw, 0, 1px) scale(.8);
    transform: translate3d(65.33333vw, 0, 1px) scale(.8);
}

body.show-m-nav .canvas-mask {
    left: 75.33333vw
}

#idx-about {
    background-image: url('../img/about/bg.png');
    background-repeat: no-repeat;
    background-position: 0 0;

}
#page-about{
     background-image: url('../img/about/bg-2.png');
    background-repeat: no-repeat;
    background-position: 0 0;
      background-size: 150% 150%; /* 两个方向都放大到150%，会变形 */
     background-position: center;
     background-repeat: no-repeat;
}
#page-about .container{
    background-color: #fff;
    padding-right:0;
    padding-left:0
}
#page-about .container .content{
    padding:4vw 6vw
}
#page-about .container .content h1{
    text-align: center;
}
#page-about .container .content p{
    line-height: 2;
}



 #idx-about .content {
    line-height: 2;
}
 #idx-faq{
    background-image: url('../img/faq/bg.png');
    background-repeat: no-repeat;
    background-position: right  -60px;
}
 #idx-faq .container .banner img{
    display: block;
    width:100%;
}
 #idx-faq .content{
    line-height: 2;
}
 #idx-faq .content p{
    margin-top: 40px;
        color: #9E948B
}



 #idx-beings .list .item{
    padding:40px 20px 40px  20px;
    background-color: #fff;
    box-shadow: 0px 15px 20px 0px rgba(105, 101, 94, 0.1);
    margin-bottom: 30px;

}

 #idx-beings .list .item .thumb img{
    width: 100%;
    display: block;
}
 #idx-beings .list .item .info{
    line-height: 2;
    color: #595240;
} 
 #idx-beings .list .item .info .tit{
    border-bottom: 2px solid rgb(89 82 64 / 20%);
    margin-bottom: 20px;
}
 #idx-beings .list .item .info p{
    opacity: 0.6;
}


#page-contact .container{
    margin-top:-60px;
    position: relative;
}
#page-contact .container .form{
        background-color: #fff;
    box-shadow: 0px 3.59px 8.97px 0px rgba(0, 0, 0, 0.3);
}
#page-contact .container .header{
    margin-bottom: 16px;
}
#page-contact .container .header .flex-1{flex:1}

#page-contact .container .header .title b{
    color:#635A47
}
#page-contact .container .header .title span{
    color:#BCBCBC;
    margin-left:4px
}

#page-contact .container .header .button{
    height:38px;
    line-height:38px;
    background-color: #635A47;
    border-radius: 38px;
    padding:0 30px;
    color:#fff;
    cursor: pointer;
    display: block;
}
#page-contact .container .header .button:hover{
    background-color: #8b7c5c;
}
#page-contact .form-body .item{margin-bottom: 10px;}
#page-contact .form-body .item label,
#page-contact .form-body .item input,
#page-contact .form-body .item textarea{
    display: block;
    width: 100%;
}


#page-contact .form-body .item label{
    color:#9E9E9E;
    font-size: 14px;
    margin-bottom:4px ;
}
#page-contact .form-body .item .error{
    color: #f00;
}


#page-contact .form-body .item input{
    height:42px;
    border:1px solid #c1c1c1
}
#page-contact .form-body .item textarea{
    border:1px solid #c1c1c1;
}

#page-contact .container .line{
    align-items: center;
    justify-content: center;
}
#page-contact .container .line::after{
    content: '';
    width:1px;
    height: 100%;
    background-color: #D8D8D8;
    display: block;
}
#page-contact .contact-information{
    color: #595240;
}

#page-contact .contact-information .icon{
    width: 48px;
    height:48px;
    margin-right:20px
}



#page-Certification .banner,#page-Certification .banner img{
    position: relative;
}


#page-Certification .banner img{
    z-index: 1;
}



#page-Certification .banner .txt{
    position: absolute;
     transform: translate(-50%, -50%); 
     top:50%;
     left:50%;
     z-index: 2;
     color:#fff;
     font-size:90px
}



#page-Certification .tips{
    position: relative;
    margin-top:-40px;
    background-color: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    z-index: 4;
    margin-bottom: 60px;
}
#page-Certification .tips ul{
    padding:30px 60px;
}
#page-Certification .tips li{
    cursor: pointer;
    display: flex;
    align-items: center;
}
#page-Certification .tips .line{
    display: block;
    width: 1px;
    height:40px;
    background-color: #A7A7A7
}

#page-Certification .tips .active{
        text-decoration: underline;
}

#page-Certification .page-Certification-content dl{
    margin-bottom: 20px;
    padding:0 50px
}

#page-Certification .page-Certification-content dt{
    font-weight: 900;
    font-size:16px;
    margin-bottom: 4px;
}

#page-Certification .page-Certification-content #contactForm{
    position: relative;
    padding-left:50px
}

#page-Certification .page-Certification-content #contactForm input{
    display: block;
    width: 100%;
    height:42px;
    line-height: 42px;
    border: 1px solid #C1C1C1;
    padding:0 20px
}

#page-Certification .page-Certification-content #contactForm #submitBtn{
    position: absolute;
    top:8px;
    right:10px;
    width: 28px;
    cursor: pointer;
}
#page-Certification .page-Certification-content #contactForm  .error{
    color:#f00
}










#page-Certification .assessment-criteria .owl-nav {
    height: 0;
    top: 50%;
    transform: translateY(calc(-50%));
    position: absolute;
    width: 100%;
    margin: 0;
}

#page-Certification .assessment-criteria .owl-nav .prev-next {
    width: 48px;
    height: 68px;
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

#page-Certification .assessment-criteria .owl-nav .iconfont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
}

#page-Certification .assessment-criteria .owl-nav .owl-prev {
    left: 20px;
}

#page-Certification .assessment-criteria .owl-nav .owl-next {
    right: 20px;
}


#page-Certification .assessment-criteria .owl-nav .prev-next:hover .iconfont {
    color: var(--primary-7);
    font-weight: bold;
}
#page-Certification .assessment-criteria .owl-dots{
    display: none;
}


#page-Certification .assessment-process{
        background-image: url(../img/faq/bg.png);
    background-repeat: no-repeat;
    background-position: right -60px;
}











.uppercase-text {
  text-transform: uppercase;
}
.tab-content .tab-pane {
  display: none;
}

.tab-content .tab-pane.active {
  display: block;
}

/* 通用大坦 */
.Headline .subtitle {
    display: inline-block;
    color: var(--black-6);
    text-transform: uppercase;
}
/* 分页 */
#pages a,
#pages span {
    display: inline-block;
    margin-right: 5px;
    padding: 0 18px;
    height: 38px;
    line-height: 38px;
    background-color: #f3f3f3;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
    color: #555;
    font-family: Arial;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pages .cur {
    color: #fff;
    background-color: var(--primary-5);
    position: relative;
}

#pages .empty {
    display: none;
    color: #ccc;
}

#pages a:hover {
    background-color: var(--primary-5);
    color: var(--white-color);
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#pages .first,
#pages .last,
#pages .np,
#pages .total {
    display: none;
}

/*子栏目*/
.bread-wrap {
    position: relative;
    margin-top: 0;
}

.bread-wrap .Headline {
    height: auto;
    padding: 20px 20px 10px 0;
    background-color: var(--white-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* 当前位置 */
.bread {
    height: 24px;
    line-height: 24px;
    color: var(--black-7)
}

.bread a {
    color: var(--black-7)
}

.bread .iconfont {
    font-size: 18px;
    vertical-align: -3px;
}

/* 手机端当前栏目二级菜单 */
#top-nav-sticky {
    min-height: 50px;
    position: sticky;
    z-index: 9;
    background-color: var(--primary-6);

}

#top-nav-sticky .title {
    height: 50px;
    font-size: 14px;
    color: #fff;
    position: relative;
}

#top-nav-sticky .fa-angle-down {
    font-size: 4.8vw;
}

#top-nav-sticky .dropmenu .close {
    position: absolute;
    top: 24px;
    right: 20px;
    display: block;
    float: right;
    width: 18px;
    height: 18px;
    z-index: 9999;
}

#top-nav-sticky .dropmenu .close:after,
#top-nav-sticky .dropmenu .close:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    content: "";
    border-top: 1px solid #fff;
}

#top-nav-sticky .dropmenu .close:before {
    transform: translateZ(0) rotate(-45deg);
}

#top-nav-sticky .dropmenu .close:after {
    transform: translateZ(0) rotate(45deg);
}

#top-nav-sticky .dropmenu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: -webkit- transform .4s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: transform .4s cubic-bezier(.215, .61, .355, 1) 0s;
    transform: translate3d(0, 100%, 0);
    background: #fff;
}

#top-nav-sticky.open .dropmenu {
    transform: translateZ(0) !important;
}

#top-nav-sticky.open .dropmenu .title {
    background-color: var(--primary-6);
}

#top-nav-sticky .sub a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 6.667vw;
    color: #969595;
    color: #545454
}

#top-nav-sticky .sub a.active {
    background-color: #f3f3f3;
}

#footer {
    background-color: #635A47;
    color: var(--black-6);
    padding: 2vw 0;
    font-family: ' Microsoft YaHei';
}


#footer a {
    color: var(--black-6);
}

#footer .title {
    color: var(--white-color);
    font-weight: 300;
}

#footer .subtitle {
    margin-top: 4px
}

#footer .name {
    margin-bottom: 14px;
}

#footer p {
    margin-top: 14px;
}


#footer .container {
    display: block !important;
}

#footer .container span,
#footer .container i {
    font-style: normal;
    margin-left: 15px;
    display: inline-block;
}

#scrollUp {
    background: var(--primary-6);
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    right: 30px;
    bottom: 30px;
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    transition: .3s;
    z-index: 99999;
    cursor: pointer;
    display: none;
}

#scrollUp:hover {
    background: var(--primary-7);
}

#scrollUp:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.wrap {
    width: 1100px;
    margin: 0 auto
}

@media (max-width:1199px) {
  #idx-faq .content p{
       margin-top: 10px;
  }

}

@media (max-width:991px) {}

@media (max-width:767px) {
 #page-Certification .tips ul {
    padding: 10px 20px;
}
}

@media(max-width:575.98px) {

    /* 顶部 */
    #m-head-nav {
        height: 50px
    }

    /* 关于我们 */
    #about-us .idx-info .lh-32 {
        line-height: 22px
    }

    /* 图文例表 */
    #honor .container .row,
    #figurative .container .row,
    #about-us .idx-Tips .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    #honor .container .col-xs-6,
    #figurative .container .col-xs-6,
    #about-us .idx-Tips .row .col-xs-4 {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }

    #idx-beings .list {padding:20px}
    #idx-beings .list .item{
        padding:10px 10px 20px 10px;
        margin-bottom:40px;
    }
    #page-contact .container{
        margin-top:-30px;
    }
    #page-Certification .banner .txt{
        font-size: 48px;
        top: 40%;
    }
    #page-Certification .tips .line{
        margin-right: 20px;
    }
    /* 底部 */
    #footer .follow-mini p {
        padding-right: 0;
    }
    #page-Certification .assessment-criteria .owl-nav .prev-next{
            width: 28px;
            height: 28px;
    }
    #page-Certification .assessment-criteria .owl-nav .iconfont{
            font-size: 22px;
    }


    #page-Certification .assessment-criteria .owl-nav .owl-prev {
        left: 0px;
    }

    #page-Certification .assessment-criteria .owl-nav .owl-next {
        right: 0px;
    }
}

@media (min-width:768px) {}

@media (min-width:992px) {}

@media (min-width:1200px) {

   
    .bread-wrap {
        margin-top: -110px;
    }

    .bread-wrap .Headline {
        height: 110px;
        padding: 30px 50px 50px 30px;
    }
}


@media (min-width:1440px) {}