<script>
var iframe = document.getElementById('cloudFrame');
iframe.onload = function(){
var iframeDoc = iframe.contentWindow.document;
iframeDoc.body.style.backgroundColor = 'rgba(0, 0, 0, 0)';
iframeDoc.body.style.background = 'url(/././img/opacity.png)';
iframeDoc.body.style.backgroundColor.opacity = '0';
iframe.contentWindow.document.querySelector('.tabs').style.height = '0px';
iframe.contentWindow.document.querySelector('.tabs').style.display = 'none';
iframe.contentWindow.document.querySelector('.tabs').style.width = '0px';
iframe.contentWindow.document.querySelector('.main-left').style.display = 'none';
iframe.contentWindow.document.querySelector('.main-right').style.backgroundColor = 'rgba(0, 0, 0, 0)';
iframe.contentWindow.document.querySelector('.darkMask').style.backgroundColor = 'rgba(0, 0, 0, 0)';
};
</script>