/* #region 横幅 */
.banner {
    height: auto;
    background: #f5f9ff;
}

.banner .wrapper {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
}

.banner .country {
    display: flex;
    gap: 40px;
}

.banner .country .img {
    width: 218px;
    height: 164px;
}

.banner .country .info {
    flex: 1;
}

.banner .country .info .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner .country .info .title img {
    width: 34px;
    height: 34px;
}

.banner .country .info .title p {
    margin-top: 0;
    color: #000;
    font-size: 32px;
    font-weight: 600;
    line-height: 45px;
}

.banner .country .info p {
    margin-top: 4px;
    color: #999;
    font-size: 14px;
    line-height: 20px;
}

.banner .country .number {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

.banner .country .number p {
    position: relative;
    text-align: center;
}

.banner .country .number p:not(:first-child)::before {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 40px;
    content: "";
    background: #d8d8d8;
}

.banner .country .number p>span {
    display: block;
    color: #000;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
}

.banner .country .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.banner .country .tags a {
    box-sizing: border-box;
    display: inline-block;
    padding: 4px 12px;
    color: #498ce9;
    font-size: 14px;
    line-height: 20px;
    background: rgba(73, 140, 233, 0.1);
    border: 1px solid rgba(73, 140, 233, 0.5);
    border-radius: 15px;
    transition: 0.3s;
}

.banner .country .tags a:hover {
    color: #85b8ff;
    border: 1px solid #85b8ff
}

.banner .brief {
    width: 400px;
    height: 213px;
    margin: 0;
    border-radius: 8px;
    flex-shrink: 0;
}

.banner .brief .img {
    width: 100%;
    height: 100%;
}

.banner .brief .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 3px !important;
    background: rgba(255, 255, 255, 0.4);
}

.banner .brief .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
}

/* #endregion */

/* #region 广告 */
.advertise {
    height: 200px;
    margin-top: 20px;
}

/* #endregion */

/* #region 专区 */
.country {
    margin-top: 40px;
}

.country .left {
    width: 870px;
}

.country .right {
    width: 300px;
}

/* #endregion */

/* #region Left */
.left .box {
    box-sizing: border-box;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.left .box .content {
    margin-top: 20px;
}

.left .list li {
    display: flex;
    gap: 20px;
}

.left .list li:not(:first-child) {
    margin-top: 20px;
}

.left .list .img {
    overflow: hidden;
    width: 200px;
    height: 116px;
    border-radius: 8px;
}

.left .list .text {
    overflow: hidden;
    flex: 1;
}

.left .list .text a {
    display: block;
    font-weight: 600;
    transition: 0.3s;
}

.left .list .text a:hover {
    color: #498ce9;
}

.left .list .text p {
    margin-top: 10px;
    height: 40px;
}

.left .list .text span {
    display: inline-block;
    margin-top: 27px;
}

.left .list .text span>img {
    vertical-align: -1px;
    width: 12px;
    height: 12px;
}

/* #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 */