/* box1 */
.box1 {
    padding-top: 80px;
    padding-bottom: 100px;
    box-sizing: border-box;
}
.box1 .title {
    font-size: 52px;
    font-weight: 900;
    color: #FBC331;
    background: linear-gradient(0deg, #FBC331 0%, #FEF2C5 50%, #DD841B 100%);;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
}
.box1 .desc {
    font-weight: 500;
    font-size: 18px;
    color: #83A1D1;
    text-align: center;
    margin-top: 20px;
}
.box1 .list {
    gap: 30px;
    margin-top: 60px;
}
.box1 .list  > li {
    width: calc(33.33% - 30px);
    background: #0A1022;
    border-radius: 28px;
    border: 1px solid #32425E;
    overflow: clip;
}
.box1 .list  >  li > a >img {
    width: 100%;
    height: 216px;
}
.box1 .list  > li > a > .info {
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}
.box1 .list  > li > a > .info:before{
    content: "";
    display: block;
    height: 38px;
    position: absolute;
    left: 0;
    right: 0;
    top: -38px;
    background: linear-gradient( 0deg, #0A1022 0%,  rgba(10,16,34,0) 100%);
}
.box1 .list  > li > a > .info > h5 {
    font-weight: 900;
    font-size: 14px;
    color: #65748B;
    position: relative;
    padding-left: 10px;
    box-sizing: border-box;
}
.box1 .list  >  li > a > .info > h5:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #FFB20C;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.box1 .list  >  li > a > .info > h3{
    font-weight: normal;
    font-size: 20px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 12px;
}
.box1 .list  >  li > a > .info > p{
    font-size: 14px;
    color: #83A1D1;
    margin-top: 26px;
}
.box1 .list  >  li > a > .info > .bottom {
    padding-top: 40px;
    box-sizing: border-box;
    border-top: 1px solid #28364E;
    margin-top: 32px;
}
.box1 .list  >  li > a > .info > .bottom > p{
    font-weight: 900;
    font-size: 14px;
    color: #FFB20C;
}
.box1 .list  >  li > a > .info > .bottom > img {
    width: 32px;
    height: 32px;
}
.box1 .list  >  li > a > .info > .bottom > .icon2 {
    display: none;
}
.box1 .list  > li:hover {
  border: 1px solid #FFB20C;
}
.box1 .list  > li:hover a > .info > .bottom > .icon1 {
   display: none;
}
.box1 .list  > li:hover  a >.info > .bottom > .icon2 {
   display: block;
}
@media only screen and (max-width: 1200px) {
    /* box1 */
.box1 {
    padding: 40px 16px 60px 16px;
}
.box1 .title {
    font-size: 26px;
}
.box1 .desc {
    font-size: 12px;
    margin-top: 16px;
}
.box1 .list {
    gap: 0;
    margin-top: 40px;
    display: block;
}
.box1 .list  > li {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 12px;
}
.box1 .list  >  li > a >img {
    width: 100%;
    height: 161px;
}
.box1 .list  > li > a > .info {
    padding: 16px;
}
.box1 .list  > li > a > .info:before{
    content: "";
    display: block;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: -40px;
    background: linear-gradient( 0deg, #0A1022 0%,  rgba(10,16,34,0) 100%);
}
.box1 .list  > li > a > .info > h5 {
    font-size: 10px;
    padding-left: 11px;
}
.box1 .list  >  li > a > .info > h5:before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #FFB20C;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.box1 .list  >  li > a > .info > h3{
    font-size: 16px;
    margin-top: 10px;
}
.box1 .list  >  li > a > .info > p{
    font-size: 12px;
    margin-top: 14px;
}
.box1 .list  >  li > a > .info > .bottom {
    padding-top: 24px;
    margin-top: 20px;
}
.box1 .list  >  li > a > .info > .bottom > p{
    font-size: 10px;
}
.box1 .list  >  li > a > .info > .bottom > img {
    width: 26px;
    height: 26px;
}
}