@charset "UTF-8";
@import "swiper.min.css";
@import "font.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Microsoft YaHei;
}

em,
i {
    font-style: normal
}

li {
    list-style: none
}

img {
    border: 0;
    /*为了照顾部分浏览器图片外面包含链接会有边框的问题*/
    vertical-align: middle
        /*防止图片底侧有空白缝隙*/
}

button {
    cursor: pointer
}

a {
    text-decoration: none
}

button,
input {
    font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
    border: 0;
    outline: none;
}

body {
    -webkit-font-smoothing: antialiased;
    /* CSS3写法：抗锯齿性，让文字显示的更加清晰 */
    background-color: #fff;
    /* font-family: "LiSu", sans-serif; */
    font-family: Microsoft YaHei;
    font: 1em/1.4 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
    color: #0d0d0d;
    overflow-x: hidden;
}

/* 版心 */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: inset 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #239A86;
    box-shadow: inset 6px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background-color: #239A86;
}

/* 公共样式 */
.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header {
    width: 100%;
    height: 50vw;
    /* 可根据原比例调整，原823px对应屏幕宽度约1646px时为50vw，按需微调 */
    position: relative;
    max-height: 823px;
    /* 保留最大高度，避免页面过宽时图片拉伸过度 */
    min-height: 210px;
    /* 设置最小高度，防止页面过窄时高度过小 */
    background: linear-gradient(180deg, rgba(67, 188, 168, 0.66) 0%, rgba(35, 154, 134, 0.39) 7%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0) 100%);
}

.side-video {
    display: none;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -0.5px;
    left: 0;
    width: 100%;
    height: 43px;
    background: url(../images/banner-bottom.png) no-repeat center center;
    background-size: cover;
    z-index: 9;
}

.header-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: aquamarine; */
    z-index: -1;
}

.line-bg {
    position: absolute;
    top: 390px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
    height: 1067px;
    z-index: 20;
}

.line-bg img {
    width: 100%;
    height: 100%;
    opacity: 0.20000000298023224;
}

.arrow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 63px;
    height: 36px;
    z-index: 20;
}

.arrow img {
    width: 63px;
    height: 36px;
    /* transform: rotate(90deg); */
}

.main-swiper {
    width: 100%;
    height: 100%;
}

.main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbs-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbs-swiper {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.thumbs-swiper .swiper-slide {
    width: 114px !important;
    height: 67px;
    /* width: 25%;
    height: 100%; */
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 5px;
    overflow: hidden;
}

.thumbs-swiper .swiper-slide-active {
    width: 149px;
    height: 87px;
}

.header-layout {
    width: 1351px;
    margin: 0 auto;
    /* display: none; */
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.header-nav .logo {
    width: 100%;
    height: 120px;
    max-width: 442px;
}

.header-nav .logo a {
    display: block;
    height: 100%;
    width: 100%;
}

.header-nav .logo a img {
    width: 100%;
}

.header-nav .nav-list {
    width: calc(100% - 442px - 120px);
}

.header-nav .nav-list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nav .nav-list ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: 46px;
    padding: 5px 27px 5px 10px;
    border-radius: 78px;
    transition: all 0.3s;
}

.header-nav .nav-list ul li a {
    font-size: 20px;
    color: #fff;
    white-space: nowrap;
}

.header-nav .nav-list ul li img {
    display: none;
    width: 45px;
    height: 26px;
    vertical-align: middle;
}

.header-nav .nav-list ul li:hover {
    font-weight: bold;
    background: linear-gradient(180deg, #23AF97 0%, #26C4A9 100%);
}

.header-nav .nav-list ul li.active {
    font-weight: bold;
    background: linear-gradient(180deg, #23AF97 0%, #26C4A9 100%);
}

/* 鼠标悬停时显示图片 */
.header-nav .nav-list ul li:hover img {
    display: inline-block;
}

/* 当前激活项显示图片 */
.header-nav .nav-list ul li.active img {
    display: inline-block;
}

.header-nav .nav-list ul li:first-child {
    margin-left: 0;
}



.nav-toggle-btn i {
    /* display: block; */
    font-size: 30px;
    color: #0E6D5D;
    cursor: pointer;
    margin-left: 20px;
}

/* 侧边导航容器 */
.nav-phone {
    position: fixed;
    top: 0;
    right: -100%;
    /* 默认隐藏在左侧 */
    width: 80%;
    /* 侧边栏宽度 */
    max-width: 300px;
    height: 100vh;
    background: #239a86;
    z-index: 1001;
    transition: right 0.3s ease;
    /* 平滑过渡动画 */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    padding: 20px;
    box-sizing: border-box;
}

/* 导航显示状态 */
.nav-phone.active {
    right: 0;
    /* 滑入显示 */
}

/* 关闭按钮样式 */
.nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 1003;
}

/* 侧边导航内logo样式 */
.nav-phone img {
    display: block;
    margin: 0 0 10px;
    /* 居中并与菜单保持距离 */
    max-width: 200px;
    /* 根据实际logo大小调整 */
}

/* 导航列表样式 */
.nav-phone .nav-list-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-phone .nav-list-li {
    border-bottom: 1px solid #eee;
    /* 分隔线 */
}

.nav-phone .nav-list-li:last-of-type {
    border-bottom: none;
    /* 分隔线 */
}

.nav-phone .nav-list-li a {
    display: block;
    padding: 15px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.nav-phone .nav-list-li a:hover {
    color: #003f34;
    /*  hover效果 */
}



.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 156px;
}

.header-main {
    width: 50%;
}

.header-main .main-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-main .main-box span {
    font-size: 65px;
    color: #333;
}

.header-main .main-box span:last-of-type {
    color: #0E6D5D;
}

.header-main .main-box p {
    width: 100%;
    max-width: 598px;
    font-size: 18px;
    color: rgba(129, 172, 164, 0.9412);
    margin-top: 10px;
}

.header-vedio {
    width: 531px;
    height: 295px;
    border-radius: 15px;
    /* border: 2px solid #239A86; */
    /* overflow: hidden; */
}

.vedio-box {
    position: relative;
}

.close-vedio {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #FFF;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 30px;
    border-radius: 50%;
    line-height: 0.8;
    z-index: 9;
    cursor: pointer;
    background: #239A86;
}

.vedio-box video {
    width: 531px;
    height: 301px;
    background-color: #333333;
    border-radius: 15px;
    border: 2px solid #239A86;
}

.vedio-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;

}

.header-function {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-banner-list {
    width: calc(100% - 1150px);
    /* width: calc(100% - 1000px);两张图 */
    /* width: calc(100% - 800px); 四张图*/
    height: 87px;
}

.header-search {
    width: 400px;
    position: relative;
}

.header-search input {
    width: 363.31px;
    height: 65px;
    padding: 0px 20px;
    background: rgba(0, 0, 0, 0.29);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    color: #fff;
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0em;
}

.header-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 50%;
    color: #239A86;
    transition: all 0.3s;
}

.header-search button:hover {
    transform: scale(1.05);
}

.header-search button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 120%;
    height: 120%;
    background: url(../images/search-bg.gif) no-repeat center center;
    background-size: cover;
    filter: hue-rotate(-70deg);
}

.header-search button i {
    font-size: 30px;
}

.header-search input::placeholder {
    color: #fff;
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0em;
}

/* 主体 */
.main {
    width: 100%;
    height: 100%;
}

/* 页脚 */
.footer {
    width: 100%;
    height: 463px;
    background: url(../images/footer-bg.png) no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 10;
}

.footer::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    height: calc(100% - 60px);
    width: 100%;
    background: url(../images/footer-front-bg.png) no-repeat center center;
    background-size: cover;
    z-index: 11;
}

.footer-layout {
    width: 100%;
    padding-top: 7px;
    height: calc(100% - 60px);
    position: relative;
    z-index: 12;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    margin-bottom: 45px;
    height: 135px;
}

.footer-logo a {
    display: block;
    width: 100%;
    height: auto;
    max-width: 495px;
}

.footer-logo a img {
    width: 100%;
}

.footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.footer-copyright img {
    width: 94px;
}

.sydw {
    margin-left: 31px;
}

.footer-copyright .foo-tel {
    font-family: Microsoft YaHei;
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0em;
    color: #FFFFFF;
    margin-right: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright .foo-tel i {
    font-size: 40px;
    color: #FFFFFF;
    margin-right: 26px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    margin-top: 7px;
}

.footer-link {
    margin-bottom: 14px;
}

.footer-link .footer-links {
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0em;
    color: #FFFFFF;
    transition: all 0.3s;
}

.footer-link .footer-links:hover {
    color: #0e6d5d;
}

.footer-link .footer-links::after {
    content: '|';
    margin: 0 25px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0em;
    font-family: Microsoft YaHei;
}

.footer-link .footer-links:last-of-child::after {
    content: '';
    display: none;
}


.friend-link-container .footer-links::after {
    content: '';
    display: none;
}

.footer-info .footer-info-item {
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0em;
    color: #FFFFFF;
    margin-right: 46px;
}

.footer-info .footer-info-item:last-child {
    margin-right: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0em;
    color: #FFFFFF;
}

.footer-beian img {
    width: 20px;
    height: 20px;
}

.footer-beian {
    margin-right: 33px;
}

.friend-link-container {
    position: relative;
    display: inline-flex;
}

/* 悬浮框样式 */
.friend-link-tooltip {
    position: absolute;
    bottom: 100%;
    /* 位于友情链接上方 */
    left: 50%;
    transform: translateX(-50%);
    /* 水平居中 */
    width: 280px;
    padding: 12px 15px;
    margin-bottom: 8px;
    /* 与友情链接的间距 */
    background-color: #fff;
    border: 2px solid #239A86;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-size: 12px;
    color: #333;
    line-height: 1.6;
    z-index: 9999;
    /* 确保悬浮框在最上层 */
    opacity: 0;
    /* 默认透明 */
    visibility: hidden;
    /* 默认隐藏 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* 平滑过渡 */
}

/* 鼠标移入时显示悬浮框 */
.friend-link-container:hover .friend-link-tooltip {
    opacity: 1;
    visibility: visible;
}

/* 悬浮框内列表样式 */
.friend-link-tooltip p {
    margin: 0 0 8px 0;
    font-weight: 600;
    color: #1E88E5;
    /* 主题色，可调整 */
}

.friend-link-tooltip ul {
    margin: 0;
    /* padding-left: 20px; */
}

.friend-link-tooltip li {
    margin-bottom: 4px;
}

/* 悬浮框底部三角形箭头 */
/* .tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    border-bottom: none;
} */

/* 箭头边框（与悬浮框边框颜色一致） */
.tooltip-arrow::after {
    content: '';
    position: absolute;
    top: -7px;
    /* 调整位置覆盖悬浮框边框 */
    left: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #e5e6eb;
    /* 与悬浮框边框颜色一致 */
    border-bottom: none;
    z-index: -1;
}

/* 兼容原有样式：确保友情链接点击区域正常 */
.friend-link-container a {
    display: inline-block;
    font-size: 16px;
    width: 100%;
    max-width: 250px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #333;
    /* 继承原有a标签样式，如需调整可添加 */
}

.friend-link-container a:hover {
    color: #239A86;
    /* 继承原有a标签样式，如需调整可添加 */
}

/* 主轮播图样式 */
.gallery-top {
    height: 100%;
    /* 可根据需要调整高度 */
    width: 100%;
}



.gallery-top .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 缩略图轮播样式 */
.gallery-thumbs {
    height: 80px;
    /* 可根据需要调整高度 */
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    height: 67px !important;
    /* opacity: 0.4; */
    background-size: cover;
    background-position: center;
    background-size: cover;
    /* 可选，确保背景图适配元素 */
    border-radius: 10px;
    overflow: hidden;
    /* 圆角大小，可根据需要调整 */
}

.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    /* object-fit: cover; */
}

.gallery-thumbs .swiper-wrapper {
    display: flex;
    align-items: center !important;
}

/* .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
} */
.gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    height: 80px !important;
}

.gallery-thumbs .swiper-slide.swiper-slide-thumb-active img {
    border: 2px solid #23AF97;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.gallery-thumbs .swiper-slide.gallery-slide-thumb-active {
    height: 80px !important;
}

.gallery-slide-thumb-active img {
    /* transform: scale(1.3); */
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.nav-toggle-btn {
    display: none;
}

.main-title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-title-box .mainTitle-lay {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    line-height: 1;
}

.main-title-box .more-btn {
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5px 10px 5px 22px;
    transition: all 0.3s;
}

.main-title-box .more-btn img {
    width: 20px;
    height: 20px;
    margin-left: 6px;
}

.main-title-box .more-btn:hover {
    transform: translateX(10px);
    color: #239A86;
}

.main-title-box .more-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/more-btn-bg.png) no-repeat center center;
    background-size: cover;
}

.main-title-box .main-title {
    color: #239A86;
    font-family: DYmh;
    font-size: 38px;
    font-weight: bold;
    position: relative;
}

.main-title-box .main-title::before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: -14px;
    right: -16px;
    background: url(../images/logo-s.png) no-repeat center center;
    background-size: cover;
}

.main-title-box .main-title span {
    font-family: DYmh;
    color: #333333;
}

.main-title-box .main-title-en {
    font-family: Microsoft YaHei;
    margin-left: 19px;
    font-size: 30px;
    color: #ACCEC9;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px #ACCEC9;
    line-height: 1;
    letter-spacing: 0.05em;
    font-variation-settings: "opsz" auto;
}

/* 搜索框动画样式 */
.header-search-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #239A86;
    z-index: 9999;
    overflow: hidden;
    transition: all 0.3s ease;
}

.header-search-panel.active {
    height: 80px;
    padding: 20px;
}

.header-search-panel .search-input {
    width: calc(100% - 90px);
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 16px;
}

.header-search-panel button {
    width: 80px;
    height: 40px;
    padding: 0 15px;
    background-color: #0E6D5D;
    border-radius: 10px;
}

.header-search-panel button i {
    color: #fff;
    font-size: 20px;
}

/* 遮罩层样式 */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.search-overlay.active {
    display: block;
}

@media screen and (max-width: 1700px) {
    .header-content {
        margin-top: 70px;
    }
}


/* 公共样式 */
@media screen and (max-width: 1400px) {
    .header-search {
        display: none;
    }

    .header-layout {
        width: calc(100% - 20px) !important;
        margin-left: 10px;
        margin-right: 10px;
    }

    .header-vedio {
        height: auto;
        border: none;
    }

    .vedio-box video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        border: 2px solid #239A86;
    }

    .nav-toggle-btn {
        display: block;
    }

    .nav-list {
        display: none;
    }

    .gallery-thumbs {
        display: none;
    }
}


@media screen and (max-width: 1100px) {
    .footer .footer-info {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer .footer-info .footer-info-item {
        width: auto;
        margin-bottom: 20px;
    }

    .footer .footer-copyright {
        margin-top: 0px;
    }

    .header-content {
        margin-top: 00px;
    }

    .line-bg {
        display: none;
    }

    .arrow {
        display: none;
    }
}

@media screen and (max-width: 1040px) {
    #container .header {
        /* height: 500px; */
    }

    #container .header .header-content {
        margin-top: 20px;
    }

    #container .header .header-content .main-box span {
        font-size: 40px;
    }

    #container .header .header-function {
        margin-top: 10px;
    }

    #container .header::after {
        display: none;
    }
}


@media screen and (max-width: 750px) {
    .footer {
        width: 100%;
        height: auto;
        background: #0e6d5d;
        position: relative;
        z-index: 10;
    }

    .footer-logo {
        margin-bottom: 15px;
        height: 135px;
    }

    .footer .footer-info .footer-info-item {
        width: auto;
        margin-right: 10px;
    }

    .footer .sydw {
        width: auto;
        margin-left: 10px;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 7px;
        left: 0;
        height: calc(100% - 60px);
        width: 100%;
        background: #239a86;
        z-index: 11;
    }

    .footer .footer-copyright {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer .footer-copyright .foo-tel {
        font-size: 20px;
        margin-right: 10px;
    }

    .footer .footer-copyright .foo-tel i {
        font-size: 20px;
        margin-right: 5px;
    }

    .footer .footer-link {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .footer .footer-link a {
        white-space: nowrap;
        margin-left: 10px;
    }

    .footer .footer-link a::after {
        display: none;
    }

    .footer .footer-beian {
        margin-right: 5px;
    }

    #container .header .header-content .main-box span {
        font-size: 22px;
    }

    #container .header-main .main-box p {
        font-size: 16px;
    }

    #container .header-function {
        justify-content: space-between;
    }

    #container .header-layout {
        width: 100% !important;
        margin: 0;
    }

    .side-video {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        width: 22px;
        height: 153px;
        cursor: pointer;
    }

      .side-video img{
        width: 100%;
        height: 100%;
    }

    #container .header-layout .header-nav {
        background-color: #239a86;
        padding: 0px 20px;
        height: auto;
    }

    #container .header-layout .header-nav .logo {
        width: 83%;
        height: auto;
        max-width: 200px;
    }

    #container .header-layout .header-nav .nav-toggle-btn i {
        color: #fff;
        margin-left: 20px;
    }

    .header-content .header-vedio {
        width: 45%;
    }

    .main-title-box .main-title {
        color: #239A86;
        font-family: DYmh;
        font-size: 28px;
        font-weight: bold;
        position: relative;
    }

    #container .main-title-box .main-title-en {
        font-size: 22px;
    }


}

@media screen and (max-width: 620px) {
    .friend-link-tooltip {
        left: -75%;
    }
}

@media screen and (max-width: 550px) {
    #container .main-title-box .main-title-en {
        display: none;
    }

    #container .header-layout .header-nav .nav-toggle-btn i {
        color: #fff;
        margin-left: 10px;
    }
}