.detail {
    width: 328px;
    margin-left: calc(50% - 164px);
    padding-bottom: 67px;
}
.detail-title {
    /* height: 45px;  */
    line-height:22.5px;
    font-size: 14px;
    border-bottom: 1px solid #cccccc;
    text-indent: -10px;
    padding-left: 10px;
    padding-top: 16px;
    padding-bottom: 9.3px;
    margin-bottom: 9.3px;
}
.detail-content {
    font-size: 12px;
    color: #707070;
    /* word-break: keep-all; */
}
.btn {
    display: flex;
    justify-content: space-between;
    padding-top:30px;
}
.btn > div {
    width: 122.3px;
    height: 34px;
    border:1.3px solid #cccccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 34px;
    font-size: 12px;
}
.btn-clicked {
    color: #2da1e5;
    border:1.3px solid #2da1e5 !important;
}


html[dir="rtl"] .detail {
  margin-left: 0;
  margin-right: calc(50% - 164px);
}
html[dir="rtl"] .detail .detail-title {
  padding-left: 0;
  padding-right: 10px;
}
/*
ar语言这里有英文比较长，换行截断单词顺序就比较有问题
可以用word-break: break-all；但是会导致ar语言单词也截断，
所以干脆针对ar，把内容区设置大一点，让那段英文的不换行算了
*/
html.ar .detail{
  width: 340px;
  margin: 0 auto;
}
html.ar .detail .detail-title {
  text-indent: 0;
}
html.ar body {
  overflow-x: scroll;
}
