
body{ 
    font-size:14px; 
    font-family: 'Noto Sans TC',Microsoft JhengHei,Arial, Helvetica,sans-serif,nsimsun; 
    font-weight: 500;
    color:#333; 
    position:relative;
    background-color: #0d1015;
    letter-spacing: 1px;

    /*overflow-y: hidden; */

    width: 100%;
    overflow-x: hidden;
    animation-name: fade-in;
    animation-duration:1s;
    animation-timing-function:ease-in;
}
@keyframes fade-in{
    0%{
        opacity:0;
    }
    100%{
        opacity: 1;
    }
}

body.active{
    overflow: hidden;
}

a{ color:#333;transition: .3s}
a:hover{ color:#333;}
* { 
 -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
 -moz-box-sizing: border-box;    /* Firefox, other Gecko */
 box-sizing: border-box;         /* Opera/IE 8+ */
}
  
/*   html{
    overflow-y: hidden; 
    position:static;
} */

html{
    scroll-behavior: smooth;
}

::selection {
    background: #efc252;
    color: #fff;
}
::-moz-selection {
    background: #efc252;
    color: #fff;
}


/****** scrollbar ******/
 ::-webkit-scrollbar {
    width: 8px;
    background-color: #0d1015;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 8px #0d1015;
    background-color: #0d1015;
}

::-webkit-scrollbar-thumb {
    background-color: #111b27;
    border-radius: 5px;
}


input,select,
input::placeholder,
select::placeholder {
  font-family: 'Noto Sans TC'
}

/*==============================================*/

/*共用*/

.all_title01{
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.all_title02{
    font-size: 28px;
    font-weight: 600;
}

.all_title03{
    font-size: 18px;
    font-weight: 500;
}

.all_title04{
    font-size: 22px;
    color: #996c33;
    font-weight: 700;
}


.all_tab{
    position: absolute;
    top: -180px;
}

/*-------*/


.all_introduce_01{
    font-weight: 500;
    font-size: 16px;
    line-height: 36px;
    color: #434343;
    letter-spacing: 1.5px;
}

/*-------*/

.all_title_box {
    width: 100%;
    border-top: 1px #3d3d3d solid;
    padding: 14px 0;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    gap: 0 15px;
}

.all_title_box:after{
    content: "";
    position: absolute;
    width: 150px;
    height: 1px;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-image: linear-gradient(45deg, #fec005 0%, #f49238 25%, #e6557b 50%, #e142a6 75%, #d612c8 100%);
}


/*-------*/



.all_width{
    width: 1520px;
    max-width: 95%;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.all_width_01{
    width: 96%;
    margin: 0 auto;
}

.top_padding{
    padding-bottom: 165px;
}




.menu{
    background-color: #304ab1;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    box-shadow: 0 0 5px #88a0cb22;
    padding: 10px 0;
    z-index: 110;
    border-radius: 20px;
}


.menu_box {
    display: flex;
    gap: 0 10px;
    /* align-items: flex-end; */
    align-items: center;
    justify-content: space-between;
    padding: 5px 4%;
}


.menu_logo{
    width: 221px;
}

.menu_logo img{
    width: 100%;
}

.menu_box p{
    font-size: 17px;
    color: #c88c55;
    font-weight: 600;
}



.menu_list {
    display: flex;
    align-items: center;
    gap: 10px 20px;
}


.menu_ul{
    display: flex;
    gap: 10px 10px;
}

.menu_ul>li>a{
    color: #fff;
    font-size: 18px;
    padding: 8px 25px 10px 25px;
    border-radius: 40px;
    font-weight: 400;
    transition: .3s;
}

.menu_ul>li>a:hover{
    color:#555555 ;
    background-color: #fff;
}


.menu_btn {
    display: flex;
    background: linear-gradient(90deg, #73d5cc 10%, #33d1c4 30%, #00cebd 50% , #33d1c4 70%, #73d5cc 90%);
    color: #fff;
    font-size: 18px;
    padding: 4px 5px 5px 14px;
    align-items: center;
    border-radius: 40px;
    font-weight: 400;
    position: relative;
    background-size: 200% 100%;
    transition: .3s;
}


.menu_btn:hover{
    background-position: 100% 0;
    color: #fff;
}


/*.menu_btn:after {
    content: "";
    width: calc(100% + 11px);
    height: calc(100% + 10px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 40px;
    border: 1px #00cfbe solid;
}

.menu_btn:before {
    content: "";
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 40px;
    border: 1px #00cfbe solid;
    transition: .3s;
}

.menu_btn:hover:before{
    width: calc(100% + 11px);
    height: calc(100% + 10px);
}*/

.menu_btn img.icon{
    margin-right: 10px;
}

.menu_btn span {
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
}


.menu_close_bg,
.menu_3line_box {
    display: none;
}



.footer {
    background-color: #192148;
    padding: 50px 0 30px 0;
    position: relative;
    z-index: 1;
}

.footer_box {
    display: flex;
    gap: 0 10px;
    align-items: flex-end;
    justify-content: space-between;
}


.footer_box .left {
    display: flex;
    gap: 20px 10px;
    color: #fff;
    font-size: 16px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}




.footer_box .logo_box{
    text-align: left;
}

.footer_box .logo_box .logo{
    margin-bottom: 10px;
}


.footer_info {
    margin: 10px 0 0px 0;
    color: #8f99be;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 16px;
}

.footer_info a{
    color: #8f99be;
}

.footer_copyright{
    background-color: #0c152d;
    width: 100%;
    padding: 25px;
    text-align: center;
    color: #8a92af;
    font-size: 15px;

    position: relative;
    z-index: 1;

    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_copyright a{
    color: #8a92af;
}






.footer_list {
    display: flex;
    gap: 15px 25px;
    font-size: 16px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-end;
}

.footer_list a {
    display: flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.footer_list a:hover {
    text-decoration: none;
    transform: translateY(3px);
}

.footer_list a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    display: block;
    height: 100%;
    z-index: -1;
    transition: transform .3s ease-in!important;
    -webkit-transition: transform .3s ease-in!important;
    -o-transition: transform .3s ease-in!important;
    transform-origin: bottom right;
    transform: scaleX(0);
}

.footer_list a:hover:before {
    transform-origin: bottom right;
    transform: scaleX(1);
}

.footer_list a.line:before {
    background-color: #5c8c2a;
}

.footer_list a.phone:before {
    background-color: #ff5a52;
}

.footer_list a p {
    color: #fff;
    font-weight: 600;
    padding: 6px 20px;
    font-size: 14px;
    width: 135px;
    text-align: center;
}

.footer_list a p{
    -webkit-animation: icon_auto_02 1s linear infinite;
    animation: icon_auto_02 1s linear infinite;
}

.footer_list a div {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer_list a div img{
    width:30px ;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


.footer_list a.line{
    background-color: #83b55d;
}

.footer_list a.line div{
    background-color: #5c8c2a;
}


.footer_list a.phone{
    background-color: #ff9283;
}

.footer_list a.phone div{
    background-color: #ff5a52;
}


.footer_list a:hover{
   
}


.icon_auto_01 img{ 
    -webkit-animation: icon_auto_01 1s linear infinite;
    animation: icon_auto_01 1s linear infinite;
}

@keyframes icon_auto_01 {
    50%{transform: translate(-50%,-50%)scale(1.1);opacity:.8;} 

}

@keyframes icon_auto_02 {
    50%{transform:scale(1.15);opacity:.8;} 

}



/*===========*/


.footer_menu{
    display: flex;
    gap: 20px 50px;
}

.footer_menu a{
    color: #8f99be;
    font-size: 18px;
    position: relative;
}

.footer_menu a:after{
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8f99be;
    opacity: .6;
    transition: .3s;
}

.footer_menu a:hover:after{
    width: calc(100% + 1px);
}




.footer_btn {
    position: fixed;
    right: 30px;
    bottom: 33%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer_btn a{
    display: block;
}

.footer_btn img{
    width: 55px;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 0 3px 2px #fff6;
}

.footer_btn img{ 
    -webkit-animation: auto02 1s linear infinite;
    animation: auto02 1s linear infinite;
}

@keyframes auto02 {
  60%{box-shadow: 0 0 10px 6px #fff7;}
}


.footer_btn img:hover {
    text-decoration: none;
    transform: translateY(3px)scale(1.05);
}



.in_page .footer_btn{
    bottom: auto;
    top: 30%;
}










/*===================================*/



.i_box1{
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 20px;
}

.i_box1 .owl-theme .owl-controls{
     margin-top: 0px;
}


.i_b2{
    margin: 50px auto;
}


.person_ul {
    display: flex;
    gap: 40px 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.person_ul li{
    width: calc(16.66% - 20px);
    display: flex;
    justify-content: center;
}

.person_ul li a {
    width: 180px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.person_ul li a .hot {
    position: absolute;
    left: 8%;
    top: -12%;
    transform: rotate(-38deg);
    width: 30%;
    z-index: 1;
    transition: .3s;
}

.person_ul li a .img{
    
    position: relative;
}

.person_ul li a .img:after{
    position: absolute;
    content: "";
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-image: linear-gradient(45deg, #fec005 0%, #f49238 25%, #e6557b 50%, #e142a6 75%, #d612c8 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

.person_ul li a .img img{
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px #0d1015 solid;

} 

.person_ul li a p{
    font-size:20px ;
    color: #d9dde0;
}


/*-----------------------*/

.marquee_box {
    display: flex;
    gap: 0 20px;
    background-color: #f7ee61;
    padding: 15px 50px;
    border-radius: 25px;
    margin: 50px auto;
}

.marquee_box .title {
    display: flex;
    gap: 0 10px;
    width: 90px;
    align-items: center;
    color: #c1272d;
    font-weight: 700;
    font-size: 20px;
    justify-content: space-between;
}


.marquee_box .marquee {
    color: #030615;
    text-align: center;
    width: calc(100% - 110px);
    height: 35px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
}

.marquee_list{
    height: 25px;
    line-height:25px;
    overflow-y:hidden;
    text-align: center;
}


.carousel {
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: relative;
}


.carousel-content {
    position: absolute;
    top: 0;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}


.text-item {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:18px;
}


/*============================*/

.post_ul {
    display: flex;
    gap: 60px 80px;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 80px auto;
}

.post_ul li{
    width: calc(50% - 40px);
}

.post_ul li a{
    border-bottom: 1px #444 solid;
    display: block;
    padding-bottom: 30px;
}

.post_ul li a .title {
    display: flex;
    gap: 0 15px;
    align-items: center;
    margin-bottom: 20px;
}

.post_ul li a .title .person_img{
    width: 90px;
    position: relative;
}


.post_ul li a .title .person_img:after{
    position: absolute;
    content: "";
    width: calc(100% + 5px);
    height: calc(100% + 5px);
    background-image: linear-gradient(45deg, #fec005 0%, #f49238 25%, #e6557b 50%, #e142a6 75%, #d612c8 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

.post_ul li a .title .person_img img{
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px #0d1015 solid;

} 


.post_ul li a .title h2{
    color: #fff;
    font-size: 20px;
}




.post_ul li a>img{
    width: 100%;
    margin-bottom: 20px;
}

.post_ul li a .like{
    display: flex;
    gap: 0 15px;
    align-items: center;
    margin-bottom: 20px;
}

.post_ul li a .like i{
    color: #ff0707;
    font-size: 30px;
}

.post_ul li a .like p{
    font-size: 20px;
    color: #fff;
}



.post_ul li a .info p{
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 64px;
}

.post_ul li a .info p{

}


/*============*/


.i_box4{
    background-color:#000000 ;
    padding: 50px 0;
}

.i_b4{
    background-color:#222328 ;
    padding: 50px 50px;
    border-radius: 30px;
}


.news_ul {
    display: flex;
    gap: 60px 45px;
    margin: 50px auto;
    flex-wrap: wrap;
}

.news_ul li{
    width: calc(33.3% - 30px);
}

.news_ul li .img{
    margin-bottom: 20px;
    overflow: hidden;
}

.news_ul li:hover img{
    transform: scale(1.05);
}

.news_ul li img{
    width:100%;
    transition: .3s;
    
}

.news_ul li h2{
    font-weight: 700;
    font-size: 18px;
    color: #eaeaec;
    margin-bottom: 15px;
    height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news_ul li p{
    font-size: 16px;
    color: #adadad;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


.news_ul.inpage li a{
    padding: 20px 20px 30px 20px;
    border-radius: 15px;
    background-color: #222328;
    display: block;
}

.news_ul.inpage li p{
    border-top: 1px #afafaf solid;
    padding-top: 15px;
}








.all_btn_box01 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.all_btn_box01 a{
    background-color: #4396f6;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    padding: 10px 0;
    width: 200px;
    text-align: center;
    transition: .3s;
}

.all_btn_box01 a:hover{
    background-color: #304ab1;
}

.all_btn_box02 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.all_btn_box02 a{
    background-color: #4396f6;
    color: #fff;
    font-size: 17px;
    border-radius: 10px;
    padding: 8px 0;
    width: 200px;
    text-align: center;
    transition: .3s;
}

.all_btn_box02 a:hover{
    background-color: #304ab1;
}

/*===================*/


.i_box5{
    padding: 80px 0;
}

.i_b5_box{
    display: flex;
    gap: 30px 50px;
    margin: 50px auto;
}



.i_b5_box .img{
    width: calc(50% - 25px);
    background-image: url(../img/i_contact_img.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 30px;

}


.i_content{
    background-color: #d8e2e8;
    width: calc(50% - 25px);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.i_content .top {
    width: 100%;
    padding: 20px 30px;
    background-color: #4396f6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px 20px;
}

.i_content .top h3{
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.i_content .top p{
    color: #fff;
    font-size: 16px;
}


.i_content .info {
    display: flex;
    gap: 30px 20px;
    padding: 30px 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.all_input_01 {
    width: calc(50% - 10px);
    display: flex;
    gap: 10px;
    align-items: center;
}

.all_input_01 label{
    width: 80px;
    text-align: right;
    font-size: 18px;
}

.all_input_02{
    width: calc(50% - 10px);
    display: flex;
    gap: 10px;
    align-items: center;
}

.all_input_02 label{
    width: 95px;
    text-align: right;
    font-size: 18px;
}


.input_01,
.select_01{
    width: calc(100% - 90px);
    border: 0;
    border-radius: 10px;
    outline: none;
    padding: 7px 5px;
   -webkit-appearance: none;
   -moz-appearance: none;
   background-color: #fff;
   color: #333;
}

.input_02,
.select_02{
    width: calc(100% - 130px);
    border: 0;
    border-radius: 10px;
    outline: none;
    padding: 7px 5px;
    -webkit-appearance: none;
   -moz-appearance: none;
   background-color: #fff;
   color: #333;
}

.input_03{
    width: calc(100% - 170px);
    border: 0;
    border-radius: 10px;
    outline: none;
    padding: 7px 5px;
}


.all_input_01 .code_img{
    width: 80px;
}

.all_input_01 .code_img img{
    width: 100%;
}

/*==============================*/




.owner_top {
    display: flex;
    gap: 20px 150px;
    padding: 50px 5%;
    align-items: flex-start;
    padding-bottom: 50px;
    border-bottom: 1px #898989 solid;
    margin-bottom: 50px;
}

.owner_top .img{
    position: relative;
    width: 400px;
}


.owner_top .img:after{
    position: absolute;
    content: "";
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-image: linear-gradient(45deg, #fec005 0%, #f49238 25%, #e6557b 50%, #e142a6 75%, #d612c8 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

.owner_top .img img {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px #0d1015 solid;
}





.owner_top>.info .title{

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 60px;
    margin-bottom: 30px;

}

.owner_top>.info .title h2{
    font-size: 28px;
    color: #fff;
}

.owner_top>.info .title h3{
    color: #ffff00;
    font-size: 24px;
}

.owner_top>.info .title p{
    color: #ffffa4;
    font-size: 24px;
}

.owner_top>.info .title i{
    color: #ff0707;
    font-size: 28px;
}

.owner_top>.info .title div {
    display: flex;
    gap: 5px;
    align-items: center;
}




.owner_top>.info .text{

}

.owner_top>.info .text p{
    font-size: 18px;
    color: #c1c1c1;
    font-weight: 400;
    margin-bottom: 30px;
}

.owner_top>.info .text a{
    background-color: #fac53b;
    font-size: 18px;
    border-radius: 10px;
    padding: 10px 0;
    width: 170px;
    text-align: center;
    transition: .3s;
    display: inline-flex;
    justify-content: center;
    box-shadow: 0 0 11px 2px #ffff006e;
    color: #304ab1;
/*    text-shadow: 0 0 5px #af723a;*/
}

.owner_top>.info .text a:hover{
    background-color: #f6d40c;
}

.owner_top>.info .text a{ 
    -webkit-animation: auto01 1s linear infinite;
    animation: auto01 1s linear infinite;
}

@keyframes auto01 {
  60%{box-shadow: 0 0 11px 7px #ffff006e;background-color: #f6d40c}
}


/*---------------*/


.owner_post {  
    display: flex;
    padding: 0px 0 50px 0;
    gap: 15px;
    flex-wrap: wrap;
}

.owner_post li{
    width: calc(33.3% - 10px);
}

.owner_post li img{
    width: 100%;
}


.owner_post li a{
    position: relative;

}

.owner_post li a .hover{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000082;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s;
    

}

.owner_post li a:hover .hover{
    opacity: 1;
}


.owner_post li a .hover span{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: #000c;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}



.all_page{
    position: relative;
    padding-bottom: 70px;
}

.bg_img{
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 0;
}

.bg_img_01{
    width: 100%;
    position: absolute;
    top: 0px;
    z-index: 0;
}

/*=====================*/


.owner_d_box{

}

.owner_d_box .owner_d_img{
    width: 100%;
    margin-bottom: 50px;
}

.owner_d_box .title{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.owner_d_box .info img{
    max-width: 100%;
    height: auto!important;
}



.web_cate {
    display: flex;
    gap: 0 5px;
    color: #528fcc;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.web_cate a,
.web_cate p{
   color: #528fcc; 
   font-size: 18px;
}



.news_top {
    padding: 30px 0 60px 0;
}

.news_top h2{
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
}


/*==============*/



.news_box {
    background-color: #3f3f3f;
    border-radius: 50px;
    margin-bottom: 50px;
    padding: 50px 50px 70px 50px;
    box-shadow: rgb(0 0 0 / 55%) 3px 3px 15px 0px inset;
}



.page_box {
    display: flex;
    gap: 10px 30px;
    align-items: center;
    justify-content: center;
}

.page_box .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px #888 solid;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.page_box .icon:hover{
    border: 1px #fff solid;
}

.page_box ul{
    display: flex;
    gap: 0 15px;
    color: #fff;
}

.page_box ul li a{
    color: #a0a0a0;
    font-size: 16px;
    transition: .3s;
}

.page_box ul li a.active{
    color: #fff;
}


.page_box ul li a:hover{
    color: #fff;
}




.news_d_box{
    width: 1000px;
    max-width: 100%;
    margin: 10px auto 0 auto;
}

.news_d_img{
    width: 100%;
    margin-bottom: 40px;
}


.news_d_info{
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px #888 solid;
    color: #c4c4d3;
}

.news_d_info img{
    max-width: 100%;
    height: auto!important;
}





/*==================================================*/




.notice_box {
    display: flex;
    gap: 20px 20px;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 80px;
    align-items: flex-start;
}

.notice_box li{
    background-color: #fff0;
    border-radius: 20px;
    border: 1px #3d3d3d solid;
    overflow: hidden;
}

.notice_box li.w100{
    width: 100%;
}

.notice_box li.w50{
    width: calc(50% - 10px);
}

.notice_box .title_box {
    display: flex;
    padding: 20px 20px;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    cursor: pointer;
    background-color: #000000;
    overflow: hidden;
}

.notice_box .title_box i{
    font-size: 20px;
}

.notice_box .title_box img{
    width: 30px;
}

.notice_box .title_box span{
    font-size: 16px;
    color: #999;
}

.notice_box .title_box.active span{
    transform:rotate(180deg)
}

.notice_box .title_box>div{
    display: flex;
    align-items: center;
    gap: 0 8px;
    color: #fff;
}



.notice_box .info{
    display: flex;
    padding: 30px 30px;
    color:#adadad;
/*    display: none;*/

}


.notice_02 p{
    line-height: 32px;
    font-size: 15px;
    text-align: left;
}

.notice_02 p b{
    color: #fff;
    font-weight: 700;
}

.notice_02 p span{
    color: #4396f6;
}



















