Pārlūkot izejas kodu

修改反馈问题

zjm
等你 pirms 2 mēnešiem
vecāks
revīzija
1dfb749a89

Binārs
dev/static/images/index/aboutbg7.png Parādīt failu


Binārs
dev/static/images/index/aboutbgm.png Parādīt failu


+ 7
- 2
src/pages/common/css/common.less Parādīt failu

@@ -809,6 +809,11 @@ footer{
809 809
                 .footerShow{
810 810
                     display: flex;
811 811
                     flex-direction: column;
812
+                    a{
813
+                        &:hover{
814
+                            color: #000;
815
+                        }
816
+                    }
812 817
                 }
813 818
             }
814 819
         }
@@ -1092,8 +1097,8 @@ footer{
1092 1097
                 margin-right: 0px;
1093 1098
                 text-align: center;
1094 1099
                 .footerLogo{
1095
-                    width: 175px;
1096
-                    height: 33px;
1100
+                    width: 190px;
1101
+                    height: 40px;
1097 1102
                     margin: 0px auto;
1098 1103
                     background-size: auto 100%;
1099 1104
                 }

+ 4
- 4
src/pages/common/tpl/footer.tpl Parādīt failu

@@ -3,7 +3,7 @@
3 3
         <div class="footerLeft">
4 4
             <div class="footerLogo"></div>
5 5
             <!--<div class="footerLCon1"><div>电话:<span>010-65008562</span></div><div>邮编:<span>100020</span></div></div>-->
6
-            <div class="footerLCon2">地址:<span>北京市朝阳区金东路正大中心北塔28层</span></div>
6
+            <div class="footerLCon2">地址:<span>北京市朝阳区金东路正大中心北塔28层</span></div>
7 7
             <div class="footerLCon2">邮箱:<span class="txt16">zzjt@lnzzgroup.com</span></div>
8 8
         </div>
9 9
         <div class="footerCenter">
@@ -58,7 +58,7 @@
58 58
             <div></div>
59 59
             <a class="h7" href="./product.html">产业布局</a>
60 60
             <div></div>
61
-            <a class="h7" href="./news.html">新闻中心</a>
61
+            <a class="h7" href="./news.html">新闻动态</a>
62 62
             <div></div>
63 63
             <a class="h7" href="./join.html">加入中泽</a>
64 64
         </div>
@@ -73,7 +73,7 @@
73 73
             </div>-->
74 74
             
75 75
             <div class="footerLConM">
76
-                <div class="footerLCon2">地址:北京市朝阳区金东路正大中心北塔28层</div>
76
+                <div class="footerLCon2">地址:北京市朝阳区金东路正大中心北塔28层</div>
77 77
                 <a href="mail:zzjt@lnzzgroup.com" class="footerLCon2">邮箱:zzjt@lnzzgroup.com</a>
78 78
             </div>
79 79
             <div class="imgWx"><img src="./static/images/weixin.png" alt=""/><span>微信公众号</span></div>
@@ -85,5 +85,5 @@
85 85
             <div><img src="./static/images/weixin.png" alt=""/></div>
86 86
         </div>
87 87
     </div>-->
88
-    <div class="footerText"><a href="">法律声明</a><span></span><a href="">隐私政策</a><br>中泽集团版权所有 ZHONGZE GROUP COPYRIGHT <br>@ 2014-2024 <a href="https://beian.miit.gov.cn/#/Integrated/index">辽ICP备14015583号</a></div>
88
+    <div class="footerText">中泽集团版权所有 ZHONGZE GROUP COPYRIGHT <br>@ 2014-2024 <a href="https://beian.miit.gov.cn/#/Integrated/index">辽ICP备14015583号</a></div>
89 89
 </footer>

+ 17
- 4
src/pages/index/App.js Parādīt failu

@@ -214,6 +214,15 @@ export default class App {
214 214
                 ease: "power1.out" // 缓动效果
215 215
               });
216 216
         }
217
+        let productConBox=document.querySelector(".product .productConBox");
218
+        let productPage=document.querySelector(".product .swiper-page");
219
+        let pagebefore=0;
220
+        let pageAfter=0;
221
+        if(productConBox.getBoundingClientRect().width>1300){
222
+            let pageT=(productConBox.getBoundingClientRect().width-productPage.getBoundingClientRect().width)/2;
223
+            pagebefore=pageT;
224
+            pageAfter=pageT+560-312;
225
+        }
217 226
         let mySwiper = new Swiper('.productSwiper', {
218 227
                 autoplay: false,//可选选项,自动滑动
219 228
                 autoHeight: true,
@@ -221,8 +230,8 @@ export default class App {
221 230
                 slidesPerGroup : isMob?1:3,
222 231
                 spaceBetween: isMob?0:20,
223 232
                 allowTouchMove: false,
224
-                slidesOffsetBefore : isMob?0:310,
225
-                slidesOffsetAfter : isMob?0:310,
233
+                slidesOffsetBefore : isMob?0:pagebefore,
234
+                slidesOffsetAfter : isMob?0:pageAfter,
226 235
                 navigation: {
227 236
                     nextEl: '.btn-nextP1',
228 237
                     prevEl: '.btn-prevP1',
@@ -262,6 +271,9 @@ export default class App {
262 271
         allNum.textContent=historySlides.length;
263 272
         let historySwiper = null;
264 273
         if(isMob){
274
+            let rightDiv=document.querySelector(".rightDiv").offsetWidth;
275
+            let fillLineWidth=parseFloat(rightDiv/historySlides.length);
276
+            fillLine.style.width=fillLineWidth+'px';
265 277
             historySwiper = new Swiper(".historySwiper", {
266 278
                 autoplay: false,
267 279
                 rewind:true,
@@ -273,8 +285,9 @@ export default class App {
273 285
                 on:{
274 286
                     slideChange: function(){
275 287
                         nowNum.textContent=this.activeIndex+1;
276
-                        let numL=historySlides.length-this.activeIndex;
277
-                        fillLine.style.width=parseFloat(numL/historySlides.length)*100+"%";
288
+                        let numL=historySlides.length-this.activeIndex-1;
289
+                        // fillLine.style.width=parseFloat(numL/historySlides.length)*100+"%";
290
+                        fillLine.style.right=numL*fillLineWidth+'px';
278 291
                     },
279 292
                 },
280 293
               });

+ 16
- 14
src/pages/index/index.html Parādīt failu

@@ -25,13 +25,13 @@
25 25
       <div class="wow domInUp banner">
26 26
         <div class="swiper bannerSwiper">
27 27
           <div class="swiper-wrapper">
28
-            <div class="swiper-slide">
28
+            <!--<div class="swiper-slide">
29 29
               <img
30 30
                 class="lazy"
31 31
                 data-src="./static/images/index/banner1.jpg"
32 32
                 data-srcM="./static/images/index/banner1m.jpg"
33 33
                 alt=""
34
-              />
34
+              />-->
35 35
               <!-- 用视频就用下面的,把图片删除 -->
36 36
               <!-- <video
37 37
                 class="lazy"
@@ -42,10 +42,10 @@
42 42
                 loop
43 43
                 playsinline
44 44
               ></video> -->
45
-              <div class="slideCon">
45
+              <!-- <div class="slideCon">
46 46
                   <div class="title">投资并购与企业<br>运营双轮驱动</div>
47 47
               </div>
48
-            </div>
48
+            </div>-->
49 49
             <!-- 多个直接复制添加swiper-slide -->
50 50
             <div class="swiper-slide">
51 51
               <img
@@ -236,20 +236,22 @@
236 236
       <div class="wow fadeInUp about">
237 237
         <div class="wow fadeInUp title mTxt">业务版图</div>
238 238
         <div class="aboutImg">
239
-          <img class="lazy" data-src="./static/images/index/aboutbg.png" data-srcM="./static/images/index/aboutbgm.jpg" alt="" />
240
-          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.3s" data-src="./static/images/index/aboutbg2.png" data-srcM="./static/images/index/aboutbgm2.png" alt="" />
241
-          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.6s" data-src="./static/images/index/aboutbg3.png" data-srcM="./static/images/index/aboutbgm3.png" alt="" />
242
-          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.7s" data-src="./static/images/index/aboutbg4.png" data-srcM="./static/images/index/aboutbgm4.png" alt="" />
243
-          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.8s" data-src="./static/images/index/aboutbg5.png" data-srcM="./static/images/index/aboutbgm5.png" alt="" />
244
-          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.9s" data-src="./static/images/index/aboutbg6.png" data-srcM="./static/images/index/aboutbgm6.png" alt="" />
239
+          <img class="lazy" data-src="./static/images/index/aboutbg.png" data-srcM="./static/images/index/aboutbgm.png" alt="" />
240
+          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.3s" data-src="./static/images/index/aboutbg2.png" data-srcM="./static/images/index/aboutbg2.png" alt="" />
241
+          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.6s" data-src="./static/images/index/aboutbg3.png" data-srcM="./static/images/index/aboutbg3.png" alt="" />
242
+          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.7s" data-src="./static/images/index/aboutbg4.png" data-srcM="./static/images/index/aboutbg4.png" alt="" />
243
+          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.8s" data-src="./static/images/index/aboutbg5.png" data-srcM="./static/images/index/aboutbg5.png" alt="" />
244
+          <img class="wow fadeInUp lazy imgZi" data-wow-delay="0.9s" data-src="./static/images/index/aboutbg6.png" data-srcM="./static/images/index/aboutbg6.png" alt="" />
245 245
         </div>
246 246
         <div class="aboutCon">
247 247
           <div class="wow fadeInUp title pcTxt">业务版图</div>
248
-          <div class="wow fadeInUp sltImg">
249
-            业务版图缩略图
250
-            <img src="./static/images/index/aboutbg7.png" alt=""/>
248
+          <div>
249
+            <div class="wow fadeInUp sltImg">
250
+              业务版图缩略图
251
+              <img src="./static/images/index/aboutbg7.png" alt=""/>
252
+            </div>
253
+            <a href="./product.html" class="wow fadeInUp btn3">产业布局<span class="icon iconfont icon-jiantou"></span></a>
251 254
           </div>
252
-          <a href="./product.html" class="wow fadeInUp btn3">产业布局<span class="icon iconfont icon-jiantou"></span></a>
253 255
         </div>
254 256
       </div>
255 257
       <div class="wow fadeInUp history" id="fzlc">

+ 27
- 4
src/pages/index/index.less Parādīt failu

@@ -309,6 +309,17 @@
309 309
                 font-size: 16px;
310 310
               }
311 311
             }
312
+            &:hover{
313
+              background: rgba(184,28,37,.05);
314
+              &::before{
315
+                width: 100%;
316
+              }
317
+              .newsLiCon{
318
+                .liTitle,.licon{
319
+                  color: #b81c25;
320
+                }
321
+              }
322
+            }
312 323
           }
313 324
           .liHight{
314 325
             background: rgba(184,28,37,.05);
@@ -520,8 +531,12 @@
520 531
     padding-top: 125px;
521 532
     text-align: left;
522 533
     box-sizing: border-box;
534
+    display: flex;
535
+    flex-wrap: wrap;
523 536
     .title{
524
-      margin-bottom: 260px;
537
+      // margin-bottom: 260px;
538
+      width: 100%;
539
+      height: auto;
525 540
     }
526 541
     .sltImg{
527 542
       width: 300px;
@@ -800,13 +815,14 @@
800 815
       justify-content: space-between;
801 816
       border-bottom: 1px solid #999;
802 817
       line-height: 60px;
803
-      color: #fff;
818
+      color: rgba(255, 255, 255, 0.8);
804 819
       box-sizing: border-box;
805 820
       div{
806 821
         font-size: 20px;
807 822
         padding: 0px 10px;
808 823
         position: relative;
809 824
         cursor: pointer;
825
+
810 826
         &::before{
811 827
           content: '';
812 828
           position: absolute;
@@ -842,13 +858,14 @@
842 858
   }
843 859
 }
844 860
 
845
-@media screen and (min-width: 801px) and (max-width: 1400px) {
861
+@media screen and (min-width: 801px) and (max-width: 1300px) {
846 862
   .banner {
847 863
     .slideCon{
848
-      padding-top: 160px;
864
+      padding: 120px 10px 0px;
849 865
       box-sizing: border-box;
850 866
     }
851 867
   }
868
+  
852 869
 }
853 870
 @media screen and (min-width:800px){
854 871
   
@@ -1109,11 +1126,17 @@
1109 1126
     .title{
1110 1127
       margin-bottom: 40px;
1111 1128
     }
1129
+    .aboutImg{
1130
+      .imgZi{
1131
+        display: none;
1132
+      }
1133
+    }
1112 1134
     .aboutCon {
1113 1135
       position: relative;
1114 1136
       height: auto;
1115 1137
       text-align: center;
1116 1138
       padding-top: 15px;
1139
+      justify-content: center;
1117 1140
       .sltImg{
1118 1141
         margin: 0px auto;
1119 1142
         padding-top: 0px;

+ 5
- 0
src/pages/join/index.less Parādīt failu

@@ -634,6 +634,11 @@
634 634
                 }
635 635
                 .btn3{
636 636
                     margin: 20px auto 0px;
637
+                    width: 190px;
638
+        height: 40px;
639
+        line-height: 40px;
640
+        font-size: 14px;
641
+        border-radius: 20px;
637 642
                 }
638 643
                 .inLiCon{
639 644
                     justify-content: center;

+ 26
- 15
src/pages/joinList/index.less Parādīt failu

@@ -24,9 +24,8 @@
24 24
       width: 100%;
25 25
       display: flex;
26 26
       justify-content: space-between;
27
-      padding-bottom: 37px;
28 27
       border-bottom: 1px dotted #acacac5e;
29
-      padding-top: 37px;
28
+      padding: 37px 8px;
30 29
       transition: all 0.3s ease-in-out;
31 30
       &:last-child{
32 31
         border-bottom: 0px dotted #ACACAC;
@@ -74,13 +73,15 @@
74 73
           font-size: 16px;
75 74
         }
76 75
       }
76
+      
77 77
       &:hover{
78
-        background: #EFEFEF;
78
+        background: rgba(184, 28, 37, 0.05);
79 79
         .newsLiCon{
80 80
             .liTitle{
81 81
                 color: #B81C25;
82 82
             }
83 83
         }
84
+        
84 85
       }
85 86
     }
86 87
    }
@@ -173,23 +174,25 @@
173 174
   font-size: 60px;
174 175
 }
175 176
 .news_paging{
176
-  width: 100%;
177 177
   display: flex;
178 178
   align-items: center;
179 179
   justify-content: center;
180
+  width: 100%;
180 181
   padding: 0px 0 120px;
181 182
   box-sizing: border-box;
182 183
   .previousPage{
183 184
       width: 40px;
184 185
       height: 40px;
185
-      color: #041954;
186
+      color: #000000;
186 187
       display: flex;
187 188
       align-items: center;
188 189
       justify-content: center;
189
-      border: 1px solid #041954;
190
+      border: 1px solid #000000;
190 191
       margin-right: 20px;
191 192
       cursor: pointer;
192 193
       transition: all 0.2s;
194
+      border-radius: 20px;
195
+      box-sizing: border-box;
193 196
       span{
194 197
           font-size: 26px;
195 198
           transform: rotate(-90deg);
@@ -203,14 +206,16 @@
203 206
   .nextPage{
204 207
       width: 40px;
205 208
       height: 40px;
206
-      color: #041954;
209
+      color: #000000;
207 210
       display: flex;
208 211
       align-items: center;
209 212
       justify-content: center;
210
-      border: 1px solid #041954;
213
+      border: 1px solid #000000;
211 214
       margin-left: 20px;
212 215
       cursor: pointer;
213 216
       transition: all 0.2s;
217
+      border-radius: 20px;
218
+      box-sizing: border-box;
214 219
       span{
215 220
           font-size: 26px;
216 221
           transform: rotate(90deg);
@@ -225,6 +230,7 @@
225 230
       min-width: 40px;
226 231
       height: 40px;
227 232
       line-height: 40px;
233
+      font-family: Source Han Sans CN;
228 234
       font-size: 18px;
229 235
       color: #000;
230 236
       transition: all 0.2s;
@@ -233,25 +239,28 @@
233 239
       cursor: pointer;
234 240
       text-align: center;
235 241
       border: 1px solid #DDE2E6;
236
-      border-radius: 2px;
242
+      border-radius: 20px;
243
+      box-sizing: border-box;
237 244
       &:hover{
238 245
           background: #B81C25;
239 246
           border: 1px solid #B81C25;
240 247
           color: #fff;
241 248
       }
242 249
   }
243
-  .pageNumActive{
244
-      color: #fff;
245
-      background: #B81C25;
246
-  }
247 250
   .pageNums{
248 251
       pointer-events: none;
249 252
   }
250 253
   .pageNum+.pageNum{
251 254
       margin-left: 10px;
252 255
   }
256
+  .pageNumActive{
257
+      color: #fff;
258
+      background-color: #B81C25;
259
+      border: 1px solid #B81C25;
253 260
 
261
+  }
254 262
   .ellipsis{
263
+      font-family: Source Han Sans CN;
255 264
       font-weight: bold;
256 265
       font-size: 22px;
257 266
       padding: 10px 15px;
@@ -265,6 +274,7 @@
265 274
 }
266 275
 
267 276
 
277
+
268 278
 @media screen and (min-width: 801px) and (max-width: 1400px) {
269 279
   
270 280
 }
@@ -290,9 +300,10 @@
290 300
         font-size: 32px;
291 301
         line-height: normal;
292 302
     }
303
+    
293 304
     .news_paging{
294
-      // padding-top: 16vw;
295
-      padding-bottom: 60px;
305
+      padding-top: 5vw;
306
+      padding-bottom: 16vw;
296 307
       .previousPage{
297 308
           width: 40px;
298 309
           height: 40px;

+ 5
- 2
src/pages/product/App.js Parādīt failu

@@ -61,9 +61,12 @@ export default class App {
61 61
                 ease: "power1.out" // 缓动效果
62 62
               });
63 63
         }
64
+        let pagebefore=0;
64 65
         let pageAfter=0;
65 66
         if(productConBox.getBoundingClientRect().width>1300){
66
-            pageAfter=(productConBox.getBoundingClientRect().width-productPage.getBoundingClientRect().width)/2;
67
+            let pageT=(productConBox.getBoundingClientRect().width-productPage.getBoundingClientRect().width)/2;
68
+            pagebefore=pageT>50?pageT-50:pageT;
69
+            pageAfter=pageT;
67 70
         }
68 71
         let mySwiper = new Swiper('.productSwiper', {
69 72
                 autoplay: false,//可选选项,自动滑动
@@ -72,7 +75,7 @@ export default class App {
72 75
                 slidesPerGroup : isMob?1:3,
73 76
                 spaceBetween: isMob?0:20,
74 77
                 allowTouchMove: isMob?true:false,
75
-                slidesOffsetBefore : isMob?0:210,
78
+                slidesOffsetBefore : isMob?0:pagebefore,
76 79
                 slidesOffsetAfter : isMob?0:pageAfter,
77 80
                 navigation: {
78 81
                     nextEl: '.btn-nextP1',

+ 14
- 14
src/pages/product/index.html Parādīt failu

@@ -132,7 +132,7 @@
132 132
             <div class="upDiv">
133 133
               <div class="upDivTit">吉铁铁合金有限公司</div>
134 134
               <div class="text">集生产经营、研发设 计、设备制造等于一体的全国铁合金行业龙头企业</div>
135
-              <a href=""></a>
135
+              <a href="" target="_blank"></a>
136 136
             </div>
137 137
           </div>
138 138
           <div class="memberLi">
@@ -140,7 +140,7 @@
140 140
             <div class="upDiv">
141 141
               <div class="upDivTit">吉林炭素有限公司</div>
142 142
               <div class="text">产品主要包括石墨电极、石墨阳极、炭块、糊类、特种炭制品、炭纤维制品等,广泛应用于冶金、化工、机械、电子、医疗及新材料等领域</div>
143
-              <a href=""></a>
143
+              <a href="http://www.jlts.cn" target="_blank"></a>
144 144
             </div>
145 145
           </div>
146 146
           <div class="memberLi">
@@ -148,7 +148,7 @@
148 148
             <div class="upDiv">
149 149
               <div class="upDivTit">吉林吉恩镍业股份有限公司</div>
150 150
               <div class="text">集采矿、选矿、冶炼、精炼、化工于一体的大型镍、铜、钴有色金属生产加工企业。</div>
151
-              <a href=""></a>
151
+              <a href="http://www.jlnickel.com.cn" target="_blank"></a>
152 152
             </div>
153 153
           </div>
154 154
           <div class="memberLi">
@@ -156,7 +156,7 @@
156 156
             <div class="upDiv">
157 157
               <div class="upDivTit">吉林大黑山钼业股份有限公司</div>
158 158
               <div class="text">集钼金属采矿、选矿、碎石骨料加工为一体的综合性矿山企业</div>
159
-              <a href=""></a>
159
+              <a href="http://www.jldhsmy.com" target="_blank"></a>
160 160
             </div>
161 161
           </div>
162 162
           <div class="memberLi">
@@ -164,7 +164,7 @@
164 164
             <div class="upDiv">
165 165
               <div class="upDivTit">吉林中泽钼业有限公司</div>
166 166
               <div class="text">产品主要为氧化钼、钼铁、钼酸铵、高纯氧化钼等。</div>
167
-              <a href=""></a>
167
+              <a href="http://www.jlzzmoly.com" target="_blank"></a>
168 168
             </div>
169 169
           </div>
170 170
           <div class="memberLi">
@@ -172,7 +172,7 @@
172 172
             <div class="upDiv">
173 173
               <div class="upDivTit">万联易达物流科技有限公司</div>
174 174
               <div class="text">以大宗商品交易和整车物流服务为纽带,以人工智能为支撑的产业互联网公司。</div>
175
-              <a href=""></a>
175
+              <a href="https://www.10000da.net/" target="_blank"></a>
176 176
             </div>
177 177
           </div>
178 178
           <div class="memberLi">
@@ -180,7 +180,7 @@
180 180
             <div class="upDiv">
181 181
               <div class="upDivTit">通辽金煤化工有限公司</div>
182 182
               <div class="text">主要产品包括煤制乙二醇、草酸、催化剂、完全生物降解塑料等</div>
183
-              <a href=""></a>
183
+              <a href="http://www.tljmhg.com" target="_blank"></a>
184 184
             </div>
185 185
           </div>
186 186
           <div class="memberLi">
@@ -188,7 +188,7 @@
188 188
             <div class="upDiv">
189 189
               <div class="upDivTit">辽宁省机械研究院有限公司</div>
190 190
               <div class="text">主营科研业务为机械轻量化 设计、智能装备及大宗固废综合利用系统等。</div>
191
-              <a href=""></a>
191
+              <a href="" target="_blank"></a>
192 192
             </div>
193 193
           </div>
194 194
           <div class="memberLi">
@@ -196,7 +196,7 @@
196 196
             <div class="upDiv">
197 197
               <div class="upDivTit">吉林卓创新材料有限公司</div>
198 198
               <div class="text">主要生产羰基铁粉、羰基镍粉等新材料产品。</div>
199
-              <a href=""></a>
199
+              <a href="http://www.jlzcxcl.cn" target="_blank"></a>
200 200
             </div>
201 201
           </div>
202 202
           <div class="memberLi">
@@ -204,7 +204,7 @@
204 204
             <div class="upDiv">
205 205
               <div class="upDivTit">吉林中泽新型建材有限公司</div>
206 206
               <div class="text">主营蒸压加气混凝土砌块、板材、高性能无机石等系列绿色建材产品。</div>
207
-              <a href=""></a>
207
+              <a href="http://www.jlzzxxjc.com" target="_blank"></a>
208 208
             </div>
209 209
           </div>
210 210
           <div class="memberLi">
@@ -212,7 +212,7 @@
212 212
             <div class="upDiv">
213 213
               <div class="upDivTit">朝阳重型机器有限公司</div>
214 214
               <div class="text">公司成立于1959年,是集研发设计、设备制造、安装服务、进出口商务、物流及技术咨询于一体的综合性装备制造企业。</div>
215
-              <a href=""></a>
215
+              <a href="http://www.cyzxjqyxgs.com" target="_blank"></a>
216 216
             </div>
217 217
           </div>
218 218
           <div class="memberLi">
@@ -220,7 +220,7 @@
220 220
             <div class="upDiv">
221 221
               <div class="upDivTit">黑龙江新瑞石油化工有限公司</div>
222 222
               <div class="text">主要产品为甲基叔丁基醚(MTBE)、乙苯、液化气、正丁烷等。</div>
223
-              <a href=""></a>
223
+              <a href="" target="_blank"></a>
224 224
             </div>
225 225
           </div>
226 226
           <div class="memberLi">
@@ -228,7 +228,7 @@
228 228
             <div class="upDiv">
229 229
               <div class="upDivTit">吉林市神舟炭纤维有限责任公司</div>
230 230
               <div class="text">主要产品有聚丙烯睛基碳纤维、平纹碳布、斜纹碳布,主要应用于国防军工和民用领域。</div>
231
-              <a href=""></a>
231
+              <a href="http://www.jlccf.com" target="_blank"></a>
232 232
             </div>
233 233
           </div>
234 234
           <div class="memberLi">
@@ -237,7 +237,7 @@
237 237
             <div class="upDiv">
238 238
               <div class="upDivTit">沈阳中泽镁材料研究院有限公司</div>
239 239
               <div class="text">以镁为主体的金属制取、加工及高性能材料领域的新技术开发。</div>
240
-              <a href=""></a>
240
+              <a href="" target="_blank"></a>
241 241
             </div>
242 242
           </div>
243 243
           

Notiek ielāde…
Atcelt
Saglabāt