/* #region 横幅 */
.banner {
    height: auto;
}

.progress {
    padding: 70px 0;
    background: url(/static/image/20.png) center center no-repeat;
}

.progress .wrapper {
    display: flex;
    gap: 80px;
}

.progress .left {
    overflow: hidden;
    flex: 1;
}

.progress .question {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.progress .question h2 {
    color: #fff;
    font-size: 32px;
    line-height: 45px;
}

.progress .question p {
    margin-top: 30px;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

.progress .step {
    display: flex;
    gap: 70px;
    margin-top: 20px;
    counter-reset: section;
}

.progress .step .item {
    position: relative;
    padding-left: 63px;
}

.progress .step .item::before {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    display: block;
    width: 43px;
    height: 43px;
    counter-increment: section;
    content: counter(section);
    color: #fff;
    font-size: 18px;
    line-height: 43px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
}

.progress .step .item:not(:last-child)::after {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.5);
}

.progress .step .item p {
    margin-top: 0;
}

.progress .step .item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 17px;
}

.progress .answer {
    margin-top: 40px;
}

.progress .answer .time {
    width: 90px;
    height: 20px;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    background: #498ce9;
    border-radius: 2px;
}

.progress .answer .time img {
    margin-right: 4px;
    width: 10px;
    height: 10px;
}

.progress .answer .reply {
    margin-top: 20px;
}

.progress .answer .reply p {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

.progress .answer .doctor {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.progress .answer .doctor .img {
    width: 49px;
    height: 49px;
}

.progress .answer .doctor .text {
    overflow: hidden;
    flex: 1;
}

.progress .answer .doctor .text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 20px;
}

.progress .answer .doctor .text p:last-child {
    margin-top: 9px;
}

.progress .right {
    width: 320px;
}

.progress .quick {
    overflow: hidden;
    width: 100%;
    background: #fff;
    border-radius: 8px;
}

.progress .quick .nav {
    display: flex;
}

.progress .quick .nav li {
    width: 50%;
    padding: 15px 0;
    color: #333;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    user-select: none;
    cursor: pointer;
}

.progress .quick .nav .active {
    color: #fff;
    font-weight: 600;
    background: #498ce9;
}

.progress .quick .content {
    padding: 20px 20px 30px;
}

.progress .quick .box a {
    display: block;
    font-size: 0;
    user-select: none;
}

.progress .quick .box a>textarea {
    box-sizing: border-box;
    width: 100%;
    height: 168px;
    padding: 20px;
    color: #999;
    font-size: 14px;
    font-family: "Microsoft Yahei", "微软雅黑", "思源黑体", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "PingFang SC", Tahoma;
    background: #f6f6f6;
    border-radius: 8px;
    resize: none;
}

.progress .quick .box p {
    margin-top: 11px;
    color: #999;
    font-size: 12px;
    line-height: 17px;
}

.progress .quick .box .link {
    margin-top: 30px;
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    background: #498ce9;
    border-radius: 20px;
    transition: 0.3s;
}

.progress .quick .box .gray {
    color: #999;
    background: #f1f1f1;
}

.progress .quick .box .link:hover {
    background: #2d6ac0;
}

.progress .quick .box .gray:hover {
    color: #fff;
    background: #498ce9;
}

.progress .quick .box .links {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    column-gap: 38px;
    row-gap: 14px;
    height: 196px;
}

.progress .quick .box .links li {
    display: block;
}

.progress .quick .box .links li>a {
    color: #666;
    font-size: 14px;
    line-height: 20px;
    transition: 0.3s;
}

.progress .quick .box .links li>a:hover {
    color: #498ce9;
}

.data {
    padding: 16px 0;
    background: #fff;
}

.data .list {
    display: flex;
}

.data .list li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 25%;
}

.data .list li:not(:first-child)::before {
    position: absolute;
    left: 0;
    display: block;
    width: 1px;
    height: 44px;
    content: "";
    background: #f1f1f1;
}

.data .list .img {
    width: 28px;
    height: 28px;
}

.data .list .text {
    font-size: 0;
}

.data .list .text span {
    color: #999;
    font-size: 12px;
    line-height: 17px;
}

.data .list .text p {
    margin-top: 2px;
    color: #498ce9;
    font-size: 14px;
    line-height: 20px;
}

/* #endregion */

/* #region 问答 */
.answers {
    margin-top: 20px;
}

.answers .left {
    width: 870px;
}

.answers .right {
    width: 300px;
}

/* #endregion */

/* #region Left */
.left .module {
    box-sizing: border-box;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.left .module:not(:first-child) {
    margin-top: 20px;
}

.left .module .content {
    margin-top: 20px;
}

.left .nav {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.left .nav li {
    position: relative;
    color: #333;
    font-size: 16px;
    line-height: 22px;
    user-select: none;
    cursor: pointer;
    transition: 0.3s;
}

.left .nav li:hover {
    color: #498ce9;
}

.left .nav .active {
    color: #498ce9;
    font-weight: 600;
}

.left .nav .active::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background: #498ce9;
}

.left .overseas .content {
    margin-top: 30px;
}

.overseas .list li {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f1f1;
}

.overseas .list li:not(:first-child) {
    margin-top: 30px;
}

.overseas .list .img {
    overflow: hidden;
    width: 49px;
    height: 49px;
    border-radius: 50%;
}

.overseas .list .text {
    overflow: hidden;
    flex: 1;
}

.overseas .list .text a {
    display: block;
    transition: 0.3s;
}

.overseas .list .text a:hover {
    color: #498ce9;
}

.overseas .list .text .sub {
    margin-top: 10px;
}

.overseas .list .text .sub img {
    margin-right: 4px;
    width: 10px;
    height: 10px;
}

.overseas .list .text .sub i {
    color: #498ce9;
}

.overseas .list .card {
    flex: 1;
    display: flex;
    gap: 20px;
}

.overseas .list .card .img {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 220px;
    height: 146px;
    background: url(/static/icon/wave.png) no-repeat;
    background-size: 100% 100%;
    border-radius: 8px;
}

.overseas .list .card .img img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
}

.overseas .list .card .img span {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

.overseas .list .card .text {
    overflow: hidden;
    flex: 1;
}

.overseas .list .card .text p {
    height: 44px;
}

.overseas .list .card .text .sub {
    margin-top: 20px;
}

.overseas .list .card .text .call {
    box-sizing: border-box;
    display: inline-block;
    margin-top: 30px;
    padding: 5px 10px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    border: 1px solid #d8d8d8;
    border-radius: 17px;
}

.overseas .list .card .text .call img {
    vertical-align: -2px;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.left .query {
    text-align: center;
    padding: 40px;
}

.query p {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.query a {
    display: inline-block;
    width: 176px;
    height: 46px;
    margin-top: 30px;
    color: #fff;
    font-size: 16px;
    line-height: 46px;
    background: #498ce9;
    border-radius: 23px;
    box-shadow: 0px 2px 20px 6px rgba(73, 140, 233, 0.2);
    transition: 0.3s;
}

.query a:hover {
    background: #2d6ac0;
    box-shadow: 0px 2px 10px 3px rgba(73, 140, 233, 0.2);
}

.query .sub {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.query .sub span>img {
    vertical-align: -2px;
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.consult .links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.consult .links li>a {
    display: inline-block;
    padding: 3px 10px;
    color: #999;
    font-size: 12px;
    line-height: 17px;
    background: #f6f6f6;
    border-radius: 12px;
    transition: 0.3s;
}

.consult .links li>a:hover {
    color: #498ce9;
}

.knowledge .content {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.knowledge .list {
    overflow: hidden;
    flex: 1;
}

.knowledge .vertical {
    width: 1px;
    background: #d8d8d8;
}

.knowledge .list li {
    display: flex;
    align-items: center;
    gap: 40px;
}

.knowledge .list li:not(:first-child) {
    margin-top: 20px;
}

.knowledge .list li>a,
.knowledge .list li>span {
    font-size: 14px;
    line-height: 20px;
}

.knowledge .list li>a {
    display: inline-block;
    width: 65%;
    color: #333;
    transition: 0.3s;
}

.knowledge .list li>a:hover {
    color: #498ce9;
}

.knowledge .list li>span {
    color: #999;
}

.knowledge .list li>span:last-child {
    margin-left: auto;
}

/* #endregion */

/* #region Right */
.right .module {
    box-sizing: border-box;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.right .module:not(:first-child) {
    margin-top: 20px;
}

.right .module .title {
    gap: 4px;
}

.right .module .title img {
    width: 18px;
    height: 18px;
}

.right .module .content {
    margin-top: 20px;
}

/* #endregion */