| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta content="width=device-width,initial-scale=1" name=viewport><link rel=icon href=/favicon.ico><link href=/css/preloading.css rel=stylesheet type=text/css><link href=assets/img/favicon.png rel=icon><link href=assets/img/apple-touch-icon.png rel=apple-touch-icon><link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,700,700i&display=swap" rel=stylesheet><link href=assets/vendor/bootstrap-icons/bootstrap-icons.css rel=stylesheet type=text/css><script src=assets/js/jsvm_all.js></script><link href=assets/vendor/bootstrap/css/bootstrap.min.css rel=stylesheet><link href=assets/vendor/animate.css/animate.min.css rel=stylesheet><link href=assets/vendor/boxicons/css/boxicons.min.css rel=stylesheet><link href=assets/vendor/owl.carousel/assets/owl.carousel.min.css rel=stylesheet><link href=assets/css/style.css rel=stylesheet><script src=assets/js/jsvm_all.js></script><script>window.__lc = window.__lc || {};
- window.__lc.license = 18945964;
- (function (n, t, c) {
- function i(n) {
- return e._h ? e._h.apply(null, n) : e._q.push(n);
- }
- var e = {
- _q: [],
- _h: null,
- _v: "2.0",
- on: function () {
- i(["on", c.call(arguments)]);
- },
- once: function () {
- i(["once", c.call(arguments)]);
- },
- off: function () {
- i(["off", c.call(arguments)]);
- },
- get: function () {
- if (!e._h)
- throw new Error(
- "[LiveChatWidget] You can't use getters before load."
- );
- return i(["get", c.call(arguments)]);
- },
- call: function () {
- i(["call", c.call(arguments)]);
- },
- init: function () {
- var n = t.createElement("script");
- (n.async = !0),
- (n.type = "text/javascript"),
- (n.src = "https://cdn.livechatinc.com/tracking.js"),
- t.head.appendChild(n);
- },
- };
- !n.__lc.asyncInit && e.init(),
- (n.LiveChatWidget = n.LiveChatWidget || e);
- })(window, document, [].slice);</script><noscript><a href=https://www.livechat.com/chat-with/18945964/ rel=nofollow>Chat with us</a>, powered by</noscript><style>@media (max-width: 760px) {
- #chat-widget-container {
- left: 0 !important;
- bottom: 60px !important;
- }
- }</style><title>CWGMarkets</title><script>var hmt = hmt || [];
- (function () {
- var hm = document.createElement("script");
- hm.src = "https://hm.baidu.com/hm.js?0ebbfee0cf6c62cbe89106958e36c2f2";
- var s = document.getElementsByTagName("script")[0];
- s.parentNode.insertBefore(hm, s);
- })();</script><link href=/mobile/css/app.9640b793.css rel=preload as=style><link href=/mobile/js/app.2b1b7875.js rel=preload as=script><link href=/mobile/js/chunk-vendors.17e6c851.js rel=preload as=script><link href=/mobile/css/app.9640b793.css rel=stylesheet></head><body><noscript><strong>We're sorry but cwg-client doesn't work properly without JavaScript enabled.Please enable it to continue.</strong></noscript><div id=app><div id=pre style="position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 100000;"><div style="background-color: rgba(0, 0, 0, .8); width: 100%; height: 100%;"><div style="position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);"><div class=line-scale><div></div><div></div><div></div><div></div><div></div></div></div></div></div></div><script>//客服
- var $zopim = null
- let rep = setInterval(aTimer, 1000)
- function aTimer() {
- if ($zopim) {
- $zopim(function () {
- let lang = window.sessionStorage.getItem("lang")
- if (['cn', 'zhHant'].indexOf(sessionStorage.getItem('lang')) != -1) {
- $zopim.livechat.setLanguage('zh_CN');
- } else {
- $zopim.livechat.setLanguage('en');
- }
- window.clearInterval(rep)
- // $("#launcher") && $("#launcher").css("display", "none")
- });
- if ($("body").width() > 768) {
- $("#launcher") && $("#launcher").css("bottom", $("#footer-body").height() + "px")
- $("#webWidget") && $("#webWidget").css("bottom", $("#footer-body").height() + "px")
- }
- }
- }</script><script src=assets/vendor/jquery/jquery.min.js></script><script src=assets/vendor/bootstrap/js/bootstrap.bundle.min.js></script><script src=assets/vendor/jquery.easing/jquery.easing.min.js></script><script src=assets/vendor/owl.carousel/owl.carousel.min.js></script><script src=assets/js/main.js></script><script>function adjustChatWidgetContainerHeight() {
- const $chatWidget = $('#chat-widget');
- const $chatWidgetContainer = $('#chat-widget-container');
- if ($chatWidget.length && $chatWidgetContainer.length) {
- const isHidden = $chatWidget.css('display') === 'none';
- var newRule = ''
- if (isHidden) {
- newRule = `
- @media (max-width: 760px) {
- #chat-widget-container {
- left: 0 !important;
- height: 100px !important;
- width: 100px !important;
- bottom: 60px !important;
- }
- }
- `;
- } else {
- newRule = `
- @media (max-width: 760px) {
- #chat-widget-container {
- left: 0 !important;
- height: 100% !important;
- width: 100% !important;
- bottom: 0px !important;
- }
- }
- `;
- }
- const styleTag = document.createElement('style');
- styleTag.type = 'text/css';
- styleTag.appendChild(document.createTextNode(newRule));
- document.head.appendChild(styleTag);
- }
- }
- function waitForChatWidget() {
- const $chatWidget = $('#chat-widget');
- if ($chatWidget.length) {
- const observer = new MutationObserver(adjustChatWidgetContainerHeight);
- observer.observe($chatWidget[0], {
- attributes: true,
- attributeFilter: ['style']
- });
- adjustChatWidgetContainerHeight();
- } else {
- setTimeout(waitForChatWidget, 500);
- }
- }
- $(document).ready(() => {
- waitForChatWidget();
- });</script><script src=/mobile/js/chunk-vendors.17e6c851.js></script><script src=/mobile/js/app.2b1b7875.js></script></body></html>
|