html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
textarea,
input {
    margin: 0;
    padding: 0;
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

body {
    font-size: 14px;
    font-family: 'Microsoft Yahei', 'simsun', 'arial', 'tahoma';
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-size: 100%;
    font-weight: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

fieldset,
img {
    border: 0;
}

a,
img {
    -webkit-touch-callout: none
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none
}

input[type=password],
input[type=text],
textarea {
    resize: none;
    outline: 0;
    -webkit-appearance: none;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #fff
}

ul,
ol {
    list-style: none;
}

/**CommonStyle**/
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.clear {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.height20 {
    height: 20px;
}

/* CSS Document */
/* 复选框样式 */
.content3_b input[type=checkbox] {
    width: 14px;
    height: 14px;
    -visibility: hidden;
    vertical-align: middle;
    margin-top: -3px;
}

.content3_b input[type=checkbox]::before {
    width: 100%;
    height: 100%;
    top: 0;
    content: " ";
    background-color: White;
    color: #000000;
    display: inline-block;
    visibility: visible;
    border-radius: 2px;
    border: 1px solid #A9A9A9;
}

.content3_b input[type=checkbox][disabled=disabled]:before {
    width: 100%;
    height: 100%;
    top: 0;
    content: " ";
    background-color: #DCDCDC;
    color: #000000;
    display: inline-block;
    visibility: visible;
    border-radius: 2px;
    border: 1px solid #A9A9A9;
}

.content3_b input[type=checkbox]:checked:before {
    content: "\2713";
    /*UNICODE中对号*/
    font-size: 12px;
    font-weight: bold;
}

/* 开关按钮 */
#toggle-button {
    display: none;
}

.button-label {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 20px;
    background-color: #ffdecd;
    border: 1px solid #ffdecd;
    border-radius: 30px;
    cursor: pointer;
    margin: 10px;
}


.circle {
    position: absolute;
    top: -9px;
    left: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ff9159;
    border: 1px solid #fff;
}

.button-label .text {
    line-height: 30px;
    font-size: 18px;

    /*
    用来阻止页面文字被选中，出现蓝色
    可以将下面两行代码注释掉来查看区别
    */
    -webkit-user-select: none;
    user-select: none;
}

.on {
    color: #fff;
    display: none;
    text-indent: 10px;
}

.off {
    color: #fff;
    display: inline-block;
    text-indent: 33px;
}

.button-label .circle {
    left: 0;
    transition: all 0.3s;
    /*transition过度，时间为0.3秒*/
}

/*
以下是checked被选中后，紧跟checked标签后面label的样式。
例如：div+p 选择所有紧接着<div>元素之后的<p>元素
*/
#toggle-button:checked+label.button-label .circle {
    left: 28px;
}

#toggle-button:checked+label.button-label .on {
    display: inline-block;
}

#toggle-button:checked+label.button-label .off {
    display: none;
}

#toggle-button:checked+label.button-label {
    background-color: #e86320;
}
#vsb_content p{-text-indent:36px !important;-font-size:18px !important}
#vsb_content p span{-font-size:18px !important}