@charset "utf-8";
/* CSS Document */



   /* 新闻列表 */

   /* 导航栏样式 */
    .nav-section {
      border-bottom: 1px solid #e5e7eb;
    }

    .nav-wrapper {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 64px;
      height: 64px;
    }

    .nav-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-bottom: 16px;
      font-size: 16px;
      overflow: visible;
    }

    .nav-item.active {
      border-bottom: 2px solid #E57021;
      color: #E57021;
      font-weight: 500;
    }

    .nav-item.inactive {
      color: #888888;
    }

    .nav-icon {
      width: 16px;
      height: 16px;
      display: inline-block;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      background-position: center;
      vertical-align: middle;
    }

    .icon-company {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="%23E57021"><path d="M12 13c0 1.1-0.9 2-2 2H6c-1.1 0-2-0.9-2-2V3c0-1.1 0.9-2 2-2h4c1.1 0 2 0.9 2 2v10zm-1-5h-2V8h2zm-2-2h-2V4h2zm1 7H6V3h4v10z"/></svg>');
    }

    .icon-industry {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="%23888888"><path d="M2.5 13.5A1.5 1.5 0 0 1 1 12V4a1.5 1.5 0 0 1 1.5-1.5h11A1.5 1.5 0 0 1 15 4v8a1.5 1.5 0 0 1-1.5 1.5h-11zM2 4a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-11z"/><path d="M8.67 2a.83.83 0 0 0-.83.84v.3c0 .24.09.47.26.64l2.67 2.67a.83.83 0 0 0 1.18 0l2.67-2.67a.83.83 0 0 0 .26-.64v-.3a.83.83 0 0 0-.83-.84h-5.33zm-.17 1.34a.17.17 0 0 1 .17.16v.17l1.17 1.17a.17.17 0 0 1 .05.12l0 .02a.17.17 0 0 1-.05.12l-1.17 1.17v.17a.17.17 0 0 1-.17.17h-.67a.17.17 0 0 1-.17-.17v-.17l-1.17-1.17a.17.17 0 0 1-.05-.12l0-.02a.17.17 0 0 1 .05-.12l1.17-1.17v-.17a.17.17 0 0 1 .17-.17h.67z"/></svg>');
    }

    /* 新闻列表主容器 */
    .news-main {
      padding: 32px 0;
    }

    /* 顶部三卡片布局 */
    .news-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 48px;
    }

    @media (min-width: 768px) {
      .news-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .news-card {
      width: 100%;
    }

    .news-img-container {
	overflow: hidden;
	position: relative;
	height: auto;
	margin-bottom: 12px;
	width: 100%;
    }

    .news-img-zoom {
      transition: transform 0.5s ease;
      transform-origin: center center;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .news-img-zoom:hover {
      transform: scale(1.08);
      transform-origin: center center;
    }

    /* 底部新闻图片容器（手机端固定高度） */
    .news-img-container.list-img {
      height: 220px;
      width: 100%;
      margin-bottom: 20px;
    }

    /* 顶部新闻日期标签 */
    .news-date-tag {
      position: absolute;
      top: 0;
      left: 0;
      width: 52px;
      background-color: #E57021;
      z-index: 20;
      text-align: center;
      color: white;
      padding: 4px 2px;
    }

    .news-date-tag .day {
      font-size: 20px;
      font-weight: bold;
      line-height: 1;
      display: block;
    }

    .news-date-tag .month-year {
      font-size: 10px;
      font-weight: normal;
      display: block;
      margin-top: 2px;
    }

    /* 新闻信息行 */
    .news-info {
	display: flex;
	align-items: center;
	font-size: 13px;
	color: #888888;
	margin-bottom: 8px;
    }

    .news-info span {
      margin-right: 12px;
    }

    .info-icon {
      width: 12px;
      height: 12px;
      margin-right: 4px;
      display: inline-block;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      background-position: center;
    }

    .icon-file {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 16 16" fill="%23888888"><path d="M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5L14 4.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5h-2z"/></svg>');
    }

    .icon-user {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 16 16" fill="%23888888"><path d="M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1.1-0.9 2-2 2H6c-1.1 0-2-0.9-2-2V8.5c0-0.28 0.11-0.54 0.3-0.72L8 5.73l5.7 2.05c0.19 0.18 0.3 0.45 0.3 0.72V13z"/></svg>');
    }

    .news-title {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
    }

    .news-desc {
	font-size: 14px;
	color: #666666;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
    }

    .news-more-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	color: #E57021;
	text-decoration: none;
	transition: all 0.2s ease;
    }

    .news-more-link:hover {
      gap: 6px;
      text-decoration: underline;
    }

    .arrow-icon {
      width: 8px;
      height: 12px;
      display: block;
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }

    /* 底部列表布局 - 核心适配 */
    .news-list {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-bottom: 32px;
    }

    /* 手机端底部新闻：纵向排列，日期在标题下方 */
    .news-list-item {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .news-list-item:not(:last-child) {
      border-bottom: 1px solid #f0f0f0;
      padding-bottom: 40px;
    }

    /* 手机端内容区：标题 → 日期（换行） → 摘要 → 按钮 */
    .news-list-content {
      display: flex;
      flex-direction: column;
      gap: 8px; /* 标题和日期间距8px，严格换行 */
    }

    /* 手机端日期：标题正下方，独立一行 */
    .mobile-date {
      font-size: 14px;
      color: #888888;
      margin-bottom: 4px;
      display: block; /* 强制换行 */
    }

    .news-list-title {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 0;
    }

    .news-list-desc {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 12px;
	overflow: hidden;
    }

    .news-list-btn-wrap {
      display: flex;
      justify-content: flex-end;
    }

    /* 桌面端隐藏手机端日期，恢复原有三列布局 */
    @media (min-width: 768px) {
      .news-list-item {
        display: grid;
        grid-template-columns: 4fr 2fr 6fr;
        align-items: center;
        gap: 24px;
      }

      .mobile-date {
        display: none; /* 桌面端隐藏手机日期 */
      }

      .news-list-item:not(:last-child) {
        padding-bottom: 0;
      }

      .news-img-container.list-img {
        height: 100%;
        min-height: 200px;
        margin-bottom: 0;
      }

      /* 桌面端日期独立列 */
.desktop-date-box {
  display: flex;
  justify-content: center;   /* 水平居中 */
  align-items: flex-start;   /* 垂直置顶 */
  position: relative;
  top: 0 !important;         /* 强制贴顶 */
  margin: 0 !important;      /* 清掉外边距 */
  padding: 0 !important;     /* 清掉内边距 */
}

      .desktop-date-inner {
        background-color: white;
        border: 1px solid #e5e7eb;
        text-align: center;
        padding: 8px 16px;
        color: #E57021;
      }

      .desktop-date-inner .day-big {
        font-size: 48px;
        font-weight: bold;
        line-height: 1;
        display: block;
      }

      .desktop-date-inner .month-year-small {
        font-size: 12px;
        display: block;
        margin-top: 2px;
      }
    }

    /* 手机端隐藏桌面端日期列 */
    @media (max-width: 767px) {
      .desktop-date-box {
        display: none;
      }
    }

    .news-btn {
      background-color: #E57021;
      color: white;
      font-size: 12px;
      font-weight: 500;
      padding: 8px 24px;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.2s ease;
    }

    .news-btn:hover {
      background-color: #E57021cc;
    }

    .more-btn-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 64px;
    }

    .more-btn {
      background-color: #E57021;
      color: white;
      font-size: 16px;
      font-weight: 500;
      padding: 12px 48px;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease;
    }

    .more-btn:hover {
      background-color: #E57021cc;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
	
	
	    /* 主容器 - 联系我们 */
	
	        /* 主容器 - 桌面端留白+移动端满宽 */
        .contact-container {
            width: 100%;
            min-height: 100vh;
            padding: 30px 40px;
            max-width: 1920px;
            margin: 0 auto;
        }

        /* 页面标题 - 下划线样式精准匹配 */
        .contact-header {
            margin-bottom: 30px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e5e5e5;
            position: relative;
        }

        .contact-header h1 {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-header::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 60px;
            height: 2px;
            background-color: #ff6600;
        }

        /* 地址卡片容器 - 桌面双列+移动端单列 */
        .contact-address {
            display: flex;
            width: 100%;
            margin-bottom: 30px;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* 地址卡片 - 整体无背景，仅标题区有背景图 */
        .address-card {
            flex: 1;
            min-width: 320px;
            padding: 0;
            border: 1px solid #e5e5e5;
            border-radius: 0;
            background-color: #fff;
        }
        
        /* 标题区域 - 单独设置背景图+样式 */
        .card-header {
            padding: 20px 30px;
            color: #fff;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
			
        }
        
        /* 营销中心标题背景（临时示例图） */
        .address-card.marketing .card-header {
            background-image: url("/template/pc/skin/images/dongguan.png");
            /* 叠加半透明橙色，保证文字可读性 */
            background-color: rgba(255, 102, 0, 0.8);
            background-blend-mode: overlay;
        }
        
        /* 生产基地标题背景（临时示例图） */
        .address-card.factory .card-header {
            background-image: url("/template/pc/skin/images/shenzhen.png");
            /* 叠加半透明深蓝色，保证文字可读性 */
            background-color: rgba(24, 53, 72, 0.8);
            background-blend-mode: overlay;
        }

        /* 卡片标题 - 字号+间距优化 */
        .card-header h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .card-header p {
            font-size: 16px;
            opacity: 0.9;
            letter-spacing: 0.5px;
        }

        /* 信息列表区域 - 无背景，白底黑字 */
        .card-body {
            padding: 25px 30px;
            background-color: #fff;
			  font-size: 16px;
        }

        .address-card .info-list {
            list-style: none;
        }

        /* 信息项 - 分隔线+小图标+舒适间距（黑字黑图标） */
        .address-card .info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #e5e5e5;
            font-size: 16px;
            line-height: 1.8;
            color: #333;
        }
        /* 最后一项移除分隔线 */
        .address-card .info-item:last-child {
            border-bottom: none;
        }

        /* 卡片图标 - 小尺寸+黑色适配 */
        .address-card .info-item i {
            width: 18px;
            height: 18px;
            display: inline-block;
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .icon-location {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 10.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/></svg>");
        }
        .icon-phone {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.14-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z'/></svg>");
        }
        .icon-mobile {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z'/></svg>");
        }
        .icon-email {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10z'/></svg>");
        }

        /* 表单选项卡容器 - 边框精准匹配 */
        .contact-tab-wrapper {
            width: 100%;
            border: 1px solid #e5e5e5;
            border-radius: 0;
            overflow: hidden;
            margin-bottom: 0;
        }

        /* TAB导航 - 桌面等宽4列+移动端单列 */
        .contact-tabs {
            display: flex;
            background-color: #fff;
            border-bottom: 1px solid #e5e5e5;
            width: 100%;
            gap: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .tab-item {
            flex: 1;
            min-width: 120px;
            padding: 18px 0;
            text-align: center;
            background-color: #f7f7f7;
            cursor: pointer;
            transition: all 0.3s ease;
            border-top: 2px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #666;
            font-size: 15px;
        }

        /* TAB激活状态 - 浅橙背景+橙色上边框 */
        .tab-item.active {
            background-color: #fff3f0;
            border-top-color: #ff6600;
            color: #ff6600;
            font-weight: 500;
        }

        .tab-item:hover {
            color: #ff6600;
        }

        /* TAB图标 - 尺寸+颜色适配 */
        .tab-item i {
            width: 20px;
            height: 20px;
            background-size: 100% 100%;
            background-repeat: no-repeat;
        }

        .tab-item.active i {
            filter: brightness(0) saturate(100%) invert(43%) sepia(100%) saturate(3414%) hue-rotate(354deg) brightness(100%) contrast(101%);
        }

        .icon-client {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/></svg>");
        }
        .icon-dealer {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z'/></svg>");
        }
        .icon-exhibition {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H5V5h14v12z'/></svg>");
        }
        .icon-other {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M19 13H5v-2h14v2z'/></svg>");
        }

        /* 表单容器 - 显隐切换基础样式 */
        .contact-form-wrapper {
            width: 100%;
        }

        .contact-form {
            background-color: #fff;
            padding: 35px 40px;
            border: none;
            display: none;
            width: 100%;
        }

        .contact-form.active {
            display: block;
            animation: formFade 0.3s ease;
        }

        /* 表单淡入动画 - 提升交互体验 */
        @keyframes formFade {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-intro {
            margin-bottom: 25px;
            color: #666;
            font-size: 14px;
            line-height: 1.7;
        }

        /* 表单行 - 桌面多列+移动端单列 */
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 20px;
            width: 100%;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
        }

        /* 表单标签 - 星号必填标识 */
        .form-group label {
            font-size: 14px;
            color: #666;
            font-weight: 400;
        }

        .form-group label::before {
            content: '*';
            color: #ff6600;
            margin-right: 4px;
        }

        /* 输入框 - 边框+聚焦样式优化 */
        .form-group input,
        .form-group textarea {
            padding: 12px 15px;
            border: 1px solid #e5e5e5;
            border-radius: 0;
            font-size: 14px;
            transition: all 0.3s ease;
            width: 100%;
            color: #333;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #ff6600;
            box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
            line-height: 1.7;
            max-height: 300px;
        }

        /* 提交按钮 - hover效果+居中 */
        .form-submit {
            width: 100%;
            padding: 14px;
            background-color: #ff6600;
            color: #fff;
            border: none;
            border-radius: 0;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
        }

        .form-submit:hover {
            background-color: #e65c00;
        }
		
		  /* 全屏地图容器 - 宽度100%，高度自适应 */
        .fullscreen-map {
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }
        .fullscreen-map img {
            width: 100%;
            height: auto;
            display: block;
        }
		

        /* 平板端适配 (768px以下) */
        @media (max-width: 768px) {
            .contact-container {
                padding: 25px 20px;
            }
            .contact-header {
                margin-bottom: 25px;
            }
            .contact-header h1 {
                font-size: 22px;
            }
            .contact-address {
                gap: 15px;
            }
            .address-card {
                min-width: 100%;
            }
            .card-header {
                padding: 15px 25px;
            }
            .card-body {
                padding: 20px 25px;
            }
            .card-header h2 {
                font-size: 24px;
            }
            .address-card .info-item {
                font-size: 15px;
                gap: 10px;
            }
            .tab-item {
                min-width: 50%;
                padding: 16px 0;

                font-size: 14px;
            }
            .contact-form {
                padding: 30px 25px;
            }
            .form-row {
                gap: 20px;
            }
        }

        /* 手机端适配 (480px以下) - 极致优化 */
        @media (max-width: 480px) {
            .contact-container {
                padding: 20px 15px;
            }
            .contact-header h1 {
                font-size: 20px;
            }
            .card-header {
                padding: 15px 20px;
            }
            .card-body {
                padding: 15px 20px;
            }
            .address-card .info-item {
                font-size: 14px;
                padding: 10px 0;
            }
            .address-card .info-item i {
                width: 16px;
                height: 16px;
            }
            /* 手机端TAB单列显示，避免挤压 */
            .tab-item {
                min-width: 100%;
                padding: 15px 0;
                font-size: 14px;
            }
            .contact-form {
                padding: 25px 20px;
            }
            .form-intro {
                font-size: 13px;
                margin-bottom: 20px;
            }
            .form-row {
                gap: 15px;
            }
            .form-group input,
            .form-group textarea {
                padding: 10px 12px;
                font-size: 13px;
            }
            .form-submit {
                padding: 12px;
                font-size: 15px;
            }
        }
