@charset "utf-8";
body{ margin:0px; padding:0px;position: relative;}
a{ text-decoration:none;}
ul{ list-style:none; margin:0px; padding:0px;}
h1, h2, h3, h4, h5, h6, ol, dd, dl{ list-style:none;margin:0;padding:0px;}
li {
    list-style: none;
}
p{ margin:0px;}
.width{ width:1200px; margin:0 auto;}
.both{ clear:both;}
a{ color:#000; transition:0.5s;}
#box{ width:100%; position:relative; overflow:hidden; height:500px;}
#box img{ transition:0.3s; position:absolute; top:0px; left:0px; height:100%; width:100%; object-fit:cover;}
.arrow{width:100%;}
.arrow a{ position:absolute; top:45%; background-color:rgba(255,255,255,0.8);border-radius:50%; color:#333; font-size:24px; padding:10px 15px; opacity:0;}
#box:hover .arrow a{ opacity:1;}
.yjbh {
    display:none;
}

h3.miya_template_left_box_title.nybtdds {
    background: #0a5ec3;
    padding: 10px 20px;
    color: #fff;
    position: relative;
}
.miya_message_right form button {
    background-color: #0a5ec3;
}
.miya_message_right form button:hover {
    background: #0a5ec3;
}
.miya_info_right_product_center p img {
    width: 100%;
}


.clear{clear:both;}
.fl{
    float: left;
}
.fr{
    float: right;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            overflow-x: hidden;
            line-height: 1.5;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255,255,255,0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 50;
            transition: all 0.3s;
        }
        .vertical-scroll {
            height: 760px;
            overflow: hidden;
            position: relative;
        }
        .scroll-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            animation: verticalScroll 135s linear infinite;
        }
        .scroll-wrap:hover {
            animation-play-state: paused;
        }
        @keyframes verticalScroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-66.666%); }
        }
        .section-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            position: relative;
            padding-bottom: 16px;
            margin-bottom: 32px;
            text-align: center;
            color:#333;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: #0a5ec3;
        }  
        .section-titled {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            position: relative;
            padding-bottom: 16px;
            margin-bottom: 15px;
            text-align: center;
            color: #333;
        }
        .section-titled::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: #0a5ec3;
        }       
        .section-titles {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            position: relative;
            padding-bottom: 16px;
            margin-bottom: 32px;
            text-align: left;
        }
        .section-titles::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 8%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: #0a5ec3;
        }
        .text-left .section-title::after {
            left: 0;
            transform: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            text-decoration: none;
            transition: all 0.3s;
        }
        button {
            background: none;
            border: none;
            cursor: pointer;
        }

        /* 颜色系统 */
        .bg-primary { background: #0a5ec3; }
        .bg-accent { background: #0a5ec3; }
        .bg-dark { background: #1A1A1A; }
        .bg-light { background: #f5f9f6; }
        .bg-white { background: #fff; }
        .text-primary { color: #0a5ec3; }
        .text-accent { color: #fff; }
        .text-dark { color: #1A1A1A; }
        .text-white { color: #fff; }
        .text-gray-400 { color: #9ca3af; }
        .text-gray-500 { color: #6b7280; }
        .text-gray-600 { color: #4b5563; }
        .text-gray-620 { color: #b2b3b5; }

        /* 布局 */
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .items-start { align-items: flex-start; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .grid { display: grid; }
        .grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
        .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
        .lg\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
        .gap-4 { gap: 16px; }
        .gap-6 { gap: 24px; }
        .gap-8 { gap: 32px; }
        .hidden { display: none; }
        .relative { position: relative; }
        .absolute { position: absolute; }
        .inset-0 { top:0;left:0;right:0;bottom:0; }
        .overflow-hidden { overflow: hidden; }
        .rounded-lg { border-radius: 8px; }
        .rounded-full { border-radius: 999px; }
        .shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        .shadow-xl { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
        .transition-all { transition: all 0.3s ease; }

        /* 间距 */
        .py-2 { padding: 8px 0; }
        .py-3 { padding: 12px 0; }
        .py-4 { padding: 16px 0; }
        .py-8 { padding: 32px 0; }
        .py-16 { padding: 64px 0; }
        .py-20 { padding: 60px 0; }
        .pb-4 { padding-bottom: 16px; }
        .pb-6 { padding-bottom: 24px; }
        .pb-8 { padding-bottom: 32px; }
        .p-2 { padding: 8px; }
        .p-6 { padding: 24px; }
        .p-8 { padding: 32px; }
        .mb-2 { margin-bottom: 8px; }
        .mb-3 { margin-bottom: 12px; }
        .mb-4 { margin-bottom: 16px; }
        .mb-6 { margin-bottom: 24px; }
        .mb-8 { margin-bottom: 32px; }
        .mb-12 { margin-bottom: 48px; }
        .mb-16 { margin-bottom: 64px; }
        .mr-2 { margin-right: 8px; }
        .mr-3 { margin-right: 12px; }
        .mt-1 { margin-top: 4px; }
        .mt-3 { margin-top: 12px; }
        .mt-4 { margin-top: 16px; }
        .mx-auto { margin-left: auto; margin-right: auto; }

        /* 文字 */
        .text-sm { font-size: 14px; }
        .text-base { font-size: 16px; }
        .text-lg { font-size: 18px; }
        .text-xl { font-size: 20px; }
        .text-2xl { font-size: 24px; }
        .text-3xl { font-size: 28px; }
        .text-4xl { font-size: 36px; }
        .font-medium { font-weight: 500; }
        .font-bold { font-weight: 700; }
        .leading-tight { line-height: 1.1; }
        .leading-relaxed { line-height: 1.7; }
        .text-center { text-align: center; }
        .text-left { text-align: left; }

        /* 组件 */
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .btn-accent {
            background: #0a5ec3;
            color: #fff;
        }
        .btn-accent:hover {
            background: #c49f27;
            transform: scale(1.05);
        }
        .btn-primary {
            background: #0a5ec3;
            color: #fff;
        }
        .btn-primary:hover {
            background: #7b4a1b;
            transform: scale(1.05);
        }
        .hover-scale:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .border { border: 2px solid #fff; }
        .border-t { border-top: 1px solid #374151; }
        .border-gray-100 { border-color: #f3f4f6; }
        .border-gray-800 { border-color: #1f2937; }
        .w-full { width: 100%; }
        .w-10 { width: 40px; }
        .w-16 { width: 64px; }
        .w-20 { width: 80px; }
        .w-32 { width: 128px; }
        .h-10 { height: 40px; }
        .h-16 { height: 64px; }
        .h-20 { height: 80px; }
        .h-32 { height: 128px; }
        .h-48 { height: 192px; }
        .h-60 { height: 240px; }
        .h-80 { height: 320px; }
        .max-w-2xl { max-width: 800px; }
        .max-w-3xl { max-width: 900px; }
        .max-w-4xl { max-width: 1000px; }
        .object-cover { object-fit: cover; }
        .opacity-90 { opacity: 0.9; }
        .bg-black\/50 { background: rgba(0,0,0,0.5); }
        .bg-primary\/10 { background: rgba(139,90,43,0.1); }
        .bg-primary\/30 { background: rgba(139,90,43,0.3); }
        .bg-accent\/20 { background: rgba(212,175,55,0.2); }
        .space-y-3 > * + * { margin-top: 12px; }
        .space-y-4 > * + * { margin-top: 16px; }
        .md\:flex { display: flex; }
        .md\:hidden { display: none; }
        @media (max-width:768px) {
            .md\:flex { display: none; }
            .md\:hidden { display: block; }
            .md\:grid-cols-2 { grid-template-columns: repeat(1,1fr); }
            .md\:grid-cols-3 { grid-template-columns: repeat(1,1fr); }
            .sm\:grid-cols-2 { grid-template-columns: repeat(1,1fr); }
        }

.title {text-align: center; margin-bottom: 50px;}
.title h2 {font-size:clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; color: #1a1a1a; margin-bottom: 12px; position: relative; display: inline-block;}
.title h2::after {content: ""; width: 80px; height: 2px; background: #0a5ec3; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);}
.title p {color: #666; max-width: 700px; margin: 14px auto 0; font-size: 15px;}
/* 关于我们 */
.about {background: #fff;padding: 50px 0;}
.about-content {display: flex; align-items: center; gap: 50px;}
.about-img {flex: 1; border-radius: 15px; overflow: hidden; position: relative;}
.about-img img {border-radius: 15px;}
.about-img::before {content: "行业经验丰富"; position: absolute; right: -10px; bottom: 20px; background: #0a5ec3; color: #fff; padding: 10px 20px; font-size: 14px; border-radius: 50px; font-weight: bold;}
.about-text {flex: 1;}
.about-text p {color: #555; font-size: 15px; line-height: 1.8;}
.about-tag {display: flex; flex-wrap: wrap; gap: 15px; margin: 25px 0;}
.about-tag span {background: #b4d3f8; color: #0a5ec3; padding: 6px 15px; border-radius: 50px; font-size: 14px;}
.about-btn {display: inline-block; padding: 11px 28px; background: #0a5ec3; color: #fff; border-radius: 50px; margin-top: 10px; transition: 0.3s;}
.about-btn:hover {background: #009623;}
.wmnr {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
}

/* 服务流程 */
.process {background: #fff;padding: 50px 0;}
.process-box {display: flex; justify-content: space-between; position: relative;}
.process-box::before {content: ""; width: 80%; height: 2px; background: #e5e7eb; position: absolute; top: 45px; left: 10%; z-index: 1;}
.process-item {width: 22%; text-align: center; position: relative; z-index: 2;}
.process-step {width: 90px; height: 90px; background: #b4d3f8; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative;}
.process-step i {font-size: 32px; color: #0a5ec3;font-style: normal;}
.process-num {position: absolute; top: -8px; right: -8px; width: 28px; height: 28px; background: #0a5ec3; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px;}
.process-item h3 {font-size: 17px; font-weight: 600; margin-bottom: 8px;color: #333;}
.process-item p {font-size: 14px; color: #666;}

/* 服务优势样式 */
.advantage {
  background: #f5f9f6;
  padding: 70px 0;
}
.advantage-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.advantage-row-reverse {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.advantage-img-col {
  flex: 1;
  text-align: center;
  min-width: 280px;
}
.advantage-img-box {
  width: 100%;
  height: 307px;
  border-radius: 16px;
  margin: 0 auto;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 6px 20px rgba(0,180,42,0.15);
}
.advantage-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advantage-text-col {
  flex: 1.2;
  min-width: 280px;
}
.advantage-item {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-left: 5px solid #0a5ec3;
}
.advantage-item:last-child {
  margin-bottom: 0;
}
.advantage-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}
.advantage-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.container.flex.justify-between.items-center p a {
    color: #fff;
}
span.font-bold.text-accent.tbhm {
    font-size: 24px;
}
nav.md\:flex.hidden a {
    font-size: 16px;
}
.dbbn {
    padding-top: 38px;
}

.lcbt{
	font-size:16px;
}
.wmnrs {
    margin-left: 39px;
}
.synrs {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
}

.syxwfw:nth-child(n+4) {
    display: none;
}

ul.fenl {
    display: block;
    text-align: center;
    margin: 0 auto 50px;
}

ul.fenl li {
    display: inline-block;
    background: #0a5ec3;
    padding: 0 13px;
    margin-bottom: 8px;
    line-height: 36px;
}

ul.fenl li a {
    color: #fff;
}

nav.dhnav {
    width: 52%;
}

nav.dhnav a {
    padding: 0 18px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

span.tblogo {
    line-height: 88px;
}

img.cptps {
    height: 280px;
    object-fit: cover;
    max-width: 100%;
}
span.cpmcs {
    line-height: 49px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* 返回顶部 */
.back-top {position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: #0a5ec3; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 99; box-shadow: 0 3px 10px rgba(0,0,0,0.2);}
.back-top:hover {background: #009623;}


@media screen and (max-width: 980px) {
*{-webkit-text-size-adjust:none;}
#box{ height:300px;}
.width{ width:98%;}
.yjbh {
    display: block;
    position: fixed;
    top: 50%;
    right: 0px;
    z-index: 9999;
    width: 20%;
}
.yjbh a img {
    width: 100%;
    float: right;
}

span.font-bold.text-accent.tbhm {
    font-size: 19px;
}

.about-content {
    display: block;
}
.wmnr {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 15;
    margin-top: 20px;
}

.syxwfw:nth-child(n+4) {
    display: block;
}

.lg\:grid-cols-2 {
    grid-template-columns: repeat(1, 1fr);
}
.wmnrs {
    margin-left: 0;
    margin-top: 27px;
}
.sm\:grid-cols-2 {
        grid-template-columns: repeat(3, 1fr);
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
.tbmc {
    display: block;
}

.tbmc a {
    display: block;
}
span.tblogo {
    display: block;
    text-align: center;
    font-size: 32px;
    line-height: 74px;
}

nav.dhnav {
    width: 100%;
}
nav.dhnav a {
    padding: 0 14px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    float: left;
    background: #0a5ec3;
    margin-right: 1%;
    line-height: 39px;
}
nav.dhnav a:last-child{
	margin-right:0;
}

.dbbn div:first-child,.dbbn div:nth-child(2) {
    display: none;
}
.container.flex.justify-between.items-center p a {
    display: none;
}
header#header {
    margin-bottom: 57px;
}
.md\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
}
.bg-white.p-2.inline-block.rounded {
    display: block;
}
.dbbn div:nth-child(4) div {
    display: block;
}


/*内页*/
.miya_page_about {
    width: 98%;
    margin: 40px auto;
}

.miya_page_about_left {
    display: none;
}
.miya_page_about_right {
    width: 100%;
    float: right;
    position: relative;
}

.miya_sort_left{
	display:none;
}
.miya_sort {
    width: 98%;
    margin: 40px auto;
}
.miya_sort_right {
    width: 98%;
    margin: 40px auto;
}
.miya_sort_right {
    width: 100%;
}
.miya_info_left{
	display:none;

}
.miya_info {
    width: 98%;
    margin: 40px auto;
}
.miya_info_right {
    width: 100%;
    float: right;
}
.miya_info_right_product_top_left {
    float: left;
    width:100%;
}
.miya_info_right_product_top_right {
   display: none;
}
.miya_sort_right_product_li:nth-child(2n) {
    margin-right: 0;
}

.miya_sort_right_product_li:nth-child(3),.miya_sort_right_product_li:nth-child(9),.miya_sort_right_product_li:nth-child(15),.miya_sort_right_product_li:nth-child(21) {
    margin-right: 20px;
}
.miya_sort_right_product_li {
    float: left;
    width: 44.7%;
    margin-right: 20px;
    padding: 10px;
    background: #f9f9f9;
    margin-bottom: 20px;
}
.miya_sort_right_product_li_img img {
    max-width: 100%;
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.miya_message_left{
	display:none;
}
.miya_message {
    width: 98%;
    margin: 40px auto;
}
.miya_message_right {
    float: right;
    width: 100%;
}

.miya_info_right_info_link_li {
    float: left;
    width:19.4%;
    margin-right: 16px;
    padding: 10px;
    background: #fafafa;
    margin-bottom: 10px;
}
.miya_info_right_info_link_li:nth-child(4n) {
    margin-right: 0px;
}



}
