.pay-address {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;

    margin-top: 10px;
    margin-bottom: 10px;
}
.pay-address > span {
    color: #f80a0a;
}
.pay-title {
    position: relative;

    padding-top: 10px;
    padding-bottom: 10px;

    background-color: #f9f9f9;
}
.pay-title::before {
    content: "";

    position: absolute;
    top: 11px;
    left: 0;

    width: 7px;
    height: 18px;

    background-color: #fc9336;
}
.pay-title > span:nth-child(1) {
    padding-left: 20px;
    padding-right: 5px;

    font-size: 18px;
}
.pay-title > span:nth-child(2) {
    color: #999;
}
.content-title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}
.content > div {
    line-height: 30px;
}
.content {
    margin-top: 20px;
    margin-bottom: 20px;
}
.content-image {
    width: 100%;
    height: 200px;
    
    background-image: url(/static/web/img/548.png);
    background-size: cover;/*保持图像的纵横比并将图像缩放成将完全覆盖背景定位区域的最小大小，超出部分被裁减*/
    background-position: center;/*设置背景图像的起始位置*/
}
@media (max-width: 768px) {
    .pay {
        padding-left: 10px;
        padding-right: 10px;
    }
    .content-image {
        height: 150px;
    }
}
.content {
    display: flex;
    flex-flow: row wrap;
}
.content-left {
    width: 65%;
    padding-right: 20px;
}
.content-right {
    width: 35%;
}
.content-left-box-title {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
}
.content-left-box-title + div {
    display: none;

    margin-top: 5px;
    margin-bottom: 5px;

    font-size: 13px;
    line-height: 20px;
    /*text-indent: 5rem;*/

    color: #8a8a8a;
}
.content-left-box-title > img {
    transition: all .8s;
    transform: rotate(90deg);

}
.content-left-box-title > img.active {
    transform: rotate(0deg);
}
.content-left-box > li {
    margin-left: 15px;

    list-style-image: url(/static/web/img/point2.png);
    font-size: 16px;
    /* line-height: 50px; */
    margin-bottom: 15px;
    font-family: system-ui;
}
.content-left-box > li::marker {
    width: 20px;
    height: 20px;
}
.content-right {
    background-color: #f9f9f9;
}
.content-right-box,
.content-right-box02 {
    width: 100%;
    padding: 20px;

    border-top: 1px solid #ccc;
}
.content-right-box-phone {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
}
.content-right-box-phone > div {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    
    width: 170px;
    height: 200px;
    box-shadow: 0 0 10px 1px #ccc;

    background-color: #fff;
}
.content-right-box-phone > div:nth-child(1) > img {
    width: 70px;
    margin-bottom: 10px;
}
.content-right-box-phone > div:nth-child(2) > img {
    width: 103px;
    margin-bottom: 10px;
}
.content-right-box-phone > div > div {
    margin-bottom: 10px;
}
.content-right-box02 > a {
    display: inline-block;

    margin-left: 10px;
    margin-right: 10px;

    text-decoration: none;

    line-height: 30px;
}
.content-right-box02 > a:hover {
    text-decoration: none;
}
.content-right-btn-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;

    margin-top: 30px;
    margin-bottom: 30px;
}
.content-right-btn-box > button {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

    width: 150px;
    height: 35px;
    border: 1px solid #fc9336;

    background-color: #fff;
}
.problem-content p{
    color: #555555;
    margin-top: 8px;
}
.problem-content div{
    margin-bottom: 4px;
}
@media (max-width: 1200px) {
    .content-right-box, .content-right-box02 {
        padding: 20px 0;
    }
    .content-right-box-phone > div {
        width: 160px;
    }
}
@media (max-width: 768px) {
    .content > div {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }
    .content-right-box-phone > div {
        margin-bottom: 20px;
    }
    .content-right-btn-box > button {
        margin-bottom: 20px;
    }
}