@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');


* {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
}

.wrap {
    width: 1200px;
    margin: 0 auto;
}

.wrap::after {
    content: '';
    display: block;
    clear: both;
}

header {
    width: 100%;
    height: 154px;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}

header .container {
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    width: 100%;
    height: 85px;
}

header .container .wrap {
    position: relative;
}

header h1 {
    text-align: center;
    padding: 23px 0;
    height: 39px;
}

header h1 a {
    display: inline-block;
    width: 263px;
    height: 39px;
}

header button.search_icon {
    position: absolute;
    right: 10px;
    top: 32px;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
}

header .container .search_area {
    width: 100%;
    height: 300px;
    background-color: #D3DFF7;
    position: absolute;
    top: 154px;
    left: 0;
    z-index: 10;
    display: none;
}

header .container .search_area p.title {
    font-size: 23px;
    font-weight: bold;
    margin-top: 60px;
    text-align: center;
}

header .container .search_area p.title span {
    color: #2A58A6;
}

header .container .search_area input {
    width: 500px;
    height: 56px;
    background: #fff;
    margin-left: 300px;
    margin-top: 29px;
    font-size: 23px;
    font-weight: 500;
    color: #666;
    line-height: 56px;
    padding-left: 26px;
    box-sizing: border-box;
    border: 0;
}

header .container .search_area button.search_btn {
    border: none;
    width: 100px;
    height: 56px;
    background-color: #203D7F;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    cursor: pointer;
    transform: translate(-4px,1px);
    /* transform: translate(800px, -56px); */
}

header nav {
    width: 100%;
    position: relative;
}

header nav .nav_bg {
    width: 100%;
    height: 580px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 68px;
    display: none;
}

header nav .wrap {
    position: relative;
}

header nav ul.gnb {
    width: 1170px;
    float: right;
}

header nav ul.gnb>li {
    width: 195px;
    float: left;
    position: relative;
}

header nav ul.gnb>li>a {
    display: block;
    width: 195px;
    height: 68px;
    line-height: 68px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

header nav ul.gnb>li>a::after {
    content: '';
    display: inline-block;
    width: 100px;
    border-bottom: 5px solid #203D7F;
    position: absolute;
    left: 47px;
    bottom: 0;
    transform: scale(0);
    transition: all .4s;
}

header nav ul.gnb>li:hover>a::after {
    transform: scale(1);
}

header nav ul.gnb>li>ul.sub {
    width: 100%;
    position: absolute;
    left: 0;
    top: 98px;
    display: none;
}

header nav ul.gnb>li>ul.sub>li {
    width: 165px;
    padding-left: 30px;
}

header nav ul.gnb>li>ul.sub>li>a {
    font-size: 17px;
    font-weight: 500;
    height: 50px;
    line-height: 50px;
    display: block;
}

header nav ul.gnb>li>ul.sub>li>a>span {
    line-height: normal;
    display: block;
}

header nav ul.gnb>li>ul.sub>li:hover>a {
    text-decoration: underline;
    color: #203D7F;
}

header nav ul.gnb>li>ul.sub>li>ul.sub_b {
    width: 100%;
    font-size: 15px;
}

header nav ul.gnb>li>ul.sub>li>ul.sub_b>li {}

header nav ul.gnb>li>ul.sub>li>ul.sub_b>li>a {
    height: 30px;
    line-height: 30px;
    display: block;
}

header nav ul.gnb>li>ul.sub>li>ul.sub_b>li>a:hover {
    color: #203D7F;
}

header nav a.all_menu {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    left: 0;
    top: 19px;
}



/* main */
main .wrap {}

:root {
    --swiper-theme-color: #E6F2F9;
}

.main_slide {
    width: 100%;
    height: 465px;
    position: relative;
    /* overflow: hidden; */
}

.main_slide ul.b_slide {
    width: 100%;
    height: 465px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #E6F2F9;
    opacity: .8;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 36px;
    border-radius: 20px;
}

.main_slide .swiper-button-next::after,.main_slide .swiper-button-prev::after{
    content: '';
    display: block;
}

.main_slide .swiper-button-next{
    background: url(../images/right_icon_big.png) no-repeat center center;
    width: 52px;
    height: 52px;
    right: 1000px;
    top: 356px;
}
.main_slide .swiper-button-prev{
    background: url(../images/left_icon_big.png) no-repeat center center;
    width: 52px;
    height: 52px;
    left: 90px;
    top: 356px;
}

/* info_menu */
.info_menu {
    width: 100%;
    height: 200px;
    margin-bottom: 70px;
    position: relative;
    background: #D3DFF7;
}

.info_menu .wrap {
    width: 1200px;
    height: 200px;
    margin-top: 60px;
    position: relative;
}

.info_menu .wrap h2 {
    width: 150px;
    height: 36px;
    float: left;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.75px;
    margin-top: 47px;
    text-align: center;
}

.info_menu .wrap .icon_slide {
    width: 1040px;
    height: 200px;
    float: right;
    position: relative;
}

.icon_wrap{
    position: relative;
    height: 200px;
}

.icon_wrap .slide_wrapp{}

.icon_wrap .slide_wrapp .swiper-pagination{
    left: 47px; top: 97px;
    width: 50px;
    height: 32px;
    line-height: 32px;
}
.info_menu span.swiper-pagination-current{
    color: #114baf;
    font-size: 20px;
}

.info_menu .swiper-pagination-total{
    color: #666;
}

.info_menu .swiper-button-next::after,.info_menu .swiper-button-prev::after{
    content: '';
    display: block;
}

.info_menu .swiper-button-prev{
    background: url(../images/ArrowLeft.png);
    width: 32px;
    height: 32px;
    left: 6px;
    top: 120px;
}

.info_menu .swiper-button-next{
    background: url(../images/ArrowRight.png);
    width: 32px;
    height: 32px;
    left: 106px;
    top: 120px;
}

.info_menu .wrap ul.menu_slide {

    position: absolute;
    left: 0;
    top: 29px;
}

.info_menu .wrap ul.menu_slide li {
    width: 100px;
    height: 143px;
    text-align: center;
}

.info_menu .wrap ul.menu_slide li:nth-last-child(2) {
    width: 132px;
}

.info_menu .wrap ul.menu_slide li a {
    display: block;
}

.info_menu .wrap ul.menu_slide li a .img_box {
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 40px;
    box-sizing: border-box;
    border: 1px solid #eee;
}

.info_menu .wrap ul.menu_slide li:nth-last-child(2) a .img_box {
    margin-left: 16px;
}

.info_menu .wrap ul.menu_slide li a img {
    text-align: center;
    margin-top: 50%;
    transform: translateY(-50%);
}

.info_menu .wrap ul.menu_slide li a span {
    display: block;
    margin-top: 20px;
}

/* 청장과의 대화 */

.contents {
    padding-top: 69px;
    width: 100%;
    height: 361px;
}

.contents section.open_talk {
    width: 570px;
    height: 311px;
    color: #fff;
    float: left;
}

.contents section.open_talk .box1 {
    width: 570px;
    height: 280px;
    border-radius: 25px 0px;
    background: #203D7F;
    margin-top: 31px;
    padding-left: 50px;
    padding-top: 30px;
    box-sizing: border-box;
    position: relative;
}

.contents section.open_talk .box1 .txt_box {
    float: left;
}

.contents section.open_talk h2 {
    font-size: 30px;
    font-weight: 500;
}

.contents section.open_talk p:first-of-type {
    margin-top: 20px;
    font-weight: 400;
    line-height: normal;
}

.contents section.open_talk a {
    width: 146px;
    height: 34px;
    border: 1px solid #C1D1FD;
    margin-top: 20px;
    padding-left: 10px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    color: #C1D1FD;
    display: block;
    line-height: 34px;
    position: relative;
}

.contents section.open_talk a img {
    position: absolute;
    right: 9px;
    top: 10px;
    transform: rotate(0);
    transition: all .3s;
}

.contents section.open_talk a:hover {
    background: #fff;
    color: #203D7F;
}

.contents section.open_talk a:hover img {
    transform: rotate(90deg);
}

.contents section.open_talk p:last-of-type {
    margin-top: 28px;
}

.contents section.open_talk p:last-of-type span {
    font-size: 30px;
    font-weight: 500;
    padding-left: 25px;
}

.contents section.open_talk img {
    position: absolute;
    right: 0;
    bottom: 0;
}

section.safety_report {
    width: 550px;
    height: 309px;
    border-radius: 25px;
    background: #FFF;
    margin: 4px;
    box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.15);
    padding: 30px 50px;
    box-sizing: border-box;
    float: right;
    background-image: url(../images/sinmungo_back.png);
    position: relative;
}

section.safety_report h2 {
    font-size: 23px;
    font-weight: 500;
}

section.safety_report p {
    font-style: 16px;
    color: #222;
    margin-top: 15px;
    line-height: 23px;
}

section.safety_report img {
    position: absolute;
    bottom: 30px;
    left: 174px;
}

section.safety_report a {
    width: 146px;
    height: 39px;
    border-radius: 10px;
    background: #DAE8FF;
    display: block;
    padding-left: 20px;
    padding-top: 10px;
    box-sizing: border-box;
    position: absolute;
    right: 50px;
}

section.safety_report a:nth-of-type(1) {
    bottom: 132px;
}

section.safety_report a:nth-of-type(2) {
    bottom: 81px;
}

section.safety_report a:nth-of-type(3) {
    bottom: 30px;
}

section.safety_report a i {
    font-style: 20px;
    position: absolute;
    left: 125px;
    top: 11px;
}

section.safety_report a:hover i {
    animation: arrow .6s infinite;
}

@keyframes arrow{
    0%{transform: translateX(0);}
    50%{transform: translateX(4px);}
    100%{transform: translateX(0);}
}

/* press_release */
.press_release {
    width: 100%;
    padding-top: 60px;
    height: 511px;
    position: relative;
}

.press_release .wrap {
    height: 511px;
}

.press_release h2 {
    font-size: 23px;
    font-weight: 500;
}

.press_release .wrap .swiper_wrap {}

.p_slide{
    width: 1174px;
    padding: 0 13px;
}

.press_release ul.press {
    width: 2510px;
    height: 300px;
    margin-top: 58px;
    padding: 20px 0;
    box-sizing: border-box;
}

.press_release .swiper-button-next {
    color: #222;
    right: 50%;
    margin-right: -690px;
}

.press_release .swiper-button-prev {
    color: #222;
    left: 50%;
    margin-left: -690px;
}

/* .press_release .swiper-wrap .swiper-slide {
    슬라이드 내부 컨텐츠들을 중앙 정렬합니다.
    display: flex;
    justify-content: center;
    align-items: center;
} */

.press_release ul li {
    width: 360px;
    height: 260px;
    border-radius: 25px 0px;
    background: #eee;
}

.press_release ul li:hover {
    box-shadow: 3px 4px 10px 5px rgba(0, 0, 0, 0.20);
}

.press_release ul li:last-child {
    margin-right: 0;
}

.press_release ul li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 25px 30px;
    box-sizing: border-box;
}

.press_release ul li a p.mini {
    color: #203D7F;
    font-size: 14px;
    font-weight: 500;
}

.press_release ul li a p.title {
    width: 304px;
    height: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: -0.1px;
    text-align: center;
    line-height: 25px;
}

.press_release ul li a p.sub_t {
    width: 304px;
    height: 23px;
    text-align: center;
    letter-spacing: -1px;
    color: #203D7F;
    font-size: 15px;
}

.press_release ul li a p.txt_box {
    width: 304px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 18px;
    margin-bottom: 18px;
    line-height: 22px;
    font-size: 16px;
    color: #444;
}

.press_release ul li a span.day {
    color: #666;
    font-size: 15px;
    padding-left: 222px;
}

.press_release .wrap>a {
    width: 102px;
    height: 40px;
    padding-left: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid #555;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 77px;
    transform: translate(-50%);
    line-height: 40px;
}

.press_release .wrap>a:hover,
.alarm .wrap section.notice_gal>a:hover {
    background: #8eacff;
    color: #fff;
    border: 0;
}

.press_release .wrap>a img {
    margin-top: 13px;
    margin-left: 5px;
    transform: rotate(0);
    transition: all .3s;
}

.press_release .wrap>a:hover img,
.alarm .wrap section.notice_gal>a:hover img {
    transform: rotate(90deg);
}

/* alarm */
.alarm {
    width: 100%;
    height: 694px;
    background: #F4F4F4;
    position: relative;
}

.alarm::before {
    content: '';
    display: block;
    width: 27%;
    height: 100%;
    background: #D3DFF7;
    position: absolute;
    left: 0;
    top: 0;
}

.alarm .wrap {
    height: 100%;
    position: relative;
}

.alarm .wrap section.notice_gal {
    width: 100%;
    height: 600px;
    padding-top: 70px;
    box-sizing: border-box;
}

.alarm .wrap section.notice_gal h2 {
    font-size: 23px;
    font-weight: 500;
}

.alarm .wrap section.notice_gal h3 {
    width: 200px;
    height: 68px;
    border-radius: 3px;
    background: #203D7F;
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 68px;
    cursor: pointer;
}

.alarm .wrap section.notice_gal h3.noti {
    margin-top: 58px;
}

.alarm .wrap section.notice_gal h3.emp {
    margin: 28px 0;
}

.alarm .wrap section.notice_gal h3.on {
    color: #FFCB05;
    position: relative;
}

.alarm .wrap section.notice_gal h3.on::after {
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background: #FFCB05;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.alarm .wrap section.notice_gal ul {
    width: 940px;
    height: 384px;
    position: absolute;
    right: 0;
    top: 151px;
    display: none;
}

.alarm .wrap section.notice_gal ul.on {
    display: block;
}

.alarm .wrap section.notice_gal ul li {
    width: 460px;
    height: 164px;
    border-radius: 25px;
    border: 1px solid #000;
    background: #FFF;
    float: left;
    margin-right: 20px;
    margin-bottom: 28px;
    box-sizing: border-box;
}

.alarm .wrap section.notice_gal ul li:nth-of-type(2n) {
    margin-right: 0;
}

.alarm .wrap section.notice_gal ul li a {
    width: 460px;
    height: 164px;
    display: block;
    padding-top: 15px;
    padding-left: 30px;
    box-sizing: border-box;
}

.alarm .wrap section.notice_gal ul li a span.rec {
    width: 111px;
    height: 33px;
    display: block;
    border-radius: 20px;
    border: 1px solid #203D7F;
    box-sizing: border-box;
    text-align: center;
    padding: 6px 20px;
    color: #203D7F;
    font-weight: 500;
    transition: all .4s;
}

.alarm .wrap section.notice_gal ul li:hover a span.rec{
    background-color: #203D7F;
    color: #FFF;
}

.alarm .wrap section.notice_gal ul li a p.prose {
    font-weight: 500;
    width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 20px;
}

.alarm .wrap section.notice_gal ul li a span.day {
    color: #666;
    font-size: 16px;
    margin-top: 19px;
    display: block;
}

.alarm .wrap section.notice_gal>a {
    width: 102px;
    height: 40px;
    padding-left: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid #555;
    display: block;
    line-height: 40px;
    position: absolute;
    left: 50%;
    bottom: 94px;
    transform: translateX(-50%);
}

.alarm .wrap section.notice_gal>a img {
    margin-top: 13px;
    margin-left: 5px;
    transform: rotate(0);
    transition: all .3s;
}



/* promotion */
.promotion {
    width: 100%;
    height: 694px;
    padding-top: 100px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.promotion::before{
    content: '';
    display: block;
    width: 358px;
    height: 358px;
    background: url(../images/bg_circle.png) no-repeat center center;
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-right: -956px;
}

.promotion .wrap {
    height: 446px;
}

.promotion section.pro {
    width: 716px;
    height: 446px;
    float: left;
    position: relative;
}

.promotion section.pro h2 {
    font-size: 23px;
    font-weight: 500;
    margin-left: 20px;
}

.promotion section.pro>a {
    font-size: 22px;
    position: absolute;
    right: 0;
    top: 3px;
}

/* .promotion section.pro>a:hover i{
    transform: rotate(90deg);
} */

.promotion section.pro>i{
    position: absolute;
    right: 114px;
    top: 10px;
    rotate: -30deg;
    font-size: 14px;
}

.promotion section.pro h3 {
    font-size: 18px;
    top: 8px;
    height: 29px;
    position: absolute;
    cursor: pointer;
}

.promotion section.pro h3.skc {
    left: 486px;
}

.promotion section.pro h3.on {
    font-weight: 500;
    font-size: 20px;
    top: 5px;
}

.promotion section.pro h3.on::after {
    content: '';
    display: block;
    width: 80px;
    height: 12px;
    background: rgba(143, 168, 255, 0.30);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
}

.promotion section.pro h3.prm {
    left: 610px;
}

.promotion section.pro ul {
    width: 716px;
    height: 396px;
    border-radius: 25px 0px;
    border: 3px solid #D3DFF7;
    box-sizing: border-box;
    position: absolute;
    top: 48px;
    left: 0;
    padding: 18px 27px;
    background: #fff;
    display: none;
}
.promotion section.pro ul.on{
    display: block;
}

.promotion section.pro ul li {
    width: 100%;
    height: 50%;

}

.promotion section.pro ul li a {
    display: block;
}

.promotion section.pro ul li a img {
    transition: all .4s;
}

.promotion section.pro ul li:hover a img{
    transform: scale(1.1);
} 

.promotion section.pro ul li a .pimg_box{
    width: 254px;
    height: 168px;
    overflow: hidden;
    float: left;
    border-radius: 20px;
}
.promotion section.pro ul li:nth-child(2) a .pimg_box{
    margin-top: 9px;
}

.promotion section.pro ul li a .txt_bx {
    float: right;
    width: 355px;
    padding-top: 10px;
}

.promotion section.pro ul li:nth-child(2) a .txt_bx {
    margin-top: 10px;
}

.promotion section.pro ul li a .txt_bx em {
    font-weight: 500;
    margin-bottom: 18px;
    display: block;
}
.promotion section.pro ul li:hover a .txt_bx em {
    text-decoration: underline;
}

.promotion section.pro ul li a .txt_bx p {
    color: #444;
    width: 355px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    margin-bottom: 8px;
}

.promotion section.pro ul li a .txt_bx span {
    color: #666;
    font-size: 15px;
    padding-left: 270px;
}

.promotion section.pro ul.prm li {
    float: left;
    width: 316px;
    height: 343px;
    margin-top: 12px;
}

.promotion section.pro ul.prm li:first-child {
    margin-right: 22px;
}

.promotion section.pro ul.prm li iframe {
    border-radius: 20px;
    border: 0px;
}

.promotion section.pro ul.prm li p {
    color: #444;
    margin-top: 14px;
}

.promotion section.pro ul.prm li a video {
    object-fit: cover;
    border-radius: 20px;
}

/* card news */
.promotion section.card_news {
    width: 396px;
    height: 446px;
    border-radius: 25px;
    border: 1px solid #D3DFF7;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    float: right;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.promotion section.card_news h2 {
    color: #111;
    font-size: 23px;
    font-weight: 500;
}

.promotion section.card_news>a {
    position: absolute;
    left: 112px;
    top: 21px;
    font-size: 20px;
}

.promotion section.card_news .cardnews_slide ul {
    margin-top: 19px;
}

.promotion section.card_news .cardnews_slide ul li {}

.promotion section.card_news .cardnews_slide ul li a {
    display: block;
}

.promotion section.card_news .cardnews_slide ul li a img {
    object-fit: cover;
    width: 356px;
    height: 356px;
}

.c_swiper_wrap {
    position: relative;
}

.card_news .swiper-button-next::after,
.card_news .swiper-button-prev::after {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.card_news .swiper-button-next {
    top: -30px;
    right: 0;
}

.card_news .swiper-button-prev {
    top: -30px;
    left: 270px;
}



.card_news .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #fff;
}

.card_news .swiper-pagination-bullet-active {
    background: #2A58A6;
}

.popup {
    width: 100%;
    height: 304px;
    padding-top: 68px;
    padding-bottom: 88px;
    background: #203D7F;
}

.popup .wrap {
    height: 304px;
}

.popup .wrap .pop_slide_wrap {
    position: relative;
    height: 304px;
}

.popup .swiper-button-next::after,
.popup .swiper-button-prev::after {
    content: '';
    display: none;
}
.popup .swiper-button-next {
    top: 60%;
    transform: translateY(-50%);
    right: 50%;
    margin-right: -690px;
    width: 40px;
    height: 40px;
    background: url(../images/right_fill.png);
}

.popup .swiper-button-prev {
    top: 60%;
    transform: translateY(-50%);
    left: 50%;
    margin-left: -690px;
    width: 40px;
    height: 40px;
    background: url(../images/left_fill.png);
}

.popup .wrap .popslide ul.up_slide {
    width: 800%;
    height: 350px;
}

.popup .wrap .popslide ul.up_slide li {
    width: 285px;
    height: 304px;
    padding: 11px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 25px;
}

.popup .wrap .popslide ul.up_slide li a {}

.popup .wrap .popslide ul.up_slide li a img {}

.popup .wrap .popslide ul.up_slide li a em {
    display: block;
    margin: 15px 0 15px 17px;
    font-weight: 500;
}

.popup .wrap .popslide ul.up_slide li a p {
    color: #666;
    font-size: 15px;
    width: 222px;
    margin-left: 17px;
}

.popup .swiper-pagination{
}

.fams {
    width: 100%;
    height: 70px;
    padding: 15px 0;
    background: #EEE;
    box-sizing: border-box;
}

.fams ul.fam_slide {}

.fams ul.fam_slide li {
    float: left;
    margin-right: 17px;
}

.fams ul.fam_slide li:last-child {
    margin-right: 0;
}

.fams ul.fam_slide li a {}

footer {
    width: 100%;
    height: 100px;
    padding: 30px 0;
}
footer .f_left{
    float: left;
    width: 210px;
    margin-right: 30px;
}

footer .f_left a{display: block;}

footer .f_right{
    float: left;
    width: 960px;
    position: relative;
}
footer .f_right ul{
    width: 740px;
    font-size: 14px;
    color: #333;
}
footer .f_right ul li{
    float: left;
    padding: 0 10px;
    font-weight: 500;
    border-right: 1px solid #333;
    margin-bottom: 12px;
}

footer .f_right ul li:nth-last-child(2){
    font-weight: 400;
}
footer .f_right ul li:last-child{
    border-right: none;
    font-weight: 400;
}

footer .f_right p{
    clear: both;
    font-size: 13px;
    font-weight: 300;
    padding-left: 10px;
}

footer .f_right .sns{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    height: 30px;
    color: #203D7F;
}

footer .f_right .sns a{
    display: block;
    float: left;
    margin-left: 10px;
}
