Browse Source

优化文字渐变ie浏览器兼容

liting2017 6 years ago
parent
commit
8ea9ee176c

+ 22 - 1
src/css/newMenu/public.css

@@ -159,7 +159,27 @@ header .colorRed{
 	border: 1px solid #cccccc;
 }
 #customerType{border:none;width:200px;height:36px;color:#707070; background: transparent;
-    outline: none;}
+	outline: none;
+	appearance:none;
+	-moz-appearance:none;
+	-webkit-appearance:none;
+}
+#form_login .login_pass:nth-child(3)::after{
+	font-size: 20px;
+	color: #17a2b8;
+	content: '';
+	display: inline-block;
+	width: 10px;
+	height:10px;
+	border-left: 2px solid #707070; 
+	border-bottom: 2px solid #707070; 
+	position: absolute;
+	right: 14px;
+	top: 14px;
+	z-index: 99;
+	transform: rotate(-45deg)
+}
+#customerType::-ms-expand { display: none; }
 .login_uesr label img,
 .login_pass label img {
 	width: 20px;
@@ -198,6 +218,7 @@ header .colorRed{
 }
 
 .login_pass {
+	position: relative;
 	margin-top: 20px;
 }
 

+ 2 - 2
src/css/newMenu/tradingIndex.css

@@ -160,7 +160,7 @@
    height: 270px;
 }
 .patentAchievRight .achievementJump{
-    width: 410px;
+    width: 420px;
     height: 50px;
     margin-top: 30px;
 }
@@ -560,7 +560,7 @@
     cursor: pointer;
 }
 .demandJump{
-    width: 410px;
+    width: 420px;
     position: absolute;
     bottom: 24px;
     left: 50%;

+ 9 - 0
src/js/newMenu/loading/invRegister.js

@@ -2,3 +2,12 @@ import 'css/newMenu/public.css';
 import 'css/newMenu/header.css';
 import 'css/newMenu/landingPage/invRegister.css';
 import 'js/public.js';
+
+$(function(){
+    if(window.navigator.userAgent.indexOf('Trident')>-1){
+        $('.hot_InvR ul li a h4').css({
+            background:'transparent',
+            color:'#69a7f0'
+        })
+    }
+})