* {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-family: Source Han Sans CN;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    font-size: 100%;
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    vertical-align: middle;
}

input {
    outline: none;
}

:hover {
    transition: 0.3s;
}

 ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

 ::-webkit-scrollbar-track {
    background: #fff;
}

 ::-webkit-scrollbar-thumb {
    background: #005041;
    border-radius: 6px;
}

.headerCentre {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    transition: 0.3s;
}

.fixed .headerNav {
    border-color: #69a89d;
}

.center {
    width: 1400px;
    margin: 0 auto
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.searchBox {
    background: url(../images/icon-search.png) no-repeat center/contain;
    width: 28px;
    height: 28px;
    display: block;
    flex-shrink: 0;
    margin-left: 10px;
}

.searchBox input {
    outline: none;
    border: none;
}

.searchBox input[type="submit"] {
    width: 100%;
    height: 100%;
    background: none;
    cursor: pointer;
}

.headerNav {
    width: 100%;
    background: #005041;
    height: 90px;
    padding: 0 40px;
    transition: 0.3s;
    border-bottom: 5px solid #fff;
}

.headerNav .headerCentre {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    /* width: 36%; */
    flex-shrink: 0;
}

.logo img {
    width: 100%;
}

.navBox {
    width: 100%;
    height: 100%;
    padding-left: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navBox ul {
    width: 100%;
    display: flex;
    height: 100%;
}

.navBox ul li {
    flex: auto;
    position: relative;
    text-align: center;
}

.navBox ul li a {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    padding: 10px 0;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.navBox ul li>a:after {
    content: '';
    width: 0;
    height: 6px;
    background: #0EB798;
    border-radius: 6px 6px 0 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.navBox ul li a.active:after,
.navBox ul li a:hover:after {
    width: 73px;
    transition: 0.3s;
}

.navBox ul li dl {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: fit-content;
    padding: 10px 18px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px;
    z-index: 10;
    transition: 0.3s;
}

.navBox ul li dl dd a {
    font-size: 17px;
    white-space: nowrap;
    color: #333;
    font-weight: normal;
    padding: 10px 0;
    border-bottom: 1px solid #E5E5E5;
}

.navBox ul li dl dd:last-child a {
    border: none;
}

.navBox ul li dl dd a:hover {
    color: #005041;
}

.navBox ul li:hover dl {
    transform: translateX(-50%) scale(1);
    transition: 0.3s;
}

.phoneNav {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
    background: #005041;
    align-items: center;
    padding: 12px 10px;
}

.dropLeft {
    width: 32px;
    height: 32px;
    display: block;
    background: url(../images/icon-meun.png) no-repeat center/contain;
    flex-shrink: 0;
}

.moblielogo {
    width: 70%;
    max-width: 360px;
}

.moblielogo img {
    width: 100%;
}

.masking {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: transparent;
    transition: all 0.5s ease 0.2s;
    z-index: -1;
}

.masking.focus {
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
}

.iphone_nav {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    margin-left: -200px;
    transition: all 0.6s ease 0.2s;
    -webkit-transition: all 0.6s ease 0.2s;
    -moz-transition: all 0.6s ease 0.2s;
    -ms-transition: all 0.6s ease 0.2s;
    -o-transition: all 0.6s ease 0.2s;
    z-index: 999999;
}

.iphone-box {
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 46px;
    padding-top: 80px;
    transition: all 0.6s ease 0.2s;
    -webkit-transition: all 0.6s ease 0.2s;
    -moz-transition: all 0.6s ease 0.2s;
    -ms-transition: all 0.6s ease 0.2s;
    -o-transition: all 0.6s ease 0.2s;
}

.iphone-box>ul>li>a {
    display: block;
    font-size: 14px;
    color: #000000;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-box .active>a {
    color: #005041;
}

.iphone-box>ul>li>a>i {
    height: 18px;
    width: 18px;
    padding-left: 8px;
    box-sizing: content-box;
    display: inline-block;
    background: url(../images/icon-add.png) no-repeat right center/contain;
    vertical-align: middle;
}

.iphone-box>ul>li>ul {
    display: none;
    padding-bottom: 10px;
}

.iphone-box>ul>li>ul>li>a {
    display: block;
    font-size: 14px;
    color: #000;
    line-height: 30px;
}

.iphone-box>ul>li>ul>li>a strong {
    font-weight: normal !important;
}

.iphone_nav.focus {
    margin-left: 0;
    display: block !important;
}

.min-search {
    width: 80%;
    margin: 20px auto;
    height: 40px;
    border: 1px solid #9b9b9b;
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.min-search form {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.min-search form input {
    outline: none;
    border: none;
}

.min-search form input[type="text"] {
    width: calc(100% - 24px);
    padding: 0 10px;
    background: none;
    overflow: hidden;
}

.min-search form input[type="submit"] {
    width: 24px;
    height: 24px;
    background: url(../images/min-research.png) no-repeat center/contain;
    flex-shrink: 0;
}


/* footer */

.footer-top-con {
    width: 100%;
}

.footer-top {
    background: url(../images/footerbg.png) no-repeat center/cover;
    padding: 90px 0 20px 0;
}

.footer-top-con {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.contactCon p {
    font-size: 18px;
    color: #FFFFFF;
    margin: 20px 0;
}

.fotTit {
    font-weight: bold;
    font-size: 22px;
    color: #FFFFFF;
}

.footer-bottom {
    background: #06110F;
    padding: 12px 20px;
    font-size: 14px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 14px;
    color: #FFFFFF;
}


/*phoneNav*/

.phoneNav {
    display: none;
}