html,
body,
#app {
    min-width: 1200px;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    --content-width: 85%
}

[v-cloak] {
    display: none;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
}

.mt10 {
    margin-top: 10px;
}

.header-container {
    min-width: 1400px;
    position: relative;
    z-index: 11;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.17);
}

.header-content {
    height: 120px;
    margin: 0 auto;
    position: relative;
    width: var(--content-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    font-size: 34px;
    color: #000000;
    letter-spacing: 3px;
}

.header-content .logo {
    width: 500px;
}

.header-content img {
    height: 91px;

    vertical-align: middle;
}

.header-container ul {
    list-style: none;
    display: flex;
    flex: 1;
    justify-content: space-between;
    cursor: pointer;
}

.header-container ul li {
    font-size: 22px;
}

.header-container ul li a {
    font-size: 20px;
    color: #000000;
    text-decoration: none;
}

.header-container ul li:hover,
.header-container ul li:hover a,
.header-container ul li.active a {
    color: #3C76B5;
    font-weight: bolder;
}


.header-container .header-top {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    background-color: #f4f4f4;
    text-align: right;
}

.header-container .header-top img {
    width: 20px;
    margin-right: 10px;
    vertical-align: sub;
}

.header-container .header-top span {
    display: inline-block;
    margin-left: 20px;
}

.el-carousel__item {
    text-align: center;
}

.el-carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    margin: 0 auto;
    width: var(--content-width);
}

h2.title {
    margin: 60px 0 20px;
    font-size: 36px;
    color: #212121;
    text-align: center;
}

.subtitle {
    margin: 20px 0 40px;
    font-weight: normal;
    font-size: 20px;
    color: #878686;
    text-align: center;
}

.promise-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.promise-container .outer {
    width: 44%;
    margin-bottom: 20px;
}

.promise-container .promise-item {
    height: 200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 3px;
    background-color: #f5f5f5;
    box-sizing: border-box;
    cursor: pointer;
}

.promise-container .outer:hover {
    transform: translate(0, -6px);
    box-shadow: 1px 1px 12px 3px rgb(153 153 153 / 40%);
}

.promise-container .icon-container {
    width: 90px;
    height: 90px;
    padding-top: 20px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.icon-container img {
    width: 50%;
}

.promise-container .promise-info {
    margin-left: 15px;
    flex: 1
}

.promise-info h2 {
    font-size: 20px;
}

.footer-container {
    margin-top: 40px;
    background-color: #1E1F23;
}

.footer-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.footer-content .left {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
}

.footer-content .right {
    width: 70%;
    font-size: 18px;
    padding: 25px 0;
}

.footer-content .right p {
    margin: 17px 0;
    font-size: 14px;
}

.footer-content .nav-container {
    margin-top: 25px;
}

.footer-content .nav-container ul li a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}

.footer-content .nav-container ul li:hover,
.footer-content .nav-container ul li:hover a,
.footer-content .nav-container ul li.active a {
    color: #3C76B5;
    font-weight: bolder;
}

.footer-content .location-info {
    margin-bottom: 17px;
    height: 62px;
    line-height: 62px;
    display: flex;
    justify-content: space-between;
    border-radius: 3px;
}

.footer-content ul {
    display: flex;
    justify-content: space-around;
    height: 50px;
    line-height: 50px;
    background-color: #333333;
    border-radius: 3px;
}

.footer-content ul li {
    font-size: 16px;
    display: inline-block;
}

.dialog-container {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .4);
    z-index: 13;
}

.dialog-header {
    height: 60px;
    width: 446px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    background: linear-gradient(45deg, #59cd73, #098b6b);
}

.dialog-content {
    width: 446px;
    background-color: #fff;
}

.dialog-info {
    height: 381px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.dialog-footer {
    padding: 20px;
    color: #26c595;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-top: 1px solid #eaeaea;
}

.dialog-footer a {
    margin-left: 20px;
    padding: 5px 10px;
    color: #fff;
    background-color: #098b6b;
    border-radius: 5px;
    display: inline-block;
}

.el-button--primary {
    background-color: #1BBE8D;
    border-color: #26c595;
}

.el-button--primary:hover,
.el-button--primary:focus,
.el-button--primary:hover {
    background-color: #26c595;
}

#container {
    height: 800px;
    width: 100%;
}

.two-column-items,
.four-column-items {
    display: flex;
    justify-content: space-between;
}

.two-column-items>div {
    width: 49%;
    height: 500px;
    position: relative;
}

.two-column-items img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


@media screen and (max-width:1200px) {
    .header-container ul li {
        margin-left: 10px;
    }

    .header-container ul li a {
        font-size: 16px;
    }
}

@media screen and (min-width:1200px) and (max-width:1600px) {
    .header-container ul li {
        margin-left: 15px;
    }

    .header-container ul li a {
        font-size: 18px;
    }
}
