1234567891011121314151617181920212223242526272829303132333435 |
- @extends('module.layouts.content')
- @push('meta')
- @endpush
- @push('css')
- <link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
- <style>
- </style>
- @endpush
- @push('js')
- @endpush
- @section('content')
- <div style="background-color:#eafcfe;width:100%;padding-bottom:50px;">
- <div style="width:100%;max-width:1920px;">
- <img src="{{ theme_asset('app/images/talent_card/header.jpg') }}"
- style="width:100%;display:block;margin:0 auto;" alt="">
- <div style="width:60%;margin:20px auto;background:white;padding-bottom:20px;">
- <img src="{{ theme_asset('app/images/talent_card/content.jpg') }}"
- style="display:block;width:100%;" alt="">
- <a href="https://html.m.cmbchina.com/IGateway/Jump.aspx?funcid=1175001&CorperationCode=T00244NKB000000000000100000000000615000000000000000000000000&BranchID=595&Organization=595579&RecmCode=" target="_blank"><img src="{{ theme_asset('app/images/talent_card/button.jpg') }}"
- style="display:block;margin:0 auto;cursor:pointer;" alt=""></a>
- </div>
- </div>
- </div>
- @endsection
- @section('script')
- @endsection
|