<!DOCTYPE html>
|
<html>
|
<head>
|
<meta charset="utf-8">
|
<title>关于我们</title>
|
<meta name="viewport" content="width=device-width, viewport-fit=cover, initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
|
|
<style>
|
body {
|
margin: 0;
|
padding: 0;
|
background: #3C3C3C;
|
}
|
|
.item {
|
height: 0.88rem;
|
margin-top: 1px;
|
padding-left: 0.3rem;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
font-size: 0;
|
background: #5C5C5C;
|
}
|
|
.item>.title {
|
color: white;
|
font-size: 0.28rem;
|
}
|
|
.item>img {
|
margin-right: 0.3rem;
|
height: 0.3rem;
|
width: auto;
|
}
|
</style>
|
|
<script>
|
window.onresize = function() {
|
document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
|
};
|
window.onresize();
|
</script>
|
</head>
|
<body>
|
<div style="width: 100%;background: #000000;height: 4.08rem;display: flex;align-items: center;justify-content: center;">
|
<img src="img/top.png" style="width: 100%;height: 100%;" />
|
</div>
|
|
|
|
|
<div class="item" onclick="protocol()">
|
<div class="title">用户服务协议</div>
|
<img src="img/icon_array.png" />
|
</div>
|
|
<div class="item" onclick="privacy()">
|
<div class="title">隐私政策</div>
|
<img src="img/icon_array.png" />
|
</div>
|
|
<div class="item" onclick="tousu()">
|
<div class="title">隐私投诉</div>
|
<img src="img/icon_array.png" />
|
</div>
|
|
<div class="item" onclick="unregister()">
|
<div class="title">账户注销</div>
|
<img src="img/icon_array.png" />
|
</div>
|
|
</body>
|
<script>
|
function protocol() {
|
// try {
|
// var params = yestv.getRequestBaseParams("");
|
// if (params != null) {
|
// params = JSON.parse(params);
|
// if (params.Channel != 'qq' && params.Channel != 'QQ') {
|
// window.location.href = "http://bwapp.flqapp.com:8089/BuWan/api_control_ios_bw.jsp"
|
// } else {
|
// window.location.href = "http://bwapp.flqapp.com:8089/BuWan/api_control_ios.jsp"
|
// }
|
// }
|
// } catch (e) {
|
window.location.href = "http://bwweb.yeshitv.com/user_protocol.html"
|
// }
|
}
|
|
function privacy() {
|
// try {
|
// var params = yestv.getRequestBaseParams("");
|
// if (params != null) {
|
// params = JSON.parse(params);
|
// if (params.Channel != 'qq' && params.Channel != 'QQ') {
|
// window.location.href = "http://bwapp.flqapp.com:8089/BuWan/user_protocol_bw.jsp"
|
// } else {
|
// window.location.href = "http://bwapp.flqapp.com:8089/BuWan/user_protocol.jsp"
|
// }
|
// }
|
// } catch (e) {
|
window.location.href = "http://bwweb.yeshitv.com/privacy.html"
|
// }
|
}
|
|
function unregister() {
|
window.location.href = "http://bwweb.yeshitv.com/unregister/index.html"
|
}
|
|
function tousu(){
|
window.location.href ="tousu.html";
|
}
|
</script>
|
|
</html>
|