* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    /* 移除移动端点击高亮 */
}

html {
    font-size: 16px;
    line-height: 1.5;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
    font-family: Helvetica, Arial, メイリオ, meiryo, ヒラギノ角ゴ pro w3, hiragino kaku gothic pro, sans-serif;
    /* font-family: "open sans", sans-serif; */
    color: #333;
    background-color: #f8f9fa;
    -webkit-text-size-adjust: 100%;
    /* 防止字体大小自动调整 */
}

body {
    max-width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: constant(safe-area-inset-bottom);
    /* 兼容iOS 11.0 */
    padding-bottom: env(safe-area-inset-bottom);
    /* 兼容iOS 11.2+ */

    background: linear-gradient(90deg, #304C68 0%, #101921 96%);
}

/* 常用元素初始化 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.375rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

p {
    padding-bottom: 1em;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover,
a:focus {
    color: #0056b3;
    text-decoration: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    border-style: none;
    display: block;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
}

li {
    margin-bottom: 0.25em;
    list-style: none;
}

/* 表单元素初始化 */
input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 8px 12px;
    outline: none;
}

/* input:focus,
textarea:focus,
select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
} */

button {
    background-color: #5fe785;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 16px;
    transition: background-color 0.15s ease-in-out;
}

button:hover,
button:focus {
    background-color: #141416;
}

/* 头部样式 - 使用position:sticky */
.m_header {
    display: none;
}

.mobile_nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: #000;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1000;
}

.mobile_nav ul li {
    text-align: center;
    margin: 30px 0;
}

.mobile_nav ul li a {
    font-size: 2.2em;
    color: #fff;
}


.mobile_nav ul li.active {
    color: #7995e0;
}

.closeNav {
    color: #fff;
    position: absolute;
    top: 1%;
    right: 1%;

}

.closeNav img {
    width: 60px;
    height: 60px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 37PX 8%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
    background-color: #101921;
}

/* 当下拉5px时添加背景色 */
.header.scrolled {
    background-color: #101921;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo样式 */
.logo {
    height: 45px;
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    height: 45px;
}

.logo a svg {
    height: 100%;
    width: auto;
}

/* 主要内容容器 */
.container {
    position: relative;
    width: 100%;
}

/* 视频横幅 - 始终固定在顶部 */
.banner_vedio {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    padding: 0 8%;

    background: linear-gradient(90deg, #304C68 0%, #101921 96%);
}

.banner_vedio video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* 信息区域 - 覆盖在视频上方 */
.info {
    position: relative;
    margin-top: 128px;
    z-index: 100;
    padding: 0 8%;
}

.color_center {
    background: linear-gradient(90deg, #2e4862 0%, #111b24 96%);
}

.homeinfo_first {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3个单词均分宽度 */
    width: 100%;
    font-size: clamp(4vw, 10vw, 12vw);
    color: #f5f0e1;
    font-weight: 500;
    text-align: center;
}

.home_space {
    height: 80vh;
}

.homeinfo_second {
    /* padding-right: 40%; */
}

.homett {
    font-size: 4em;
    color: #fcf9e2;
    padding: 50px 0;
}

.homeinfo_second .intro {
    color: #fcf9e2;
    font-size: 1.8em;
    padding-right: 40%;
}

.homeinfo_second .intro p {
    margin-bottom: 1em;
}

.homeinfo_second .content .box p {
    color: #fcf9e2;
    /* font-size: 1.8em; */
}

.homeinfo_second .content .box a {
    background-color: #fcf9e2;
    border: 2px solid #fcf9e2;
    color: #304c68;
    font-size: 16px !important;
    padding: 12px 40px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 30px 0;
}

.homeinfo_second .content .box a:hover {
    background-color: #304c68;
    color: #fcf9e2 !important;
    /* transform: scale(1.05); */
}

.homeinfo_second .content {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
}

.homeinfo_second .content .box {
    width: 56%;
}

.homeinfo_second .content .box img {
    width: 100%;
}

.homeinfo_third .intro {
    color: #fcf9e2;
    font-size: 1.8em;
    padding-left: 44%;
}

.homeinfo_third .intro {
    padding-bottom: 1em;
}

.home_service li {
    border-top: 1px solid #fcf9e2;
    margin: 0;
    padding: 40px 0 80px 44%;
}

.hs_subox {
    display: flex
}

.hs_subox .phot {
    width: 45%;
    margin-right: 4%;
}

.hs_subox .textbox {
    color: #fcf9e2;
    font-size: 1.1em;
    width: 51%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.homeinfo_fifth .subtt {
    padding-right: 56%;
    color: #fcf9e2;
    font-size: 1.3em;
    padding-bottom: 35px;
}

.homefifth_ul {
    border-top: 1px solid #fcf9e2;
    padding: 20px 0 20px 44%;
}

.homefifth_ul ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.homefifth_ul ul li {
    flex: 0 0 calc(50% - 5px);
    box-sizing: border-box;
    padding: 20px 15px 20px 0;
    color: #fcf9e2;
}

.homefifth_ul ul li .text1 {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.homefifth_ul ul li .text2 {
    font-size: 1em;
}

/* 页脚样式 */
.footer {
    background: #101921;
    padding: 60px 8%;
    position: relative;
    z-index: 10;
    display: flex;
}

.footer .footer_logo {
    width: 50%;
    height: 38px;
    border-top: 1px solid #fcf9e2;
    padding-top: 40px;
}

.footer .footer_right {
    width: 50%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fcf9e2;
    padding-top: 40px;
}

.footer_nav {
    width: 16%;
}

.footer_nav ul li {
    margin-bottom: 25px;
}

.footer_nav ul li a {
    font-size: 18px;
    color: #fcf9e2;
}


.co {
    font-size: 16px;
    color: #fcf9e2;
    width: 26%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 12px;
}

.co .contact {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.co .contact div {
    margin-bottom: 10px;
}

.co .contact a {
    font-size: 1em;
    margin-bottom: 10px;
    color: #fcf9e2;
}

.co p {
    font-size: 12px;
    padding-top: 30px;
}

.ig {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 12px;
}

.ig a {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.ig p {
    color: #f5f0e1;
    font-size: .8em;
}

.top_nav ul {
    display: flex;
}

.top_nav ul li {
    margin-left: 30px;
}

.top_nav ul li a {
    color: #f5f0e1;
    font-size: 1.1em;
    font-weight: 400;
    transition: color 0.3s ease;
    display: block;
    height: 50px;
    line-height: 50px;
}

.top_nav ul li a:hover {
    color: #7995e0;
}

.top_nav ul li.active a {
    color: #7995e0;
}

/* about */
.ab_container {
    padding: 128px 0 80px 0;
}

.wdlf8 {
    padding: 0 8%;
}

.wline {
    border-top: 1px solid #f5f0e1;
}

.about_banner {
    height: 400px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: local;
    width: 100%;
    overflow: hidden;
}

.about_banner .text_wrap {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

.about_banner .text_wrap h1 {
    font-size: 4em;
    font-weight: 500;
    letter-spacing: 4px;
}

.about_banner .text_wrap h2 {
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 1px;
}

.about_first .text_wrap {
    color: #f5f0e1;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}

.about_first .text_wrap .d1 {
    width: 60%;
    font-size: 1.2em;
}

.about_first .text_wrap .d2 {
    width: 40%;
    font-size: 2em;
}

.about_second {
    padding: 40px 8% 90px;
    font-size: 1.2em;
    color: #f5f0e1;
}

.about_second .aboutmv {
    width: 40%;
    margin-bottom: 40px;
}

.about_third {
    padding: 0 8% 90px 8%;
}

.about_third .txt {
    width: 40%;
    font-size: 1.2em;
    color: #f5f0e1;
    margin-bottom: 40px;
}

.teambox {
    padding: 0 8%;
    color: #f5f0e1;
}

.team_photo {
    width: 240px;
    height: 280px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: local;
    overflow: hidden;
    background-color: #f5f0e1;
}

.teambox ul li {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f5f0e1;
    padding: 20px 0 40px 0;
    font-size: 1.2em;
}

.teambox ul li .txt {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.teambox ul li .txt .allname {
    font-size: 1.8em;
}

.about_partner {
    color: #f5f0e1;
    padding-bottom: 90px;
}

.about_partner .sub {
    font-size: 1.2em;
}

/* .partner_txt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
} */

.partner_txt .txt {
    width: 45%;

}

.partner_txt ul {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 45%;

}

.partner_txt ul li {
    flex: 0 0 calc(33.333% - 13.333px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
}

.partner_txt ul li img {
    width: 160px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

/* services */
.servicebox {
    padding: 0 8%;
    color: #f5f0e1;
}

.ser_subtt {
    font-size: 1.5em;
    margin-bottom: 50px;
}

.ser_txt {
    font-size: 1.2em;
    width: 55%;
    margin-bottom: 40px;
}

.ser_ul_right {
    font-size: 1em;
}

.serul li {
    border-top: 1px solid #f5f0e1;
    padding: 50px 0;
}

.serulflex {
    display: flex;
    align-items: center;
}

.serulflex div {
    /* width: 50%; */
}

.ser_ul_left {
    margin-right: 5%;
    width: 20%;
}

.ser_ul_left img {}

.ser_ul_right {
    width: 75%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.ser_ul_right .tt {
    font-size: 2em;
}

.publicbtn {
    background-color: #fcf9e2;
    border: 2px solid #fcf9e2;
    color: #304c68;
    font-size: 16px;
    padding: 12px 40px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 30px 0;
}

.publicbtn:hover {
    background-color: #304c68;
    color: #fcf9e2 !important;
    /* transform: scale(1.05); */
}

/* contact */
.contact_txt {
    font-size: 2em;
    width: 55%;
}

.contact_msg {
    display: flex;
    justify-content: flex-end;
    padding: 100px 0 80px 0;
    flex-direction: column;
    align-items: flex-end;
}

.contact_msg ul {
    width: 58%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact_msg li {
    color: #f5f0e1;
    font-size: 1.2em;
    width: 48%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid #f5f0e1;
}

.contact_msg li:last-child {
    width: 100%;
}

.contact_msg li:first-child {
    border-bottom: 0 !important;
}

.contact_msg li:first-child,
.contact_msg li:last-child {
    width: 100%;
}

.contact-phone {
    display: flex;
    align-items: center;
}

.contact_msg ul li input,
.contact_msg ul li textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    color: #f5f0e1;
}

.contact_msg ul li textarea {
    height: 120px;
    resize: none;
    outline: none;
}

.msg_submit {
    width: 58%;
}

.msg_submit a {
    width: 100%;
    text-align: center;
    font-size: 1.3em !important;
    padding: 12px 10px;
}

.map_section {
    width: 80%;
    margin: 0 auto;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    height: 430px;
    border-radius: 8px;
    box-sizing: content-box;
}

#baiduMap {
    width: calc(100% + 450px);
    height: 430px;
    position: absolute;
    left: -450px;
    top: 0;
    border: none;
}

#googleMap {
    width: 100%;
    height: 430px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* news */
/* 列表容器 */
.article-list {
    width: 84%;
    margin: 0 auto;
    padding: 50px 0;
}

/* 文章项 */
.article-item a {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: background-color 0.3s;
    border-bottom: 1px solid #f5f0e1;
}

.article-item a:hover {
    background-color: rgba(16, 23, 33, 0.5);
}

/* 日期块 */
.article-date {
    width: 70px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f5f0e1;
    color: #101921;
    margin-right: 20px;
    text-align: center;
    border-radius: 3px;
}

.day {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

.year-month {
    font-size: 14px;
    line-height: 1.2;
}

.article-img {
    width: 200px;
    height: 200px;
    overflow: hidden;
}

/* 内容区 */
.article-content {
    flex: 1;
    padding: 0 30px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.article-title {
    font-size: 18px;
    color: #f5f0e1;
    margin-bottom: 8px;
    font-weight: 500;
}

.article-excerpt {
    font-size: 14px;
    color: #f5f0e1;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* shop window */
/* 悬浮卡片容器 */
.floating-card {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 430px;
    height: 200px;
    background-color: #0a111d;
    display: flex;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 9999;
    /* 确保悬浮在最上层 */
    transition: transform 0.3s ease;
    z-index: 999;
    /* background-color: rgba(10, 17, 29, 0.9); */
}

/* 鼠标悬停上浮效果 */
.floating-card:hover {
    transform: translateY(-5px);
}

/* 关闭按钮样式 */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    z-index: 10;
    /* 确保按钮在最上层 */
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* 左侧图片区域 */
.card-image {
    width: 40%;
    height: 100%;
    overflow: hidden;
    padding: 10px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右侧文字内容 */
.card-content {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    font-family: "Arial", sans-serif;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

.card-link {
    color: #a8b0bc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.card-link img {
    width: 37px;
    margin-left: 5px;
}

.card-link:hover {
    color: #fff;
}

/* 隐藏卡片的类 */
.card-hidden {
    display: none;
}

/* mobile */

.m_header {
    display: none;
}

.m_header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    padding: 26px 5%;
    z-index: 1000;
    transition: background-color 0.3sease;
    background-color: #141416;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.open_nav {
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.open_nav span {
    display: inline-block;
    height: 2px;
    width: 100%;
    background-color: #fff;
}

.right_nav {
    display: flex;
    justify-content: flex-end;
}


.mobile_nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: #000;
    display: none;
    flex-direction: column;
    justify-content: space-around;
}

.mobile_nav ul li {
    text-align: center;
    margin: 30px 0;
}

.mobile_nav ul li a {
    font-size: 2.2em;
    color: #fff;
}


.mobile_nav ul li.active a {
    color: #7995e0;
}

.closeNav {
    color: #fff;
    position: absolute;
    top: 1%;
    right: 1%;

}

.closeNav img {
    width: 60px;
    height: 60px;
}

.footer_logo .ig {
    display: none;
}

.mb-date {
    display: none;
    font-size: .9em;
    padding-top: 20px;
}

/* 分页pages */
.text-center {
    text-align: center;
}

.pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: bottom;
    color: #f5f0e1;
}

.pagination li {
    display: inline-block !important;
    border: solid 1px #f5f0e1;
    border-radius: 4px;
    margin: 0 5px;
    font-size: 1em;
}

.pagination li a {
    border-radius: 4px;
    color: #f5f0e1;
    /* background: #f5f0e1; */
    padding: 12px 16px;
    border: 1px solid #DCDCDC;
    line-height: 18px;
    display: block;
    transition: all 1scubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}

.pagination .active,
.pagination a:hover {
    transition: all .3scubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}

.pagination .active {
    pointer-events: none;
}

.pagination li.active a,
.pagination li a:hover {
    background: #f5f0e1;
    color: #101921;
    border: 1px solid #f5f0e1;
}

/* 中等设备（平板，≥768px） */
@media (max-width: 768px) {
    .header {
        display: none;
    }

    .m_header {
        display: flex;
    }

    .info {
        margin-top: 0;
        padding: 0;
    }

    .banner_vedio {
        height: 60vh;
        padding: 0;
    }

    .banner_vedio video {
        height: 60vh;
    }

    .home_space {
        height: 40vh;
    }

    .homett {
        font-size: 2em;
        padding: 30px 0;
    }

    .homeinfo_second {
        padding: 0 5%;
    }

    .homeinfo_second .intro {
        padding: 0;
        font-size: 1.3em;
    }

    .homeinfo_second .content .box {
        width: 100%;
    }

    .homeinfo_third {
        padding: 0 5%;
    }

    .homeinfo_third .intro {
        padding: 0;
        font-size: 1.3em;
    }

    .home_service {
        padding: 0 5%;
    }

    .home_service li {
        padding: 40px 0;
    }

    .hs_subox {
        flex-direction: column;
    }

    .hs_subox .phot {
        width: 85%;
    }

    .hs_subox .textbox {
        width: 100%;
    }

    .hs_subox .textbox .tt1 {
        font-size: 1.3em;
        padding: 20px 0 40px 0;
    }

    .hs_subox .textbox .tt2 {
        font-size: 1.3em;
    }

    .homeinfo_fifth {
        padding: 0 5%;
    }

    .homeinfo_fifth .subtt {
        padding-right: 0;
    }

    .homefifth_ul {
        padding: 20px 0 20px 0;
    }

    .homefifth_ul ul {
        flex-direction: column;
    }

    .homefifth_ul ul li .text1 {
        font-size: 1.4em;
    }

    .homefifth_ul ul li .text2 {
        font-size: 1.4em;
    }

    /* footer */
    .footer {
        padding: 50px 5%;
        flex-direction: column;
    }

    .footer .footer_logo {
        width: 100%;
        border: none;
        padding: 20px 0;
        height: auto;
        border-top: 1px solid #f5f0e1;
        display: flex;
        justify-content: space-between;
    }

    .footer_logo a {
        width: 50%;
        height: 28px;
        display: block;
    }

    .footer_logo a img {
        height: 28px;
    }

    .footer_logo .ig {
        display: block !important;
        padding: 0;
    }

    .footer .footer_right {
        width: 100%;
        flex-direction: column;
        /* padding-top: 20px; */
        border-top: 0;
        padding-top: 0;
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav ul li a {
        font-size: 1.4em
    }

    .co {
        width: 100%;
    }

    .co .contact {
        font-size: 1.4em
    }

    .co p {
        font-size: 1em
    }

    .ig {
        display: none;
    }

    .footer_logo .ig div {
        display: flex;
        height: 28px;
        align-items: center;
        justify-content: flex-end;
    }

    .footer_logo .ig div img {
        width: 100%;
        height: 100%;
    }

    .footer_logo .ig div a {
        width: 28px;
        height: 28px;
    }

    .footer_logo .ig div a:last-child {
        margin-right: 0;
    }

    .floating-card {
        width: 90%;
        right: 5%;
    }

    .card-link img {
        width: 27px;
        margin-left: 5px;
    }

    .ab_container {
        padding: 0;
    }

    .about_banner {
        height: 320px;
    }

    .ab_container .wdlf8 {
        padding: 0 5%;
    }

    .about_first .text_wrap {
        flex-direction: column;
    }

    .about_first .text_wrap .d1 {
        width: 100%;
        font-size: 1.6em;
        padding-bottom: 40px;
    }

    .about_first .text_wrap .d2 {
        width: 100%;
        font-size: 1.6em;
    }

    .about_second {
        padding: 40px 5%;
        font-size: 1.4em;
    }

    .about_second div {
        width: 100%;
    }

    .about_third .txt {
        width: 100%;
        font-size: 1.4em;
    }

    .teambox {
        padding: 0 5%;
    }

    .teambox ul li {
        flex-direction: column;
    }

    .teambox ul li .txt {
        width: 100%;
    }

    .teambox ul li .txt .allname {
        font-size: 1.6em;
    }

    .teambox ul li .txt .posi {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .teambox ul li .txt div:last-child {
        margin-bottom: 20px;
    }

    .about_partner .sub {
        font-size: 1.4em;
        margin-bottom: 20px;
    }

    .partner_txt .txt {
        width: 100%;
        font-size: 1.2em;
    }

    .partner_txt ul {
        flex-direction: column;
        margin: 0 auto;
        align-items: center;
        width: 30%;
    }

    .partner_txt ul li {
        padding: 10px 0;
    }

    .partner_txt {
        padding-bottom: 60px;
    }

    .about_banner .text_wrap h1 {
        font-size: 2.5em;
        font-weight: bold;
        text-align: center;
    }

    .about_banner .text_wrap h2 {
        font-size: 1.4em;
        padding: 0 10%;
        text-align: center;
    }

    .servicebox {
        padding: 0 5% 50px 5%;
    }

    .ser_subtt {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .ser_txt {
        font-size: 1.4em;
        width: 100%;
    }

    .article-list {
        width: 90%;
        margin: 0 auto;
    }

    .contact_txt {
        font-size: 1.6em;
        width: 100%;
    }

    .contact_msg {
        padding: 50px 0 50px 0;
    }

    .contact_msg ul {
        width: 100%;
    }

    .contact_msg li {
        width: 100%;
    }

    .msg_submit {
        width: 100%;
    }

    .ser_ul_right .tt {
        font-size: 1.2em;
        margin-bottom: 15px;
    }

    .article-date {
        display: none;
    }

    .article-item {
        padding: 20px 0;
    }

    .article-img {
        width: 30%;
        height: auto;
    }

    .article-content {
        padding: 0 0 0 20px;
        height: auto;
    }

    .article-title {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .article-excerpt {
        font-size: .9em;
    }

    .mb-date {
        display: block;
        color: #f5f0e1;
    }

    .map_section {
        height: 250px;
        width: 90%;
        padding: 50px 0;
    }

    #googleMap {
        height: 250px;
    }

    .text-center {
        padding-bottom: 50px;
    }

    .ser_ul_right {
        flex-direction: column;
    }

    .ser_ul_right div {
        width: 100%;
    }

    .serul li {
        padding: 30px 0;
    }
}