

.subfield {
    display: flex;
    align-items: stretch;
}


.left-column {

    flex-basis: 70%;
    /* 左右两栏宽度平分 */
    padding: 0px;
    /* 可根据需要调整内边距 */
    border-right: #000;
}

.right-column {
    flex-basis: 30%;
}

.vertical-line {
    width: 1px;
    /* 竖线宽度 */
    background-color: #000;
    /* 竖线颜色 */
    margin: 0 20px;
    /* 可根据需要调整竖线与左右两栏之间的距离 */
}

.auto-display-card {
    display: block;
}

.image-container {
    overflow: hidden;
    /* 清除浮动，确保父容器包含浮动元素 */
}


/* Global styles come from external css https://codepen.io/GreenSock/pen/gOWxmWG */




.custom-btn {
    width: 130px;
    height: 40px;
    color: black;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
        7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    outline: none;
}

/* 8 */
.btn-8 {
    background-color: #f0ecfc;
    background-image: linear-gradient(315deg, rgb(156,179,212,0.5) 0%, rgb(062,115,158,0.6) 74%);
    line-height: 42px;
    padding: 0;
    border: none;
}

.btn-8 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.btn-8:before,
.btn-8:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: rgb(156,179,212);
    /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
    transition: all 0.3s ease;
}

.btn-8:before {
    height: 0%;
    width: 2px;
}

.btn-8:after {
    width: 0%;
    height: 2px;
}

.btn-8:hover:before {
    height: 100%;
}

.btn-8:hover:after {
    width: 100%;
}

.btn-8:hover {
    background: transparent;
}

.btn-8 span:hover {
    color: rgb(062 115 158);
}

.btn-8 span:before,
.btn-8 span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: rgb(062 115 158);
    /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
    transition: all 0.3s ease;
}

.btn-8 span:before {
    width: 2px;
    height: 0%;
}

.btn-8 span:after {
    height: 2px;
    width: 0%;
}

.btn-8 span:hover:before {
    height: 100%;
}

.btn-8 span:hover:after {
    width: 100%;
}
.btn-8 a{
    text-decoration: none;
    color: black;
}

.card{
    margin-top: 20px;
    margin-bottom: 20px;
}

 a{
    text-decoration: none;
}
a:hover{
    text-decoration:underline;
}