/* 去除外边框白边 */
body {
    padding: 0;
    margin: 10px auto;
    background-color: whitesmoke;
}
div {
    margin: 0px 10px;
}
h1 {
    text-align: center
}
li {
    line-height: 30px;
    letter-spacing: 2px;
    margin-left: 60px;
}
table {
    padding: 0;
    margin: 10px auto;
    border-collapse: collapse;
}
td {
    text-align: center;
    height: 30px;
}
.td_title {
    width: 150px;
    font-weight: bolder;
}
.td_p {
    width: 250px;
    padding: 5px 10px;
}
.ptext {
    text-indent: 50px;
    line-height: 30px;
    letter-spacing: 2px;
    padding: 0 30px;
}
.inputdate {
    border: none;
    font-size: 20px;
    font-weight: bolder;
    background-color: whitesmoke;
}
.Replaceable {
    white-space: nowrap;
    background-color: whitesmoke;
    letter-spacing: 1px;
}
.channel {
    display: none;
}
/**手机适配**/
@media only screen and (max-width: 720px) {
    div {
        margin: 0px 1px;
    }
    li {
        line-height: 30px;
        letter-spacing: 1px;
        margin-left: 1px;
    }
    .td_title {
        font-weight: bolder;
    }
    .td_p {
        padding: 1px 1px;
    }
    .ptext {
        text-indent: 10px;
        line-height: 30px;
        letter-spacing: 1px;
        padding: 0 3px;
    }
    a {
        display: block;
        word-break:break-all; 
    }
}